Index: openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl,v diff -u -r1.36.2.27 -r1.36.2.28 --- openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl 27 May 2016 22:29:54 -0000 1.36.2.27 +++ openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl 3 Jun 2016 06:06:17 -0000 1.36.2.28 @@ -348,7 +348,7 @@
time
Pluggable filter, installed by default, that makes sure the array validates as a time in am/pm format. That is that it has two fields: time and ampm that have - valid values. Use this filter with :array to do automoatic time filtering. To use it, set up + valid values. Use this filter with :array to do automatic time filtering. To use it, set up in you HTML form using [ec_timeentrywidget varname] or equivalent. Then on the processing page specify the filter using varname:array,time. If the time validates, there will be a variable set in your environment varname with five keys: time, ampm, @@ -357,8 +357,8 @@
time24
Pluggable filter, installed by default, that makes sure the array validates as a time in 24hr format. That is that it has one field: time that has valid values. Use this - filter with :array to do automoatic time filtering. To use it, set up in you HTML form using - <input type=text name=varname.time>. Then on the processing page specify the filter using + filter with :array to do automatic time filtering. To use it, set up in you HTML form using + <input type="text" name="varname".time>. Then on the processing page specify the filter using varname:array,time24. If the time validates, there will be a variable set in your environment varname with four keys: time, hours, minutes, and seconds. @@ -386,7 +386,7 @@
allhtml
Pluggable filter, installed by default, that allows any and all html. Use of this filter - is not reccomended, except for cases when the HTML will not be presented to the user or there is some + is not recommended, except for cases when the HTML will not be presented to the user or there is some other reason for overriding the site-wide control over naughty html.
tmpfile @@ -396,19 +396,19 @@
Pluggable filter, installed by default, that makes sure the value is a valid SQL identifier.
path -
Pluggable filter, installed by default, that makes sure hat argument contains only Tcl word - characters or a few addional safe characters used in paths ("/", ".", "-") +
Pluggable filter, installed by default, that makes sure that argument contains only Tcl word + characters or a few additional safe characters used in paths ("/", ".", "-")
token -
Pluggable filter, installed by default, that makes sure hat argument contains only Tcl word - characters or a few addional safe characters (",", ":", "-"). +
Pluggable filter, installed by default, that makes sure that argument contains only Tcl word + characters or a few additional safe characters (",", ":", "-").
word -
Pluggable filter, installed by default, that makes sure hat argument contains only Tcl word - characters (as defined by \w in Tcl regular expressions, i.e. characers, digits and underscore). +
Pluggable filter, installed by default, that makes sure that argument contains only Tcl word + characters (as defined by \w in Tcl regular expressions, i.e. characters, digits and underscore).
localurl -
Pluggable filter, installed by default, that makes sure hat argument contains a +
Pluggable filter, installed by default, that makes sure that argument contains a non-external url, which can be used in ad_returnredirect without throwing an error. @@ -422,7 +422,7 @@ Note that there can be no spaces between name, colon, flags, commas, etc. The first space encountered denotes the beginning of the default value. Also, variable names can't contain - commas, colons or anything Tcl accepts as list element seperators + commas, colons or anything Tcl accepts as list element separators (space, tab, newline, possibly others) If more than one value is specified for something that's not a multiple, a complaint will be thrown ("you supplied more than one value for foo").