summaryrefslogtreecommitdiff
path: root/cherrypy/lib/static.py
Commit message (Expand)AuthorAgeFilesLines
* 🎨 Upgrade pydocstyle to the recent versionSviatoslav Sydorenko2023-01-051-5/+7
* Reflow the comment in _make_content_dispositionSviatoslav Sydorenko2020-04-171-6/+6
* Fix typos in all NFKC referencesSviatoslav Sydorenko2020-04-171-3/+3
* Move normalization algorithm description from docstring to code comments.Jan Rieger2020-04-171-8/+7
* Change normalization algorithm to `NKFC` and add docstring for this solutionJan Rieger2020-04-171-1/+9
* Use normal string literals instead of u-prefixed onesSviatoslav Sydorenko2020-04-171-2/+2
* Add condition to prevent pass `filename*` when it's equal with original `file...Jan Rieger2020-04-171-2/+3
* Rename `_utf8_content_disposition` to `_make_content_disposition`Sviatoslav Sydorenko2020-04-171-3/+3
* Improve the docstring of `_utf8_content_disposition`Sviatoslav Sydorenko2020-04-171-3/+4
* Use :rfc: sphinx role in docstringsSviatoslav Sydorenko2020-04-171-2/+2
* Fix serving files with diacritics in name under their original nameJan Rieger2020-04-171-8/+26
* Revert "Fix serving files with diacritics in name under their original name"Jan Rieger2020-04-171-26/+8
* Fix serving files with diacritics in name under their original nameJan Rieger2020-04-171-8/+26
* Remove reliance on sixJason R. Coombs2018-09-021-2/+1
* Use bytes literals where appropriatev14.0.0Jason R. Coombs2018-02-041-3/+3
* Wrap MIME-type init into a function definitionSviatoslav Sydorenko2017-12-121-6/+11
* Adjust indentation in cherrypy.lib.staticSviatoslav Sydorenko2017-12-121-1/+1
* Correcting the initialization of the mimetypes libraryJohan De Taeye2017-12-111-1/+2
* Use platform.system for platform detection. Update docstring to include an au...Jason R. Coombs2017-10-281-5/+7
* File in sub-dir of staticdir in long-path notation would not loadSafihre2017-10-151-0/+7
* Fix email.generator._make_boundary compat importSviatoslav Sydorenko2017-08-111-6/+1
* Fix io.UnsupportedOperation reported by lgtm.comSviatoslav Sydorenko2017-08-111-4/+1
* Make cherrypy.lib.static PEP 257 compliantSviatoslav Sydorenko2017-08-111-2/+2
* Rely on six for urllib moves.Jason R. Coombs2017-07-091-2/+4
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-28/+28
* Also include ValueError. Fixes failing test on Python 3.5.Jason R. Coombs2015-12-191-1/+4
* Returning HTTP 404 for static serving when the requested path has null bytesDiogo Baeder2015-12-171-1/+1
* Reorganize imports to conform to conventionJason R. Coombs2014-09-131-9/+11
* Remove unused importsJason R. Coombs2014-09-131-2/+0
* More PEP8 work.Gustavo Picon2014-01-121-10/+17
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-10/+18
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-38/+38
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+363
* Bringing python3 back into trunk with its own py3 folder; what was in trunk g...trunkRobert Brewer2011-02-251-352/+0
* Freeow. The magic cherrypy/_cpcompat.py module to take all our py3k fears away.Robert Brewer2011-02-241-11/+11
* Sphinx docs (rsts) for rest of cherrypy.lib.*chbrown2010-02-241-18/+24
* Final fix for #915 (Add "debug=False" arg to builtin Tools).Robert Brewer2009-08-061-14/+65
* All internals now use cherrypy.serving.request/response instead of request/re...Robert Brewer2009-06-221-13/+15
* Added a cautionary note to the docstring for serve_fileobj(), regarding the s...visteya2009-06-101-0/+7
* More syncs with python3.Robert Brewer2009-06-091-2/+2
* static.serve_fileobj: Allow file-like objects that have no 'fileno' attribute.Robert Brewer2009-06-071-9/+12
* New static.serve_fileobj function.Robert Brewer2009-06-071-16/+57
* trunk: A bunch more alignments between trunk and python3 syntax.Robert Brewer2009-06-021-1/+1
* trunk - Porting the cherrypy.lib.httputil name change. It'll be easier to mai...Lakin Wecker2009-05-311-3/+3
* Fix for #879 (static.serve_file() should use "application/octet-stream" if it...Robert Brewer2009-03-181-2/+3
* Added the mimetypes mentioned in #879.Robert Brewer2009-03-181-0/+2
* Now that error_log defaults to INFO, we can emit a DEBUG message once in a gr...Robert Brewer2009-02-251-0/+4
* Long-standing misfeature: staticdir/file should only answer to GET/HEAD.Robert Brewer2009-02-251-0/+6
* New test for streaming static files.Robert Brewer2009-02-101-8/+7
* Change lib.static.serve_file() to use a file generator for requests with Rang...visteya2008-09-281-3/+6