Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | this ampersand should not have been escaped |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2017763c31cfd16373b66dc0ea91d4d5 |
| User & Date: | jan.nijtmans 2012-11-13 15:04:08.157 |
Context
|
2012-11-14
| ||
| 17:23 | Update the "fossil server DIRECTORY" operation so that it will serve static content contained in DIRECTORY in addition to Fossil repositories. ... (check-in: 87d6aa3196 user: drh tags: trunk) | |
|
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) | |
Changes
Changes to src/timeline.c.
| ︙ | ︙ | |||
371 372 373 374 375 376 377 |
blob_reset(&comment);
/* Generate the "user: USERNAME" at the end of the comment, together
** with a hyperlink to another timeline for that user.
*/
if( zTagList && zTagList[0]==0 ) zTagList = 0;
if( g.perm.Hyperlink && fossil_strcmp(zUser, zThisUser)!=0 ){
| | | 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
blob_reset(&comment);
/* Generate the "user: USERNAME" at the end of the comment, together
** with a hyperlink to another timeline for that user.
*/
if( zTagList && zTagList[0]==0 ) zTagList = 0;
if( g.perm.Hyperlink && fossil_strcmp(zUser, zThisUser)!=0 ){
char *zLink = mprintf("%R/timeline?u=%h&c=%t&nd", zUser, zDate);
@ (user: %z(href("%z",zLink))%h(zUser)</a>%s(zTagList?",":"\051")
}else{
@ (user: %h(zUser)%s(zTagList?",":"\051")
}
/* Generate a "detail" link for tags. */
if( (zType[0]=='g' || zType[0]=='w' || zType[0]=='t') && g.perm.Hyperlink ){
|
| ︙ | ︙ |