Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Restore the old-style "Documentation" page for desktop while keeping the newer style for mobile. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6268aa1b1a04fdff7e493591fbdf9c52 |
User & Date: | drh 2016-09-02 17:47:52.478 |
Context
2016-09-02
| ||
18:35 | Fix a mismatched tag in sessionintro.in. (check-in: 1abe86b9d2 user: dan tags: trunk) | |
17:47 | Restore the old-style "Documentation" page for desktop while keeping the newer style for mobile. (check-in: 6268aa1b1a user: drh tags: trunk) | |
17:15 | Fix the linkage between sqlite3_backup_xxxxxx() functions and their documentation. (check-in: 78c26d4a46 user: drh tags: trunk) | |
Changes
Changes to pages/docs.in.
︙ | ︙ | |||
36 37 38 39 40 41 42 | mk.innerHTML = "▼"; } else { ul.style.display = "none"; mk.innerHTML = "►"; } } </script> | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | mk.innerHTML = "▼"; } else { ul.style.display = "none"; mk.innerHTML = "►"; } } </script> <ul class="showhide mobileonly"> <tcl> hd_keywords {categorical listing of SQLite documents} {documents by category} set prevHead {} set lDoc {} set cnt 0 proc doc {name url desc} { global lDoc |
︙ | ︙ | |||
68 69 70 71 72 73 74 | hd_putsnl </ul> set lDoc {} } source [file join $::DOC pages docsdata.tcl] end_heading </tcl> </ul> | > > > > > > > > > > > > > > > > > > > > > > > | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | hd_putsnl </ul> set lDoc {} } source [file join $::DOC pages docsdata.tcl] end_heading </tcl> </ul> <table class="desktoponly" border=0 cellpadding=10 width="100%"> <tcl> proc end_heading {} {} proc doc {name url desc} { hd_puts {<tr><td valign="top" align="right" class="nounderline">} regsub -all { +} $name {\ } name hd_putsnl "<a href=\"$url\">$name</a></td>" hd_putsnl {<td width="10"></td>} hd_putsnl {<td valign="top" align="left">} hd_resolve $desc hd_putsnl {</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> |
Changes to pages/docsdata.tcl.
︙ | ︙ | |||
27 28 29 30 31 32 33 | doc {Frequently Asked Questions} {faq.html} { The title of the document says all... } doc {Books About SQLite} {books.html} { A list of independently written books about SQLite. } | < < | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | doc {Frequently Asked Questions} {faq.html} { The title of the document says all... } doc {Books About SQLite} {books.html} { A list of independently written books about SQLite. } doc {Alphabetical Listing Of Documents} {doclist.html} { A list of all titled pages on this website, sorted by title. } doc {Website Keyword Index} {keyword_index.html} { A cross-reference from keywords to various pages within this website. } doc {Permuted Title Index} {sitemap.html#pindex} { |
︙ | ︙ |