summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2003-02-11 20:41:32 (GMT)
committerKevin B Kenny <kennykb@acm.org>2003-02-11 20:41:32 (GMT)
commit736f0317f936ab603c6157110e8efdeb4a329a86 (patch)
tree68a6dce91f7760d8d3ce7c9614b5b2001215f561
parent6f8411efbe39aa9209e60b463eb1faf7d4c81835 (diff)
downloadtcl-736f0317f936ab603c6157110e8efdeb4a329a86.zip
tcl-736f0317f936ab603c6157110e8efdeb4a329a86.tar.gz
tcl-736f0317f936ab603c6157110e8efdeb4a329a86.tar.bz2
Corrected a problem where http-4.14 would fail when run with a proxy
server. Replaced references to scriptics.com by tcl.tk.
-rw-r--r--ChangeLog17
-rw-r--r--tests/http.test6
2 files changed, 20 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4dbfcf6..d765792 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-11 Kevin Kenny <kennykb@users.sourceforge.net>
+
+ * tests/http.test: Corrected a problem where http-4.14 would fail
+ when run in an environment with a proxy server. Replaced references
+ to scriptics.com by tcl.tk.
+
2003-02-11 Jeff Hobbs <jeffh@ActiveState.com>
* tests/stringObj.test:
@@ -159,6 +165,17 @@
* generic/tclTest.c: added regression test for the modification
date setting of cross-platform file copies.
+2003-02-03 Kevin Kenny <kennykb@users.sourceforge.net>
+
+ * generic/tclBasic.c: Changed [trace add command] so that 'rename'
+ callbacks get fully qualified names of the command. [Bug
+ 651271]. ***POTENTIAL INCOMPATIBILITY***
+ * tests/trace.test: Modified the test cases for [trace add
+ command] to expect fully qualified names on the 'rename'
+ callbacks. Added a case for renaming a proc within a namespace.
+ * doc/trace.n: Added language about use of fully qualified names
+ in trace callbacks.
+
2003-02-01 Kevin Kenny <kennykb@users.sourceforge.net>
* generic/tclCompCmds.c: Removed an unused variable that caused
diff --git a/tests/http.test b/tests/http.test
index b5fb26c..4beba00 100644
--- a/tests/http.test
+++ b/tests/http.test
@@ -12,7 +12,7 @@
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
#
-# RCS: @(#) $Id: http.test,v 1.32 2003/02/07 11:59:43 vincentdarley Exp $
+# RCS: @(#) $Id: http.test,v 1.33 2003/02/11 20:41:38 kennykb Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -122,7 +122,7 @@ test http-3.2 {http::geturl} {
} {Unsupported URL: http:junk}
set url [info hostname]:$port
-set badurl www.scriptics.com:6666
+set badurl [info hostname]:6666
test http-3.3 {http::geturl} {
set token [http::geturl $url]
http::data $token
@@ -447,7 +447,7 @@ test http-4.15 {http::Event} {
# This test may fail if you use a proxy server. That is to be
# expected and is not a problem with Tcl.
set code [catch {
- set token [http::geturl not_a_host.scriptics.com -timeout 1000 -command {#}]
+ set token [http::geturl not_a_host.tcl.tk -timeout 1000 -command {#}]
http::wait $token
http::status $token
} err]