summaryrefslogtreecommitdiffstats
path: root/doc/http.n
Commit message (Collapse)AuthorAgeFilesLines
* Extend tcltk-man2html-utils.tcl, so it can handle the TIP #588 man-page. ↵jan.nijtmans2020-11-171-4/+6
| | | | Also fix 2 (minor) syntax errors in man-pages
* Ticket [361303]: http doc: status values incompleteoehhar2020-11-161-4/+9
|
* Ticket [4f511270af7]: http documentation: -query data may be any dataoehhar2020-11-161-3/+5
|
* Ticket [93551c1230]: Document that http::geturl processes the event loop ↵oehhar2020-11-161-0/+3
| | | | without -command
* Fix for http bug c2dc1da315. Add tests. Add detail about -handler to ↵kjnash2020-08-241-0/+4
| | | | http(n). Bump version to 2.9.5.
* Bugfix for #f81beca7af. Revert mistaken change to -querychannel -translation ↵kjnash2019-07-141-2/+2
| | | | in library/http/http.tcl. Bump http version to 2.9.1. Also, give correct major version in doc/http.n and adjust example user-agent string to a 2.9 value.
* Give lambda function a name "ReceiveChunked" for easier testing. New ↵jan.nijtmans2018-09-231-5/+13
| | | | function quoteString and code cleanup
* Document the new proc http::registerError in http.nkjnash2018-04-201-0/+13
|
* Implement queuing and pipelining for HTTP requests over a persistent connection.kjnash2018-03-271-6/+153
|
* [74bc0e44f5] Doc tweak.dkf2016-10-121-1/+2
|\
| * [74bc0e44f5] Doc tweak.dkf2016-10-121-1/+2
| |
* | [74bc0e44f5] Document result of [http::unregister].dkf2016-10-081-1/+3
|\ \ | |/
| * [74bc0e44f5] Document result of [http::unregister].dkf2016-10-081-1/+3
| |
* | Eliminate exess spacings in many doc pages.jan.nijtmans2016-03-021-5/+5
| |
* | Clarify http::config and http::geturl -headers roles in setting request headers.dgp2014-07-021-1/+2
| |
* | Fix [426679ef7d]: Having man.macros after .TH breaks rendering on OpenBSD ↵jan.nijtmans2013-11-051-1/+1
|\ \ | |/ | | | | and possibly others.
| * Fix [426679ef7d]: Having man.macros after .TH breaks rendering on OpenBSD ↵jan.nijtmans2013-11-051-1/+1
| | | | | | | | and possibly others.
* | More small documentation improvements.dkf2011-07-181-2/+2
| |
* | [FRQ 3358415]: Minor doc improvementdkf2011-07-081-1/+2
|\ \ | |/
| * [FRQ 3358415]: Minor doc improvementdkf2011-07-081-1/+2
| |
* | Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ \ | |/ | | cause more harm than good. Purged them (except in zlib files).
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
| |\ | | | | | | more harm than good. Purged them.
| | * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | | | | more harm than good. Purged them.
| | * Backport http 2.5.5 changes from HEADpatthoyts2008-02-271-1/+8
| | |
| | * More doc fix backportingdkf2004-10-271-50/+54
| | |
| | * * doc/http.n (http::config): add -urlencoding option (default utf-8)hobbs2004-05-251-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
| | * * doc/http.n: Updated SYNOPSIS to match actual syntax ofdgp2003-07-161-3/+3
| | | | | | | | | | | | commands. [Bug 756112]
* | | * doc/http.n: Corrected description of location of one of the entriesdkf2010-07-251-2/+2
| | | | | | | | | | | | in the state array.
* | | Use a consistent indentation of 4 for code examples.dkf2010-01-201-26/+26
| | |
* | | Improve clarity of formatting.dkf2008-10-171-8/+86
| | |
* | | more consistent wrong # arg messages: change all messages containing ↵nijtmans2008-07-131-3/+3
|/ / | | | | | | ?options? to the form ?-option value ...?
* | change http::geturl -keepalive default to 0 as it has poor true pipeline supporthobbs2008-03-121-3/+3
| |
* | * unix/Makefile.in (install-libraries): Bump http to 2.7hobbs2008-03-121-9/+25
| | | | | | | | | | | | | | | | | | | | | | | | * 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]
* | * library/http/http.tcl (http::geturl): add -method option to supporthobbs2008-03-121-1/+6
| | | | | | | | | | * tests/http.test (http-3.1): http PUT and DELETE requests. * doc/http.n: [Bug 1599901, 862554]
* | * doc/http.n: Revised to indicate that [package require http 2.5.5]dgp2008-03-101-3/+3
| | | | | | | | is needed to get all the documented commands ([http::meta]).
* | bug #705956 - fix inverted logic when cleaning up socket error in geturl. ↵patthoyts2008-02-271-1/+8
| | | | | | | | Document meta accessor.
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | GOOBE the docs some more.dkf2007-10-291-13/+15
| |
* | Next stage of doing GOOBE improvements to documentation now that the html ↵dkf2007-10-291-20/+17
| | | | | | | | generation works
* | First stage of doing GOOBE improvements to documentation now that the html ↵dkf2007-10-281-2/+2
| | | | | | | | generation works
* | * changes: Updated for 8.5b2 release.core_8_5_b2dgp2007-10-261-7/+8
| | | | | | | | | | | | * doc/*.1: Revert doc changes that broke * doc/*.3: `make html` so we can get the release * doc/*.n: out the door.
* | Lots of improvements to look and feel of manual pagesdkf2007-10-241-8/+7
| |
* | Remove over-wide lines from nroff output.dkf2007-07-041-3/+5
| |
* | Convert \fP to \fR for easier manual page scrapingdkf2006-11-151-89/+89
| |
* | More minor doc fixesdkf2004-10-271-29/+32
| |
* | More documentation fixes from Mikhail Kolesnitchenko. [Patch 1022527]dkf2004-09-061-2/+2
| |
* | Grammar and spelling fixes. [Patch 1018486]dkf2004-08-311-23/+24
| |
* | * doc/http.n (http::config): add -urlencoding option (default utf-8)hobbs2004-05-251-3/+13
| | | | | | | | | | | | | | | | | | * 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.
* | * doc/http.n: Updated SYNOPSIS to match actual syntax ofdgp2003-07-161-3/+3
|/ | | | commands. [Bug 756112]
* Man page updates from Larry Virden.jenglish2002-07-231-2/+2
|