Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a typo in a comment. No changes to code. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d1a823878373c430e161b634597c8e79 |
| User & Date: | drh 2015-07-15 10:33:53.302 |
Context
|
2015-07-15
| ||
| 10:38 | Do not attempt to attach the local database while processing "ckout" in the /doc page if that database is not already open. ... (check-in: b9b9d7e739 user: drh tags: trunk) | |
| 10:33 | Fix a typo in a comment. No changes to code. ... (check-in: d1a8238783 user: drh tags: trunk) | |
| 10:31 | Fix the /doc page so that it correctly handles an empty document name in the same way that it handles a NULL document name. ... (check-in: c99b4e34dd user: drh tags: trunk) | |
Changes
Changes to src/doc.c.
| ︙ | ︙ | |||
521 522 523 524 525 526 527 | ** The "ckout" CHECKIN is intended for development - to provide a mechanism ** for looking at what a file will look like using the /doc webpage after ** it gets checked in. ** ** The file extension is used to decide how to render the file. ** ** If FILE ends in "/" then names "FILE/index.html", "FILE/index.wiki", | | | 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 |
** The "ckout" CHECKIN is intended for development - to provide a mechanism
** for looking at what a file will look like using the /doc webpage after
** it gets checked in.
**
** The file extension is used to decide how to render the file.
**
** If FILE ends in "/" then names "FILE/index.html", "FILE/index.wiki",
** and "FILE/index.md" are tried in that order. If none of those are found,
** then FILE is completely replaced by "404.md" and tried. If that is
** not found, then a default 404 screen is generated.
*/
void doc_page(void){
const char *zName; /* Argument to the /doc page */
const char *zOrigName = "?"; /* Original document name */
const char *zMime; /* Document MIME type */
|
| ︙ | ︙ |