Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a missed class="button" on the info page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5f0899bba6ef6ccfc83cf00b76de54d1 |
| User & Date: | drh 2011-10-19 01:49:27.403 |
Context
|
2011-10-19
| ||
| 18:59 | Fix for ticket [e5999e25eedeb]. Code style fix. ... (check-in: 4a296c0b1c user: jan tags: trunk) | |
| 01:49 | Fix a missed class="button" on the info page. ... (check-in: 5f0899bba6 user: drh tags: trunk) | |
| 01:44 | Increase the version number to 1.20. Improvements to style sheets. ... (check-in: 91db2ccfa2 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
546 547 548 549 550 551 552 |
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 ){
| | | | 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 |
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 ){
@ <a class="button" href="%s(g.zTop)/vinfo/%T(zName)">
@ hide diffs</a>
if( sideBySide ){
@ <a class="button" href="%s(g.zTop)/ci/%T(zName)?sbs=0">
@ unified diffs</a>
}else{
@ <a class="button" href="%s(g.zTop)/ci/%T(zName)?sbs=1">
@ side-by-side diffs</a>
}
|
| ︙ | ︙ |