summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in usage.rstPrateek Ganguli2023-02-091-1/+1
|
* Replace pkg_resources use with importlib.metadataBert JW Regeer2023-01-221-2/+6
|
* rename "master" to "main"jonathan vanasco2022-11-162-2/+2
|
* docs: Fix a few typosTim Gates2022-07-312-2/+2
| | | | | | | | | | | | | | | | | | | There are small typos in: - docs/runner.rst - docs/usage.rst - src/waitress/parser.py - src/waitress/server.py - tests/test_functional.py Fixes: - Should read `preceding` rather than `preceeding`. - Should read `multiple` rather than `multipe`. - Should read `descriptors` rather than `desctriptors`. - Should read `descriptor` rather than `desctriptor`. - Should read `attempt` rather than `atempt`. - Should read `analogous` rather than `analagous`. Signed-off-by: Tim Gates <tim.gates@iress.com>
* Re-introduce clear_untrusted_proxy_headers for the 3.x versionBert JW Regeer2022-05-301-1/+1
|
* Revert "Revert "Merge pull request #370 from Yourun-proger/del_warnings""Bert JW Regeer2022-05-301-1/+5
| | | | This reverts commit 2784628a0fd1a38492e27384815953a44b3a3d5a.
* Revert "Merge pull request #370 from Yourun-proger/del_warnings"Bert JW Regeer2022-05-301-5/+1
| | | | | This reverts commit 603d2c12ce09fcd1be0b7a5734b4fca339820286, reversing changes made to 9e0b8c801e4d505c2ffc91b891af4ba48af715e0.
* Small fixYourun-Proger2022-03-181-1/+1
|
* Remove deprecation warningsYourun-Proger2022-03-161-1/+5
|
* Update supported Python versions for WaitressBert JW Regeer2022-01-171-2/+2
|
* Add documentation for server_nameBert JW Regeer2020-11-261-0/+17
|
* Missed dropping Py27 in docsBert JW Regeer2020-11-261-2/+2
|
* Drop Python 3.5 support from Waitress add Py3.9Bert JW Regeer2020-11-261-4/+4
|
* Fix syntax for inline literalSteve Piercy2020-09-151-1/+1
|
* Fix typo for default TCP backlog in API docstheandrew1682020-09-021-1/+1
|
* add a dedicated section for handling herokuMichael Merickel2020-07-141-15/+17
|
* Merge pull request #306 from cacao-accounting/py3-onlyMichael Merickel2020-07-141-0/+19
| | | Update usage.rst to include reference Heroku
* Update .gitignoreBert JW Regeer2020-04-161-4/+0
|
* Drop Python 3.4Bert JW Regeer2020-02-021-1/+1
| | | | | | | | | | | | | | This is necessary due to needing coverage>=5.0, which is no longer available on Python 3.4. Python 3.4 is also now past end of life. This continued to work by chance due to Travis having nosetest installed in the Python global installation, and thus the failure from tox to install coverage>=5.0 did not cause errors on Travis. Testing locally I still had an old version of coverage installed, and that version had not yet dropped Python 3.4.
* Blacken the entire code baseBert JW Regeer2019-12-121-53/+62
|
* add backpressure on the app_iter if the socket can't send data quickly enoughMichael Merickel2019-04-053-1/+13
|
* flush SO_SNDBUF data on every send and deprecate send_bytesso_sndbufMichael Merickel2019-04-043-3/+7
|
* minor docs tweak on reverse proxy setupproxy-updatesMichael Merickel2019-01-031-3/+3
|
* fix docs to not support comma-separated settingsMichael Merickel2019-01-031-1/+1
| | | | fixes #225
* fix pastedeploy urlMichael Merickel2019-01-031-1/+1
|
* fix docs formattingMichael Merickel2018-12-022-81/+119
|
* Update reverse proxy documentationBert JW Regeer2018-12-021-92/+49
| | | | Get rid of paste middleware
* Add documentation for new argumentsBert JW Regeer2018-12-021-2/+77
|
* grammar fixdocs-grammar-fixSteve Piercy2018-11-141-1/+1
|
* Changes for reviewFrank Krick2018-11-141-3/+2
|
* Check in adjustments to prevent mixing of Internet and UNIX sockets as well ↵Frank Krick2018-11-131-1/+2
| | | | as the use of unsupported sockets
* Removed unix socket from code exampleFrank Krick2018-11-131-4/+2
|
* Changes for pull request reviewFrank Krick2018-11-131-2/+3
|
* Signed CONTRIBUTORS.txt and changes for reviewFrank Krick2018-10-292-5/+5
|
* Added versionadded and minor changes to socket activation documentationFrank Krick2018-10-282-6/+7
|
* Updated minor error in documentationFrank Krick2018-10-281-1/+1
|
* Updated documentationFrank Krick2018-10-283-1/+49
|
* Removed bind_sockets parameter from adjustments and added autodetection if ↵Frank Krick2018-10-281-0/+8
| | | | binding the socket should be skipped.
* Docs replace asyncore with wasyncore as needed (#210)Steve Piercy2018-09-233-17/+27
| | | | | | | | | | * Fix name * Use versionadded with context, improve reST syntax. * improve reST syntax. * Replace asyncore with wasyncore as appropriate
* Add ethical ads for RTD; bump Sphinx and theme versionsSteve Piercy2018-09-231-0/+8
|
* Add versionchanged to asyncore entry.Steve Piercy2018-09-221-22/+29
| | | | | Add wasyncore entry. Rewrap for clear, consistent indentation.
* Use proper syntax highlightingSteve Piercy2018-09-221-2/+6
|
* Use contextual versionadded directive, fix grammar, reST syntax and indentationSteve Piercy2018-09-221-10/+9
|
* Use correct syntax highlighterSteve Piercy2018-09-221-1/+3
|
* Use contextual versionadded directive.Steve Piercy2018-09-222-8/+6
| | | | Use proper casing for nginx.
* Correct one is PEP 3333Steve Piercy2018-09-221-1/+1
|
* Make text align with its code.Steve Piercy2018-09-221-41/+27
| | | | Use consistent code-block indentation.
* Comment out section as a TODOdoc_transloggerSteve Piercy2018-09-061-6/+5
| | | | - See #208
* update referencesSteve Piercy2018-09-062-2/+2
|
* Add intersphinx; turn off smart quotes; remove unused importsSteve Piercy2018-09-061-2/+9
|