Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch oehhar-documentation-tickets Excluding Merge-Ins
This is equivalent to a diff from a9bda6b534 to 2056ec711f
|
2020-11-16
| ||
| 15:03 | Merge documentation changes for http and dict from branch [oehhar-documentation-tickets] check-in: 0cab1babd7 user: oehhar tags: core-8-6-branch | |
| 14:37 | Ticket [361303]: http doc: status values incomplete Closed-Leaf check-in: 2056ec711f user: oehhar tags: oehhar-documentation-tickets | |
| 14:14 | Ticket [4f511270af7]: http documentation: -query data may be any data check-in: bcf3fead4f user: oehhar tags: oehhar-documentation-tickets | |
| 13:55 | Ticket [d8ae5d5f4c]: Documentation of dict filter script: script results, not returns a boolean check-in: e4f600329a user: oehhar tags: oehhar-documentation-tickets | |
|
2020-11-10
| ||
| 17:50 | Set a default DESTDIR in macosx/GNUmakefile check-in: 49590225fb user: culler tags: core-8-6-branch | |
| 16:40 | merge 8.6 check-in: f346b6a317 user: dgp tags: core-8-6-11-rc | |
| 09:26 | Cleaning up the actions and trying to make them behave more usefully on Windows. check-in: ac3b204f47 user: dkf tags: github-action-cleanup | |
|
2020-11-09
| ||
| 09:15 | merge mark check-in: 8b75603da5 user: dkf tags: core-8-branch | |
| 09:13 | Copied build control files for Github Actions from 8.7 check-in: a9bda6b534 user: dkf tags: core-8-6-branch | |
|
2020-11-06
| ||
| 17:17 | Add MSVC "StaticPackage" build to travis. Fix another bug in winDde.test which didn't account for st... check-in: baa4f47702 user: jan.nijtmans tags: core-8-6-branch | |
Changes to doc/dict.n.
| ︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + |
of the given patterns (in the style of \fBstring match\fR.)
.VE 8.6
.TP
\fBdict filter \fIdictionaryValue \fBscript {\fIkeyVariable valueVariable\fB} \fIscript\fR
.
The script rule tests for matching by assigning the key to the
\fIkeyVariable\fR and the value to the \fIvalueVariable\fR, and then evaluating
|
| ︙ |
Changes to doc/http.n.
| ︙ | |||
74 75 76 77 78 79 80 81 82 83 84 85 86 87 | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | + + + | the HTTP operation is done in the background. \fB::http::geturl\fR returns immediately after generating the HTTP request and the callback is invoked when the transaction completes. For this to work, the Tcl event loop must be active. In Tk applications this is always true. For pure-Tcl applications, the caller can use \fB::http::wait\fR after calling \fB::http::geturl\fR to start the event loop. .PP \fBNote:\fR The event queue is even used without the \fB-command\fR option. As a side effect, arbitrary commands may be processed while \fBhttp::geturl\fR is running. .SH COMMANDS .TP \fB::http::config\fR ?\fIoptions\fR? . The \fB::http::config\fR command is used to set and query the name of the proxy server and port, and the User-Agent name used in the HTTP requests. If no options are specified, then the current configuration |
| ︙ | |||
312 313 314 315 316 317 318 | 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | + + + - - + + - | Select the HTTP protocol version to use. This should be 1.0 or 1.1 (the default). Should only be necessary for servers that do not understand or otherwise complain about HTTP/1.1. .TP \fB\-query\fR \fIquery\fR . This flag causes \fB::http::geturl\fR to do a POST request that passes the \fIquery\fR as payload verbatim to the server. The content format (and encoding) of \fIquery\fR is announced by the header field \fBcontent-type\fR set by the option \fB-type\fR. |
| ︙ | |||
538 539 540 541 542 543 544 545 546 547 548 549 550 551 | 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 | + + + + + + | If the server closes the socket without replying, then no error is raised, but the status of the transaction will be \fBeof\fR. .TP \fBerror\fR . The error message will also be stored in the \fBerror\fR status array element, accessible via \fB::http::error\fR. .TP\fR .\fBtimeout A timeout occurred before the transaction could complete .TP\fR .\fBreset user-reset .PP Another error possibility is that \fB::http::geturl\fR is unable to write all the post query data to the server before the server responds and closes the socket. The error message is saved in the \fBposterror\fR status array element and then \fB::http::geturl\fR attempts to complete the transaction. |
| ︙ | |||
653 654 655 656 657 658 659 | 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | - - + + - - + | \fBposterror\fR . The error, if any, that occurred while writing the post query data to the server. .TP \fBstatus\fR . |
| ︙ |