Author: batiste.bieler
Date: Tue Apr  7 02:40:19 2009
New Revision: 441

Modified:
    wiki/InstallDjangoPageCMS.wiki

Log:
Edited wiki page through web user interface.

Modified: wiki/InstallDjangoPageCMS.wiki
==============================================================================
--- wiki/InstallDjangoPageCMS.wiki      (original)
+++ wiki/InstallDjangoPageCMS.wiki      Tue Apr  7 02:40:19 2009
@@ -38,7 +38,25 @@
  tagging                  
http://django-tagging.googlecode.com/svn/trunk/tagging
  }}}

-==Urls and settings==
+==Urls==
+
+Please take a look in the urls.py of the default project and copy desired  
urls in your settings. Basically you need to have something like this:
+
+{{{
+urlpatterns = patterns('',
+    ...
+    url(r'^pages/', include('pages.urls')),
+    (r'^admin/(.*)', admin.site.root),
+)
+}}}
+
+==Settings==
+
+All the Django page CMS specific settings and options are listed and  
explained in the pages/settings.py file.
+
+Django page CMS require that several of these to be set correctly to be  
able to run. You will recognize these settings in the following document by  
a bold "*must*".
+
+===Tagging===

  Tagging is optional. If you don't want it please don't set PAGE_TAGGING  
setting into your settings. After that simply add wanted apps to your  
installed apps :

@@ -55,18 +73,6 @@
      ...
  )
  }}}
-
-Please take a look in the urls.py of the default project and copy desired  
urls in your settings. Basically you need to have something like this:
-
-{{{
-urlpatterns = patterns('',
-    ...
-    url(r'^pages/', include('pages.urls')),
-    (r'^admin/(.*)', admin.site.root),
-)
-}}}
-
-For the settings have a look in pages/settings.py for available options.

  ===Caching===


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to