comparison pelicanconf.py @ 46:ea8a767f5111

fiddle with L10N: generate the proper <html lang=""> element into the article page, depending on a page's defined locale with fallback to the default locale
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 02 Oct 2014 04:19:34 +0200
parents 51d2ddc51e40
children 20b38f558fee
comparison
equal deleted inserted replaced
45:84aa3a9a4001 46:ea8a767f5111
5 AUTHOR = u'Dirk Olmes' 5 AUTHOR = u'Dirk Olmes'
6 SITENAME = u'Infoschnipsel und Wissenswertes' 6 SITENAME = u'Infoschnipsel und Wissenswertes'
7 SITEURL = 'http://xanthippe.duckdns.org/blog' 7 SITEURL = 'http://xanthippe.duckdns.org/blog'
8 ARCHIVES_URL = 'archives.html' 8 ARCHIVES_URL = 'archives.html'
9 9
10 LOCALE = 'de_DE' 10 DEFAULT_LANG = u'de'
11 TIMEZONE = 'Europe/Berlin' 11 TIMEZONE = 'Europe/Berlin'
12 DEFAULT_DATE_FORMAT = u'%d.%m.%Y'
12 TYPOGRIFY = True 13 TYPOGRIFY = True
13 14
14 PLUGIN_PATHS = ['../simple_comments'] 15 PLUGIN_PATHS = ['../simple_comments']
15 #PLUGINS = ['simple_comments', 'pelicaptcha'] 16 #PLUGINS = ['simple_comments', 'pelicaptcha']
16 PLUGINS = ['simple_comments'] 17 PLUGINS = ['simple_comments']
27 #THEME = '../pelican-themes/built-texts' 28 #THEME = '../pelican-themes/built-texts'
28 29
29 THEME = 'themes/tuxlite_tbs' 30 THEME = 'themes/tuxlite_tbs'
30 DISPLAY_CATEGORIES_ON_MENU = False 31 DISPLAY_CATEGORIES_ON_MENU = False
31 32
32 DEFAULT_LANG = u'de_DE'
33 DEFAULT_DATE_FORMAT = u'%d.%m.%Y'
34
35 # Feed generation is usually not desired when developing 33 # Feed generation is usually not desired when developing
36 FEED_ALL_ATOM = None 34 FEED_ALL_ATOM = None
37 CATEGORY_FEED_ATOM = None 35 CATEGORY_FEED_ATOM = None
38 TRANSLATION_FEED_ATOM = None 36 TRANSLATION_FEED_ATOM = None
39 37