X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/23038a1b9fab906d029198fdbf02665b551c52a9..92bdd2925f6401b3d5447731424f1e11a5c4643e:/sommitrealweird/settings.py diff --git a/sommitrealweird/settings.py b/sommitrealweird/settings.py index e198e9b..923222f 100644 --- a/sommitrealweird/settings.py +++ b/sommitrealweird/settings.py @@ -51,6 +51,8 @@ ADMIN_MEDIA_PREFIX = '/admin-media/' # Make this unique, and don't share it with anybody. SECRET_KEY = '$!roq-b5snvjxi4dr2y7(l(@$@k+2%aub&)s__0)k#r&c(8(4x' +CACHE_BACKEND = 'file:///home/brettp/dev/sommitrealweird/tmp' + # List of callables that know how to import templates from various sources. TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', @@ -83,6 +85,7 @@ INSTALLED_APPS = ( 'django.contrib.markup', 'bpcms', 'generic', + 'blog', ) TEMPLATE_CONTEXT_PROCESSORS = ( @@ -93,11 +96,17 @@ TEMPLATE_CONTEXT_PROCESSORS = ( 'bpcms.context_processors.content_menu', 'bpcms.context_processors.content_submenu', 'bpcms.context_processors.content_breadcrumb', + 'blog.context_processors.content_breadcrumb', ) +APPEND_SLASH=False + BPCMS_ROOT = '/' BPCMS_DISALLOWED_ROOT_DOC_NAMES = ( 'admin', 'blog', 'photos', ) + +BLOG_ROOT = '/blog/' +BLOG_TITLE = u'The World of SommitRealWeird.'