diff --git a/Makefile.in b/Makefile.in index dbe2182acd..c02d5dd168 100644 --- a/Makefile.in +++ b/Makefile.in @@ -167,24 +167,10 @@ tclsqlite: $(TOP)/src/tclsqlite.c libsqlite.a test: tclsqlite ./tclsqlite $(TOP)/test/all.test -TARBALL = \ - sqlite/COPYRIGHT \ - sqlite/doc/*.html \ - sqlite/src/*.h \ - sqlite/src/*.c \ - sqlite/src/*.y \ - sqlite/tool/*.c \ - sqlite/tool/*.awk \ - sqlite/configure \ - sqlite/*.in - sqlite.tar.gz: - pwd=`pwd`; cd $(TOP)/..; tar czf $$pwd/sqlite.tar.gz $(TARBALL) + pwd=`pwd`; cd $(TOP)/..; tar czf $$pwd/sqlite.tar.gz sqlite -all.tar.gz: - pwd=`pwd`; cd $(TOP)/..; tar czf $$pwd/all.tar.gz sqlite - -index.html: $(TOP)/www/index.tcl sqlite.tar.gz all.tar.gz last_change +index.html: $(TOP)/www/index.tcl sqlite.tar.gz last_change tclsh $(TOP)/www/index.tcl >index.html sqlite.html: $(TOP)/www/sqlite.tcl @@ -200,7 +186,6 @@ changes.html: $(TOP)/www/changes.tcl # PUBLISH = \ sqlite.tar.gz \ - all.tar.gz \ index.html \ sqlite.html \ changes.html \ diff --git a/manifest b/manifest index 704d15cd3b..9a2f3b3c9c 100644 --- a/manifest +++ b/manifest @@ -1,7 +1,7 @@ -C :-)\s(CVS\s47) -D 2000-06-03T19:19:41 +C :-)\s(CVS\s48) +D 2000-06-03T19:28:49 F COPYRIGHT 74a8a6531a42e124df07ab5599aad63870fa0bd4 -F Makefile.in 20a035ae94ec7574d7a5f09301d3f6f5f9cb7ef0 +F Makefile.in 17ba1ccf8d2d40c627796bba8f72952365d6d644 F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958 F configure 00a5b5c82147a576fa6e82d7c1b0d55c321d6d2c x F configure.in 6ccfd5fc80517f7cfe605a7fc7e0f62d962a233c @@ -44,10 +44,10 @@ F tool/opNames.awk 2bd9071a138e4e2be13dc98fe066398a61219e1e F tool/opcodeDoc.awk b3a2a3d5d3075b8bd90b7afe24283efdd586659c F tool/renumberOps.awk 6d067177ad5f8d711b79577b462da9b3634bd0a9 F www/c_interface.tcl 8867d76ddd416d2fbd41e4cb3de8efa9cef105a5 -F www/changes.tcl 7d6ed774362dea0c9687d4efbafd939c1c48fd81 -F www/index.tcl 0096a3e00b1364fb2c3e06941aa8c31454b6d06a +F www/changes.tcl 567cc6066d87460bdedff8e5bbc20f41ddaadf77 +F www/index.tcl f8189a7898f6d06307c34047b9d7e00860026e44 F www/sqlite.tcl 2f933ce18cffd34a0a020a82435ab937137970fd -P 27c0678623de37f3166cb9952989fd03484cdb8d -R 55ab5057755afd4eb3d30546b6144ca3 +P 729d6586b8377d0e6cefa64c8cf3d883e9f0ddc3 +R 31c9e39e649b3b2d917f87f2b14771de U drh -Z 47b79d9e980f5d785c73e416f1cd2177 +Z 40d2fc5da1772ef64d963d97198b5963 diff --git a/manifest.uuid b/manifest.uuid index bdf8453ac0..be1180821e 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -729d6586b8377d0e6cefa64c8cf3d883e9f0ddc3 \ No newline at end of file +f76656416500851069633cc603905befa27cca66 \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index 4d48e4f230..f856f924da 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -17,6 +17,12 @@ proc chng {date desc} { puts "

" } +chng {2000 June 3} { +
  • Added support for default values on columns of a table.
  • +
  • Improved test coverage. Fixed a few obscure bugs found by the +improved tests.
  • +} + chng {2000 June 2} {
  • All database files to be modified by an UPDATE, INSERT or DELETE are now locked before any changes are made to any files. diff --git a/www/index.tcl b/www/index.tcl index 59eac95768..fc77556c38 100644 --- a/www/index.tcl +++ b/www/index.tcl @@ -1,7 +1,7 @@ # # Run this TCL script to generate HTML for the index.html file. # -set rcsid {$Id: index.tcl,v 1.11 2000/06/02 15:51:18 drh Exp $} +set rcsid {$Id: index.tcl,v 1.12 2000/06/03 19:28:49 drh Exp $} puts { SQLite: An SQL Database Built Atop GDBM @@ -97,8 +97,9 @@ Click to subscribe to sqlite puts {

    Download

    -

    You can download a tarball containing all C source -code for SQLite at sqlite.tar.gz.} +

    You can download a tarball containing all source +code for SQLite (including the TCL scripts that generate the +HTML files for this website) at sqlite.tar.gz.} puts "This is a [file size sqlite.tar.gz] byte download. The tarball was last modified at [clock format [file mtime sqlite.tar.gz]]" puts {

    @@ -115,13 +116,7 @@ $ ../sqlite/configure $ make ;# Builds "sqlite" and "libsqlite.a" $ make test ;# Optional: run regression tests - -

    You can also download a larger tarball that contains everything -in the source tarball plus all of the sources for the text that -appears on this website, and other miscellaneous files. The -complete tarball is found at all.tar.gz.} -puts "This is a [file size all.tar.gz] byte download and was -was last modified at [clock format [file mtime sqlite.tar.gz]]

    " +} puts {

    Related Sites