Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | section css extended with 'white-space: nowrap;' to avoid validator errors. PLEASE update your local styles for the section class |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | wolfgangFormat2CSS |
| Files: | files | file ages | folders |
| SHA1: |
6436092e87851989fa29dae69a30ef03 |
| User & Date: | wolfgang 2010-09-09 21:41:22.000 |
| Original Comment: | divder css extended with 'white-space: nowrap;' to avoid validator errors. PLEASE update yout local styles |
Context
|
2010-09-10
| ||
| 16:11 | fixed ticket [5207b03861]: use correct type for index variable check-in: 4887a1da84 user: wolfgang tags: wolfgangFormat2CSS | |
|
2010-09-09
| ||
| 21:41 | section css extended with 'white-space: nowrap;' to avoid validator errors. PLEASE update your local styles for the section class check-in: 6436092e87 user: wolfgang tags: wolfgangFormat2CSS | |
| 21:32 | reduce html-validator errors on leaves page check-in: 4dbfba2bd8 user: wolfgang tags: wolfgangFormat2CSS | |
Changes
Changes to src/finfo.c.
| ︙ | ︙ | |||
155 156 157 158 159 160 161 |
char zShort[20];
char zShortCkin[20];
if( zBr==0 ) zBr = "trunk";
gidx = graph_add_row(pGraph, frid, fpid>0 ? 1 : 0, &fpid, zBr, zBgClr);
if( memcmp(zDate, zPrevDate, 10) ){
sprintf(zPrevDate, "%.10s", zDate);
@ <tr><td>
| | | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
char zShort[20];
char zShortCkin[20];
if( zBr==0 ) zBr = "trunk";
gidx = graph_add_row(pGraph, frid, fpid>0 ? 1 : 0, &fpid, zBr, zBgClr);
if( memcmp(zDate, zPrevDate, 10) ){
sprintf(zPrevDate, "%.10s", zDate);
@ <tr><td>
@ <div class="divider">%s(zPrevDate)</div>
@ </td></tr>
}
memcpy(zTime, &zDate[11], 5);
zTime[5] = 0;
@ <tr><td valign="top" align="right">
@ <a href="%s(g.zTop)/timeline?c=%t(zDate)">%s(zTime)</a></td>
@ <td width="20" align="left" valign="top"><div id="m%d(gidx)"></div></td>
|
| ︙ | ︙ |
Changes to src/style.c.
| ︙ | ︙ | |||
337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
@ margin-bottom: 0px;
@ margin-top: 1em;
@ padding: 1px 1px 1px 1px;
@ font-size: 1.2em;
@ font-weight: bold;
@ background-color: #558195;
@ color: white;
@ }
@
@ /* The "Date" that occurs on the left hand side of timelines */
@ div.divider {
@ background: #a1c4d4;
@ border: 2px #558195 solid;
@ font-size: 1em; font-weight: normal;
| > | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 |
@ margin-bottom: 0px;
@ margin-top: 1em;
@ padding: 1px 1px 1px 1px;
@ font-size: 1.2em;
@ font-weight: bold;
@ background-color: #558195;
@ color: white;
@ white-space: nowrap;
@ }
@
@ /* The "Date" that occurs on the left hand side of timelines */
@ div.divider {
@ background: #a1c4d4;
@ border: 2px #558195 solid;
@ font-size: 1em; font-weight: normal;
|
| ︙ | ︙ |
Changes to src/timeline.c.
| ︙ | ︙ | |||
231 232 233 234 235 236 237 |
if( strcmp(zType,"div")==0 ){
@ <tr><td colspan=3><hr></td></tr>
continue;
}
if( memcmp(zDate, zPrevDate, 10) ){
sprintf(zPrevDate, "%.10s", zDate);
@ <tr><td>
| | | 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
if( strcmp(zType,"div")==0 ){
@ <tr><td colspan=3><hr></td></tr>
continue;
}
if( memcmp(zDate, zPrevDate, 10) ){
sprintf(zPrevDate, "%.10s", zDate);
@ <tr><td>
@ <div class="divider">%s(zPrevDate)</div>
@ </td></tr>
}
memcpy(zTime, &zDate[11], 5);
zTime[5] = 0;
@ <tr>
@ <td class="timelineTime">%s(zTime)</td>
@ <td style="width: 20; text-align: left; vertical-align: top;">
|
| ︙ | ︙ |