Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Close A and LI tags when displaying new and deleted files in timeline. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8d703ff956578cbec534e9406c1791e5 |
User & Date: | dmitry 2011-09-06 13:23:02.143 |
References
2011-09-07
| ||
14:28 | • New ticket [032c86d6] A rename disallows further merges. ... (artifact: ebff7ebf user: viriketo) | |
Context
2011-09-08
| ||
13:02 | Merge fixes and refactoring from symlinks branch. ... (check-in: c05f6afa user: dmitry tags: trunk) | |
11:52 | Merge latest trunk into symlinks branch. ... (check-in: 981e5c62 user: dmitry tags: symlinks) | |
2011-09-07
| ||
08:12 | Make it easier to use Events as quick notes: Display the title just above the text on Event pages. If there's no title in the wiki text, use the comment as a title. ... (Closed-Leaf check-in: 27a4518e user: ben tags: ben-minorchanges) | |
2011-09-06
| ||
20:12 | catch up with trunk. Remove C++ style comments from http_ssl.c. ... (check-in: 0f1c41bc user: martin.weber tags: msw-hack) | |
13:23 | Close A and LI tags when displaying new and deleted files in timeline. ... (check-in: 8d703ff9 user: dmitry tags: trunk) | |
2011-09-04
| ||
01:28 | Update the built-in SQLite to the latest 3.7.8-alpha version that contains the improved merge-sort logic. ... (check-in: 0cf54160 user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
︙ | ︙ | |||
422 423 424 425 426 427 428 | const char *zNew = db_column_text(&fchngQuery, 3); if( !inUl ){ @ <ul class="filelist"> inUl = 1; } if( isNew ){ @ <li> %h(zFilename) (new file) | | > | > | 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | const char *zNew = db_column_text(&fchngQuery, 3); if( !inUl ){ @ <ul class="filelist"> inUl = 1; } if( isNew ){ @ <li> %h(zFilename) (new file) @ <a href="%s(g.zTop)/artifact/%S(zNew)" @ target="diffwindow">[view]</a></li> }else if( isDel ){ @ <li> %h(zFilename) (deleted)</li> }else if( fossil_strcmp(zOld,zNew)==0 && zOldName!=0 ){ @ <li> %h(zOldName) → %h(zFilename) @ <a href="%s(g.zTop)/artifact/%S(zNew)" @ target="diffwindow">[view]</a></li> }else{ if( zOldName!=0 ){ @ <li> %h(zOldName) → %h(zFilename) }else{ @ <li> %h(zFilename) } @ <a href="%s(g.zTop)/fdiff?v1=%S(zOld)&v2=%S(zNew)" |
︙ | ︙ |