summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2001-09-07 02:43:11 (GMT)
committerdgp <dgp@users.sourceforge.net>2001-09-07 02:43:11 (GMT)
commit25432c6f43048ae1d85596b8b408e44a351aacd3 (patch)
treef3ce5fd4c8e51e75e00b619e21d0befee78c47d8 /library
parent312d83efa8996c6b208e6764a9cd4d46e4405241 (diff)
downloadtcl-25432c6f43048ae1d85596b8b408e44a351aacd3.zip
tcl-25432c6f43048ae1d85596b8b408e44a351aacd3.tar.gz
tcl-25432c6f43048ae1d85596b8b408e44a351aacd3.tar.bz2
* Updated http package to version 2.4,
reflecting the new features just added.
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 314afd1..fd0ed5a 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.38 2001/09/07 00:03:08 hobbs Exp $
+# RCS: @(#) $Id: http.tcl,v 1.39 2001/09/07 02:43:12 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}}}]