Index: openacs-4/packages/acs-templating/www/doc/guide/form-widgets.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/guide/form-widgets.html,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-templating/www/doc/guide/form-widgets.html 29 Jul 2008 19:22:24 -0000 1.3 +++ openacs-4/packages/acs-templating/www/doc/guide/form-widgets.html 7 Aug 2017 23:48:03 -0000 1.4 @@ -9,17 +9,17 @@ User Guide

- Form widgets are implemented as tcl procs that output the - html to generate the form element. The tcl proc must be in + Form widgets are implemented as Tcl procs that output the + html to generate the form element. The Tcl proc must be in the template::widget namespace. So the proc for the search widget is called template::widget::search. The code that generates the built in widgets is in packages/acs-templating/tcl/widget-procs.tcl.

If the data from the form widget needs to be formatted or - processed a tcl proc is created in the + processed a Tcl proc is created in the template::data::transform namespace. For example, templatete::data::transform::search. This takes the input from the user and processes it - to be returned to the tcl code handling the form. + to be returned to the Tcl code handling the form.