From: Andrew Tridgell Date: Mon, 30 May 2005 08:23:37 +0000 (+0000) Subject: r7094: use the Form() object in a few more places X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba.git;a=commitdiff_plain;h=1bf7a917b2d2ba2806e018ca385e44557c7dbf56 r7094: use the Form() object in a few more places (This used to be commit 9b8546f92179dba826e7ca5ed009b24486ef7a2c) --- diff --git a/swat/esptest/exception.esp b/swat/esptest/exception.esp index cfd0f312fab..986b616dabc 100644 --- a/swat/esptest/exception.esp +++ b/swat/esptest/exception.esp @@ -2,12 +2,14 @@

Samba4 exception test

-
- - -
<% +var f = Form("ExceptionTest", 0, 2); +f.submit[0] = "Generate Exception"; +f.submit[1] = "No Exception"; + +display_form(f); + if (request['REQUEST_METHOD'] == "POST") { function TestFunction(arg1, arg2) { return "OK"; diff --git a/swat/esptest/formtest.esp b/swat/esptest/formtest.esp index 2d3693355cc..6dd1f911ea5 100644 --- a/swat/esptest/formtest.esp +++ b/swat/esptest/formtest.esp @@ -15,7 +15,7 @@ display_form(f); /* if its a post then the user has filled in the form, so report the values */ - if (form['OK']) { + if (form['submit'] == "OK") { %> You chose firstName=@@form['firstName'] lastName=@@form['lastName']

diff --git a/swat/esptest/session.esp b/swat/esptest/session.esp index ec747df4429..6de7edab674 100644 --- a/swat/esptest/session.esp +++ b/swat/esptest/session.esp @@ -2,17 +2,18 @@

Samba4 session test

-
- Name:
- Value:
- Timeout:
- - - -
-
- <% +var f = Form("SessionTest", 3, 4); +f.element[0].label = "Name"; +f.element[1].label = "Value"; +f.element[2].label = "Timeout"; +f.submit[0] = "Append"; +f.submit[1] = "Reset"; +f.submit[2] = "Destroy"; +f.submit[3] = "Cancel"; + +display_form(f); + /* if its a post then the user has filled in the form, so report the values */