Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Tweaks to the documentation on the /ci page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
1a857fe1fff49a828ee2424d47d4f567 |
| User & Date: | drh 2019-01-01 19:39:41.239 |
Context
|
2019-01-01
| ||
| 19:45 | On the /timeline page with the r= or t= query parameters, change the header to report that it is showing only check-ins, since that is all it will show regardless. ... (check-in: 31edaabf2b user: drh tags: trunk) | |
| 19:39 | Tweaks to the documentation on the /ci page. ... (check-in: 1a857fe1ff user: drh tags: trunk) | |
| 03:03 | FreeBSD wants the same isspace() treatment from [ae62c08cbe] ... (check-in: d3833209db user: bch tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
623 624 625 626 627 628 629 | db_finalize(&q); style_footer(); } /* ** WEBPAGE: vinfo ** WEBPAGE: ci | | | | | | | | < | 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 |
db_finalize(&q);
style_footer();
}
/*
** WEBPAGE: vinfo
** WEBPAGE: ci
** URL: /ci/ARTIFACTID
** OR: /ci?name=ARTIFACTID
**
** Display information about a particular check-in. The exact
** same information is shown on the /info page if the name query
** parameter to /info describes a check-in.
**
** The ARTIFACTID can be a unique prefix for the HASH of the check-in,
** or a tag or branch name that identifies the check-in.
*/
void ci_page(void){
Stmt q1, q2, q3;
int rid;
int isLeaf;
int diffType; /* 0: no diff, 1: unified, 2: side-by-side */
u64 diffFlags; /* Flag parameter for text_diff() */
|
| ︙ | ︙ |