Differences From Artifact [b561fed95c]:
- File
build/test/index.ttml
— part of check-in
[deeb9702c3]
at
2010-09-26 04:47:45
on branch trunk
— Added Index page for KitBuilds directory
Added script to create root of KitBuilds directory (user: rkeene, size: 579) [annotate] [blame] [check-ins using]
To Artifact [32e3b3a01b]:
- File build/test/index.ttml — part of check-in [535e327857] at 2010-10-05 02:26:23 on branch trunk — Updated to ignore symlinks in KitBuild directory (user: rkeene, size: 665) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <html> <head> <title>KitCreator Build and Test Status</title> </head> <body> <h1>KitCreator Build and Test Status</h1> <p>The follow versions of KitCreator have test suite results:</p> <ul> <? set haveTests 0 foreach subdir [lsort -dictionary [glob -type d *]] { if {$subdir == "tests"} { set haveTests 1 continue } puts " <li><a href=\"${subdir}/\">$subdir</a></li>" | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <html> <head> <title>KitCreator Build and Test Status</title> </head> <body> <h1>KitCreator Build and Test Status</h1> <p>The follow versions of KitCreator have test suite results:</p> <ul> <? set haveTests 0 foreach subdir [lsort -dictionary [glob -type d *]] { file lstat $subdir subdirinfo if {$subdirinfo(type) == "link"} { continue } if {$subdir == "tests"} { set haveTests 1 continue } puts " <li><a href=\"${subdir}/\">$subdir</a></li>" |
︙ | ︙ |