Overview
Comment: | Updated to exclude ".new" files from being processed |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 8cf1b9c2d8748e487b2192618b57198c3dbd54fc |
User & Date: | rkeene on 2012-02-24 10:10:17 |
Other Links: | manifest | tags |
Context
2012-02-24
| ||
23:55 | Added syntax for specifying a seperate Fossil tag for Tk check-in: 896a0f9701 user: rkeene tags: trunk | |
10:10 | Updated to exclude ".new" files from being processed check-in: 8cf1b9c2d8 user: rkeene tags: trunk | |
2012-02-22
| ||
19:58 | First attempt at providing an "index.tcl" for results that can be parsed in Tcl for [8b5da45955] check-in: 5419c4d107 user: rkeene tags: trunk | |
Changes
Modified build/test/publish-tests from [7d17ed1d63] to [1af19dd257].
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
set shortfile $file set file [file join $WEBDIR $file] if {[file isdirectory $file]} { continue } switch -glob -- $file { "*.log" - "*.ttml" - "*.html" - "*.desc" - "*-origname" - "*-tclsh" - "*-sdk.tar.gz" { continue } } # Derive what we can from the filename set buildfile "${shortfile}-build.log" set sdkshortfile "${shortfile}-sdk.tar.gz" |
| |
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
set shortfile $file
set file [file join $WEBDIR $file]
if {[file isdirectory $file]} {
continue
}
switch -glob -- $file {
"*.log" - "*.ttml" - "*.html" - "*.desc" - "*-origname" - "*-tclsh" - "*-sdk.tar.gz" - "*.new" {
continue
}
}
# Derive what we can from the filename
set buildfile "${shortfile}-build.log"
set sdkshortfile "${shortfile}-sdk.tar.gz"
|