Overview
Comment: | Added MacOSX OS name mangaling to the client |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: | 90837215911e573641d28fa1f35b2e5423b52dc3 |
User & Date: | rkeene on 2014-08-22 17:20:34 |
Other Links: | manifest | tags |
Context
2014-08-22
| ||
17:20 | Added MacOSX OS name mangaling to the client Leaf check-in: 9083721591 user: rkeene tags: trunk | |
2014-06-30
| ||
03:18 | Updated to remove teapot.txt created by vectcl check-in: ddb01f865a user: rkeene tags: trunk | |
Changes
Modified client/lib/teapotclient0.1/teapotclient.tcl from [ce9ff0669b] to [24b8f046f2].
80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# 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] |
> |
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# 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 osTeapotToLocal(macosx*) [list darwin]
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]
|