Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix to the download.in script to not disable individual shell downloads if the tool bundle is missing. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.10 |
Files: | files | file ages | folders |
SHA1: |
2dcd192c8bc35437e49867fd7b0538cb |
User & Date: | drh 2016-01-19 17:10:03.229 |
Context
2016-01-20
| ||
14:50 | Adjust the website for the 3.10.2 patch release. (check-in: 19c959312d user: drh tags: branch-3.10) | |
2016-01-19
| ||
17:10 | Fix to the download.in script to not disable individual shell downloads if the tool bundle is missing. (check-in: 2dcd192c8b user: drh tags: branch-3.10) | |
17:07 | Add documentation for sqlite3_analyzer.exe and support for the "tools" download bundles. (check-in: dd586d2857 user: drh tags: branch-3.10) | |
Changes
Changes to pages/download.in.
︙ | ︙ | |||
74 75 76 77 78 79 80 81 82 83 84 | hd_puts "<a id='a$href_cnt' href='hp1.html'>[file tail $file]</a><br>($size $units)</td>\n" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 hd_puts "\n<td valign=\"top\">" hd_resolve [string trim $d2] hd_puts "<br>(sha1: $sha1sum)</td></tr>\n" incr ::nDownload } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] } | > > > < < < | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | hd_puts "<a id='a$href_cnt' href='hp1.html'>[file tail $file]</a><br>($size $units)</td>\n" hd_puts "<td width=\"5\"></td>" regsub -all VERSION $desc $version d2 hd_puts "\n<td valign=\"top\">" hd_resolve [string trim $d2] hd_puts "<br>(sha1: $sha1sum)</td></tr>\n" incr ::nDownload if {$disable_flag} { set ::disable_more 1 } } if {$frag!=""} { eval hd_keywords [lrange $frag 1 end] } } cd $::DEST proc Heading {title {tag {}} {bgcolor {}}} { set ::pending_heading $title set ::pending_tag $tag set ::BG $bgcolor |
︙ | ︙ |