1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-28 17:47:29 +03:00
Andrew Tridgell aa43111aa5 r7134: a number of small changes to make the pages HTML compliant. The
builtin web validator in firefox sure is useful!
2007-10-10 13:17:20 -05:00

11 lines
201 B
Plaintext

/*
some test ejs code
*/
function showArray(name, array) {
write("<h3>Array: " + name + "</h3>\n");
for (v in array) {
write(name + "[" + v + "]=" + array[v] + "<br/>\n");
}
}