Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make the SQLite logo on the website a hyperlink to the home page. Ticket #1471. (CVS 2745) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9709f0f6bcb2a1ed07e678b73cb51848 |
User & Date: | drh 2005-10-05 22:31:49.000 |
Context
2005-10-06
| ||
13:59 | Check-in (2744) as incomplete and broke pragma integrity_check. This completes the change and fixes the problem. (CVS 2746) (check-in: 4862eaafd8 user: drh tags: trunk) | |
2005-10-05
| ||
22:31 | Make the SQLite logo on the website a hyperlink to the home page. Ticket #1471. (CVS 2745) (check-in: 9709f0f6bc user: drh tags: trunk) | |
11:41 | Make sure pragma integrity_check does not report "ok" after first finding a bunch of errors. (CVS 2744) (check-in: efec04dedf user: drh tags: trunk) | |
Changes
Changes to www/common.tcl.
1 2 3 4 5 6 7 8 9 | # This file contains TCL procedures used to generate standard parts of # web pages. # proc header {txt} { puts "<html><head><title>$txt</title></head>" puts \ {<body bgcolor="white" link="#50695f" vlink="#508896"> <table width="100%" border="0"> | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # This file contains TCL procedures used to generate standard parts of # web pages. # proc header {txt} { puts "<html><head><title>$txt</title></head>" puts \ {<body bgcolor="white" link="#50695f" vlink="#508896"> <table width="100%" border="0"> <tr><td valign="top"> <a href="index.html"><img src="sqlite.gif" border="none"></a></td> <td width="100%"></td> <td valign="bottom"> <ul> <li><a href="http://www.sqlite.org/cvstrac/tktnew">bugs</a></li> <li><a href="changes.html">changes</a></li> <li><a href="contrib">contrib</a></li> <li><a href="download.html#cvs">cvs repository</a></li> |
︙ | ︙ | |||
81 82 83 84 85 86 87 | regsub -all {LP} $body {</font></b>(<b><font color="#2c2cf0">} body regsub -all {RP} $body {</font></b>)<b><font color="#2c2cf0">} body ## Place the left-hand side of the rule in the 2nd table column. puts "<td><b><font color=\"#2c2cf0\">$body</font></b></td></tr>" } puts {</table>} } | < | 82 83 84 85 86 87 88 | regsub -all {LP} $body {</font></b>(<b><font color="#2c2cf0">} body regsub -all {RP} $body {</font></b>)<b><font color="#2c2cf0">} body ## Place the left-hand side of the rule in the 2nd table column. puts "<td><b><font color=\"#2c2cf0\">$body</font></b></td></tr>" } puts {</table>} } |