1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
samba-mirror/swat/esptest/showvars.esp
Andrew Tridgell ee21d32b25 r7134: a number of small changes to make the pages HTML compliant. The
builtin web validator in firefox sure is useful!
(This used to be commit aa43111aa5f9a183395ebd840d8f77867730ab23)
2007-10-10 13:17:20 -05:00

25 lines
556 B
Plaintext

<% page_header("columns", "ESP standard variables test"); %>
<h1>Samba4 showvars test</h1>
<%
function showArray(name, array) {
write("<h3>Array: " + name + "</h3>\n");
if (array == undefined) {
write("undefined<br>\n");
} else {
simple_table(array);
}
}
showArray("headers", headers);
showArray("application", application);
showArray("cookies", cookies);
showArray("files", files);
showArray("request", request);
showArray("server", server);
showArray("session", session);
%>
<% page_footer(); %>