mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
ee21d32b25
builtin web validator in firefox sure is useful! (This used to be commit aa43111aa5f9a183395ebd840d8f77867730ab23)
25 lines
556 B
Plaintext
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(); %>
|