diff options
| author | Mel Collins <mel@raumkraut.net> | 2013-05-13 13:38:53 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-12 07:15:59 -0400 |
| commit | 6bdb3b1135d1bd7b2dc24131b9d26ac19ebdba67 (patch) | |
| tree | 4f9e44d7b494b737ed11d7346ff7258c182cfbb3 /docs/topics | |
| parent | ab680725bfb2f0d79cff26331b30a3d583c55a80 (diff) | |
Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS setting
This setting does for new directories what FILE_UPLOAD_PERMISSIONS
does for new files.
Thanks jacob@ for the suggestion.
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/http/file-uploads.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index 2cdab9ea9b..d88524ee20 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -132,7 +132,7 @@ upload behavior. Changing upload handler behavior -------------------------------- -Three settings control Django's file upload behavior: +There are a few settings which control Django's file upload behavior: :setting:`FILE_UPLOAD_MAX_MEMORY_SIZE` The maximum size, in bytes, for files that will be uploaded into memory. @@ -167,6 +167,11 @@ Three settings control Django's file upload behavior: **Always prefix the mode with a 0.** +:setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS` + The numeric mode to apply to directories created in the process of + uploading files. This value mirrors the functionality and caveats of + the :setting:`FILE_UPLOAD_PERMISSIONS` setting. + :setting:`FILE_UPLOAD_HANDLERS` The actual handlers for uploaded files. Changing this setting allows complete customization -- even replacement -- of Django's upload |
