From 398f8fef28235d4726ea8bf1d73cae3a93a4c95d Mon Sep 17 00:00:00 2001
From: drh
Date: Thu, 8 Jun 2000 19:43:40 +0000
Subject: [PATCH] :-) (CVS 85)
FossilOrigin-Name: 8b1c151b7b2243672a0bf0ac8377e82c568bacfb
---
manifest | 12 ++++++------
manifest.uuid | 2 +-
www/sqlite.tcl | 6 +++---
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/manifest b/manifest
index f44d86e147..db1dc48160 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C :-)\s(CVS\s84)
-D 2000-06-08T19:38:36
+C :-)\s(CVS\s85)
+D 2000-06-08T19:43:40
F COPYRIGHT 74a8a6531a42e124df07ab5599aad63870fa0bd4
F Makefile.in 078af767c0d9e00d47b5d2b6e7677a10445d7057
F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958
@@ -57,8 +57,8 @@ F www/c_interface.tcl 9ac800854272db5fe439e07b7435b243a5422293
F www/changes.tcl 04e66b4257589ff78a7e1de93e9dda4725fb03d6
F www/fileformat.tcl b11435fcd2cf2238a1c5e6d16fe5e83bcd14d434
F www/index.tcl b2c288000f14383501b157a57ee4506561d62f45
-F www/sqlite.tcl 2e11809cd69dcf002042b455ef43c312beb3a00f
-P 2e5786d10148872db47d99e39c3f54597ad777c8
-R f81bf38bfc7dc6081b5aa2efb83f3693
+F www/sqlite.tcl 5420eab24b539928f80ea9b3088e2549d34f438d
+P 57dce04addf6389a0e2b723aea47da6a54bff14e
+R e3101b8e11471d082004499e06da77ef
U drh
-Z a2dd5ae39f552f2d8fffe430ca60ae6e
+Z 5656db42fbf878ca536962d55bd14a41
diff --git a/manifest.uuid b/manifest.uuid
index 2b414f0de9..23ef52d5ea 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-57dce04addf6389a0e2b723aea47da6a54bff14e
\ No newline at end of file
+8b1c151b7b2243672a0bf0ac8377e82c568bacfb
\ No newline at end of file
diff --git a/www/sqlite.tcl b/www/sqlite.tcl
index 51d398a482..b17c653bb5 100644
--- a/www/sqlite.tcl
+++ b/www/sqlite.tcl
@@ -1,7 +1,7 @@
#
# Run this Tcl script to generate the sqlite.html file.
#
-set rcsid {$Id: sqlite.tcl,v 1.7 2000/06/08 19:38:36 drh Exp $}
+set rcsid {$Id: sqlite.tcl,v 1.8 2000/06/08 19:43:40 drh Exp $}
puts {
@@ -167,7 +167,6 @@ in four different formats: "line", "column", "list", and "html".
You can use the ".mode" dot command to switch between these three output
formats.
-puts {
The default output mode is "list". In
list mode, each record of a query result is written on one line of
output and each field within that record is separated by a specific
@@ -196,6 +195,7 @@ goodbye, 20
sqlite>
}
+puts {
In "line" mode, each field in a record of the database
is shown on a line by itself. Each line consists of the field
name, an equal sign and the field data. Successive records are
@@ -265,7 +265,7 @@ sqlite>
puts {
The last output mode is "html". In this mode, sqlite writes
the results of the query as an XHTML table. The beginning
-<TABLE&;gt and the ending </TABLE> are not written, but
+<TABLE> and the ending </TABLE> are not written, but
all of the intervening <TR>s, <TH>s, and <TD>s
are. The html output mode is envisioned as being useful for
CGI.