diff options
author | dan miller | 2007-10-20 02:49:29 +0000 |
---|---|---|
committer | dan miller | 2007-10-20 02:49:29 +0000 |
commit | e36d23a85ebff914d74bb541558c2b6082b78edb (patch) | |
tree | 54b58fdf162e78af64055282a6035c8d2443389d /libraries/sqlite/unix/sqlite-3.5.1/tool/opcodeDoc.awk | |
parent | * Fixed an issue whereby avatar chat distances were being calculated against ... (diff) | |
download | opensim-SC_OLD-e36d23a85ebff914d74bb541558c2b6082b78edb.zip opensim-SC_OLD-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.gz opensim-SC_OLD-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.bz2 opensim-SC_OLD-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.xz |
sqlite source (unix build) added to libraries
Diffstat (limited to 'libraries/sqlite/unix/sqlite-3.5.1/tool/opcodeDoc.awk')
-rw-r--r-- | libraries/sqlite/unix/sqlite-3.5.1/tool/opcodeDoc.awk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libraries/sqlite/unix/sqlite-3.5.1/tool/opcodeDoc.awk b/libraries/sqlite/unix/sqlite-3.5.1/tool/opcodeDoc.awk new file mode 100644 index 0000000..4920106 --- /dev/null +++ b/libraries/sqlite/unix/sqlite-3.5.1/tool/opcodeDoc.awk | |||
@@ -0,0 +1,23 @@ | |||
1 | # | ||
2 | # Extract opcode documentation for sqliteVdbe.c and generate HTML | ||
3 | # | ||
4 | BEGIN { | ||
5 | print "<html><body bgcolor=white>" | ||
6 | print "<h1>SQLite Virtual Database Engine Opcodes</h1>" | ||
7 | print "<table>" | ||
8 | } | ||
9 | / Opcode: /,/\*\// { | ||
10 | if( $2=="Opcode:" ){ | ||
11 | printf "<tr><td>%s %s %s %s</td>\n<td>\n", $3, $4, $5, $6 | ||
12 | }else if( $1=="*/" ){ | ||
13 | printf "</td></tr>\n" | ||
14 | }else if( NF>1 ){ | ||
15 | sub(/^ *\*\* /,"") | ||
16 | gsub(/</,"<") | ||
17 | gsub(/&/,"&") | ||
18 | |||
19 | } | ||
20 | } | ||
21 | END { | ||
22 | print "</table></body></html>" | ||
23 | } | ||