Overview
Comment: | Updated client to sort list output |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1efd339cd741beb6238d1c9a3da27c22 |
User & Date: | rkeene on 2009-04-18 03:11:05 |
Other Links: | manifest | tags |
Context
2009-04-18
| ||
03:21 | Added the ability to change the cache dir Set the default cache dir to be in the current user's home directory check-in: 935196ec59 user: rkeene tags: trunk | |
03:11 | Updated client to sort list output check-in: 1efd339cd7 user: rkeene tags: trunk | |
03:04 | Added Makefile to build Starkit Fixed bug in teapot client package Updated teapot client package to use various temporary directory possibilities Updated help on teapot client check-in: aca04fd88d user: rkeene tags: trunk | |
Changes
Modified client/teapot-client.tcl from [dbdef8ce98] to [f8b2da0698].
︙ | ︙ | |||
55 56 57 58 59 60 61 | } if {[llength $argv] > 1} { set cpu [lindex $argv 1] } puts "Extensions available for OS=$os, CPU=$cpu:" | | > > | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | } if {[llength $argv] > 1} { set cpu [lindex $argv 1] } puts "Extensions available for OS=$os, CPU=$cpu:" array set exts [::teapotclient::get_extensions $teapotservers $os $cpu] foreach ext [lsort -dictionary [array names exts]] { set extinfo $exts($ext) set extvers [list] foreach extinfoitem $extinfo { set extinfoitemvers [lindex $extinfoitem 0] if {[lsearch -exact $extvers $extinfoitemvers] == -1} { lappend extvers $extinfoitemvers } } |
︙ | ︙ |