summaryrefslogtreecommitdiff
path: root/docs/ref/files
AgeCommit message (Collapse)Author
2019-03-28[2.2.x] Fixed "byte string" typo in various docs and comments.Mariusz Felisiak
Backport of 881362986a1ee8f650752de8471a895890b71f96 from master
2018-07-07Fixed word choice in ContentFile example.Josh Schneier
2018-05-17Removed versionadded/changed annotations for 2.0.Tim Graham
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-05-31Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker
2017-04-26Refs #23919 -- Removed File's Python 2 proxied methods.Josh Schneier
2017-04-26Fixed #27644 -- Doc'd FileSystemStorage.get_created_time().Ingo Klöcker
2017-04-25Removed nonexistent methods from File's docs.Josh Schneier
read() and write() were removed in 68a890e79f660484d05482902663b6168f0bd71e.
2017-04-07Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker
Fixed #27777 -- Made File.open() work with the with statement
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-17Refs #23832 -- Removed deprecated non-timezone aware Storage API.Tim Graham
2016-08-30Fixed #27145 -- Updated Storage.save() docs for refs #18899.Tim Graham
2016-05-27Fixed #26646 -- Added IOBase methods required by TextIOWrapper to File.Simon Charette
Thanks Tim for the review.
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-05-07Fixed #26508 -- Clarified docs for various FieldFile methods.Tobias McNulty
2016-04-30Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ↵Cristiano
the Storage.
2016-02-23Fixed #23832 -- Added timezone aware Storage API.James Aylett
New Storage.get_{accessed,created,modified}_time() methods convert the naive time from now-deprecated {accessed,created_modified}_time() methods into aware objects in UTC if USE_TZ=True.
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Refs #9893 -- Removed shims for lack of max_length support in file storage ↵Tim Graham
per deprecation timeline.
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-06-12Fixed #24963 -- Added File.seekable() on Python 3.Carson Gee
2015-03-07Fixed typos and updated spelling wordlist.Floris den Hengst
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-12Fixed #9893 -- Allowed using a field's max_length in the Storage.Pavel Shpilev
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-11-15Fixed #23827 -- TZ behavior in Storage API ref docJames Aylett
This is derived from the current behaviour of FileSystemStorage. Note that since this was not previously documented, other implementations may not currently conform.
2014-11-03Fixed versionchanged indentation in docs/.Berker Peksag
2014-10-30Fixed #8149 -- Made File.__iter__() support universal newlines.Jon Dufresne
The following are recognized as ending a line: the Unix end-of-line convention '\n', the Windows convention '\r\n', and the old Macintosh convention '\r'. http://www.python.org/dev/peps/pep-0278 Thanks tchaumeny for review.
2014-08-26Fixed spelling mistake in file docs.Tim Graham
2014-08-20Fixed #23157 -- Removed O(n) algorithm when uploading duplicate file names.Tim Graham
This is a security fix. Disclosure following shortly.
2014-08-08Removed some tabs in the docs.Tim Graham
2014-04-26Updated doc links to point to Python 3 documentationClaude Paroz
2014-04-08Fixed #9535 -- Added a reference guide for file upload classes.Anubhav Joshi
2014-04-02Fixed #22347 -- Unified FileSystemStorage documentation.Vishal Lal
Thanks nliberg for the report.
2014-01-15Fix typo in storage docsKevin Wood
2013-11-29Fixed #21380 -- Added a way to set different permission for static directories.Vajrasky Kok
Previously when collecting static files, the directories would receive permissions from the global umask. Now the default permission comes from FILE_UPLOAD_DIRECTORY_PERMISSIONS and there's an option to specify the permissions by subclassing any of the static files storage classes and setting the directory_permissions_mode parameter.
2013-10-24Fixed #21219 -- Added a way to set different permission for static files.Vajrasky Kok
Previously, when collecting static files, the files would receive permission from FILE_UPLOAD_PERMISSIONS. Now, there's an option to give different permission from uploaded files permission by subclassing any of the static files storage classes and setting the file_permissions_mode parameter. Thanks dblack at atlassian.com for the suggestion.
2013-08-29Added links to file docs.Jorge C. Leitão
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-01-13Fixed typo in file storage docs.Aymeric Augustin
Thanks Jørgen Abrahamsen.
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-08-29Fixed #11739 -- Made ContentFile support Unicode inputClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.