Overview
Comment: | Moved description |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 0478a7f8f6c453ae3d5df6ed759dd14712b377c1 |
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 107 puts "" 108 108 puts "<html>" 109 109 puts "\t<head>" 110 110 puts "\t\t<title>KitCreator, Web Interface</title>" 111 111 puts "\t</head>" 112 112 puts "\t<body>" 113 113 puts "\t\t<h1>KitCreator Web Interface</h1>" 114 -if {[info exists description]} { 115 - puts "\t\t<p><b>Description:</b> $description" 116 -} 117 114 puts "\t\t<p><b>Status:</b> $status" 118 115 if {[info exists url]} { 119 116 puts "\t\t<p><b>URL:</b> <a href=\"$url\">$url</a>" 120 117 } 118 +if {[info exists description]} { 119 + puts "\t\t<p><b>Description:</b> $description" 120 +} 121 121 if {[info exists logfile]} { 122 122 catch { 123 123 set fd [open $logfile] 124 124 set logdata [read $fd] 125 125 close $fd 126 126 127 127 128 128 puts "\t\t<p><b>Log:</b><pre>\n$logdata</pre>" 129 129 } 130 130 } 131 131 puts "\t</body>" 132 132 puts "</html>"