Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Avoid scanning both fileformat.html and fileformat2.html for requirements since one is a copy of the other. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
51c582171c237db24989f0eabd8cf48e |
User & Date: | drh 2014-06-02 18:31:26.068 |
Context
2014-06-04
| ||
11:26 | Add news for the 3.8.5 release and set the date to today. (check-in: e047b026ae user: drh tags: trunk) | |
2014-06-02
| ||
18:31 | Avoid scanning both fileformat.html and fileformat2.html for requirements since one is a copy of the other. (check-in: 51c582171c user: drh tags: trunk) | |
2014-05-30
| ||
18:14 | Document the SQLITE_WIN32_HEAP_CREATE and SQLITE_WIN32_MALLOC_VALIDATE compile-time options. (check-in: 9816bbf88c user: mistachkin tags: trunk) | |
Changes
Changes to matrix.tcl.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | # The requirement table of the docinfo.db is populated with requirement # information. See the schema.tcl source file for a definition of the # requirment table. # puts -nonewline "Scanning documentation for testable statements" flush stdout foreach file $filelist { puts -nonewline . # puts -nonewline "$file" flush stdout set in [open $file] set x [read $in [file size $file]] close $in set orig_x $x | > > > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | # The requirement table of the docinfo.db is populated with requirement # information. See the schema.tcl source file for a definition of the # requirment table. # puts -nonewline "Scanning documentation for testable statements" flush stdout foreach file $filelist { if {$file=="doc/fileformat.html" && [lsearch $filelist doc/fileformat2.html]>=0} { continue } puts -nonewline . # puts -nonewline "$file" flush stdout set in [open $file] set x [read $in [file size $file]] close $in set orig_x $x |
︙ | ︙ |