summaryrefslogtreecommitdiff
path: root/docs/ref/files
Commit message (Collapse)AuthorAgeFilesLines
* Corrected code-block directives in docs.Jannis Vajen2023-05-041-1/+1
|
* Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot2023-03-011-2/+2
|
* Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson2023-02-101-1/+5
| | | | | Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
* Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Jarosław Wygoda2023-01-121-8/+13
|
* Fixed #26029 -- Allowed configuring custom file storage backends.Jarosław Wygoda2023-01-121-0/+6
|
* Fixed #34110 -- Added in-memory file storage.Francesco Panico2023-01-101-0/+33
| | | | | Thanks Paolo Melchiorre, Carlton Gibson, and Mariusz Felisiak for reviews.
* Refs #26029 -- Doc'd django.core.files.storage.default_storage.Jarosław Wygoda2022-08-101-2/+7
|
* Removed versionadded/changed annotations for 3.2.Mariusz Felisiak2021-09-201-2/+0
|
* Corrected File, ContentFile, and ImageFile signatures in docs.Adam Johnson2021-04-161-3/+3
|
* Removed versionadded/changed annotations for 3.1.Mariusz Felisiak2021-01-141-5/+0
|
* Fixed typo in docs/ref/files/storage.txt.joshuapatel2020-12-211-1/+1
|
* Fixed #30422 -- Made TemporaryFileUploadHandler handle interrupted uploads.aryan2020-09-301-0/+7
| | | | | | This patch allows upload handlers to handle interrupted uploads. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Used :pep: role in various docs.Nick Pope2020-05-131-5/+3
|
* Removed versionadded/changed annotations for 3.0.Mariusz Felisiak2020-05-131-2/+0
|
* Used :rfc: role in various docs.Mariusz Felisiak2020-04-151-3/+1
|
* Removed unnecessary code-block directives in various docs.Jon Dufresne2019-12-231-3/+1
|
* Refs #28428 -- Made FileSystemStorage.save() to support pathlib.Path.Hasan Ramezani2019-10-311-0/+5
|
* Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze2019-09-061-7/+7
| | | | | | | | | | | | | | | | | | | | | | | involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review.
* Refs #30736 -- Added missing versionadded annotations for ↵Mariusz Felisiak2019-08-311-0/+2
| | | | | | Storage.get_alternative_name(). Thanks Simon Charette for the report.
* Fixed #30736 -- Added Storage.get_alternative_name() to allow customization.yukihira19922019-08-301-3/+8
|
* Fixed "byte string" typo in various docs and comments.Mariusz Felisiak2019-03-281-1/+1
|
* Fixed word choice in ContentFile example.Josh Schneier2018-07-071-1/+1
|
* Removed versionadded/changed annotations for 2.0.Tim Graham2018-05-171-4/+0
|
* Removed versionadded/changed annotations for 1.11.Tim Graham2017-09-221-4/+0
|
* Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker2017-05-311-2/+5
|
* Refs #23919 -- Removed File's Python 2 proxied methods.Josh Schneier2017-04-261-3/+3
|
* Fixed #27644 -- Doc'd FileSystemStorage.get_created_time().Ingo Klöcker2017-04-261-0/+7
|
* Removed nonexistent methods from File's docs.Josh Schneier2017-04-251-15/+4
| | | | read() and write() were removed in 68a890e79f660484d05482902663b6168f0bd71e.
* Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker2017-04-071-0/+3
| | | Fixed #27777 -- Made File.open() work with the with statement
* Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis2017-01-261-1/+1
|
* Refs #23919 -- Removed Python 2 notes in docs.Tim Graham2017-01-181-2/+1
|
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-1/+0
|
* Removed versionadded/changed annotations for 1.10.Tim Graham2017-01-171-8/+0
|
* Refs #23832 -- Removed deprecated non-timezone aware Storage API.Tim Graham2017-01-171-33/+0
|
* Fixed #27145 -- Updated Storage.save() docs for refs #18899.Tim Graham2016-08-301-2/+2
|
* Fixed #26646 -- Added IOBase methods required by TextIOWrapper to File.Simon Charette2016-05-271-2/+7
| | | | Thanks Tim for the review.
* Removed versionadded/changed annotations for 1.9.Tim Graham2016-05-201-4/+0
|
* Fixed #26508 -- Clarified docs for various FieldFile methods.Tobias McNulty2016-05-071-0/+11
|
* Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ↵Cristiano2016-04-301-0/+15
| | | | the Storage.
* Fixed #23832 -- Added timezone aware Storage API.James Aylett2016-02-231-4/+48
| | | | | | 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.
* Fixed #26124 -- Added missing code formatting to docs headers.rowanv2016-02-012-7/+7
|
* Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus2016-01-223-9/+11
|
* Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne2015-12-011-1/+1
|
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-232-13/+0
|
* Refs #9893 -- Removed shims for lack of max_length support in file storage ↵Tim Graham2015-09-231-8/+0
| | | | per deprecation timeline.
* Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham2015-07-272-9/+9
| | | | Thanks hellbeast for the initial patch.
* Fixed #24963 -- Added File.seekable() on Python 3.Carson Gee2015-06-121-1/+6
|
* Fixed typos and updated spelling wordlist.Floris den Hengst2015-03-071-2/+2
|
* Removed versionadded/changed notes for 1.7.Tim Graham2015-02-012-26/+0
|
* Fixed #9893 -- Allowed using a field's max_length in the Storage.Pavel Shpilev2015-01-121-2/+18
|