From 5959abd5d09bbaea78999bbe9540851cccfd01b8 Mon Sep 17 00:00:00 2001 From: jplyon Date: Mon, 2 Jun 2003 06:29:31 +0000 Subject: [PATCH] Generate anchors in opcode table html for use by new vdbe tutorial. (CVS 994) FossilOrigin-Name: 3ae36cf158e1878a66ce9302eae4e62f8a88333f --- manifest | 12 ++++++------ manifest.uuid | 2 +- www/opcode.tcl | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/manifest b/manifest index b1c3354ad6..77946690ca 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Added\scomments.\s(CVS\s993) -D 2003-06-02T06:17:10 +C Generate\sanchors\sin\sopcode\stable\shtml\sfor\suse\sby\snew\svdbe\stutorial.\s(CVS\s994) +D 2003-06-02T06:29:31 F Makefile.in 1ff85c27d4350c74118341024e8a4fb2a04a3a43 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd @@ -159,13 +159,13 @@ F www/lang.tcl 0d3037b9d3be2450e03ff588bfbb048597907cf3 F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c F www/nulls.tcl 29497dac2bc5b437aa7e2e94577dad4d8933ed26 F www/omitted.tcl 118062f40a203fcb88b8d68ef1d7c0073ac191ec -F www/opcode.tcl 33c5f2061a05c5d227c72b84c080b3bf74c74f8b +F www/opcode.tcl 1ff274b0ca7c8a60f7b231a47e4e95cfc3b2873d F www/quickstart.tcl 4e97bef825e6a4153c43afb9f97235fc4da278ab F www/speed.tcl cb4c10a722614aea76d2c51f32ee43400d5951be F www/sqlite.tcl 4bd1729e320f5fa9125f0022b281fbe839192125 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218 -P b648987de3383d6835df58aa0efee54fa8f10d26 -R 5d5339e91bb10ccbd66d69854fac689d +P 1276ddb3074b74e22c579bad6951ea52384c08dd +R 383f2d8ed344ebdb6abe536074b84581 U jplyon -Z 3d1689d57ad8cd168de42209fa17631f +Z d33b503471c19b20907fe973866729a2 diff --git a/manifest.uuid b/manifest.uuid index ba808b0e50..510bdca842 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -1276ddb3074b74e22c579bad6951ea52384c08dd \ No newline at end of file +3ae36cf158e1878a66ce9302eae4e62f8a88333f \ No newline at end of file diff --git a/www/opcode.tcl b/www/opcode.tcl index 5a68cfd2d1..fec39eedc8 100644 --- a/www/opcode.tcl +++ b/www/opcode.tcl @@ -1,7 +1,7 @@ # # Run this Tcl script to generate the sqlite.html file. # -set rcsid {$Id: opcode.tcl,v 1.10 2002/08/11 20:10:49 drh Exp $} +set rcsid {$Id: opcode.tcl,v 1.11 2003/06/02 06:29:31 jplyon Exp $} puts { @@ -237,7 +237,7 @@ puts { Opcode NameDescription} foreach op [lsort -dictionary $OpcodeList] { puts {} - puts "$op" + puts "$op" puts "[string trim $Opcode($op:text)]" } puts {

}