r6984: added tree representation documentation and utility code, to be used for subcl...
[samba.git] / swat / html / esptest / showvars.html
1 <HTML>
2 <TITLE>
3 Samba4 ESP test
4 </TITLE>
5 <BODY>
6 <h1>Samba4 showvars test</h1>
7
8 <%
9    function showArray(name, array) {
10       write("<h3>Array: " + name + "</h3>\n");
11       for (v in array) {
12             write(name + "[" + v + "]=" + array[v] + "<br>\n");
13       }
14    }
15
16    showArray("form",    form);
17    showArray("headers", headers);
18    showArray("application", application);
19    showArray("cookies", cookies);
20    showArray("files", files);
21    showArray("request", request);
22    showArray("server", server);
23    showArray("session", session);
24 %>
25
26 <form name="Cancel" method="POST" action="index.html"> 
27     <input name="submit" type="submit" value="Cancel"><br>
28 </form>
29
30 </ul>
31 </BODY>
32 </HTML>