Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the script that generates the download page for the website. (CVS 2335) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
363590d37fd3a2cdfb4c2887b790395d |
User & Date: | drh 2005-02-15 13:07:39.000 |
Context
2005-02-15
| ||
13:08 | Version 3.1.2 (CVS 2337) (check-in: e9012d917a user: drh tags: trunk) | |
13:07 | Updates to the script that generates the download page for the website. (CVS 2335) (check-in: 363590d37f user: drh tags: trunk) | |
12:56 | Update the change log. (CVS 2334) (check-in: 94c3f20e8c 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.18 2005/02/15 13:07:39 drh Exp $} source common.tcl header {SQLite Download Page} puts { <h2>SQLite Download Page</h1> <table width="100%" cellpadding="5"> } |
︙ | ︙ | |||
31 32 33 34 35 36 37 | proc Heading {title} { puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } Heading {Precompiled Binaries for Linux} | | > > > > > > | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | proc Heading {title} { puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } Heading {Precompiled Binaries for Linux} Product sqlite3-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 sqlite-VERSION.bin.gz { A statically linked command-line program for accessing and modifing 2 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 tclsh or wish to get SQLite database access from Tcl/Tk. See <a href="tclsqlite.html">the documentation</a> for details. } |
︙ | ︙ | |||
57 58 59 60 61 62 63 | SQLite version VERSION. } Product sqlite-VERSION-1.i386.rpm { RPM containing shared libraries and the <b>sqlite</b> command-line program for SQLite version VERSION. } | | | | 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 93 94 95 96 97 98 | SQLite version VERSION. } 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} |
︙ | ︙ |