1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r7134: a number of small changes to make the pages HTML compliant. The

builtin web validator in firefox sure is useful!
This commit is contained in:
Andrew Tridgell 2005-05-31 03:37:01 +00:00 committed by Gerald (Jerry) Carter
parent aa9bb6ad4c
commit aa43111aa5
7 changed files with 39 additions and 18 deletions

View File

@ -4,9 +4,9 @@ var m = MenuObj("Samba Information", 8);
m.element[0].label = "Samba4 development";
m.element[0].link = "http://devel.samba.org/";
m.element[1].label = "Recent Checkins";
m.element[1].link = "http://build.samba.org/?tree=samba4&function=Recent+Checkins";
m.element[1].link = "http://build.samba.org/?tree=samba4;function=Recent+Checkins";
m.element[2].label = "Recent Builds";
m.element[2].link = "http://build.samba.org/?tree=samba4&function=Recent+Builds";
m.element[2].link = "http://build.samba.org/?tree=samba4;function=Recent+Builds";
m.element[3].label = "EJS Information";
m.element[3].link = "http://www.appwebserver.org/products/ejs/ejs.html";
m.element[4].label = "ESP Information";

View File

@ -1,13 +1,13 @@
<% page_header("columns", "ESP Include Test"); %>
including /scripting/test.ejs<p>
including /scripting/test.ejs<p/>
<% include("/scripting/test.ejs"); %>
calling a function from test.ejs ...<p>
calling a function from test.ejs ...<p/>
<% showArray("request", request); %>
including /scripting/test.esp<p>
including /scripting/test.esp<p/>
<% include /scripting/test.esp %>
calling a function from test.esp ...<p>
calling a function from test.esp ...<p/>
<% res = testfn('foo'); %>
result is: @@res

View File

@ -45,7 +45,7 @@ if (request['REQUEST_METHOD'] == "POST") {
}
simple_table(session);
write("SessionId=" + request['SESSION_ID'] + "<br>\n");
write("SessionId=" + request['SESSION_ID'] + "<br/>\n");
%>
<% page_footer(); %>

View File

@ -21,6 +21,4 @@
showArray("session", session);
%>
</ul>
<% page_footer(); %>

View File

@ -3,7 +3,7 @@
<%
if (request['SESSION_EXPIRED'] == "True") {
write("<b>Your session has expired - please authenticate again<br>\n");
write("<b>Your session has expired - please authenticate again<br /></b>\n");
}
var f = FormObj("login", 2, 1);

View File

@ -129,10 +129,25 @@ function table_element(i, o) {
}
write("</td></tr>\n");
}
/*
return the number of elements in an object
*/
function elcount(o) {
var count = 0;
for (i in o) {
count++;
}
return count;
}
/*
display a ejs object as a table. The header is optional
*/
function simple_table(v) {
if (elcount(v) == 0) {
return;
}
write("<table class=\"data\">\n");
for (r in v) {
table_element(r, v);
@ -145,10 +160,13 @@ function simple_table(v) {
attribute
*/
function multi_table(array, header) {
if (elcount(v) == 0) {
return;
}
write("<table class=\"data\">\n");
for (i in array) {
var v = array[i];
write("<tr><th colspan=2>" + v[header] + "</th></tr>\n");
write('<tr><th colspan="2">' + v[header] + "</th></tr>\n");
for (r in v) {
if (r != header) {
table_element(r, v);
@ -168,7 +186,7 @@ function FormObj(name, num_elements, num_submits)
f.element = new Array(num_elements);
f.submit = new Array(num_submits);
f.action = session_uri(request.REQUEST_URI);
f.class = "form";
f.class = "defaultform";
for (i in f.element) {
f.element[i] = new Object();
f.element[i].type = "text";
@ -193,14 +211,16 @@ function display_form(f) {
write('<form name="' + f.name +
'" method="post" action="' + f.action +
'" class="' + f.class + '">\n');
write("<table>\n");
if (f.element.length > 0) {
write("<table>\n");
}
for (i in f.element) {
var e = f.element[i];
if (e.name == undefined) {
e.name = e.label;
}
if (e.value == undefined) {
e.value = '""';
e.value = "";
}
write("<tr>");
write("<td>" + e.label + "</td>");
@ -216,12 +236,15 @@ function display_form(f) {
write('</select></td>\n');
} else {
write('<td><input name="' + e.name + '" type="' +
e.type + '" value="' + e.value + '"></td>\n');
e.type + '" value="' + e.value + '" /></td>\n');
}
write("</tr>");
}
if (f.element.length > 0) {
write("</table>\n");
}
write("</table>\n");
for (i in f.submit) {
write('<input name="submit" type="submit" value="' + f.submit[i] + '">\n');
write('<input name="submit" type="submit" value="' + f.submit[i] + '" />\n');
}
write("</form>\n");
}

View File

@ -5,6 +5,6 @@
function showArray(name, array) {
write("<h3>Array: " + name + "</h3>\n");
for (v in array) {
write(name + "[" + v + "]=" + array[v] + "<br>\n");
write(name + "[" + v + "]=" + array[v] + "<br/>\n");
}
}