Wapp

Check-in [4cc307273e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Correction to the documentation of the "wapp" command.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4cc307273eaadd42aea812915cf527ce12b9a94782bdbc162b89da50bd686f16
User & Date: drh 2022-09-30 12:28:22.788
Context
2022-09-30
12:29
Update the built-in SQLite to the latest 3.40.0 alpha version that includes all of the fixes of version 3.39.4. (check-in: be1f948a5c user: drh tags: trunk)
12:28
Correction to the documentation of the "wapp" command. (check-in: 4cc307273e user: drh tags: trunk)
2022-08-23
12:50
Update the built-in SQLite to the latest 3.40.0 alpha version. (check-in: f44b8326fc user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to docs/commands.md.
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
     }</pre><blockquote>

  +  <a name="debug-env"></a>**wapp-debug-env**  
     This routine returns text that describes all of the Wapp parameters.
     Use it to get a parameter dump for troubleshooting purposes.

  +  **wapp** _TEXT_  
     Add _TEXT_ to the web page output currently under construction.  _TEXT_
     must not contain any TCL variable or command substitutions.  This command
     is rarely used.

  +  **wapp-unsafe** _TEXT_  
     Add _TEXT_ to the web page under construction even though _TEXT_ does
     contain TCL variable and command substitutions.  The application developer
     must ensure that the variable and command substitutions does not allow
     XSS attacks.  Avoid using this command.  The use of "wapp-subst" is 
     preferred in most situations.







|
|
|







138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
     }</pre><blockquote>

  +  <a name="debug-env"></a>**wapp-debug-env**  
     This routine returns text that describes all of the Wapp parameters.
     Use it to get a parameter dump for troubleshooting purposes.

  +  **wapp** _TEXT_  
     Add _TEXT_ to the web page output currently under construction.  No
     interpretation or transformation of  _TEXT_ is performed.  The _TEXT_
     is appended to the output as-is.

  +  **wapp-unsafe** _TEXT_  
     Add _TEXT_ to the web page under construction even though _TEXT_ does
     contain TCL variable and command substitutions.  The application developer
     must ensure that the variable and command substitutions does not allow
     XSS attacks.  Avoid using this command.  The use of "wapp-subst" is 
     preferred in most situations.