Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a cross-referencing bug in the capi3ref generator. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
25fea8f8feed0aad5a68c3d6460e66df |
User & Date: | drh 2008-01-31 20:39:29.000 |
Context
2008-02-02
| ||
19:33 | Change the way people subscript to the mailing list. (check-in: 72d99b15d6 user: drh tags: trunk) | |
2008-01-31
| ||
20:39 | Fix a cross-referencing bug in the capi3ref generator. (check-in: 25fea8f8fe user: drh tags: trunk) | |
18:24 | Add the amalgamation+configure to the download page. On the download page, emphasis that the amalgamation is the perferred source code format. (check-in: 99d3e5e752 user: drh tags: trunk) | |
Changes
Changes to pages/capi3ref.in.
︙ | ︙ | |||
246 247 248 249 250 251 252 253 254 255 256 257 258 259 | <p>This document is created by a script which scans comments in the source code files.</p> <hr> <tcl> # Do a table of contents for objects # set objlist {} foreach c $content { foreach {key title type keywords body code} $c break if {$type!="datatype"} continue set keywords [lsort $keywords] | > > > > > > > > > > > | | 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | <p>This document is created by a script which scans comments in the source code files.</p> <hr> <tcl> # Find the preferred keyword for a page given a list of # acceptable keywords. # proc preferred_keyword {keyword_list} { foreach kw $keyword_list { if {[regexp -nocase {^sqlite} $kw]} break } return $kw } # Do a table of contents for objects # set objlist {} foreach c $content { foreach {key title type keywords body code} $c break if {$type!="datatype"} continue set keywords [lsort $keywords] set k [preferred_keyword $keywords] foreach kw $keywords { if {[regexp {^sqlite} $kw]} { lappend objlist [list $k $kw] } } } hd_open_aux c3ref/objlist.html |
︙ | ︙ | |||
282 283 284 285 286 287 288 | # Do a table of contents for constants # set clist {} foreach c $content { foreach {key title type keywords body code} $c break if {$type!="constant"} continue set keywords [lsort $keywords] | | | 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | # Do a table of contents for constants # set clist {} foreach c $content { foreach {key title type keywords body code} $c break if {$type!="constant"} continue set keywords [lsort $keywords] set k [preferred_keyword $keywords] foreach kw $keywords { if {[regexp {^SQLITE_} $kw]} { lappend clist [list $k $kw] } } } hd_open_aux c3ref/constlist.html |
︙ | ︙ | |||
313 314 315 316 317 318 319 | # Do a table of contents for functions # set funclist {} foreach c $content { foreach {key title type keywords body code} $c break if {$type!="function"} continue set keywords [lsort $keywords] | | | 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | # Do a table of contents for functions # set funclist {} foreach c $content { foreach {key title type keywords body code} $c break if {$type!="function"} continue set keywords [lsort $keywords] set k [preferred_keyword $keywords] foreach kw $keywords { if {[regexp {^sqlite} $kw]} { lappend funclist [list $k $kw] } } } hd_open_aux c3ref/funclist.html |
︙ | ︙ | |||
341 342 343 344 345 346 347 | hd_puts {<hr>} # Output all the records # foreach c [lsort $content] { foreach {key title type keywords body code} $c break | | | 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | hd_puts {<hr>} # Output all the records # foreach c [lsort $content] { foreach {key title type keywords body code} $c break set kw [preferred_keyword [lsort $keywords]] hd_fragment $kw hd_open_aux c3ref/[convert_keyword_to_filename $kw] hd_header $title hd_enable_main 0 hd_puts {<a href="intro.html"><h2>SQLite C Interface</h2></a>} hd_enable_main 1 eval hd_keywords $keywords |
︙ | ︙ |