Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adjustments to the download.html page generator script. (CVS 1915) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a6dc1331396569a3d7c3fad27b985779 |
User & Date: | drh 2004-08-29 18:14:18.000 |
Context
2004-08-29
| ||
18:14 | Version 3.0.5 (beta) (CVS 1916) (check-in: f3fe8c9fa6 user: drh tags: trunk) | |
18:14 | Adjustments to the download.html page generator script. (CVS 1915) (check-in: a6dc133139 user: drh tags: trunk) | |
17:52 | Increase the version number and update the change log in preparation for the release of version 3.0.5. (CVS 1914) (check-in: 69922aabb5 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.14 2004/08/29 18:14:18 drh Exp $} source common.tcl header {SQLite Download Page} puts { <h2>SQLite Download Page</h1> <table width="100%" cellpadding="5"> } |
︙ | ︙ | |||
30 31 32 33 34 35 36 | proc Heading {title} { puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } Heading {Precompiled Binaries for Linux} | | < < < < < < | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | proc Heading {title} { puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } Heading {Precompiled Binaries for Linux} Product sqlite*-VERSION.bin.gz { A statically linked command-line program for accessing and modifing SQLite databases. See <a href="sqlite.html">the documentation</a> for additional information. } Product tclsqlite-VERSION.so.gz { Bindings for TCL. You can import this shared library into either |
︙ | ︙ | |||
63 64 65 66 67 68 69 | } Product sqlite-VERSION-1.i386.rpm { RPM containing shared libraries and the <b>sqlite</b> command-line program for SQLite version VERSION. } Product sqlite_analyzer-VERSION.bin.gz { | | | | | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | } Product sqlite-VERSION-1.i386.rpm { RPM containing shared libraries and the <b>sqlite</b> command-line program for SQLite version VERSION. } Product sqlite_analyzer-VERSION.bin.gz { An analysis program for database files compatible with SQLite version VERSION. } Heading {Precompiled Binaries For Windows} Product sqlite-VERSION.zip { A command-line program for accessing and modifing SQLite databases. See <a href="sqlite.html">the documentation</a> for additional information. } Product tclsqlite-VERSION.zip { Bindings for TCL. You can import this shared library into either tclsh or wish to get SQLite database access from Tcl/Tk. See <a href="tclsqlite.html">the documentation</a> for details. } Product sqlitedll-VERSION.zip { This is a DLL of the SQLite library without the TCL bindings. The only external dependency is MSVCRT.DLL. } Product sqlite_analyzer-VERSION.zip { An analysis program for database files compatible with SQLite version VERSION. } Heading {Source Code} Product {sqlite-source-VERSION.zip} { |
︙ | ︙ |