Overview
| Comment: | 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 | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | aca04fd88d1a88abd0561604702de38e | 
| User & Date: | rkeene on 2009-04-18 03:04:04 | 
| Other Links: | manifest | tags | 
Context
| 2009-04-18 | ||
| 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 | |
| 02:48 | Renamed teapot.tcl to teapot-client.tcl check-in: d64ee24bd0 user: rkeene tags: trunk | |
Changes
Added .fossil-settings/ignore-glob version [f6e6d8eca3].
| 
 | 
Added client/Makefile version [3e756cea1a].
| 
 | 
Modified client/lib/teapotclient0.1/teapotclient.tcl from [b940fef8b1] to [e6f656d8b6].
| 1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + + + + + + + - + | 
#! /usr/bin/env tclsh
# This file has no license.  It is in the public domain.
# -- Roy Keene <tcl@rkeene.org> [20081025T1400Q]
package require md5
package require http
package require fileutil
namespace eval ::teapotclient {}
namespace eval ::teapotclient {
	proc __get_tmpdir {} {
		foreach checkenv [list TMPDIR TEMP TMP TEMPDIR] {
			if {[info exists ::env($checkenv)]} {
				return $::env($checkenv)
			}
		}
		return "/tmp"
	}
 | 
| ︙ | |||
| 146 147 148 149 150 151 152 | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | - + | 
			if {[lsearch $existingExts $dep] == -1} {
				lappend existingExts $dep
				lappend fetchDeps $dep
			}
		}
		if {[info exists fetchDeps]} {
 | 
| ︙ | 
Modified client/teapot-client.tcl from [74f5cdd85f] to [dbdef8ce98].
| 1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - + + | 
#! /usr/bin/env tclsh
set teapotservers [list teapot.activestate.com]
lappend auto_path [file join [file dirname [info script]] lib]
package require teapotclient
proc print_help {} {
 | 
| ︙ |