Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Put a yellow background on the prerelease snapshots on the download page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | 3.7.17 |
Files: | files | file ages | folders |
SHA1: |
c032a10b8b941ea615552246c3922fd3 |
User & Date: | drh 2013-07-19 20:22:14.582 |
Context
2013-07-19
| ||
20:41 | Further tweaks to the look of the Download page. (check-in: c90897b38c user: drh tags: 3.7.17) | |
20:22 | Put a yellow background on the prerelease snapshots on the download page. (check-in: c032a10b8b user: drh tags: 3.7.17) | |
2013-07-15
| ||
11:17 | The log file for althttpd is now RFC-4180 CSV. (check-in: 52bfa21f48 user: drh tags: 3.7.17) | |
Changes
Changes to pages/download.in.
1 2 3 | <title>SQLite Download Page</title> <h2>SQLite Download Page</h2> | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <title>SQLite Download Page</title> <h2>SQLite Download Page</h2> <table width="100%" cellpadding="5" cellspacing="0"> <tcl> hd_keywords {download page} set nDownload 0 set BG {} proc Product {pattern desc {frag {}}} { regsub VVV $pattern {*} p3 regsub DATE $p3 {20*} p3 regsub YEAR $p3 {20[134][0-9]} p3 regsub VVV $pattern {(30\d{5})} pattern regsub DATE $pattern {(\d{12})} pattern regsub YEAR $pattern {\d{4}} pattern |
︙ | ︙ | |||
36 37 38 39 40 41 42 | if {$size>1024*1024} { set size [format %.2f [expr {$size/(1024.0*1024.0)}]] set units MiB } elseif {$size>1024} { set size [format %.2f [expr {$size/(1024.0)}]] set units KiB } | | > > > > > | | | > > > | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | if {$size>1024*1024} { set size [format %.2f [expr {$size/(1024.0*1024.0)}]] set units MiB } elseif {$size>1024} { set size [format %.2f [expr {$size/(1024.0)}]] set units KiB } global pending_heading pending_tag BG if {$BG!=""} { set tr "<tr bgcolor=\"$BG\">" } else { set tr "<tr>" } if {$pending_heading!=""} { if {$pending_tag!=""} { set tg "<a name=\"$pending_tag\"></a>" set pending_tag {} } else { set tg "" } hd_puts "$tr<td colspan=\"4\">$tg<b>$pending_heading</b></td></tr>\n" set pending_heading {} } hd_puts "$tr<td width=\"10\"></td>" hd_puts "<td valign=\"top\" align=\"right\">" if {$frag!=""} { eval hd_fragment $frag set frag {} } hd_puts "<a href=\"$file\">[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] } } cd $::DEST proc Heading {title {tag {}} {bgcolor {}}} { set ::pending_heading $title set ::pending_tag $tag set ::BG $bgcolor # hd_puts "<tr><td colspan=4><big><b>$title</b></big></td></tr>" } set Caution #fff1c8 Heading {Pre-release Snapshots} {} $Caution Product {snapshot/sqlite-amalgamation-DATE.zip} { This is a snapshot (as of VERSION) of the current SQLite code under development. Use this snapshot for testing only. This is not a release. This ZIP archive contains all preprocessed C code combined into a single source file (the [amalgamation]). |
︙ | ︙ | |||
105 106 107 108 109 110 111 | } Product {snapshot/sqlite-shell-win64-x64-DATE.zip} { This is a snapshot (as of VERSION) build of the <a href="sqlite.html">sqlite3.exe command-line shell</a> shell program for 64-bit windows. } | < < < | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | } Product {snapshot/sqlite-shell-win64-x64-DATE.zip} { This is a snapshot (as of VERSION) build of the <a href="sqlite.html">sqlite3.exe command-line shell</a> shell program for 64-bit windows. } Product {snapshot/sqlite-winrt81-DATE.vsix} { This is a snapshot (as of VERSION) for a complete VSIX package with an extension SDK and all other components needed to use SQLite for WinRT 8.1 application development with Visual Studio 2013. This is not a release. } |
︙ | ︙ |