summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorsandeep <sandeep@noemail.net>2000-05-31 01:28:54 (GMT)
committersandeep <sandeep@noemail.net>2000-05-31 01:28:54 (GMT)
commita082b1efa3b21e943d70b2bf46efe27f59a13e05 (patch)
treed2cb7cd3e5ca0e90883c0d6aaa5f8471032e8557 /ChangeLog
parenta0228c8a640edd842eff025d2542153404f38842 (diff)
downloadtcl-a082b1efa3b21e943d70b2bf46efe27f59a13e05.zip
tcl-a082b1efa3b21e943d70b2bf46efe27f59a13e05.tar.gz
tcl-a082b1efa3b21e943d70b2bf46efe27f59a13e05.tar.bz2
2000-05-29 Sandeep Tamhankar <sandeep@scriptics.com>
* tests/http.test * doc/http.n * library/http2.3/http.tcl: Fixed bug 5741, where unsuccessful geturl calls sometimes leaked memory and resources (sockets). Also, switched around some of the logic so that http::wait never throws an exception. This is because in an asynchronous geturl, the command callback will probably end up doing all the error handling anyway, and in an asynchronous situation, the user expects to check the state when the transaction completes, as opposed to being thrown an exception. For the http package, this menas the user can check http::status for "error" and http::error for the error message after doing the http::wait. FossilOrigin-Name: 43202241e22712cadcbde2871b6924ec05e74459
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog47
1 files changed, 14 insertions, 33 deletions
diff --git a/ChangeLog b/ChangeLog
index 390a778..090ec46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,36 +1,17 @@
-2000-04-27 Eric Melski <ericm@scriptics.com>
-
- * doc/library.n: Added entries for auto_qualify and auto_import
- [Bug: 1271].
-
- * doc/Init.3: Manual entry for Tcl_Init [Bug: 1820].
-
- * doc/expr.n: Added documentation for each of the math library
- functions that expr supports [Bug: 1054].
-
-2000-04-26 Eric Melski <ericm@scriptics.com>
-
- * doc/memory.n: Man page for Tcl "memory" command, which is
- created when TCL_MEM_DEBUG is defined at compile time.
-
- * doc/TCL_MEM_DEBUG.3: Man page with overall information about
- TCL_MEM_DEBUG usage.
-
- * doc/DumpActiveMemory.3: Man page for Tcl_DumpActiveMemory,
- Tcl_InitMemory, and Tcl_ValidateAllMemory [Bug: 1816, 1835].
-
- * generic/tclCkalloc.c: Fixed some function headers.
-
- * unix/mkLinks: Regen'd with new mkLinks.tcl.
-
- * unix/mkLinks.tcl: Fixed indentation, made link setup more
- intelligent (only do one existance test per man page, instead of
- one per function).
-
- * doc/library.n: Fixed .SH NAME macro to include each function
- documented on the page, so that mkLinks will know about the
- functions listed there, and so that the Windows help file index
- will get set up correctly [Bug: 1898, 5273].
+2000-05-29 Sandeep Tamhankar <sandeep@scriptics.com>
+
+ * tests/http.test
+ * doc/http.n
+ * library/http2.3/http.tcl: Fixed bug 5741, where unsuccessful
+ geturl calls sometimes leaked memory and resources (sockets).
+ Also, switched around some of the logic so that http::wait never
+ throws an exception. This is because in an asynchronous geturl,
+ the command callback will probably end up doing all the error
+ handling anyway, and in an asynchronous situation, the user
+ expects to check the state when the transaction completes, as
+ opposed to being thrown an exception. For the http package, this
+ menas the user can check http::status for "error" and http::error
+ for the error message after doing the http::wait.
2000-04-26 Jeff Hobbs <hobbs@scriptics.com>