mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
7e671ae37f
metze
(This used to be commit bf852a3dbe
)
11 lines
201 B
Plaintext
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");
|
|
}
|
|
}
|