From 143d3f1d90b1d8e35f03e03aa7d39c4090fe0296 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 12 Apr 2010 12:49:19 +0200 Subject: Remove unused swat2 code metze --- swat2/esptest/exception.esp | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 swat2/esptest/exception.esp (limited to 'swat2/esptest/exception.esp') 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"); -%> - -

Samba4 exception test

- - -<% -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!
\n"); - TestFunction("foo"); - } else { - write("no exception
\n"); - TestFunction("foo", "bar"); - } -} -%> - -and here is some filler text ... - -<% page_footer(); %> -- cgit