Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Wrap oversize text/plain wiki and tickets and technotes and forum messages. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | forum-v2 |
| Files: | files | file ages | folders |
| SHA3-256: |
fa8ef25777721236b40060a740316d6b |
| User & Date: | drh 2018-07-31 13:08:04.175 |
Context
|
2018-07-31
| ||
| 14:22 | Add the backoffice-nodelay setting as a temporary measure to aid in debugging the unseemly delays currently being experienced in the UI. ... (check-in: 0efaa98247 user: drh tags: forum-v2) | |
| 13:08 | Wrap oversize text/plain wiki and tickets and technotes and forum messages. ... (check-in: fa8ef25777 user: drh tags: forum-v2) | |
| 10:30 | Fix a minor problem with the user capability summary display. ... (check-in: 2cce85f421 user: drh tags: forum-v2) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
word-wrap: break-word;
}
pre.th1error {
white-space: pre-wrap;
word-wrap: break-word;
color: red;
}
.statistics-report-graph-line {
background-color: #446979;
}
.statistics-report-table-events th {
padding: 0 1em 0 1em;
}
.statistics-report-table-events td {
| > > > > | 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 |
word-wrap: break-word;
}
pre.th1error {
white-space: pre-wrap;
word-wrap: break-word;
color: red;
}
pre.textPlain {
white-space: pre-wrap;
word-wrap: break-word;
}
.statistics-report-graph-line {
background-color: #446979;
}
.statistics-report-table-events th {
padding: 0 1em 0 1em;
}
.statistics-report-table-events td {
|
| ︙ | ︙ |
Changes to src/wiki.c.
| ︙ | ︙ | |||
165 166 167 168 169 170 171 |
wiki_convert(pWiki, 0, 0);
}else if( fossil_strcmp(zMimetype, "text/x-markdown")==0 ){
Blob tail = BLOB_INITIALIZER;
markdown_to_html(pWiki, 0, &tail);
@ %s(blob_str(&tail))
blob_reset(&tail);
}else{
| | | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
wiki_convert(pWiki, 0, 0);
}else if( fossil_strcmp(zMimetype, "text/x-markdown")==0 ){
Blob tail = BLOB_INITIALIZER;
markdown_to_html(pWiki, 0, &tail);
@ %s(blob_str(&tail))
blob_reset(&tail);
}else{
@ <pre class='textPlain'>
@ %h(blob_str(pWiki))
@ </pre>
}
}
/*
** WEBPAGE: md_rules
|
| ︙ | ︙ |