Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | More corrections to the mkdownload.tcl script. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5bc5c69b315b431571ddd804adde8de0 |
| User & Date: | drh 2015-02-18 02:56:34.501 |
Context
|
2015-02-18
| ||
| 10:02 | Added fossil man-page. Started with the one from debian, but adapted to contain current command list. ... (check-in: 17049409eb user: jan.nijtmans tags: trunk) | |
| 02:56 | More corrections to the mkdownload.tcl script. ... (check-in: 5bc5c69b31 user: drh tags: trunk) | |
| 02:49 | Fix the mkdownload.tcl script that generates the download.html page so that is uses the new website skin. ... (check-in: bdc892f9ff user: drh tags: trunk) | |
Changes
Changes to www/mkdownload.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/tclsh
#
# Run this script to build the "download.html" page. 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>
<html>
<head>
| | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#!/usr/bin/tclsh
#
# Run this script to build the "download.html" page. 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>
<html>
<head>
<base href="https://www.fossil-scm.org/download.html" />
<title>Fossil: Download</title>
<link rel="alternate" type="application/rss+xml" title="RSS Feed"
href="/fossil/timeline.rss" />
<link rel="stylesheet" href="/fossil/style.css?default" type="text/css"
media="screen" />
</head>
<body>
<div class="header">
<div class="title"><h1>Fossil</h1>Download</div>
</div>
<div class="mainmenu">
<a href='/fossil/doc/trunk/www/index.wiki'>Home</a>
<a href='/fossil/timeline?y=ci'>Timeline</a>
<a href='/fossil/dir?ci=tip'>Code</a>
<a href='/fossil/doc/trunk/www/permutedindex.html'>Docs</a>
<a href='/fossil/brlist'>Branches</a>
|
| ︙ | ︙ |