Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | bf5c2c74b268967e2c7948c12fd76b53dbe14b47 |
|---|---|
| Date: | 2013-03-02 16:44:43 |
| User: | drh |
| Comment: | Fix a typo in the change log for 3.7.16. Remove forgotten debugging puts in the download.in script. |
Tags And Properties
- branch=trunk inherited from [b2e03e19ab]
- sym-trunk inherited from [b2e03e19ab]
Changes
Changes to pages/changes.in
61 <li>Allow the error message from [PRAGMA integrity_check] to be longer than 61 <li>Allow the error message from [PRAGMA integrity_check] to be longer than 62 20000 bytes. 62 20000 bytes. 63 <li>Improved name resolution for deeply nested queries. 63 <li>Improved name resolution for deeply nested queries. 64 <li>Added the test_regexp.c module as a demonstration of how to implement 64 <li>Added the test_regexp.c module as a demonstration of how to implement 65 the REGEXP operator. 65 the REGEXP operator. 66 <li>Improved error messages in the [RTREE] extension. 66 <li>Improved error messages in the [RTREE] extension. 67 <li>Enhance the [command-line shell] so that a non-zero argument to the 67 <li>Enhance the [command-line shell] so that a non-zero argument to the 68 ".exit" command causes the shell to exist immediately without cleanly | 68 ".exit" command causes the shell to exit immediately without cleanly 69 shutting down the database connection. 69 shutting down the database connection. 70 <li>Improved error messages for invalid boolean arguments to dot-commands 70 <li>Improved error messages for invalid boolean arguments to dot-commands 71 in the [command-line shell]. 71 in the [command-line shell]. 72 <li>Improved error messages for "foreign key mismatch" showing the names of 72 <li>Improved error messages for "foreign key mismatch" showing the names of 73 the two tables involved. 73 the two tables involved. 74 <li>Remove all uses of umask() in the unix VFS. 74 <li>Remove all uses of umask() in the unix VFS. 75 <li>Added the [PRAGMA vdbe_addoptrace] and [PRAGMA vdbe_debug] commands. 75 <li>Added the [PRAGMA vdbe_addoptrace] and [PRAGMA vdbe_debug] commands.
Changes to pages/download.in
10 regsub VVV $pattern {*} p3 10 regsub VVV $pattern {*} p3 11 regsub DATE $p3 {20*} p3 11 regsub DATE $p3 {20*} p3 12 regsub YEAR $p3 {20[134][0-9]} p3 12 regsub YEAR $p3 {20[134][0-9]} p3 13 regsub VVV $pattern {(30\d{5})} pattern 13 regsub VVV $pattern {(30\d{5})} pattern 14 regsub DATE $pattern {(\d{12})} pattern 14 regsub DATE $pattern {(\d{12})} pattern 15 regsub YEAR $pattern {\d{4}} pattern 15 regsub YEAR $pattern {\d{4}} pattern 16 set p2 [string map {* .*} $pattern] 16 set p2 [string map {* .*} $pattern] 17 puts stderr p3=$p3 < 18 puts stderr p2=$p2 < 19 set flist [glob -nocomplain $p3] 17 set flist [glob -nocomplain $p3] 20 puts stderr flist=$flist < 21 foreach file [lsort -dict $flist] { 18 foreach file [lsort -dict $flist] { 22 if {![regexp ^$p2\$ $file all version]} continue 19 if {![regexp ^$p2\$ $file all version]} continue 23 if {[regexp {^(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$} $version \ 20 if {[regexp {^(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$} $version \ 24 all year month day hour min]} { 21 all year month day hour min]} { 25 set version "$year-$month-$day $hour:$min UTC" 22 set version "$year-$month-$day $hour:$min UTC" 26 } elseif {[regexp {^30(\d)(\d\d)(\d\d)$} $version \ 23 } elseif {[regexp {^30(\d)(\d\d)(\d\d)$} $version \ 27 all major minor patch]} { 24 all major minor patch]} {