From 626bb8efb0c825f332c937ffaaadc9b402079539 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Wed, 3 Jan 2007 20:17:37 +0000 Subject: r20517: re-add cleaned-up webapps (This used to be commit 5a3d6ad0b7cf0ecf8b57b4088b19f7d4291c990b) --- webapps/scripting/test.ejs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 webapps/scripting/test.ejs (limited to 'webapps/scripting/test.ejs') diff --git a/webapps/scripting/test.ejs b/webapps/scripting/test.ejs new file mode 100644 index 0000000000..8e7047f51c --- /dev/null +++ b/webapps/scripting/test.ejs @@ -0,0 +1,10 @@ + +/* + some test ejs code +*/ +function showArray(name, array) { + write("

Array: " + name + "

\n"); + for (v in array) { + write(name + "[" + v + "]=" + array[v] + "
\n"); + } +} -- cgit