Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a stray ")" character in the diff buttons of the "check-in" information page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
82476370d0b1c4cf8785de1f0a86a373 |
| User & Date: | drh 2012-04-28 18:02:59.274 |
Context
|
2012-04-28
| ||
| 18:24 | Remove a surplus space character following the user name in the description of check-ins. ... (check-in: 0ea8ed34a1 user: drh tags: trunk) | |
| 18:02 | Fix a stray ")" character in the diff buttons of the "check-in" information page. ... (check-in: 82476370d0 user: drh tags: trunk) | |
| 17:28 | For the "fossil info" command from without an open check-out, only show the alt-root and access-url information if the --detail or -l options are given. ... (check-in: f1487280a8 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
590 591 592 593 594 595 596 |
if( zParent ){
@ <div class="section">Changes</div>
@ <div class="sectionmenu">
showDiff = g.zPath[0]!='c';
if( db_get_boolean("show-version-diffs", 0)==0 ){
showDiff = !showDiff;
if( showDiff ){
| | | 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 |
if( zParent ){
@ <div class="section">Changes</div>
@ <div class="sectionmenu">
showDiff = g.zPath[0]!='c';
if( db_get_boolean("show-version-diffs", 0)==0 ){
showDiff = !showDiff;
if( showDiff ){
@ %z(xhref("class='button'","%R/vinfo/%T",zName))
@ hide diffs</a>
if( sideBySide ){
@ %z(xhref("class='button'","%R/ci/%T?sbs=0",zName))
@ unified diffs</a>
}else{
@ %z(xhref("class='button'","%R/ci/%T?sbs=1",zName))
@ side-by-side diffs</a>
|
| ︙ | ︙ |