| | @@ -239,10 +239,35 @@ |
| 239 | 239 | int n = 0; |
| 240 | 240 | while( (N-- != 0) && *(z++)!=0 ){ n++; } |
| 241 | 241 | return n; |
| 242 | 242 | } |
| 243 | 243 | #endif |
| 244 | + |
| 245 | +/* |
| 246 | +** SETTING: timeline-plaintext boolean default=off |
| 247 | +** |
| 248 | +** If enabled, no wiki-formatting is done for timeline comment messages. |
| 249 | +** Hyperlinks are activated, but they show up on screen using the |
| 250 | +** complete input text, not just the display text. No other formatting |
| 251 | +** is done. |
| 252 | +*/ |
| 253 | +/* |
| 254 | +** SETTING: timeline-block-markup boolean default=off |
| 255 | +** |
| 256 | +** If enabled, block markup (paragraph brakes, tables, lists, headings, etc) |
| 257 | +** is enabled while rendering check-in comment message on the timeline. |
| 258 | +** This is disabled by default, because the timeline works best if the |
| 259 | +** check-in comments are short and do not take up too much vertical space. |
| 260 | +*/ |
| 261 | +/* |
| 262 | +** SETTING: timeline-hard-newlines boolean default=off |
| 263 | +** |
| 264 | +** If enabled, the timeline honors newline characters in check-in comments. |
| 265 | +** In other words, newlines are coverted into <br> for HTML display. |
| 266 | +** The default behavior, when this setting is off, is that newlines are |
| 267 | +** treated like any other whitespace character. |
| 268 | +*/ |
| 244 | 269 | |
| 245 | 270 | /* |
| 246 | 271 | ** Return an appropriate set of flags for wiki_convert() for displaying |
| 247 | 272 | ** comments on a timeline. These flag settings are determined by |
| 248 | 273 | ** configuration parameters. |
| 249 | 274 | |