Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the shoplist.tcl app. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0b681c21b45977d5f1862079b2196016 |
User & Date: | drh 2018-01-31 22:25:33.476 |
Context
2018-02-01
| ||
03:11 | Safety enhancements: (A) Invoke the application with the --lint option to do a self-check for unsafe constructs. (B) Bring back the wapp-unsafe command for the rare cases where it is actually needed. (C) Comment out wapp.tcl comment lines when building the wapptclsh application. (check-in: 15fbf713e6 user: drh tags: trunk) | |
2018-01-31
| ||
22:25 | Fix typo in the shoplist.tcl app. (check-in: 0b681c21b4 user: drh tags: trunk) | |
22:15 | Updated shopping list app (check-in: 8526aa6f10 user: drh tags: trunk) | |
Changes
Changes to examples/shoplist.tcl.
︙ | ︙ | |||
45 46 47 48 49 50 51 | wapp-trim { <p>%html($x) <a class="button" href="%url($base/list?del=$id)">Got It!</a> } } if {$cnt} {wapp-subst {<hr>\n}} wapp-trim { | | | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | wapp-trim { <p>%html($x) <a class="button" href="%url($base/list?del=$id)">Got It!</a> } } if {$cnt} {wapp-subst {<hr>\n}} wapp-trim { <p><form method="GET" action="%url($base/list)"> <input type="text" width="20" name="add"> <input class="button" type="submit" value="Add"></form> <p><a class="button" href="%url($base/common)">Common Purchases</a> } db eval {SELECT delid FROM done ORDER BY delid DESC limit 1} { wapp-trim { <p><a class="button" href="%url($base/list?undel=$delid)">Undelete</a> |
︙ | ︙ |