Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the download page of the website to handle TEA builds and starkits. (CVS 2612) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1fab599b6f89534152c53b820b5e6ee1 |
User & Date: | drh 2005-08-22 02:10:46.000 |
Context
2005-08-23
| ||
11:00 | Fix typos in syntax documentation. Ticket #1374 and a report on the mailing list. (CVS 2613) (check-in: 990d1f3a5b user: drh tags: trunk) | |
2005-08-22
| ||
02:10 | Update the download page of the website to handle TEA builds and starkits. (CVS 2612) (check-in: 1fab599b6f user: drh tags: trunk) | |
2005-08-21
| ||
21:45 | Clean up possible locking problem in multithreaded applications that take a malloc failure. (CVS 2611) (check-in: 545e702a23 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.19 2005/08/22 02:10:46 drh Exp $} source common.tcl header {SQLite Download Page} puts { <h2>SQLite Download Page</h1> <table width="100%" cellpadding="5"> } |
︙ | ︙ | |||
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | Product sqlite*_analyzer-VERSION.zip { An analysis program for database files compatible with SQLite version VERSION. } Heading {Source Code} Product {sqlite-source-VERSION.zip} { This ZIP archive contains pure C source code for the SQLite library. Unlike the tarballs below, all of the preprocessing and automatic code generation has already been done on these C source code, so they can be processed directly with any ordinary C compiler. This file is provided as a service to MS-Windows users who lack the build support infrastructure of Unix. } Product {sqlite-VERSION.src.rpm} { An RPM containing complete source code for SQLite version VERSION } | > > > > > > > > > > > > > | > | < > > | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | Product sqlite*_analyzer-VERSION.zip { An analysis program for database files compatible with SQLite version VERSION. } Heading {Source Code} Product {sqlite-VERSION.tar.gz} { A tarball of the complete source tree for SQLite version VERSION including all of the documentation. } Product {sqlite-source-VERSION.zip} { This ZIP archive contains pure C source code for the SQLite library. Unlike the tarballs below, all of the preprocessing and automatic code generation has already been done on these C source code, so they can be processed directly with any ordinary C compiler. This file is provided as a service to MS-Windows users who lack the build support infrastructure of Unix. } Product {sqlite-VERSION-tea.tar.gz} { A tarball of proprocessed source code together with a Tcl Extension Architecture (TEA) compatible configure script and makefile. } Product {sqlite-VERSION.src.rpm} { An RPM containing complete source code for SQLite version VERSION } Heading {Cross-Platform Binaries} Product {sqlite-VERSION.kit} { A <a href="http://www.equi4.com/starkit.html">starkit</a> containing precompiled SQLite binaries and Tcl bindings for Linux-x86, Windows, and Mac OS-X. } puts { </table> <a name="cvs"> <h3>Direct Access To The Sources Via Anonymous CVS</h3> |
︙ | ︙ |