Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Refinements to the formatting of the download page. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 9405e691ad76154715edad00d884e735 |
User & Date: | drh 2010-03-06 19:35:15 |
References
2010-03-07
| ||
07:49 | • New ticket [6166fbed] timeline graphs with search shows trunk line many times. artifact: 0c08ffde user: anonymous | |
Context
2010-03-07
| ||
12:44 | Disable the timeline graph when using search mode. Ticket [6166fbed08]. check-in: 4276853e user: drh tags: trunk | |
2010-03-06
| ||
19:35 | Refinements to the formatting of the download page. check-in: 9405e691 user: drh tags: trunk | |
19:21 | Updates to the website download page generator script. check-in: 10989b5c user: drh tags: trunk | |
Changes
Changes to www/mkdownload.tcl.
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
..
76
77
78
79
80
81
82
83
84
85
86
87
88
|
set adate($datetime) 1 } } # Do all dates from newest to oldest # foreach datetime [lsort -decr [array names adate]] { puts "<tr><td colspan=7><hr></td></tr>" set dt [string range $datetime 0 3]-[string range $datetime 4 5]- append dt "[string range $datetime 6 7] " append dt "[string range $datetime 8 9]:[string range $datetime 10 11]:" append dt "[string range $datetime 12 13]" set link [string map {{ } +} $dt] set hr http://www.fossil-scm.org/fossil/timeline?c=$link&y=ci puts "<tr><td>Fossil snapshot as of <a href=\"$hr\">$dt</a><td width=30>" foreach {prefix suffix img desc} { fossil-linux-x86 zip linux.gif {Linux x86} fossil-linux-amd64 zip linux64.gif {Linux x86_64} fossil-macosx-x86 zip mac.gif {Mac 10.5 x86} fossil-w32 zip win32.gif {Windows} fossil-src tar.gz src.gif {Source Tarball} ................................................................................ puts "$size $units</td>" } else { puts "<td> </td>" } } puts "</tr>" } puts "<tr><td colspan=7><hr></td></tr>" puts {</table> </body> </html> } |
<
>
|
>
|
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
..
77
78
79
80
81
82
83
84
85
86
87
88
89
|
set adate($datetime) 1 } } # Do all dates from newest to oldest # foreach datetime [lsort -decr [array names adate]] { set dt [string range $datetime 0 3]-[string range $datetime 4 5]- append dt "[string range $datetime 6 7] " append dt "[string range $datetime 8 9]:[string range $datetime 10 11]:" append dt "[string range $datetime 12 13]" set link [string map {{ } +} $dt] set hr http://www.fossil-scm.org/fossil/timeline?c=$link&y=ci puts "<tr><td colspan=5 align=center><hr>" puts "<b>Fossil snapshot as of <a href=\"$hr\">$dt</a><td width=30></b>" puts "</td></tr>" foreach {prefix suffix img desc} { fossil-linux-x86 zip linux.gif {Linux x86} fossil-linux-amd64 zip linux64.gif {Linux x86_64} fossil-macosx-x86 zip mac.gif {Mac 10.5 x86} fossil-w32 zip win32.gif {Windows} fossil-src tar.gz src.gif {Source Tarball} ................................................................................ puts "$size $units</td>" } else { puts "<td> </td>" } } puts "</tr>" } puts "<tr><td colspan=5><hr></td></tr>" puts {</table> </body> </html> } |