Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch bug-f81beca7af Excluding Merge-Ins
This is equivalent to a diff from ed98c16eab to 1aff94317c
|
2020-06-21
| ||
| 14:50 | Merge bug-f81beca7af check-in: 6601913dac user: kjnash tags: core-8-6-branch | |
|
2020-06-19
| ||
| 17:44 | Merge bug-f81beca7af Closed-Leaf check-in: 1aff94317c user: kjnash tags: bug-f81beca7af | |
| 14:40 | Bump http version to 2.9.2 check-in: 5bc802fdfa user: kjnash tags: bug-f81beca7af | |
| 12:37 | Merge 8.6 check-in: a2a2375f9d user: kjnash tags: bug-f81beca7af | |
| 10:29 | merge-mark check-in: 9766ceb7db user: jan.nijtmans tags: core-8-branch | |
| 10:27 | sync zlib's crypt.h with version in Tcl 8.7 check-in: ed98c16eab user: jan.nijtmans tags: core-8-6-branch | |
|
2020-06-12
| ||
| 14:44 | rules.vc: No need to redefine values which are already the default. tclWinPort.h: Fix comment check-in: 9cde493d0c user: jan.nijtmans tags: core-8-6-branch | |
Changes to doc/http.n.
| ︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + | .TH "http" n 2.9 http "Tcl Bundled Packages" .so man.macros .BS '\" Note: do not modify the .SH NAME line immediately below! .SH NAME http \- Client-side implementation of the HTTP/1.1 protocol .SH SYNOPSIS |
| ︙ | |||
157 158 159 160 161 162 163 | 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | - + | throwing an error processing non-latin-1 characters. .TP \fB\-useragent\fR \fIstring\fR . The value of the User-Agent header in the HTTP request. In an unsafe interpreter, the default value depends upon the operating system, and the version numbers of \fBhttp\fR and \fBTcl\fR, and is (for example) |
| ︙ |
Changes to library/http/http.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + | # http.tcl -- # # Client-side HTTP for GET, POST, and HEAD commands. These routines can # be used in untrusted code that uses the Safesock security policy. # These procedures use a callback interface to avoid using vwait, which # is not defined in the safe base. # # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. package require Tcl 8.6- # Keep this in sync with pkgIndex.tcl and with the install directories in # Makefiles |
| ︙ | |||
1328 1329 1330 1331 1332 1333 1334 | 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 | - - + - |
}
} elseif {$state(-validate)} {
set how HEAD
} elseif {$isQueryChannel} {
set how POST
# The query channel must be blocking for the async Write to
# work properly.
|
| ︙ |
Changes to library/http/pkgIndex.tcl.
1 | 1 2 | - + |
if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
|
Changes to unix/Makefile.in.
| ︙ | |||
940 941 942 943 944 945 946 | 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 | - - + + | $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"; \ done; @echo "Installing package http1.0 files to $(SCRIPT_INSTALL_DIR)/http1.0/"; @for i in $(TOP_DIR)/library/http1.0/*.tcl ; \ do \ $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)/http1.0"; \ done; |
| ︙ |
Changes to win/Makefile.in.
| ︙ | |||
715 716 717 718 719 720 721 | 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | - - + + | $(COPY) "$$i" "$(SCRIPT_INSTALL_DIR)"; \ done; @echo "Installing library http1.0 directory"; @for j in $(ROOT_DIR)/library/http1.0/*.tcl; \ do \ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/http1.0"; \ done; |
| ︙ |