Documentation Source Text

Check-in [cb35d7c443]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Store debugging information in the doc_vardump.txt file after building all documentation.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: cb35d7c44336e888a900a770fb4af878c334945f
User & Date: drh 2016-09-02 17:03:55.791
Context
2016-09-02
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)
16:57
Rename the output_list proc to hd_list_of_links and move its implementation from capi3ref.in into wrap.tcl, since it is used as common code. (check-in: c3c40d6711 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to wrap.tcl.
868
869
870
871
872
873
874









    set prev $ref
  }
  hd_putsnl "</li>"
}
hd_puts "</ul>"
hd_close_main
db eval COMMIT
















>
>
>
>
>
>
>
>
>
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
    set prev $ref
  }
  hd_putsnl "</li>"
}
hd_puts "</ul>"
hd_close_main
db eval COMMIT

puts "Writing glink and llink arrays to 'doc_vardump.txt'"
set fd [open doc_vardump.txt wb]
foreach a {glink llink} {
  foreach v [lsort [array names $a]] {
    puts $fd "set ${a}($v) [list [set ${a}($v)]]"
  }
}
close $fd