Overview
| Comment: | Updated web UI |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e9692813d7730b28381fc033fd416ce0 |
| User & Date: | rkeene on 2014-07-19 07:07:30 |
| Other Links: | manifest | tags |
Context
|
2014-07-19
| ||
| 07:09 | Minor wording update for web interface check-in: 7aefade0dd user: rkeene tags: trunk | |
| 07:07 | Updated web UI check-in: e9692813d7 user: rkeene tags: trunk | |
| 06:59 | Added basic web interface check-in: 5613f08f7e user: rkeene tags: trunk | |
Changes
Modified build/web/building.cgi from [df00af4fd1] to [e52dc222ad].
| ︙ | ︙ | |||
16 17 18 19 20 21 22 |
if {[info exists key]} {
set workdir [file join $outdir $key]
}
if {[info exists workdir]} {
if {[file exists $workdir]} {
| | | > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
if {[info exists key]} {
set workdir [file join $outdir $key]
}
if {[info exists workdir]} {
if {[file exists $workdir]} {
set fd [open [file join $workdir buildinfo]]
set buildinfo_list [gets $fd]
close $fd
array set buildinfo $buildinfo_list
set filename $buildinfo(filename)
set outfile [file join $workdir $filename]
} else {
set status "Queued"
}
}
|
| ︙ | ︙ |
Modified build/web/kitcreator.vfs/index.rvt from [0b791688aa] to [1d64d9f8d0].
| ︙ | ︙ | |||
46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
platform linux-mipsel {tk tcc4tcl}
platform android-arm tk
platform netbsd-amd64 {tk tcc4tcl}
platform netbsd-i386 {tk tcc4tcl}
platform solaris-sparc tcc4tcl
platform solaris-sparc64 tcc4tcl
platform hpux-hppa64 tcc4tcl
}
set specific {
platform win32 file icon {Kit Icon}
platform win32 text description {Description}
platform win64 file icon {Kit Icon}
platform win64 text description {Description}
| > | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
platform linux-mipsel {tk tcc4tcl}
platform android-arm tk
platform netbsd-amd64 {tk tcc4tcl}
platform netbsd-i386 {tk tcc4tcl}
platform solaris-sparc tcc4tcl
platform solaris-sparc64 tcc4tcl
platform hpux-hppa64 tcc4tcl
platform linux-arm tk
}
set specific {
platform win32 file icon {Kit Icon}
platform win32 text description {Description}
platform win64 file icon {Kit Icon}
platform win64 text description {Description}
|
| ︙ | ︙ |
Modified build/web/process_queue from [7bb2a1b520] to [2f36355653].
| ︙ | ︙ | |||
38 39 40 41 42 43 44 | } set workdir [file join $outdir $buildinfo(key) build] file delete -force $workdir file mkdir $workdir cd $workdir | | | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
}
set workdir [file join $outdir $buildinfo(key) build]
file delete -force $workdir
file mkdir $workdir
cd $workdir
set fd [open ../buildinfo w]
puts $fd [array get buildinfo]
close $fd
set tarball kitcreator-${buildinfo(kitcreator_version)}.tar.gz
exec wget -q -O $tarball http://kitcreator.rkeene.org/fossil/tarball/${tarball}?uuid=${buildinfo(kitcreator_version)}
exec gzip -dc $tarball | tar -xf -
cd kitcreator-${buildinfo(kitcreator_version)}
|
| ︙ | ︙ |