Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Update and improve comments. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | ckol-th1-dir-cmd |
| Files: | files | file ages | folders |
| SHA1: |
676d97d70cdcf833e9364076aa0bc7df |
| User & Date: | mistachkin 2015-08-21 04:33:13.606 |
Context
|
2015-08-21
| ||
| 04:33 | Merge updates from trunk. Closed-Leaf check-in: bf380d4b5b user: mistachkin tags: ckol-th1-dir-cmd | |
| 04:33 | Update and improve comments. check-in: 676d97d70c user: mistachkin tags: ckol-th1-dir-cmd | |
|
2015-08-18
| ||
| 07:53 | Also correct syntax error message. check-in: eb3796a81d user: mistachkin tags: ckol-th1-dir-cmd | |
Changes
Changes to src/doc.c.
| ︙ | ︙ | |||
520 521 522 523 524 525 526 | ** ** 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. ** | | | > > | | | 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 |
**
** 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 the names "FILE/index.html", "FILE/index.wiki",
** and "FILE/index.md" are tried in that order. If the binary was compiled
** with TH1 embedded documentation support and the "th1-docs" setting is
** enabled, the name "FILE/index.th1" is also tried. 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 */
char *zCheckin = "tip"; /* The check-in holding the document */
int vid = 0; /* Artifact of check-in */
|
| ︙ | ︙ |