Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the linkage between sqlite3_backup_xxxxxx() functions and their documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
78c26d4a466b79fa0dc23fb4d0761753 |
User & Date: | drh 2016-09-02 17:15:26.526 |
Context
2016-09-02
| ||
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) | |
17:03 | Store debugging information in the doc_vardump.txt file after building all documentation. (check-in: cb35d7c443 user: drh tags: trunk) | |
Changes
Changes to pages/capi3ref.in.
︙ | ︙ | |||
464 465 466 467 468 469 470 | foreach {key title type keywords body code} $c break if {$type!="function"} continue set keywords [lsort $keywords] set k [preferred_keyword $keywords] set s $supported($k) foreach kw $keywords { if {[regexp {^sqlite} $kw]} { | | | | 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | foreach {key title type keywords body code} $c break if {$type!="function"} continue set keywords [lsort $keywords] set k [preferred_keyword $keywords] set s $supported($k) foreach kw $keywords { if {[regexp {^sqlite} $kw]} { lappend funclist [list $kw $kw $s] set uri [convert_keyword_to_uri $kw] dbtoc eval {INSERT INTO toc(name,type,status,title,uri) VALUES($kw,'function',$s,$title,$uri)} } } } hd_open_aux c3ref/funclist.html hd_header {List Of SQLite Functions} |
︙ | ︙ |