Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the date markers in file info pages to use the same CSS tags as the timeline. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
53f04b180c9b8142c925227a32006709 |
| User & Date: | drh 2009-08-11 15:14:22.000 |
Context
|
2009-08-12
| ||
| 14:27 | Fix an issue with "clone" on the client side: the client was requesting multiple copies of artifacts for which it held a delta with a phantom source. ... (check-in: 7646ee13e3 user: drh tags: trunk) | |
|
2009-08-11
| ||
| 15:14 | Change the date markers in file info pages to use the same CSS tags as the timeline. ... (check-in: 53f04b180c user: drh tags: trunk) | |
|
2009-08-10
| ||
| 11:12 | Update to the latest version of SQLite. Turn off FTS3 in the SQLite build since it is not currently being used. ... (check-in: 1b0c251575 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
627 628 629 630 631 632 633 |
int frid = db_column_int(&q, 5);
int mid = db_column_int(&q, 6);
int fnid = db_column_int(&q, 7);
char zShort[20];
if( memcmp(zDate, zPrevDate, 10) ){
sprintf(zPrevDate, "%.10s", zDate);
@ <tr><td colspan=3>
| < < < | < < | 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 |
int frid = db_column_int(&q, 5);
int mid = db_column_int(&q, 6);
int fnid = db_column_int(&q, 7);
char zShort[20];
if( memcmp(zDate, zPrevDate, 10) ){
sprintf(zPrevDate, "%.10s", zDate);
@ <tr><td colspan=3>
@ <div class="divider">%s(zPrevDate)</div>
@ </td></tr>
}
@ <tr><td valign="top">%s(&zDate[11])</td>
@ <td width="20"></td>
@ <td valign="top" align="left">
sqlite3_snprintf(sizeof(zShort), zShort, "%.10s", zUuid);
if( g.okHistory ){
|
| ︙ | ︙ |