Overview
| Comment: | Updated to not download "msgcat" as it is part of the core Tcl distribution |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
b5e5d25701d292e7c5d02000be8edf7f |
| User & Date: | rkeene on 2010-03-14 11:21:16 |
| Other Links: | manifest | tags |
Context
|
2010-03-14
| ||
| 11:22 | teaparty 0.9.6.x check-in: 576c36f860 user: rkeene tags: trunk | |
| 11:21 | Updated to not download "msgcat" as it is part of the core Tcl distribution check-in: b5e5d25701 user: rkeene tags: trunk | |
|
2010-02-28
| ||
| 23:23 | Added HP-UX support to platform script check-in: 5e09d65c21 user: rkeene tags: trunk | |
Changes
Modified client/lib/teapotclient0.1/teapotclient.tcl from [a5bf42fefe] to [7c9f4e855b].
| ︙ | ︙ | |||
81 82 83 84 85 86 87 |
set cpuTeapotToLocal(ix86) [list x86 intel i?86 i86pc]
set cpuTeapotToLocal(sparc) [list sun4*]
set cpuTeapotToLocal(universal) [list *]
set cpuTeapotToLocal(powerpc) [list ppc]
proc download_extensions {rootdir servers extensions os cpu {existingExts ""}} {
| | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
set cpuTeapotToLocal(ix86) [list x86 intel i?86 i86pc]
set cpuTeapotToLocal(sparc) [list sun4*]
set cpuTeapotToLocal(universal) [list *]
set cpuTeapotToLocal(powerpc) [list ppc]
proc download_extensions {rootdir servers extensions os cpu {existingExts ""}} {
foreach chkdefext [list Tcl Tk msgcat] {
if {[lsearch -exact $existingExts $chkdefext] == -1} {
lappend existingExts $chkdefext
}
}
foreach server $servers {
foreach {pkg pkginfo} [get_extensions $server $os $cpu] {
foreach pkginstance $pkginfo {
|
| ︙ | ︙ |