Overview
Comment: | Added "sun4v" and "sun4u" to list of sparc64 types Copied web CustomKit interface into teaparty |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
09fa0e9b42245b0fd8f712ee868ead05 |
User & Date: | rkeene on 2011-11-23 13:06:21 |
Other Links: | manifest | tags |
Context
2011-12-04
| ||
02:17 | Updated to deal with more platforms check-in: 21cf4390c8 user: rkeene tags: trunk | |
2011-11-23
| ||
13:06 | Added "sun4v" and "sun4u" to list of sparc64 types Copied web CustomKit interface into teaparty check-in: 09fa0e9b42 user: rkeene tags: trunk | |
2011-09-11
| ||
23:59 | Updated to CTk 8.0.2801 to fix issues with Tcl 8.6 check-in: c80dceaca0 user: rkeene tags: trunk | |
Changes
Modified client/lib/teapotclient0.1/teapotclient.tcl from [7c9f4e855b] to [a38541090a].
︙ | |||
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | + + + + + + + | } vfs::zip::Unmount $mntfd $file } else { exec unzip -d $dir -n -qq $file } } proc __isCompatibleCPU {teapot local} { } proc __isCompatibleOS {teapot local} { } set pkgcachedir [file join [__get_homedir] ".teapot-client" "cachedir"] # Conversions from Teapot-style names to local ones set osTeapotToLocal(tcl) [list *] set osTeapotToLocal(linux-*) [list linux] set osTeapotToLocal(win32) [list windows] set osTeapotToLocal(solaris*) [list solaris sunos] set osTeapotToLocal(freebsd) [list freebsd_*] set osTeapotToLocal(irix) [list irix_*] set cpuTeapotToLocal(ix86) [list x86 intel i?86 i86pc] set cpuTeapotToLocal(sparc) [list sun4*] set cpuTeapotToLocal(sparc64) [list sun4u sun4v] 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 |
︙ |
Added client/web/common.tcl version [09d7dce52a].