1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Generate anchors in opcode table html for use by new vdbe tutorial. (CVS 994)

FossilOrigin-Name: 3ae36cf158e1878a66ce9302eae4e62f8a88333f
This commit is contained in:
jplyon
2003-06-02 06:29:31 +00:00
parent 02be20d4f5
commit 5959abd5d0
3 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
C Added\scomments.\s(CVS\s993) C Generate\sanchors\sin\sopcode\stable\shtml\sfor\suse\sby\snew\svdbe\stutorial.\s(CVS\s994)
D 2003-06-02T06:17:10 D 2003-06-02T06:29:31
F Makefile.in 1ff85c27d4350c74118341024e8a4fb2a04a3a43 F Makefile.in 1ff85c27d4350c74118341024e8a4fb2a04a3a43
F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -159,13 +159,13 @@ F www/lang.tcl 0d3037b9d3be2450e03ff588bfbb048597907cf3
F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
F www/nulls.tcl 29497dac2bc5b437aa7e2e94577dad4d8933ed26 F www/nulls.tcl 29497dac2bc5b437aa7e2e94577dad4d8933ed26
F www/omitted.tcl 118062f40a203fcb88b8d68ef1d7c0073ac191ec F www/omitted.tcl 118062f40a203fcb88b8d68ef1d7c0073ac191ec
F www/opcode.tcl 33c5f2061a05c5d227c72b84c080b3bf74c74f8b F www/opcode.tcl 1ff274b0ca7c8a60f7b231a47e4e95cfc3b2873d
F www/quickstart.tcl 4e97bef825e6a4153c43afb9f97235fc4da278ab F www/quickstart.tcl 4e97bef825e6a4153c43afb9f97235fc4da278ab
F www/speed.tcl cb4c10a722614aea76d2c51f32ee43400d5951be F www/speed.tcl cb4c10a722614aea76d2c51f32ee43400d5951be
F www/sqlite.tcl 4bd1729e320f5fa9125f0022b281fbe839192125 F www/sqlite.tcl 4bd1729e320f5fa9125f0022b281fbe839192125
F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331
F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218
P b648987de3383d6835df58aa0efee54fa8f10d26 P 1276ddb3074b74e22c579bad6951ea52384c08dd
R 5d5339e91bb10ccbd66d69854fac689d R 383f2d8ed344ebdb6abe536074b84581
U jplyon U jplyon
Z 3d1689d57ad8cd168de42209fa17631f Z d33b503471c19b20907fe973866729a2

View File

@@ -1 +1 @@
1276ddb3074b74e22c579bad6951ea52384c08dd 3ae36cf158e1878a66ce9302eae4e62f8a88333f

View File

@@ -1,7 +1,7 @@
# #
# Run this Tcl script to generate the sqlite.html file. # 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> puts {<html>
<head> <head>
@@ -237,7 +237,7 @@ puts {
<tr><th>Opcode&nbsp;Name</th><th>Description</th></tr>} <tr><th>Opcode&nbsp;Name</th><th>Description</th></tr>}
foreach op [lsort -dictionary $OpcodeList] { foreach op [lsort -dictionary $OpcodeList] {
puts {<tr><td valign="top" align="center">} 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 "<td>[string trim $Opcode($op:text)]</td></tr>"
} }
puts {</table></p>} puts {</table></p>}