Author: mtredinnick Date: 2007-06-01 05:00:00 -0500 (Fri, 01 Jun 2007) New Revision: 5404
Modified: django/trunk/django/conf/project_template/settings.py Log: Fixed #4290 -- Added a warning about trailing slashes to the project settings file. Thanks, [EMAIL PROTECTED] Modified: django/trunk/django/conf/project_template/settings.py =================================================================== --- django/trunk/django/conf/project_template/settings.py 2007-06-01 09:46:56 UTC (rev 5403) +++ django/trunk/django/conf/project_template/settings.py 2007-06-01 10:00:00 UTC (rev 5404) @@ -38,8 +38,9 @@ # Example: "/home/media/media.lawrence.com/" MEDIA_ROOT = '' -# URL that handles the media served from MEDIA_ROOT. -# Example: "http://media.lawrence.com" +# URL that handles the media served from MEDIA_ROOT. Make sure to use a +# trailing slash if there is a path component (optional in other cases). +# Examples: "http://media.lawrence.com", "http://example.com/media/" MEDIA_URL = '' # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
