Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the download links on the /info page |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
dbc702cdc19329ef4c96710007e3dd4c |
| User & Date: | drh 2017-12-12 10:43:14.156 |
Context
|
2017-12-12
| ||
| 17:14 | Default CSS adjustment: Extra space to the left of .timelineModernDetail to prevent it from colliding with the check-in comment. ... (check-in: a53ce0407a user: drh tags: trunk) | |
| 10:43 | Fix the download links on the /info page ... (check-in: dbc702cdc1 user: drh tags: trunk) | |
| 00:01 | Fix the default CSS for the timelineDetailCell column in the Columnar View. ... (check-in: 92bcce3325 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
711 712 713 714 715 716 717 |
blob_trim(&projName);
zPJ = blob_str(&projName);
for(jj=0; zPJ[jj]; jj++){
if( (zPJ[jj]>0 && zPJ[jj]<' ') || strchr("\"*/:<>?\\|", zPJ[jj]) ){
zPJ[jj] = '_';
}
}
| | | | | 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 |
blob_trim(&projName);
zPJ = blob_str(&projName);
for(jj=0; zPJ[jj]; jj++){
if( (zPJ[jj]>0 && zPJ[jj]<' ') || strchr("\"*/:<>?\\|", zPJ[jj]) ){
zPJ[jj] = '_';
}
}
zUrl = mprintf("%R/tarball/%t-%S.tar.gz?r=%s", zPJ, zUuid, zUuid);
@ <tr><th>Downloads:</th><td>
@ %z(href("%s",zUrl))Tarball</a>
@ | %z(href("%R/zip/%t-%S.zip?r=%!S",zPJ,zUuid,zUuid))ZIP archive</a>
@ | %z(href("%R/sqlar/%t-%S.sqlar?r=%!S",zPJ,zUuid,zUuid))\
@ SQL archive</a></td></tr>
fossil_free(zUrl);
blob_reset(&projName);
}
@ <tr><th>Timelines:</th><td>
@ %z(href("%R/timeline?f=%!S&unhide",zUuid))family</a>
|
| ︙ | ︙ |