Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | The download.tcl script used to generate download.html must run out of the doc subdirectory of the build. (CVS 1667) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
80c7b13ff39c88474587b1899505bac8 |
User & Date: | drh 2004-06-22 14:52:26.000 |
Context
2004-06-22
| ||
14:57 | Fix typos in web documentation. Tickets #770 and #771. (CVS 1668) (check-in: 04673066ff user: drh tags: trunk) | |
14:52 | The download.tcl script used to generate download.html must run out of the doc subdirectory of the build. (CVS 1667) (check-in: 80c7b13ff3 user: drh tags: trunk) | |
14:47 | Update the changes.html webpage for version 3.0.1. (CVS 1666) (check-in: d5d28e9822 user: drh tags: trunk) | |
Changes
Changes to www/download.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the download.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the download.html file. # set rcsid {$Id: download.tcl,v 1.12 2004/06/22 14:52:26 drh Exp $} source common.tcl header {SQLite Download Page} puts { <h2>SQLite Download Page</h1> <table width="100%" cellpadding="5"> } |
︙ | ︙ | |||
22 23 24 25 26 27 28 | puts "<td valign=\"top\" align=\"right\">" puts "<a href=\"$file\">$file</a><br>($size bytes)</td>" puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 puts "<td valign=\"top\">[string trim $d2]</td></tr>" } } | | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | puts "<td valign=\"top\" align=\"right\">" puts "<a href=\"$file\">$file</a><br>($size bytes)</td>" puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 puts "<td valign=\"top\">[string trim $d2]</td></tr>" } } cd doc proc Heading {title} { puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } Heading {Precompiled Binaries for Linux} |
︙ | ︙ |