summaryrefslogtreecommitdiff
path: root/swat/esptest/index.esp
blob: 0f3f58166a5d37aa83780da734eac508a954dd33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%
  var tests = new Array("formtest", "showvars", "include", 
                        "session", "loadparm", "exception");
%>

<HTML>
<TITLE>
Samba4 ESP test
</TITLE>
<BODY>
<% 
/* this allows us to force the image to go over more efficiently as http */
 var imagedir = "http://" + headers['HOST'] + "/images"; 
%>
<img src="@@imagedir/logo.png" alt="Samba">
<h1>Samba4 ESP test</h1>

Please choose one of the following tests:
<ul>
<%
  for (test in tests) {
     url = tests[test] + ".esp";
     write("<li> <a href=" + url + ">" + tests[test] + "</a>");
  }
%>
</ul>
</BODY>
</HTML>