Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More shoplist.tcl enhancements. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2169d31440b1f258a9b179ac7ffd84c5 |
User & Date: | drh 2018-02-01 13:31:29.514 |
Context
2018-02-01
| ||
17:28 | Restructure and comment the shoplist.tcl example to make it easier for people to read and understand. (check-in: 47e58e7d2b user: drh tags: trunk) | |
13:31 | More shoplist.tcl enhancements. (check-in: 2169d31440 user: drh tags: trunk) | |
03:45 | Updates to the documentation. (check-in: c594b95816 user: drh tags: trunk) | |
Changes
Changes to examples/shoplist.tcl.
︙ | ︙ | |||
16 17 18 19 20 21 22 | # # (3) Make this script a CGI on your server. Or run it in some other # way that Wapp supports. # set DBFILE /shoppinglist.db ;# Change to name of the database. proc wapp-default {} { if {[shopping-list-header]} return | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # # (3) Make this script a CGI on your server. Or run it in some other # way that Wapp supports. # set DBFILE /shoppinglist.db ;# Change to name of the database. proc wapp-default {} { if {[shopping-list-header]} return set base [wapp-param SCRIPT_NAME] if {[wapp-param-exists del]} { set id [expr {[wapp-param del]+0}] db eval { INSERT INTO done(id,x) SELECT id, x FROM shoplist WHERE id=$id; DELETE FROM shoplist WHERE id=$id; } } elseif {[wapp-param-exists add]} { |
︙ | ︙ | |||
46 47 48 49 50 51 52 | <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)"> | | < | > | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | <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> } } wapp-trim { <p><a class="button" href="%url($base/list)">Refresh</a> <p><a class="button" href="%url($base/list?logout=1)">Logout</a> } shopping-list-footer } proc shopping-list-header {} { wapp-trim { <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link href="%url([wapp-param SCRIPT_NAME]/style.css)" rel="stylesheet"> <title>Shopping List</title> </head><body> <h1>Shopping List</h1> } sqlite3 db $::DBFILE db timeout 1000 db eval BEGIN if {[wapp-param-exists logout]} { wapp-clear-cookie shopping-list-login set pswd {} } else { set pswd [wapp-param pswd [wapp-param shopping-list-login]] } |
︙ | ︙ | |||
104 105 106 107 108 109 110 | } proc shopping-list-footer {} { db eval COMMIT db close } proc wapp-page-common {} { if {[shopping-list-header]} return | | > > > > > > > > | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | } proc shopping-list-footer {} { db eval COMMIT db close } proc wapp-page-common {} { if {[shopping-list-header]} return set base [wapp-param SCRIPT_NAME] wapp-subst {<p><a class="button" href="%url($base/list)">Go Back</a>} db eval {SELECT x FROM (SELECT DISTINCT x FROM done ORDER BY delid DESC LIMIT 30) ORDER BY x} { wapp-trim { <p>%html($x) <a class="button" href="%url($base/list?add=)%qp($x)">Add</a><br> } } shopping-list-footer } proc wapp-page-env {} { wapp-trim { <html> <h1>CGI Environment</h1> <pre>%html([wapp-debug-env])</pre> } } proc wapp-page-style.css {} { wapp-mimetype text/css wapp-cache-control max-age=3600 wapp-trim { .button { font-size: 80%; text-decoration: none; padding: 2px 6px 2px 6px; border: 1px solid black; border-radius: 8px; background-color: #ddd; } } } wapp-start $argv |