Author: leidel
Date: Sat Feb 28 16:50:26 2009
New Revision: 40
Modified:
trunk/robots/views.py
Log:
Change default value of SITEMAP_URL to None
Modified: trunk/robots/views.py
==============================================================================
--- trunk/robots/views.py (original)
+++ trunk/robots/views.py Sat Feb 28 16:50:26 2009
@@ -8,7 +8,7 @@
from robots.models import Rule
USE_SITEMAP = getattr(settings, 'ROBOTS_USE_SITEMAP', True)
-SITEMAP_URL = getattr(settings,'ROBOTS_SITEMAP_URL', False)
+SITEMAP_URL = getattr(settings,'ROBOTS_SITEMAP_URL', None)
def rules_list(request, template_name='robots/rule_list.html',
mimetype='text/plain', status_code=200):
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-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/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---