Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | For new subscribers, default all alert options to "on". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9c38803597cb5ac3812a4a4d1fa37389 |
User & Date: | drh 2018-07-12 15:19:20.269 |
Context
2018-07-12
| ||
17:08 | Fix typo in makemake.tcl. ... (check-in: e817f1b0 user: tsbg tags: trunk) | |
15:19 | For new subscribers, default all alert options to "on". ... (check-in: 9c388035 user: drh tags: trunk) | |
14:55 | Add "Download", "Test", and "Truncate" submenu buttons on the /errorlog page. Show a confirmation page prior to truncating the error log. Improvements to the /test-warning page, including a link back to /errorlog through the submenu. ... (check-in: c931dd7b user: drh tags: trunk) | |
Changes
Changes to src/email.c.
︙ | ︙ | |||
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 | } email_sender_free(pSender); style_footer(); } return; } style_header("Signup For Email Alerts"); @ <p>To receive email notifications for changes to this @ repository, fill out the form below and press "Submit" button.</p> form_begin(0, "%R/subscribe"); @ <table class="subscribe"> @ <tr> @ <td class="form_label">Email Address:</td> @ <td><input type="text" name="e" value="%h(PD("e",""))" size="30"></td> | > > > > > > > > > | 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 | } email_sender_free(pSender); style_footer(); } return; } style_header("Signup For Email Alerts"); if( P("submit")==0 ){ /* If this is the first visit to this page (if this HTTP request did not ** come from a prior Submit of the form) then default all of the ** subscription options to "on" */ cgi_set_parameter_nocopy("sa","1",1); cgi_set_parameter_nocopy("sc","1",1); cgi_set_parameter_nocopy("st","1",1); cgi_set_parameter_nocopy("sw","1",1); } @ <p>To receive email notifications for changes to this @ repository, fill out the form below and press "Submit" button.</p> form_begin(0, "%R/subscribe"); @ <table class="subscribe"> @ <tr> @ <td class="form_label">Email Address:</td> @ <td><input type="text" name="e" value="%h(PD("e",""))" size="30"></td> |
︙ | ︙ |