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.1 -r1.36.2.2
--- openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl 18 Aug 2015 09:01:59 -0000 1.36.2.1
+++ openacs-4/packages/acs-tcl/tcl/tcl-documentation-procs.tcl 18 Aug 2015 09:18:47 -0000 1.36.2.2
@@ -340,7 +340,7 @@
date
Pluggable filter, installed by default, that makes sure the array validates as a date.
Use this filter with :array to do automatic date filtering. To use it, set up in your HTML form
- a call to \[ad_dateentrywidget varname\]. Then on the receiving page, specify the filter using
+ a call to [ad_dateentrywidget varname]. Then on the receiving page, specify the filter using
varname:array,date
. If the date validates, there will be a variable set in your
environment varname
with four keys: day, month, year,
and date
.
You can safely pass $varname(date)
to Oracle.
@@ -349,7 +349,7 @@
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
- in you HTML form using \[ec_timeentrywidget varname\] or equivalent. Then on the processing page
+ 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,
hours, minutes,
and seconds
.
@@ -373,7 +373,7 @@
range
Pluggable filter, installed by default, that makes sure the value X is in range
- \[Y, Z\]. To use it say something like: foo:(1|100)
+ [Y, Z]. To use it say something like: foo:(1|100)
nohtml
Pluggable filter, installed by default, that disallows any and all html.
@@ -395,6 +395,18 @@
sql_identifier
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 ("/", ".", "-")
+
+ token
+ Pluggable filter, installed by default, that makes sure hat argument contains only Tcl word
+ characters or a few addional 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).
+
more filters...