summaryrefslogtreecommitdiffstats
path: root/library/http/pkgIndex.tcl
Commit message (Collapse)AuthorAgeFilesLines
* Merged from 8.4 branch -- http package. Fix Bug 3498327. Generate upper-case ↵andreask2012-03-071-1/+1
|\ | | | | | | hexadecimal output for compliance with RFC 3986. Bumped version to 2.7.9.
| * http package. Fix Bug 3498327. Generate upper-case hexadecimal output for ↵andreask2012-03-071-1/+1
| | | | | | | | compliance with RFC 3986. Bumped version to 2.5.7.
* | Bump to version 2.7.8dgp2012-01-171-1/+1
|\ \ | |/
| * Bump to 2.5.6dgp2012-01-171-1/+1
| |
| * Backport http 2.5.5 changes from HEADpatthoyts2008-02-271-1/+1
| |
| * Fix for #1815865 - always check the existence of the state array when ↵patthoyts2008-02-221-1/+1
| | | | | | | | checking http::status
| * * library/http/http.tcl: Change " " -> "+" url encoding mappinghobbs2006-09-151-1/+1
| | | | | | | | | | * library/http/pkgIndex.tcl: to " " -> "%20" as per RFC 3986. * tests/http.test (http-5.1): bump http to 2.5.3 for 8.4.14
| * oops! got out of sync; reverting...dgp2006-03-071-1/+1
| |
| * *** 8.4.13 TAGGED FOR RELEASE ***dgp2006-03-071-1/+1
| | | | | | | | | | * library/http/http.tcl: Bump to version 2.5.3 to cover bug fix * library/http/pkgIndex.tcl: in URL parsing. [Bug 1358369]
| * Bump to http 2.5.2 to cover changing rules in [http::mapReply] [1182373]dgp2005-11-151-1/+1
| |
| * Fix performance nasty in http::mapReply [1020491] and clean up version numbers.dkf2005-01-061-2/+2
| |
| * * doc/http.n (http::config): add -urlencoding option (default utf-8)hobbs2004-05-251-1/+1
| | | | | | | | | | | | | | | | | | * library/http/http.tcl: that specifies encoding conversion of * library/http/pkgIndex.tcl: args for http::formatQuery. Previously * tests/http.test: undefined, RFC 2718 says it should be utf-8. 'http::config -urlencoding {}' returns previous behavior, which will throw errors processing non-latin-1 chars. Bumped http package to 2.5.0.
| * * README: Bumped patch level to 8.4.5 to preparedgp2003-10-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tcl.h: for next patch release. * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf (2.13) * win/configure: * library/http/http.tcl: Bumped to http 2.4.5 * library/http/pkgIndex.tcl:
| * * library/http/pkgIndex.tcl: merged to v2.4.4 from headhobbs2003-07-181-1/+1
| | | | | | | | | | * library/http/http.tcl: add support for user:pass info in URL. * tests/http.test: [Bug 759888] (shiobara)
* | Update changes toward 8.5.11 release. Bump to http 2.7.7.dgp2011-10-201-1/+1
| |
* | [Bug 2715421] fix backported from 8.6 to remove extra newline from POSTs.patthoyts2011-05-121-1/+1
| | | | | | | | | | Package version incremented to 2.7.6. Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
* | * library/http/http.tcl: Update the URL syntax check todgp2009-11-111-1/+1
| | | | | | | | | | | | | | | | | | RFC 3986 compliance on the subject of non-encoded question mark characters. [Bug 2891171]. * library/http/pkgIndex.tcl: Bump to http 2.7.5 to avoid any * unix/Makefile.in: confusion with snapshot "releases" * win/Makefile.in: that might be in ActiveTcl, etc.
* | http bump fixdgp2009-09-291-1/+1
| |
* | * library/http/http.tcl: Bump to http 2.7.4 to account fordgp2009-09-111-1/+1
| | | | | | | | | | | | * library/http/pkgIndex.tcl: [Bug 2849860] fix. * unix/Makefile.in: * win/Makefile.in:
* | * library/http/http.tcl: Backport http 2.7.3 from HEAD fordgp2009-04-091-1/+1
| | | | | | | | | | | | * library/http/pkgIndex.tcl: bundling with the Tcl 8.5.7 release. * unix/Makefile.in: * win/Makefile.in:
* | Backported a fix for reading HTTP-like protocols that used to work andpatthoyts2008-10-231-1/+1
| | | | | | | | were broken with http 2.7. Now http 2.7.2
* | * library/http/http.tcl: Remove 8.5 requirement.dgp2008-08-111-1/+1
| | | | | | | | | | | | | | * library/http/pkgIndex.tcl: * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc:
* | &#(*& typo!dgp2008-08-111-1/+1
| |
* | * library/http/http.tcl: Bump http version to 2.7.1 to accountdgp2008-08-111-2/+2
| | | | | | | | | | | | | | | | * library/http/pkgIndex.tcl: for [Bug 2046486] bug fix. This * unix/Makefile.in: release of http now requires a * win/Makefile.in: dependency on Tcl 8.5 to be able to * win/makefile.bc: use the unsigned formats in the * win/makefile.vc: [binary scan] command.
* | * unix/Makefile.in (install-libraries): Bump http to 2.7hobbs2008-03-121-9/+1
| | | | | | | | | | | | | | | | | | | | | | | | * win/Makefile.in (install-libraries): Added -myaddr option to allow * library/http/http.tcl (http::geturl): control of selected socket * library/http/pkgIndex.tcl: interface. [Bug 559898] * doc/http.n, tests/http.test: Added -keepalive and -protocol 1.1 with chunked transfer encoding support. [Bug 1063703, 1470377, 219225] Added ability to override Host in -headers. [Bug 928154] Added -strict option to control URL validation on per-call basis. [Bug 1560506]
* | Set version 2.5.5patthoyts2008-02-261-1/+1
| | | | | | | | bug #1868845 - it is better to do the [eof] check after trying to read from the socket. No clashes found in testing. Added http::meta command to access the http headers.
* | Fix for bug #1818565. Always check that the state array exists in the ↵patthoyts2008-02-221-1/+1
| | | | | | | | http::status command. Set version 2.5.4
* | * library/http/http.tcl: Change " " -> "+" url encoding mappinghobbs2006-09-161-1/+1
| | | | | | | | | | * library/http/pkgIndex.tcl: to " " -> "%20" as per RFC 3986. * tests/http.test (http-5.1): bump http to 2.5.3
* | * unix/Makefile.in: Package http 2.5.2 requires Tcl 8.4, sodgp2006-03-071-1/+1
| | | | | | | | | | * win/Makefile.in: the *.tm installation has to be placed in an "8.4" directory, not an "8.2" directory.
* | * library/http/http.tcl: Bump to version 2.5.3 to cover bug fixdgp2006-03-071-1/+1
| | | | | | | | | | | | * library/http/pkgIndex.tcl: in URL parsing. [Bug 1358369] * unix/Makefile.in: * win/Makefile.in:
* | Bump to http 2.5.2 to cover changing rules in [http::mapReply] [1182373]dgp2005-11-151-1/+1
| |
* | Performance updates to http::mapReply [1020491] and fix version numbering.dkf2005-01-061-2/+2
| |
* | * doc/http.n (http::config): add -urlencoding option (default utf-8)hobbs2004-05-251-1/+1
| | | | | | | | | | | | | | | | | | * library/http/http.tcl: that specifies encoding conversion of * library/http/pkgIndex.tcl: args for http::formatQuery. Previously * tests/http.test: undefined, RFC 2718 says it should be utf-8. 'http::config -urlencoding {}' returns previous behavior, which will throw errors processing non-latin-1 chars. Bumped http package to 2.5.0.
* | * library/http/pkgIndex.tcl: upped to http v2.4.4hobbs2003-07-181-1/+1
| | | | | | | | | | * library/http/http.tcl: add support for user:pass info in URL. * tests/http.test: [Bug 759888] (shiobara)
* | * library/auto.tcl: Replaced [regexp] and [regsub] withdgp2003-03-191-1/+1
|/ | | | | | | | | | | | | | | * library/history.tcl: [string map] where possible. Thanks * library/ldAout.tcl: to David Welton. [Bugs 667456,667558] * library/safe.tcl: Bumped to http 2.4.3, opt 0.4.5, and * library/http/http.tcl: tcltest 2.2.3. * library/http/pkgIndex.tcl: * library/opt/optparse.tcl: * library/opt/pkgIndex.tcl: * library/tcltest/tcltest.tcl: * library/tcltest/pkgIndex.tcl: * tools/genStubs.tcl: * tools/tcltk-man2html.tcl: * unix/mkLinks.tcl:
* * Corrected use of http::error whendgp2002-02-051-1/+1
| | | | ::error was intended. Bump to http 2.4.2.
* * library/http/pkgIndex.tcl:hobbs2002-01-251-1/+1
| | | | | * library/http/http.tcl: don't add port in default case to handle broken servers. http bumped to 2.4.1 [Bug #504508]
* * Updated http package to version 2.4,dgp2001-09-071-1/+1
| | | | reflecting the new features just added.
* * doc/http.n: noted -binary, charset and coding state keys.hobbs2001-09-071-1/+1
| | | | | | | | | | * tests/http.test: * library/http/pkgIndex.tcl: * library/http/http.tcl (geturl): correctly get charset parameter and convert text according to specified encoding (if known). RFC iso8859-1 is used by default. Also recognize Content-encoding to see if we should do binary translation. Added a CYA -binary switch for the cases that were missed. [Bug #219211 #219399]
* Added checks for package dependencies.dgp2001-08-091-1/+2
| | | | | Bumped patchlevels of changed packages: http 2.3.2, msgcat 1.2.2, opt 0.4.3, tcltest 2.0.1. [Patch 448931]
* Update the http package version number now as we change it, so we don'tdgp2001-08-021-1/+1
| | | | forget to do it later when we release it.
* updated package index file to use version 2.3 instead of 2.2.hershey2000-03-181-1/+1
|
* * library/http2.1/http.tcl:hobbs1999-11-191-1/+1
| | | | * library/http2.1/pkgIndex.tcl: updated http package to 2.2
* Updated for new package version numberwelch1999-07-011-2/+2
|
* Initial revisionrjohnson1998-03-261-0/+11