Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the README.md file. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
05cf577f9f9551ecdd2eb80fdd418863 |
User & Date: | drh 2018-01-28 20:54:11.411 |
Context
2018-01-28
| ||
22:58 | Add the "env.tcl" demonstration and prototyping script. (check-in: 441f956cf2 user: drh tags: trunk) | |
20:54 | Updates to the README.md file. (check-in: 05cf577f9f user: drh tags: trunk) | |
20:04 | Add the wapp-trim command. (check-in: ba9c27b26a user: drh tags: trunk) | |
Changes
Changes to README.md.
︙ | ︙ | |||
12 13 14 15 16 17 18 | 2. As a stand-alone web server 3. As a CGI script 4. As an SCGI program | | | | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 2. As a stand-alone web server 3. As a CGI script 4. As an SCGI program All four methods use the same application code and present the same interface to the application user. An application can be developed on the desktop using stand-alone mode (1), then deployed as a stand-alone server (2), or a CGI script (3), or as an SCGI program (4). 2.0 Hello World! ---------------- Wapp is designed to be easy to use. A hello-world program is as follows: > package require wapp ;# OR just "source wapp.tcl" proc wapp-default {req} { wapp-subst {<h1>Hello, World!</h1>\n} } wapp-start $::argv The application defines one or more procedures that accept HTTP requests and generate appropriate replies. |
︙ | ︙ | |||
272 273 274 275 276 277 278 | "%unsafe(...)") so that the result is safe for inclusion within the body of an HTML document, a URL, a query parameter, or a javascript string literal, respectively. + **wapp-trim** _TEXT_ Just like wapp-subst, this routine appends _TEXT_ to the web page under construction, using the %html, %url, %qp, %string, and %unsafe | | | | | > > > > > > > | 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | "%unsafe(...)") so that the result is safe for inclusion within the body of an HTML document, a URL, a query parameter, or a javascript string literal, respectively. + **wapp-trim** _TEXT_ Just like wapp-subst, this routine appends _TEXT_ to the web page under construction, using the %html, %url, %qp, %string, and %unsafe substitutions. The difference is that this routine also removes surplus whitespace from the left margin, so that if the _TEXT_ argument is intended in the source script, it will appear at the left margin in the generated output. + **wapp-param** _NAME_ _DEFAULT_ Return the value of the query parameter or environment variable _NAME_, or return _DEFAULT_ if there is no such query parameter or environment variable. If _DEFAULT_ is omitted, then it is an empty string. The same information can be obtained directly from the $::wapp dict. This command is merely a convenient shortcut. + **wapp-mimetype** _MIMETYPE_ Set the MIME-type for the generated web page. The default is "text/html". + **wapp-reply-code** _CODE_ Set the reply-code for the HTTP request. The default is "200 Ok". |
︙ | ︙ |