Author: batiste.bieler
Date: Mon Jan 26 04:48:51 2009
New Revision: 301
Modified:
wiki/InstallDjangoPageCMS.wiki
Log:
Edited wiki page through web user interface.
Modified: wiki/InstallDjangoPageCMS.wiki
==============================================================================
--- wiki/InstallDjangoPageCMS.wiki (original)
+++ wiki/InstallDjangoPageCMS.wiki Mon Jan 26 04:48:51 2009
@@ -24,10 +24,15 @@
{{{
INSTALLED_APPS = (
- ...
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.admin',
+ 'django.contrib.sites',
'mptt',
'tagging',
'pages',
+ ...
)
}}}
@@ -37,6 +42,7 @@
{{{
urlpatterns = patterns('',
+ ...
url(r'^pages/', include('pages.urls')),
(r'^admin/(.*)', admin.site.root),
)
@@ -49,6 +55,9 @@
{{{
TEMPLATE_CONTEXT_PROCESSORS = (
...
+ "django.core.context_processors.auth",
+ "django.core.context_processors.i18n",
+ "django.core.context_processors.debug",
"django.core.context_processors.media",
"django.core.context_processors.request",
"pages.context_processors.media",
@@ -58,7 +67,10 @@
...
MIDDLEWARE_CLASSES = (
- ...
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.middleware.doc.XViewMiddleware',
'django.middleware.locale.LocaleMiddleware',
'pages.middleware.CurrentSiteMiddleware',
...
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---