Overview
Comment: | Added Index page for KitBuilds directory
Added script to create root of KitBuilds directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
deeb9702c335e257cfd775a106f15f0b |
User & Date: | rkeene on 2010-09-26 04:47:45 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:47 | Added basic tests README check-in: 1918f4d6cb user: rkeene tags: trunk | |
04:47 |
Added Index page for KitBuilds directory
Added script to create root of KitBuilds directory check-in: deeb9702c3 user: rkeene tags: trunk | |
04:47 | Fixed issue with zlib support in TclVFS when using Tcl 8.6+ native "zlib" command check-in: 468076b014 user: rkeene tags: trunk | |
Changes
Added build/test/create-kitbuild-dir version [87409f27aa].
> > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /bin/bash WEBROOTDIR="/web/rkeene/devel/kitcreator/kitbuild" export WEBROOTDIR rm -rf "${WEBROOTDIR}/tests" mkdir -p "${WEBROOTDIR}" || exit 1 mkdir -p "${WEBROOTDIR}/tests" || exit 1 cp index.ttml "${WEBROOTDIR}/" cp tests/* "${WEBROOTDIR}/tests/" ln -s ../../index.ttml "${WEBROOTDIR}/tests/" exit 0 |
Added build/test/index.ttml version [b561fed95c].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | <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>" } ?> </ul> <? if {$haveTests} { ?> <p>The actual tests can be found in <a href="tests/?listing=long">the "tests" directory</a></p> <? } ?> </body> </html> |