summaryrefslogtreecommitdiff
path: root/docs/ref/files
AgeCommit message (Collapse)Author
2016-05-07[1.9.x] Fixed #26508 -- Clarified docs for various FieldFile methods.Tobias McNulty
Backport of dbd99de6fa006798ca81ef43cbc83d88e5e6a377 from master
2016-02-01[1.9.x] Fixed #26124 -- Added missing code formatting to docs headers.Tim Graham
Backport of a6ef025dfb2a1d1bd23893408eef6d066fb506d9 from master
2016-01-22[1.9.x] Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
Backport of bca9faae95db2a92e540fbd08505c134639916fe from master
2015-12-01[1.9.x] Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master
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.
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
This is a preparation for unicode literals general usage in Django (Python 3 compatibility).
2011-09-28Fixed incorrect pluralized argument in Files docsPaul McMillan
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16910 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-08-06Fixed #16566 - Typo in docs/ref/files/storage.txt; thanks thejaswi_puthraya.Timo Graham
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16580 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-12-06Fixed #14846 -- Corrected a tiny typo in from [14832]. Thanks to elbarto for ↵Gabriel Hurley
catching the mistake. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-12-05Fixed #13162 and #11597 -- Improved the file handling documentation: Removed ↵Gabriel Hurley
documentation of methods on django.core.files.File that did not exist, added documentation for undocumented methods and attributes that did exist, did a general cleanup of the text and organization, and added more metadata targets. Thanks to amenasse and tyrion.mx for the reports. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14833 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-12-05Fixed #13605 -- Improved documentation of the django.core.files.storage ↵Gabriel Hurley
module. Added documentation for DefaultStorage, get_storage_class, FileSystemStorage, and some missing public methods on Storage. New metadata targets included for everything. Thanks to kopernikus for the report and elbarto for contributing to the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14831 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-11-28Fixed #14762 - Add documention for ContentFile. Thanks jesh for the ↵Timo Graham
suggestion and adamv for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14742 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-24Fixed #13040 -- Added info on where to import File class from to File ↵Gabriel Hurley
reference docs, and improved Sphinx formatting. Thanks to stherrien for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14339 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-08Fixed #10497 -- Added a few time-related methods to the storage API. Thanks ↵Jannis Leidel
for the report and patch to Stephan Jaekel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14012 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-19Fixed #14141: docs now use the :doc: construct for links between documents.Jacob Kaplan-Moss
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-26Fixed #9465 -- Simplified API Reference documentation titles for easier ↵Gary Wilson Jr
lookup and made first-level heading styles consistent. Thanks, adamnelson. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11990 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-06-10Fixed #11056 -- Corrected reference to File class in storage docs. Thanks to ↵Russell Keith-Magee
wam for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10970 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-09Fixed #8979 -- Made a bunch of typo/formatting fixes to the docs. Thanks, ramiroAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-02A bunch of cleanups to file documentation. Along the way some references to ↵Jacob Kaplan-Moss
the old file methods were removed - thanks, varikin. Fixes #8642. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8862 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-31Fixed #8641: Documented the fact that file-saving methods must receive a ↵James Bennett
File instance git-svn-id: http://code.djangoproject.com/svn/django/trunk@8759 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-23Massive reorganization of the docs. See the new docs online at ↵Jacob Kaplan-Moss
http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37