Index: openacs-4/packages/acs-templating/tcl/form-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/form-procs.tcl,v diff -u -N -r1.6 -r1.7 --- openacs-4/packages/acs-templating/tcl/form-procs.tcl 1 Sep 2002 19:09:28 -0000 1.6 +++ openacs-4/packages/acs-templating/tcl/form-procs.tcl 24 Sep 2002 09:06:04 -0000 1.7 @@ -12,8 +12,31 @@ # Commands for managing dynamic templated forms. -ad_proc -public template::form { command args } { +ad_proc -public form {command args} { + form is really template::form although when in + the "template" namespace you may omit the + template:: + @see template::form +} - + +ad_proc -public template::form { command args } { + template::form command invokes form functions. + Please see the individual functions for + their arguments. + + @see template::form::create + @see template::form::exists + @see template::form::export + @see template::form::get_combined_values + @see template::form::get_values + @see template::form::is_request + @see template::form::is_submission + @see template::form::is_valid + @see template::form::section + @see template::form::set_values + @see template::form::size +} { eval template::form::$command $args }