From b8d540f9508030a7220e865c0a0b66af50946fc2 Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Wed, 22 Apr 2015 20:44:08 +0200 Subject: [PATCH] Deprecate support for calling native python callbacks. --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ff53ec7..dec814e 100644 --- a/README.md +++ b/README.md @@ -9,21 +9,22 @@ as frontends to scripts. ScriptForm takes a JSON file which contains form definitions. It then constructs web forms from this JSON and serves these to users. The user can select a form and fill it out. When the user submits the form, it is validated -and the associated script or Python callback is called. Data entered in the -form is passed to the script through the environment. +and the associated script is called. Data entered in the form is passed to the +script through the environment. ### Features - Very rapidly construct forms with backends. - Completely standalone HTTP server; only requires Python. -- Callbacks to any kind of script / program or to Python functions. +- Callbacks to any kind of script / program that supports environment + variables. - User authentication support through Basic HTAuth. - Validates form values before calling scripts. - Uploaded files are automatically saved to temporary files, which are passed on to the callback. - Multiple forms in a single JSON definition file. -- Handles script / exception errors, HTML output or lets scripts and Python - callbacks stream their own HTTP response to the browser. +- Handles script / exception errors, HTML output or lets scripts callbacks + stream their own HTTP response to the browser. ### Use-cases