Author: batiste.bieler
Date: Sun Feb 22 15:59:41 2009
New Revision: 362
Modified:
trunk/pages/settings.py
Log:
The site framewrok is disabled by default
Modified: trunk/pages/settings.py
==============================================================================
--- trunk/pages/settings.py (original)
+++ trunk/pages/settings.py Sun Feb 22 15:59:41 2009
@@ -44,8 +44,8 @@
# The id of default Site instance to be used for multisite purposes.
SITE_ID = getattr(settings, 'SITE_ID', 1)
-# You can say if you don't want to use the site framework by default
-PAGE_USE_SITE_ID = getattr(settings, 'PAGE_USE_SITE_ID', True)
+# Whether to enable the site framework
+PAGE_USE_SITE_ID = getattr(settings, 'PAGE_USE_SITE_ID', False)
# You can exclude some placeholder from the revision process
PAGE_CONTENT_REVISION_EXCLUDE_LIST =
getattr(settings, 'PAGE_CONTENT_REVISION_EXCLUDE_LIST', ())
@@ -71,5 +71,3 @@
# with your page.
PAGE_CONNECTED_MODELS = getattr(settings, 'PAGE_CONNECTED_MODELS', False)
-# provide some informations about SQL requests into a log file
-SQL_DEBUGGING = getattr(settings, 'SQL_DEBUGGING', False)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---