Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo on the homepage. (CVS 1054) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c74107d63ace3d0e51da3b7bd7ee250c |
User & Date: | drh 2003-07-16 17:10:45.000 |
Context
2003-07-18
| ||
01:25 | In the test scripts, do not try to delete files that are still open. Windows does not like it when you do. Ticket #397. (CVS 1055) (check-in: 93a2c961b1 user: drh tags: trunk) | |
2003-07-16
| ||
17:10 | Fix typo on the homepage. (CVS 1054) (check-in: c74107d63a user: drh tags: trunk) | |
11:51 | Make LIMIT 0 return no rows. LIMIT -1 still returns all rows. Ticket #346. (CVS 1053) (check-in: a31d0bd90a user: drh tags: trunk) | |
Changes
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.75 2003/07/16 17:10:45 drh Exp $} puts {<html> <head><title>SQLite: An Embeddable SQL Database Engine</title></head> <body bgcolor=white> <h1 align=center>SQLite<br>An Embeddable SQL Database Engine</h1> <p align=center>} puts "This page was last modified on [lrange $rcsid 3 4] UTC<br>" |
︙ | ︙ | |||
161 162 163 164 165 166 167 | } puts {<h2>Professional Support and Custom Modifications</h2>} puts { <p> If you would like professional support for SQLite | | | 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | } puts {<h2>Professional Support and Custom Modifications</h2>} puts { <p> If you would like professional support for SQLite or if you want custom modifications to SQLite performed by the original author, these services are available for a modest fee. For additional information visit <a href="http://www.hwaci.com/sw/sqlite/support.html"> http://www.hwaci.com/sw/sqlite/support.html</a> or contact:</p> <blockquote> D. Richard Hipp <br /> |
︙ | ︙ |