Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the documentation to refer the reader to the CVS server for the change log, bug lists, or the latest sources. (CVS 500) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2478ba866646d6d445b370554af9cd3d |
User & Date: | drh 2002-03-27 12:52:48.000 |
Context
2002-03-28
| ||
14:20 | Two typos fixed in the documentation (lang.html). (CVS 502) (check-in: f0f241e1cc user: drh tags: trunk) | |
2002-03-27
| ||
12:52 | Update the documentation to refer the reader to the CVS server for the change log, bug lists, or the latest sources. (CVS 500) (check-in: 2478ba8666 user: drh tags: trunk) | |
2002-03-26
| ||
03:11 | Update the change log. (CVS 438) (check-in: 9637b9aa5d user: drh tags: trunk) | |
Changes
Changes to www/changes.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # # Run this script to generated a changes.html output file # puts {<html> <head> <title>SQLite Change Log</title> </head> <body bgcolor="white"> <h1 align="center">Recent Changes To SQLite</h1> <DL> } proc chng {date desc} { puts "<DT><B>$date</B></DT>" | > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # # Run this script to generated a changes.html output file # puts {<html> <head> <title>SQLite Change Log</title> </head> <body bgcolor="white"> <h1 align="center">Recent Changes To SQLite</h1> <center>><font color="red"><b> *** This page has is no longer maintained. *** </b></font></center> <blockquote> The change log is now generated automatically by the CVS server for SQLite. To see the latest changes, visit: <blockquote> <a href="http://cvs.hwaci.com:2080/sqlite/timeline"> http://cvs.hwaci.com:2080/sqlite/timeline </a> </blockquote> </blockquote> <DL> } proc chng {date desc} { puts "<DT><B>$date</B></DT>" |
︙ | ︙ |
Changes to www/index.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the index.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.55 2002/03/27 12:52:48 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Engine In A C Library</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Engine In A C Library</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] UTC<br>" |
︙ | ︙ | |||
57 58 59 60 61 62 63 | <li>Sources are uncopyrighted. Use for any purpose.</li> </ul> </p> } puts {<h2>Current Status</h2> | > > > | > | | > > > > > > > | > > > > > > | 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 | <li>Sources are uncopyrighted. Use for any purpose.</li> </ul> </p> } puts {<h2>Current Status</h2> <p>A <a href="http://cvs.hwaci.com:2080/sqlite/timeline">change history</a> and a list of <a href="http://cvs.hwaci.com:2080/sqlite/rptview?rn=2">open bugs</a> are both available from the <a href="http://cvs.hwaci.com:2080/sqlite/">CVS server</a>. Complete source code and precompiled binaries for the latest release are <a href="download.html">available for download</a> on this site. You can also obtain the latest changes by anonymous CVS access: <blockquote><pre> cvs -d :pserver:anonymous@cvs.hwaci.com:/home/cvs/sqlite login cvs -d :pserver:anonymous@cvs.hwaci.com:/home/cvs/sqlite checkout sqlite </pre></blockquote> When prompted for a password, enter "anonymous". </p> <p>Note that the CVS server is located on a cable modem with a dynamic IP address. The IP address changes every 3 or 4 months. After an IP address change occurs it usually takes a day or two for the new DNS information to propagate. So if you have trouble accessing the CVS server, it could be because the IP address has recently changed. Try again in a few days. </p> <p> Whenever either of the first two digits in the version number for SQLite change, it means that the underlying file format has changed. See <a href="formatchng.html">formatchng.html</a> for additional information. |
︙ | ︙ | |||
85 86 87 88 89 90 91 92 93 94 95 96 97 98 | <li>The <a href="lang.html">SQL Language</a> subset understood by SQLite.</li> <li>The <a href="c_interface.html">C/C++ Interface</a>.</li> <li>The <a href="tclsqlite.html">Tcl Binding</a> to SQLite.</li> <li>The <a href="arch.html">Architecture of the SQLite Library</a> describes how the library is put together.</li> <li>A description of the <a href="opcode.html">virtual machine</a> that SQLite uses to access the database.</li> </ul> </p> <p>The SQLite source code is 35% comment. These comments are another important source of information. </p> } | > > | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | <li>The <a href="lang.html">SQL Language</a> subset understood by SQLite.</li> <li>The <a href="c_interface.html">C/C++ Interface</a>.</li> <li>The <a href="tclsqlite.html">Tcl Binding</a> to SQLite.</li> <li>The <a href="arch.html">Architecture of the SQLite Library</a> describes how the library is put together.</li> <li>A description of the <a href="opcode.html">virtual machine</a> that SQLite uses to access the database.</li> <li>A <a href="speed.html">speed comparison</a> between SQLite, PostgreSQL, and MySQL.</li> </ul> </p> <p>The SQLite source code is 35% comment. These comments are another important source of information. </p> } |
︙ | ︙ |