summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2001-09-07 02:43:38 (GMT)
committerdgp <dgp@noemail.net>2001-09-07 02:43:38 (GMT)
commitee92191f9f0f2df925a0f34cb823c663217cff17 (patch)
tree28d465f70daa34993380a8b142f31d76929a8606 /library
parent8e80d72994d1a32e47ed521e2454d7fcbde17cd8 (diff)
downloadtcl-ee92191f9f0f2df925a0f34cb823c663217cff17.zip
tcl-ee92191f9f0f2df925a0f34cb823c663217cff17.tar.gz
tcl-ee92191f9f0f2df925a0f34cb823c663217cff17.tar.bz2
* Updated http package to version 2.4,
reflecting the new features just added. FossilOrigin-Name: e34ff11fb384a0af7151354f538797fcedc8c013
Diffstat (limited to 'library')
-rw-r--r--library/http/http.tcl8
-rw-r--r--library/http/pkgIndex.tcl2
2 files changed, 6 insertions, 4 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl
index 3f196a2..627e328 100644
--- a/library/http/http.tcl
+++ b/library/http/http.tcl
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: http.tcl,v 1.32.2.4 2001/09/07 00:10:57 hobbs Exp $
+# RCS: @(#) $Id: http.tcl,v 1.32.2.5 2001/09/07 02:43:39 dgp Exp $
# Rough version history:
# 1.0 Old http_get interface
@@ -19,10 +19,12 @@
# 2.3 Added SSL support, and ability to post from a channel
# This version also cleans up error cases and eliminates the
# "ioerror" status in favor of raising an error
+# 2.4 Added -binary option to http::geturl and charset element
+# to the state array.
package require Tcl 8.2
-# keep this in sink with pkgIndex.tcl
-package provide http 2.3.3
+# keep this in sync with pkgIndex.tcl
+package provide http 2.4
namespace eval http {
variable http
diff --git a/library/http/pkgIndex.tcl b/library/http/pkgIndex.tcl
index 3c5d514..b7b87a9 100644
--- a/library/http/pkgIndex.tcl
+++ b/library/http/pkgIndex.tcl
@@ -9,4 +9,4 @@
# full path name of this file's directory.
if {![package vsatisfies [package provide Tcl] 8.2]} {return}
-package ifneeded http 2.3.3 [list tclPkgSetup $dir http 2.3.3 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister}}}]
+package ifneeded http 2.4 [list tclPkgSetup $dir http 2.4 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister}}}]