Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | bug-fix: If both suppressCnt and pendingEndTr are true, a </td></tr> pair too much is printed out. Discovered by validator.w3.org |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
06b00fa511a69ede36f64a08b481539c |
| User & Date: | jan.nijtmans 2012-11-13 12:31:05.283 |
| Original Comment: | bug-fix: If both suppressCnt and pendingEndTr are true, a >/td<>/tr< pair too much is printed out. Discovered by validator.w3.org |
Context
|
2012-11-13
| ||
| 15:04 | this ampersand should not have been escaped ... (check-in: 2017763c31 user: jan.nijtmans tags: trunk) | |
| 12:31 | bug-fix: If both suppressCnt and pendingEndTr are true, a </td></tr> pair too much is printed out. Discovered by validator.w3.org ... (check-in: 06b00fa511 user: jan.nijtmans tags: trunk) | |
|
2012-11-12
| ||
| 15:22 | Fix a boundary case in the SSH link startup logic. ... (check-in: 5776dfad81 user: drh tags: trunk) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
255 256 257 258 259 260 261 |
commentColumn = 10;
}
}
}
prevTagid = tagid;
if( suppressCnt ){
@ <span class="timelineDisabled">... %d(suppressCnt) similar
| | | 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
commentColumn = 10;
}
}
}
prevTagid = tagid;
if( suppressCnt ){
@ <span class="timelineDisabled">... %d(suppressCnt) similar
@ event%s(suppressCnt>1?"s":"") omitted.</span>
suppressCnt = 0;
}
if( pendingEndTr ){
@ </td></tr>
pendingEndTr = 0;
}
if( fossil_strcmp(zType,"div")==0 ){
|
| ︙ | ︙ | |||
475 476 477 478 479 480 481 |
@ </ul>
}
}
pendingEndTr = 1;
}
if( suppressCnt ){
@ <span class="timelineDisabled">... %d(suppressCnt) similar
| | | 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 |
@ </ul>
}
}
pendingEndTr = 1;
}
if( suppressCnt ){
@ <span class="timelineDisabled">... %d(suppressCnt) similar
@ event%s(suppressCnt>1?"s":"") omitted.</span>
suppressCnt = 0;
}
if( pendingEndTr ){
@ </td></tr>
}
if( pGraph ){
graph_finish(pGraph, (tmFlags & TIMELINE_DISJOINT)!=0);
|
| ︙ | ︙ |