Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the syntax.html document so that it uses the output_list proc to generate a variable-column bullet list. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | mobile-friendly |
Files: | files | file ages | folders |
SHA1: |
028b7208ab900d65f6f62d664bcc41e4 |
User & Date: | drh 2016-09-01 02:08:37.003 |
Context
2016-09-01
| ||
09:14 | Change the "docs.in" file so that it shows all categories collapsed, initially. (check-in: b3567c150e user: drh tags: mobile-friendly) | |
02:08 | Fix the syntax.html document so that it uses the output_list proc to generate a variable-column bullet list. (check-in: 028b7208ab user: drh tags: mobile-friendly) | |
01:54 | The "Search" menubar option causes a drop-down search box to appear. (check-in: 61608e2d14 user: drh tags: mobile-friendly) | |
Changes
Changes to pages/capi3ref.in.
︙ | ︙ | |||
220 221 222 223 224 225 226 227 228 229 230 231 232 233 | return $name.html } # Convert the keyword $kw into an appropriate relative URI # proc keyword_to_uri {kw} { global hd llink glink if {$hd(enable-main)} { set fn $hd(fn-main) if {[info exists llink($fn:$kw)]} { return $hd(rootpath-main)$llink($fn:$kw) } if {[info exists glink($kw)]} { return $hd(rootpath-main)$glink($kw) | > | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | return $name.html } # Convert the keyword $kw into an appropriate relative URI # proc keyword_to_uri {kw} { global hd llink glink if {[string match {*.html} $kw]} {return $kw} if {$hd(enable-main)} { set fn $hd(fn-main) if {[info exists llink($fn:$kw)]} { return $hd(rootpath-main)$llink($fn:$kw) } if {[info exists glink($kw)]} { return $hd(rootpath-main)$glink($kw) |
︙ | ︙ |
Changes to pages/syntax.in.
1 2 3 4 | <title>List of SQLite Syntax Diagrams</title> <h1 align="center">List of SQLite Syntax Diagrams</h1> | < | | < < < < < < < < < | | | | < < < > < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <title>List of SQLite Syntax Diagrams</title> <h1 align="center">List of SQLite Syntax Diagrams</h1> <tcl> set lx {} foreach name [lsort $syntax_order] { lappend lx [list syntax/$name.html $name 0] } output_list {} 300 $lx foreach name $syntax_order { file mkdir $::DEST/syntax hd_open_aux syntax/$name.html hd_keywords $name "$name syntax diagram" hd_enable_main 0 hd_header "SQLite Syntax: $name" hd_putsnl "<h1 align='center'>$name</h1>" hd_putsnl "<div class='imgcontainer'>" hd_puts "<img alt=\"syntax diagram $name\" " hd_puts "src=\"../images/syntax/$name.gif\">" hd_putsnl "</img><br>" foreach {cx px} $syntax_linkage($name) break if {[llength $px]>0} { |
︙ | ︙ |