Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix misplaced </span> so it actually lands on the line that begins the <span> rather than a few lines before it begins. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ee45080dd6da73e00c9cbe1d61aeae0b |
| User & Date: | andybradford 2015-03-06 04:10:44.708 |
| Original Comment: | Fix misplaced </span> so it actually lands on the line that begins the <span> rather than a few lines before it begins. |
Context
|
2015-03-06
| ||
| 14:47 | Fix the hyperlink to sign-up for the mailing list. ... (check-in: ad6e400459 user: drh tags: trunk) | |
| 07:39 | Add ability to highlight more than one block of lines when using the ln= query parameter. ... (check-in: 20c63861d8 user: andybradford tags: multi-block-highlight) | |
| 04:10 | Fix misplaced </span> so it actually lands on the line that begins the <span> rather than a few lines before it begins. ... (check-in: ee45080dd6 user: andybradford tags: trunk) | |
|
2015-03-05
| ||
| 19:51 | Swap single-/double-dash convention in [fossil help help] listing to match the other commands. Use single-dash for single-letter option names and double-dash for long option names. (Truth is that either is accepted; this is merely a display issue.) ... (check-in: 03e1850bf1 user: andygoth tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
1735 1736 1737 1738 1739 1740 1741 |
}
cgi_printf("%6d ", n);
if( i>0 ){
char *zHtml = htmlize(z, i);
cgi_append_content(zHtml, -1);
fossil_free(zHtml);
}
| | | 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 |
}
cgi_printf("%6d ", n);
if( i>0 ){
char *zHtml = htmlize(z, i);
cgi_append_content(zHtml, -1);
fossil_free(zHtml);
}
if( n==iTop ) cgi_append_content("</span>", -1);
if( n==iEnd ) cgi_append_content("</div>", -1);
else cgi_append_content("\n", 1);
z += i;
if( z[0]=='\n' ) z++;
}
if( n<iEnd ) cgi_printf("</div>");
@ </pre>
|
| ︙ | ︙ |