Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Always include the txt option when adding the ln= parameter because lines on rendered content doesn't work. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
1992856655fd427d5a2df4bc8cc0143a |
| User & Date: | andybradford 2015-03-14 17:24:25.377 |
Context
|
2015-03-16
| ||
| 14:36 | Fixed timeline antialiasing to maintain color regardless of background color. ... (check-in: c6638b79c7 user: Isius tags: timelineAntialiasing) | |
|
2015-03-15
| ||
| 03:43 | Update the 'eagle' skin to use the 'menulink' procedure. ... (check-in: 6440c7f91d user: mistachkin tags: trunk) | |
|
2015-03-14
| ||
| 17:24 | Always include the txt option when adding the ln= parameter because lines on rendered content doesn't work. ... (check-in: 1992856655 user: andybradford tags: trunk) | |
| 15:21 | Improved management of resource names so that it is not necessary to press "Reload" after changing skins either in the admin screens or using the --skin command-line option. ... (check-in: 39f084cf2c user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1878 1879 1880 1881 1882 1883 1884 |
style_submenu_element("Parsed", "Parsed", "%R/info/%s", zUuid);
}
if( descOnly ){
style_submenu_element("Content", "Content", "%R/artifact/%s", zUuid);
}else{
style_submenu_element("Line Numbers", "Line Numbers",
"%R/info/%s%s",zUuid,
| | | 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 |
style_submenu_element("Parsed", "Parsed", "%R/info/%s", zUuid);
}
if( descOnly ){
style_submenu_element("Content", "Content", "%R/artifact/%s", zUuid);
}else{
style_submenu_element("Line Numbers", "Line Numbers",
"%R/info/%s%s",zUuid,
((zLn&&*zLn) ? "" : "?txt=1&ln=0"));
@ <hr />
content_get(rid, &content);
if( renderAsWiki ){
wiki_render_by_mimetype(&content, zMime);
}else if( renderAsHtml ){
@ <iframe src="%R/raw/%T(blob_str(&downloadName))?name=%s(zUuid)"
@ width="100%%" frameborder="0" marginwidth="0" marginheight="0"
|
| ︙ | ︙ |