summaryrefslogtreecommitdiff
path: root/swat2/esptest/exception.esp
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-04-12 12:49:19 +0200
committerStefan Metzmacher <metze@samba.org>2010-04-12 12:49:19 +0200
commit143d3f1d90b1d8e35f03e03aa7d39c4090fe0296 (patch)
tree56b438c6ade0dd323e6a882a9071cfe5f069a86a /swat2/esptest/exception.esp
parent6ccf2321cef9203bb80cb091700ea798095d094b (diff)
downloadsamba-143d3f1d90b1d8e35f03e03aa7d39c4090fe0296.tar.gz
samba-143d3f1d90b1d8e35f03e03aa7d39c4090fe0296.tar.bz2
samba-143d3f1d90b1d8e35f03e03aa7d39c4090fe0296.zip
Remove unused swat2 code
metze
Diffstat (limited to 'swat2/esptest/exception.esp')
-rw-r--r--swat2/esptest/exception.esp32
1 files changed, 0 insertions, 32 deletions
diff --git a/swat2/esptest/exception.esp b/swat2/esptest/exception.esp
deleted file mode 100644
index ff28d6318e..0000000000
--- a/swat2/esptest/exception.esp
+++ /dev/null
@@ -1,32 +0,0 @@
-<% page_header("columns", "ESP Exception test", "esptest");
- include("/scripting/forms.js");
-%>
-
-<h1>Samba4 exception test</h1>
-
-
-<%
-var f = FormObj("ExceptionTest", 0, 2);
-f.submit[0] = "Generate Exception";
-f.submit[1] = "No Exception";
-
-f.display();
-
-if (request['REQUEST_METHOD'] == "POST") {
- function TestFunction(arg1, arg2) {
- return "OK";
- }
-
- if (form['submit'] == "Generate Exception") {
- write("I expect you to die Mr Bond!<br>\n");
- TestFunction("foo");
- } else {
- write("no exception<br>\n");
- TestFunction("foo", "bar");
- }
-}
-%>
-
-and here is some filler text ...
-
-<% page_footer(); %>