Author: ramiro Date: 2010-11-14 09:42:54 -0600 (Sun, 14 Nov 2010) New Revision: 14560
Modified: django/trunk/django/conf/global_settings.py django/trunk/django/conf/project_template/settings.py Log: Fixed #10650 -- Clarified description of MEDIA_ROOT in setting files. Thanks jjconti, tvon, vak, Muhammad Alkarouri and thiggins for their work. Modified: django/trunk/django/conf/global_settings.py =================================================================== --- django/trunk/django/conf/global_settings.py 2010-11-14 14:15:58 UTC (rev 14559) +++ django/trunk/django/conf/global_settings.py 2010-11-14 15:42:54 UTC (rev 14560) @@ -255,7 +255,7 @@ # Default file storage mechanism that holds media. DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage' -# Absolute path to the directory that holds media. +# Absolute filesystem path to the directory that will hold user uploaded files. # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = '' Modified: django/trunk/django/conf/project_template/settings.py =================================================================== --- django/trunk/django/conf/project_template/settings.py 2010-11-14 14:15:58 UTC (rev 14559) +++ django/trunk/django/conf/project_template/settings.py 2010-11-14 15:42:54 UTC (rev 14560) @@ -43,7 +43,7 @@ # calendars according to the current locale USE_L10N = True -# Absolute path to the directory that holds media. +# Absolute filesystem path to the directory that will hold user uploaded files. # Example: "/home/media/media.lawrence.com/media/" MEDIA_ROOT = '' -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
