Differences From Artifact [ba282fa51b]:
- File src/printf.c — part of check-in [cf9b44a966] at 2018-10-20 15:00:16 on branch trunk — Fixed an off-by-one error in the error log header printer, resulting in the day number being for the next day past the call time. Bug diagnosis and fix from https://fossil-scm.org/forum/forumpost/0d5933da4c (user: wyoung size: 37832) [more...]
To Artifact [c79a94be03]:
- File src/printf.c — part of check-in [8af02551c5] at 2019-01-16 01:01:01 on branch trunk — Add an option to preserve newlines as hard line breaks on the www timeline display. (user: drh size: 37926) [more...]
| ︙ | |||
226 227 228 229 230 231 232 233 234 235 236 237 238 239 | 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | + + + |
if( altForm2 || db_get_boolean("timeline-block-markup", 0) ){
wikiFlags = WIKI_INLINE | WIKI_NOBADLINKS;
}else{
wikiFlags = WIKI_INLINE | WIKI_NOBLOCK | WIKI_NOBADLINKS;
}
if( db_get_boolean("timeline-plaintext", 0) ){
wikiFlags |= WIKI_LINKSONLY;
}
if( db_get_boolean("timeline-hard-newlines", 0) ){
wikiFlags |= WIKI_NEWLINE;
}
}
return wikiFlags;
}
|
| ︙ |