Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a typo on the Ticket Change Details page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
eb82a238279f9450b793c6bbf8758c1f |
| User & Date: | drh 2012-08-29 10:44:43.888 |
Context
|
2012-08-29
| ||
| 19:41 | Allow UTF-8 characters in sources. translate.exe will translate it to ASCII ... (check-in: 208d67675c user: jan.nijtmans tags: trunk) | |
| 11:27 | fix for [01a2f3a346] ... (check-in: 0357ed556e user: jan.nijtmans tags: msvc-broken) | |
| 10:44 | Fix a typo on the Ticket Change Details page. ... (check-in: eb82a23827 user: drh tags: trunk) | |
|
2012-08-28
| ||
| 17:39 | Fixes to hyperlink generation for embedded documentation. ... (check-in: ed6adcaf3b user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1538 1539 1540 1541 1542 1543 1544 |
}
style_header("Ticket Change Details");
zDate = db_text(0, "SELECT datetime(%.12f)", pTktChng->rDate);
memcpy(zTktName, pTktChng->zTicketUuid, 10);
zTktName[10] = 0;
if( g.perm.Hyperlink ){
@ <h2>Changes to ticket
| | | 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 |
}
style_header("Ticket Change Details");
zDate = db_text(0, "SELECT datetime(%.12f)", pTktChng->rDate);
memcpy(zTktName, pTktChng->zTicketUuid, 10);
zTktName[10] = 0;
if( g.perm.Hyperlink ){
@ <h2>Changes to ticket
@ %z(href("%R/tktview/%s",pTktChng->zTicketUuid))%s(zTktName)</a></h2>
@
@ <p>By %h(pTktChng->zUser) on %s(zDate). See also:
@ %z(href("%R/artifact/%T",zUuid))artifact content</a>, and
@ %z(href("%R/tkthistory/%s",pTktChng->zTicketUuid))ticket history</a></p>
}else{
@ <h2>Changes to ticket %s(zTktName)</h2>
@
|
| ︙ | ︙ |