Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Restore use of short string identifiers in titles on the check-in info page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c1d20c33cf8d6b8706fbd5f24eeaf098 |
| User & Date: | mistachkin 2014-10-21 03:19:24.350 |
Context
|
2014-10-21
| ||
| 03:23 | Fix build break when the TH1 docs feature is enabled. ... (check-in: 6d4e5d801e user: mistachkin tags: trunk) | |
| 03:19 | Restore use of short string identifiers in titles on the check-in info page. ... (check-in: c1d20c33cf user: mistachkin tags: trunk) | |
| 03:05 | Fix compiler warning and clarify use of local variables. ... (check-in: e7518b44eb user: mistachkin tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
539 540 541 542 543 544 545 |
const char *zUuid = db_column_text(&q1, 0);
char *zEUser, *zEComment;
const char *zUser;
const char *zComment;
const char *zDate;
const char *zOrigDate;
| | | 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 |
const char *zUuid = db_column_text(&q1, 0);
char *zEUser, *zEComment;
const char *zUser;
const char *zComment;
const char *zDate;
const char *zOrigDate;
style_header("Check-in [%S]", zUuid);
login_anonymous_available();
zEUser = db_text(0,
"SELECT value FROM tagxref"
" WHERE tagid=%d AND rid=%d AND tagtype>0",
TAG_USER, rid);
zEComment = db_text(0,
"SELECT value FROM tagxref WHERE tagid=%d AND rid=%d",
|
| ︙ | ︙ |