Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Capitalize "HTML" |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | andygoth-html-caps |
| Files: | files | file ages | folders |
| SHA3-256: |
59d27ab4ae84a8ca998625749c567ec5 |
| User & Date: | andygoth 2020-09-28 01:54:00 |
Context
|
2020-09-28
| ||
| 02:15 | Merge trunk, also change "Svg" to "SVG" check-in: c319f52cf7 user: andygoth tags: andygoth-html-caps | |
| 01:54 | Capitalize "HTML" check-in: 59d27ab4ae user: andygoth tags: andygoth-html-caps | |
| 00:14 | In Pikchr: Add support for macros. Also if the width or height of an object are zero or less, then autofit the corresponding dimension. check-in: 6dd3a5b75f user: drh tags: trunk | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
2404 2405 2406 2407 2408 2409 2410 |
if( db_exists("SELECT 1 FROM mlink WHERE fid=%d", rid) ){
style_submenu_element("Check-ins Using", "%R/timeline?n=200&uf=%s", zUuid);
}
zMime = mimetype_from_name(blob_str(&downloadName));
if( zMime ){
if( fossil_strcmp(zMime, "text/html")==0 ){
if( asText ){
| | | 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 |
if( db_exists("SELECT 1 FROM mlink WHERE fid=%d", rid) ){
style_submenu_element("Check-ins Using", "%R/timeline?n=200&uf=%s", zUuid);
}
zMime = mimetype_from_name(blob_str(&downloadName));
if( zMime ){
if( fossil_strcmp(zMime, "text/html")==0 ){
if( asText ){
style_submenu_element("HTML", "%s", url_render(&url, "txt", 0, 0, 0));
}else{
renderAsHtml = 1;
style_submenu_element("Text", "%s", url_render(&url, "txt", "1", 0, 0));
}
}else if( fossil_strcmp(zMime, "text/x-fossil-wiki")==0
|| fossil_strcmp(zMime, "text/x-markdown")==0 ){
if( asText ){
|
| ︙ | ︙ |