summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2019-11-26 11:16:12 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2019-11-26 11:16:12 (GMT)
commit582196abb892f5a7a487da81005747ebdef32c59 (patch)
tree612c532dc2c56878315d8538ad00966bea25007a /library
parent76414db5a3f045ea24107335e1e8486244c48c2f (diff)
downloadtcl-582196abb892f5a7a487da81005747ebdef32c59.zip
tcl-582196abb892f5a7a487da81005747ebdef32c59.tar.gz
tcl-582196abb892f5a7a487da81005747ebdef32c59.tar.bz2
Move the cookiejar package to its own directory so http works as a TM. Fix the unix installation code to include the bootstrap registrar names.
Diffstat (limited to 'library')
-rw-r--r--library/cookiejar/cookiejar.tcl (renamed from library/http/cookiejar.tcl)0
-rw-r--r--library/cookiejar/effective_tld_names.txt.gz (renamed from library/http/effective_tld_names.txt.gz)bin70836 -> 70836 bytes
-rw-r--r--library/cookiejar/idna.tcl (renamed from library/http/idna.tcl)0
-rw-r--r--library/cookiejar/pkgIndex.tcl3
-rw-r--r--library/http/pkgIndex.tcl2
5 files changed, 3 insertions, 2 deletions
diff --git a/library/http/cookiejar.tcl b/library/cookiejar/cookiejar.tcl
index 2eae877..2eae877 100644
--- a/library/http/cookiejar.tcl
+++ b/library/cookiejar/cookiejar.tcl
diff --git a/library/http/effective_tld_names.txt.gz b/library/cookiejar/effective_tld_names.txt.gz
index 13e08bb..13e08bb 100644
--- a/library/http/effective_tld_names.txt.gz
+++ b/library/cookiejar/effective_tld_names.txt.gz
Binary files differ
diff --git a/library/http/idna.tcl b/library/cookiejar/idna.tcl
index 2a7d289..2a7d289 100644
--- a/library/http/idna.tcl
+++ b/library/cookiejar/idna.tcl
diff --git a/library/cookiejar/pkgIndex.tcl b/library/cookiejar/pkgIndex.tcl
new file mode 100644
index 0000000..a8d8742
--- /dev/null
+++ b/library/cookiejar/pkgIndex.tcl
@@ -0,0 +1,3 @@
+if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
+package ifneeded cookiejar 0.1 [list source [file join $dir cookiejar.tcl]]
+package ifneeded tcl::idna 1.0 [list source [file join $dir idna.tcl]]
diff --git a/library/http/pkgIndex.tcl b/library/http/pkgIndex.tcl
index e126083..f9f1176 100644
--- a/library/http/pkgIndex.tcl
+++ b/library/http/pkgIndex.tcl
@@ -1,4 +1,2 @@
if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
package ifneeded http 2.9.1 [list tclPkgSetup $dir http 2.9.1 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}]
-package ifneeded cookiejar 0.1 [list source [file join $dir cookiejar.tcl]]
-package ifneeded tcl::idna 1.0 [list source [file join $dir idna.tcl]]