]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Generate anchors in opcode table html for use by new vdbe tutorial. (CVS 994)
authorjplyon <jplyon@noemail.net>
Mon, 2 Jun 2003 06:29:31 +0000 (06:29 +0000)
committerjplyon <jplyon@noemail.net>
Mon, 2 Jun 2003 06:29:31 +0000 (06:29 +0000)
FossilOrigin-Name: 3ae36cf158e1878a66ce9302eae4e62f8a88333f

manifest
manifest.uuid
www/opcode.tcl

index b1c3354ad63db739f11151a19c81b031378cb931..77946690ca90133f286b776089fdee467de9dd09 100644 (file)
--- 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
index ba808b0e50e8dad9d9f4988eb5a38f326ad4df20..510bdca8428473a538b47cbcac02a5371fca158c 100644 (file)
@@ -1 +1 @@
-1276ddb3074b74e22c579bad6951ea52384c08dd
\ No newline at end of file
+3ae36cf158e1878a66ce9302eae4e62f8a88333f
\ No newline at end of file
index 5a68cfd2d1a2d12fe02cfd02300f3c44ed1cac32..fec39eedc872d1e81f902435786225ef776a1b5a 100644 (file)
@@ -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 {<html>
 <head>
@@ -237,7 +237,7 @@ puts {
 <tr><th>Opcode&nbsp;Name</th><th>Description</th></tr>}
 foreach op [lsort -dictionary $OpcodeList] {
   puts {<tr><td valign="top" align="center">}
-  puts "$op"
+  puts "<a name=\"$op\">$op</a>"
   puts "<td>[string trim $Opcode($op:text)]</td></tr>"
 }
 puts {</table></p>}