Overview
| Comment: | Moved description |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0478a7f8f6c453ae3d5df6ed759dd147 |
| User & Date: | rkeene on 2014-07-23 04:59:33 |
| Other Links: | manifest | tags |
Context
|
2014-08-28
| ||
| 17:44 | Updated to Tcl 8.6.2 and updated to clear MAKEFLAGS environment variable, which can influence sub-builds check-in: fb09031888 user: rkeene tags: trunk | |
|
2014-07-23
| ||
| 04:59 | Moved description check-in: 0478a7f8f6 user: rkeene tags: trunk | |
| 04:38 | Updated to incldue a description once building has started check-in: 0b8d107e14 user: rkeene tags: trunk | |
Changes
Modified build/web/building.cgi from [2572ff68c9] to [b893b1086f].
| ︙ | ︙ | |||
107 108 109 110 111 112 113 | puts "" puts "<html>" puts "\t<head>" puts "\t\t<title>KitCreator, Web Interface</title>" puts "\t</head>" puts "\t<body>" puts "\t\t<h1>KitCreator Web Interface</h1>" | < < < > > > | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
puts ""
puts "<html>"
puts "\t<head>"
puts "\t\t<title>KitCreator, Web Interface</title>"
puts "\t</head>"
puts "\t<body>"
puts "\t\t<h1>KitCreator Web Interface</h1>"
puts "\t\t<p><b>Status:</b> $status"
if {[info exists url]} {
puts "\t\t<p><b>URL:</b> <a href=\"$url\">$url</a>"
}
if {[info exists description]} {
puts "\t\t<p><b>Description:</b> $description"
}
if {[info exists logfile]} {
catch {
set fd [open $logfile]
set logdata [read $fd]
close $fd
|
| ︙ | ︙ |