Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the mkdownload.tcl script so that it generates a correctly-formatted download.html page. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1d028af6c75fdf4031889f0f12d88f9c |
User & Date: | drh 2016-10-25 01:21:30 |
Context
2016-10-25
| ||
20:12 | Fix the download hyperlink on the homepage. check-in: be88817f user: drh tags: trunk | |
01:21 | Fix the mkdownload.tcl script so that it generates a correctly-formatted download.html page. check-in: 1d028af6 user: drh tags: trunk | |
2016-10-24
| ||
21:53 | Remove BOM (byte-order-mark) from the change log. check-in: a2f47102 user: mistachkin tags: trunk | |
Changes
Changes to www/mkdownload.tcl.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#
# Also generate the fossil_download_checksums.html page.
#
#
set out [open download.html w]
fconfigure $out -encoding utf-8 -translation lf
puts $out \
{<!DOCTYPE html>
<div class='fossil-doc' data-title='Download Page'>
<center><font size=4>}
puts $out \
"<b>To install Fossil →</b> download the stand-alone executable"
puts $out \
{and put it on your $PATH.
</font><p><small>
|
< | |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#
# Also generate the fossil_download_checksums.html page.
#
#
set out [open download.html w]
fconfigure $out -encoding utf-8 -translation lf
puts $out \
{<div class='fossil-doc' data-title='Download Page'>
<center><font size=4>}
puts $out \
"<b>To install Fossil →</b> download the stand-alone executable"
puts $out \
{and put it on your $PATH.
</font><p><small>
|