Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added diff toggles to the /vinfo page, per forum feedback. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ddb2124a348a70bc20dab9458f440f2b |
| User & Date: | stephan 2021-03-04 03:53:56.393 |
Context
|
2021-03-04
| ||
| 11:18 | Removed the reduced opacity from the 'active' menu item in darkmode skin. It just looks a bit odd. ... (check-in: a0f30a58e7 user: stephan tags: trunk) | |
| 03:53 | Added diff toggles to the /vinfo page, per forum feedback. ... (check-in: ddb2124a34 user: stephan tags: trunk) | |
| 02:28 | Mention the relaxation of the img-src rule in the default CSP. ... (check-in: 25667a5e73 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 |
pFileFrom = manifest_file_next(pFrom, 0);
pFileTo = manifest_file_next(pTo, 0);
}
}
manifest_destroy(pFrom);
manifest_destroy(pTo);
append_diff_javascript(diffType==2);
style_finish_page();
}
#if INTERFACE
/*
** Possible return values from object_description()
*/
| > | 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 |
pFileFrom = manifest_file_next(pFrom, 0);
pFileTo = manifest_file_next(pTo, 0);
}
}
manifest_destroy(pFrom);
manifest_destroy(pTo);
append_diff_javascript(diffType==2);
builtin_fossil_js_bundle_or("info-diff",NULL);
style_finish_page();
}
#if INTERFACE
/*
** Possible return values from object_description()
*/
|
| ︙ | ︙ |