blob: dc55b1e58bb12437962183520ab789db7c26bc16 (
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
|
<% page_header("columns", "ESP standard variables test", "esptest"); %>
<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(); %>
|