Index: www/download.tcl
==================================================================
--- www/download.tcl
+++ www/download.tcl
@@ -1,9 +1,9 @@
#
# Run this TCL script to generate HTML for the download.html file.
#
-set rcsid {$Id: download.tcl,v 1.15 2004/10/10 17:24:55 drh Exp $}
+set rcsid {$Id: download.tcl,v 1.16 2004/11/11 19:32:40 drh Exp $}
source common.tcl
header {SQLite Download Page}
puts {
SQLite Download Page
@@ -10,10 +10,11 @@
}
proc Product {pattern desc} {
regsub VERSION $pattern {([0-9a-z._]+)} p2
+ set p2 [string map {* .*} $p2]
regsub VERSION $pattern {*} p3
set flist [glob -nocomplain $p3]
foreach file [lsort -dict $flist] {
if {![regexp ^$p2\$ $file all version]} continue
regsub -all _ $version . version
Index: www/index.tcl
==================================================================
--- www/index.tcl
+++ www/index.tcl
@@ -58,10 +58,19 @@
puts "$date - $title
"
regsub -all "\n( *\n)+" $text "\n\n" txt
puts "
$txt
"
puts "
"
}
+
+newsitem {2004-Nov-09} {SQLite at the 2004 International PHP Conference} {
+ There was a talk on the architecture of SQLite and how to optimize
+ SQLite queries at the 2004 International PHP Conference in Frankfurt,
+ Germany.
+
+ Slides from that talk are available.
+}
+
newsitem {2004-Oct-11} {Version 3.0.8} {
Version 3.0.8 of SQLite contains several code optimizations and minor
bug fixes and adds support for DEFERRED, IMMEDIATE, and EXCLUSIVE
transactions. This is an incremental release. There is no reason
@@ -72,12 +81,13 @@
Annual Tcl/Tk Conference} {
There will be a talk on the use of SQLite in Tcl/Tk at the
11th Tcl/Tk Conference this week in
New Orleans. Visit
http://www.tcl.tk/ for details.
+
+ Slides from the talk are available.
}
-
newsitem {2004-Jly-22} {Version 2.8.15} {
SQLite version 2.8.15 is a maintenance release for the version 2.8
series. Version 2.8 continues to be maintained with bug fixes, but
no new features will be added to version 2.8. All the changes in
@@ -88,6 +98,6 @@
puts {
Old news...
}
-footer {$Id: index.tcl,v 1.102 2004/10/12 02:38:10 drh Exp $}
+footer {$Id: index.tcl,v 1.103 2004/11/11 19:32:40 drh Exp $}