Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a compiler warning in the previous check-in. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
e07b10919bdce2351776d1493cb03e6f |
| User & Date: | drh 2020-05-11 19:24:51.338 |
Context
|
2020-05-11
| ||
| 19:31 | Fix a busted hyperlink in the /file page. ... (check-in: af204596d4 user: drh tags: trunk) | |
| 19:24 | Fix a compiler warning in the previous check-in. ... (check-in: e07b10919b user: drh tags: trunk) | |
| 19:24 | Further enhancements to the file browsing UX. ... (check-in: cd05cb20db user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 |
if( descOnly || P("verbose")!=0 ){
url_add_parameter(&url, "verbose", "1");
objdescFlags |= OBJDESC_DETAIL;
}
zUuid = db_text("?", "SELECT uuid FROM blob WHERE rid=%d", rid);
if( isFile ){
if( zCI==0 || fossil_strcmp(zCI,"tip")==0 ){
zCI = "tip";
@ <h2>Latest version of file \
@ '%z(href("/finfo?name=%T&m=%T",zName,zCI))%h(zName)</a>':</h2>
}else{
const char *zPath;
| > | 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 |
if( descOnly || P("verbose")!=0 ){
url_add_parameter(&url, "verbose", "1");
objdescFlags |= OBJDESC_DETAIL;
}
zUuid = db_text("?", "SELECT uuid FROM blob WHERE rid=%d", rid);
asText = P("txt")!=0;
if( isFile ){
if( zCI==0 || fossil_strcmp(zCI,"tip")==0 ){
zCI = "tip";
@ <h2>Latest version of file \
@ '%z(href("/finfo?name=%T&m=%T",zName,zCI))%h(zName)</a>':</h2>
}else{
const char *zPath;
|
| ︙ | ︙ | |||
2256 2257 2258 2259 2260 2261 2262 |
style_copy_button(1, "hash-ar", 0, 2, "%s", zUuid);
if( g.perm.Setup ){
@ (%d(rid)):</h2>
}else{
@ :</h2>
}
blob_zero(&downloadName);
| < | 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 |
style_copy_button(1, "hash-ar", 0, 2, "%s", zUuid);
if( g.perm.Setup ){
@ (%d(rid)):</h2>
}else{
@ :</h2>
}
blob_zero(&downloadName);
if( asText ) objdescFlags &= ~OBJDESC_BASE;
objType = object_description(rid, objdescFlags,
(isFile?zName:0), &downloadName);
}
if( !descOnly && P("download")!=0 ){
cgi_redirectf("%R/raw/%T?name=%s", blob_str(&downloadName),
db_text("?", "SELECT uuid FROM blob WHERE rid=%d", rid));
|
| ︙ | ︙ |