annotate pelicanconf.py @ 42:51d2ddc51e40

update the theme with the latest changes from upstream
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 30 Sep 2014 03:53:59 +0200
parents e6872b8d42e2
children ea8a767f5111
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 #!/usr/bin/env python
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2 # -*- coding: utf-8 -*- #
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 from __future__ import unicode_literals
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 AUTHOR = u'Dirk Olmes'
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6 SITENAME = u'Infoschnipsel und Wissenswertes'
29
7380bf280fc9 switch to duckdns.org
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 27
diff changeset
7 SITEURL = 'http://xanthippe.duckdns.org/blog'
42
51d2ddc51e40 update the theme with the latest changes from upstream
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 39
diff changeset
8 ARCHIVES_URL = 'archives.html'
0
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 LOCALE = 'de_DE'
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11 TIMEZONE = 'Europe/Berlin'
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 TYPOGRIFY = True
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13
39
e6872b8d42e2 do not genereate captchas: the comments script sends comment notification mails now
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 36 38
diff changeset
14 PLUGIN_PATHS = ['../simple_comments']
e6872b8d42e2 do not genereate captchas: the comments script sends comment notification mails now
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 36 38
diff changeset
15 #PLUGINS = ['simple_comments', 'pelicaptcha']
e6872b8d42e2 do not genereate captchas: the comments script sends comment notification mails now
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 36 38
diff changeset
16 PLUGINS = ['simple_comments']
12
7bfdc2b1d768 generate a captcha per blog post
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 10
diff changeset
17
7bfdc2b1d768 generate a captcha per blog post
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 10
diff changeset
18 # simple_comments plugin config
7bfdc2b1d768 generate a captcha per blog post
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 10
diff changeset
19 COMMENT_PATH = 'comments'
7bfdc2b1d768 generate a captcha per blog post
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 10
diff changeset
20
7bfdc2b1d768 generate a captcha per blog post
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 10
diff changeset
21 # pelicaptcha plugin config
7bfdc2b1d768 generate a captcha per blog post
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 10
diff changeset
22 PELICAPTCHA_FONT = '/usr/share/tuxpaint/fonts/FreeMono.ttf'
10
bd8e75de187a use the simple_comments plugin instead of juvia now
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 9
diff changeset
23
1
3efa31d1bc6e change theme
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
24 # this theme looks ok but has some downsides:
3efa31d1bc6e change theme
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
25 # - tag list at the bottom only
3efa31d1bc6e change theme
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
26 # - html validation errors
3efa31d1bc6e change theme
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
27 #THEME = '../pelican-themes/built-texts'
3
a9f7146e01af fix the theme by specifying some variables
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 1
diff changeset
28
9
6e2bcaecf3ec include the theme locally to avoid any dependency on the pelican-themes git repo. Those guys don't incorporate the fixes as quickly as I need plus, I already changed the theme to incorporate the juvia comments.
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 3
diff changeset
29 THEME = 'themes/tuxlite_tbs'
0
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
30 DISPLAY_CATEGORIES_ON_MENU = False
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
31
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
32 DEFAULT_LANG = u'de_DE'
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
33 DEFAULT_DATE_FORMAT = u'%d.%m.%Y'
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
34
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
35 # Feed generation is usually not desired when developing
3
a9f7146e01af fix the theme by specifying some variables
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 1
diff changeset
36 FEED_ALL_ATOM = None
0
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
37 CATEGORY_FEED_ATOM = None
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
38 TRANSLATION_FEED_ATOM = None
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
39
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
40 # Blogroll
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
41 LINKS = () #('Pelican', 'http://getpelican.com/'),
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
42 # ('Python.org', 'http://python.org/'),
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
43 # ('Jinja2', 'http://jinja.pocoo.org/'),
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
44 # ('You can modify those links in your config file', '#'),)
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
45
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
46 # Social widget
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
47 SOCIAL = () #('You can add links in your config file', '#'),
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
48 # ('Another social link', '#'),)
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
49
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
50 DEFAULT_PAGINATION = 10
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
51
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
52 # Uncomment following line if you want document-relative URLs when developing
4cd9b65e10e4 initial import of the pelican based blog
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
53 RELATIVE_URLS = True