Differences From Artifact [4ace071797]:
- Executable file client/examples/example-1.tcl — part of check-in [68f9c46716] at 2009-04-18 22:14:02 on branch trunk — Updated teapotclient to not require specifying "Tcl Tk" in the existing extensions parameter of download_extensions. Changed default download directory to not include "lib" of teapotclient, but left this behaviour in the "teapot-client.tcl" script Added examples (user: rkeene, size: 503) [annotate] [blame] [check-ins using]
To Artifact [835098013a]:
- Executable file client/examples/example-1.tcl — part of check-in [698e02690e] at 2010-02-05 05:14:02 on branch trunk — Updated example to use single server (user: rkeene, size: 496) [annotate] [blame] [check-ins using]
| 1 2 3 4 5 6 7 8 | 
#! /usr/bin/env tclsh
lappend auto_path [file join [file dirname [info script]] .. lib]
		package require teapotclient
                puts "The following extensions are available:"
                foreach {extension extensioninfo} [::teapotclient::get_extensions \
 | | | 1 2 3 4 5 6 7 8 9 10 11 12 | 
#! /usr/bin/env tclsh
lappend auto_path [file join [file dirname [info script]] .. lib]
		package require teapotclient
                puts "The following extensions are available:"
                foreach {extension extensioninfo} [::teapotclient::get_extensions \
                                                   teapot.activestate.com \
                                                   {*} {*}] {
                        puts "  $extension [join $extensioninfo {, }]"
                }
 |