213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
+
|
* tclMakeSafe
* tclReady
* trace
* unversioned content
* unversioned list
* utime
* verifyCsrf
* verifyLogin
* wiki
Each of the commands above is documented by a block comment above their
implementation in the th\_main.c or th\_tcl.c source files.
All commands starting with "tcl", with the exception of "tclReady",
require the Tcl integration subsystem be included at compile-time.
|
731
732
733
734
735
736
737
738
739
740
741
742
743
744
|
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
|
+
+
+
+
+
+
+
+
|
* verifyCsrf
Before using the results of a form, first call this command to verify
that this Anti-CSRF token is present and is valid. If the Anti-CSRF token
is missing or is incorrect, that indicates a cross-site scripting attack.
If the event of an attack is detected, an error message is generated and
all further processing is aborted.
<a name="verifyLogin"></a>TH1 verifyLogin Command
-------------------------------------------------
* verifyLogin
Returns non-zero if the specified user name and password represent a
valid login for the repository.
<a name="wiki"></a>TH1 wiki Command
-----------------------------------
* wiki STRING
Renders STRING as wiki content.
|