Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add links to each section at the top of the docs.html page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | experimental |
Files: | files | file ages | folders |
SHA1: |
336ce36b232630f4b9f7c6667d3cd370 |
User & Date: | dan 2016-08-15 16:02:21.759 |
Context
2016-08-15
| ||
18:43 | Fix layout issues in footer. Restrict footer to the front page only (not every page). (check-in: 5abf48cdb6 user: dan tags: experimental) | |
16:02 | Add links to each section at the top of the docs.html page. (check-in: 336ce36b23 user: dan tags: experimental) | |
2016-08-13
| ||
20:02 | Add experimental footer to each page featuring many of the links from docs.html. (check-in: 8200ba6e9a user: dan tags: experimental) | |
Changes
Changes to pages/docs.in.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <title>SQLite Documentation</title> <h1 align="center">Categorical Index Of SQLite Documents</h1> <table width="100%" cellpadding="5"> <tcl> hd_keywords {categorical listing of SQLite documents} proc doc {name url desc} { hd_puts {<tr><td valign="top" align="right">} regsub -all { +} $name {\ } name hd_puts "<a href=\"$url\">$name</a></td>" hd_puts {<td width="10"></td>} hd_puts {<td valign="top" align="left">} hd_resolve $desc hd_puts {</td></tr>} } proc heading {text tag {caption {}}} { hd_puts {<tr><td colspan=3 style="padding: 3ex 0 2ex 0">} hd_puts "<b><a name=$tag></a>$text</b>" if {$caption ne ""} { hd_puts {<br />} hd_puts "$caption" } } source [file join $::DOC pages docsdata.tcl] </tcl> </table> | > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <title>SQLite Documentation</title> <h1 align="center">Categorical Index Of SQLite Documents</h1> <table width="100%" cellpadding="5"> <tcl> hd_keywords {categorical listing of SQLite documents} set ::lHead [list] proc doc {name url desc} { } proc heading {text tag {caption {}}} { lappend ::lHead $text $tag } source [file join $::DOC pages docsdata.tcl] hd_puts "<table align=center>" set i 0 set style "\"padding-right:8ex; padding-bottom: 1em\"" foreach {text tag} $::lHead { if {($i % 2)==0} { hd_puts <tr> } hd_puts "<th valign=top align=left style=$style> <a href=#$tag>$text</a>" incr i } hd_puts "</table>" proc doc {name url desc} { hd_puts {<tr><td valign="top" align="right">} regsub -all { +} $name {\ } name hd_puts "<a href=\"$url\">$name</a></td>" hd_puts {<td width="10"></td>} hd_puts {<td valign="top" align="left">} hd_resolve $desc hd_puts {</td></tr>} } proc heading {text tag {caption {}}} { hd_puts {<tr><td colspan=3 style="padding: 3ex 0 2ex 0">} hd_puts "<b><a name=$tag></a>$text</b>" if {$caption ne ""} { hd_puts {<br />} hd_puts "$caption" } } hd_puts "<table>" source [file join $::DOC pages docsdata.tcl] hd_puts "</table>" </tcl> </table> |
Changes to wrap.tcl.
︙ | ︙ | |||
408 409 410 411 412 413 414 415 416 417 418 419 420 421 | putsin4 $fd {<style type="text/css"> body { margin: auto; font-family: Verdana, sans-serif; padding: 8px 1%; } a { color: #044a64 } a:visited { color: #734559 } .logo { position:absolute; margin:3px; } .tagline { float:right; text-align:right; | > | 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | putsin4 $fd {<style type="text/css"> body { margin: auto; font-family: Verdana, sans-serif; padding: 8px 1%; } a { text-decoration: none } a { color: #044a64 } a:visited { color: #734559 } .logo { position:absolute; margin:3px; } .tagline { float:right; text-align:right; |
︙ | ︙ |