Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | MinGW/MSYS build fixes; ticket #765 (CVS 1624) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3c6b9b41a682a7bb979acc1e269eea23 |
User & Date: | dougcurrie 2004-06-18 23:20:53.000 |
Context
2004-06-18
| ||
23:21 | MinGW/MSYS build fixes; ticket #765 (CVS 1625) (check-in: 5f383c1ee1 user: dougcurrie tags: trunk) | |
23:20 | MinGW/MSYS build fixes; ticket #765 (CVS 1624) (check-in: 3c6b9b41a6 user: dougcurrie tags: trunk) | |
23:19 | MinGW/MSYS build fixes; ticket #765 (CVS 1623) (check-in: 7121cee78c user: dougcurrie 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.11 2004/06/18 23:20:53 dougcurrie 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} |
︙ | ︙ |