X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/66e84bbddc80e7f3ac04da6433a70da7da97698b..92bdd2925f6401b3d5447731424f1e11a5c4643e:/sommitrealweird/settings.py diff --git a/sommitrealweird/settings.py b/sommitrealweird/settings.py index d363f2f..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 = ( @@ -92,11 +95,18 @@ TEMPLATE_CONTEXT_PROCESSORS = ( 'generic.context_processors.media', '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.'