summaryrefslogtreecommitdiff
path: root/swat/esptest/index.html
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-05-26 02:40:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:02 -0500
commit9f9b8aa8ea9b0d2fadaa4259c821ad9aae0af0cc (patch)
treeef3957d6294a228d6f60c509fc76c7a9db9a6681 /swat/esptest/index.html
parenta81630c0c43c756b74feea84019769357f03a3e5 (diff)
downloadsamba-9f9b8aa8ea9b0d2fadaa4259c821ad9aae0af0cc.tar.gz
samba-9f9b8aa8ea9b0d2fadaa4259c821ad9aae0af0cc.tar.bz2
samba-9f9b8aa8ea9b0d2fadaa4259c821ad9aae0af0cc.zip
r6985: rearranged the directory structure so as to make it possible to support esp include() call
(This used to be commit d747b063393097c05ab1d2c0f78178f166eb6b92)
Diffstat (limited to 'swat/esptest/index.html')
-rw-r--r--swat/esptest/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/swat/esptest/index.html b/swat/esptest/index.html
new file mode 100644
index 0000000000..957e7d94fa
--- /dev/null
+++ b/swat/esptest/index.html
@@ -0,0 +1,23 @@
+<%
+ var tests = new Array("formtest", "showvars");
+%>
+
+<HTML>
+<TITLE>
+Samba4 ESP test
+</TITLE>
+<BODY>
+<img src="/images/logo.png" alt="Samba">
+<h1>Samba4 ESP test</h1>
+
+Please choose one of the following tests:
+<ul>
+<%
+ for (test in tests) {
+ url = tests[test] + ".html";
+ write("<li> <a href=" + url + ">" + tests[test] + "</a>");
+ }
+%>
+</ul>
+</BODY>
+</HTML>