git.samba.org
/
sfrench
/
samba-autobuild
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
r6983: add some sample esp pages to demonstrate the use of some of the features of...
[sfrench/samba-autobuild/.git]
/
swat
/
scripting
/
test.ejs
1
2
/*
3
some test ejs code
4
*/
5
function showArray(name, array) {
6
write("<h3>Array: " + name + "</h3>\n");
7
for (v in array) {
8
write(name + "[" + v + "]=" + array[v] + "<br>\n");
9
}
10
}