2010-12-05 23:11:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
AUTHOR = u'Alexis Métaireau'
|
2011-05-11 09:42:37 +06:00
|
|
|
SITENAME = u"Alexis' log"
|
2010-12-05 23:11:45 +00:00
|
|
|
SITEURL = 'http://blog.notmyidea.org'
|
2011-12-29 16:04:46 +01:00
|
|
|
TIMEZONE = "Europe/Paris"
|
2010-12-05 23:11:45 +00:00
|
|
|
|
|
|
|
|
GITHUB_URL = 'http://github.com/ametaireau/'
|
|
|
|
|
DISQUS_SITENAME = "blog-notmyidea"
|
2010-12-22 04:46:11 +08:00
|
|
|
PDF_GENERATOR = False
|
2011-02-01 01:57:39 +00:00
|
|
|
REVERSE_CATEGORY_ORDER = True
|
2011-05-31 12:44:40 +02:00
|
|
|
LOCALE = ""
|
2012-02-29 18:15:38 +01:00
|
|
|
DEFAULT_PAGINATION = 4
|
2010-12-05 23:11:45 +00:00
|
|
|
|
2011-02-09 21:17:57 +00:00
|
|
|
FEED_RSS = 'feeds/all.rss.xml'
|
|
|
|
|
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
|
|
|
|
|
|
2010-12-05 23:11:45 +00:00
|
|
|
LINKS = (('Biologeek', 'http://biologeek.org'),
|
2011-01-13 00:46:10 +01:00
|
|
|
('Filyb', "http://filyb.info/"),
|
|
|
|
|
('Libert-fr', "http://www.libert-fr.com"),
|
|
|
|
|
('N1k0', "http://prendreuncafe.com/blog/"),
|
|
|
|
|
(u'Tarek Ziadé', "http://ziade.org/blog"),
|
|
|
|
|
('Zubin Mithra', "http://zubin71.wordpress.com/"),)
|
2010-12-05 23:11:45 +00:00
|
|
|
|
|
|
|
|
SOCIAL = (('twitter', 'http://twitter.com/ametaireau'),
|
|
|
|
|
('lastfm', 'http://lastfm.com/user/akounet'),
|
|
|
|
|
('github', 'http://github.com/ametaireau'),)
|
2010-12-30 14:11:37 +00:00
|
|
|
|
2011-05-07 19:56:55 +01:00
|
|
|
# global metadata to all the contents
|
|
|
|
|
DEFAULT_METADATA = (('yeah', 'it is'),)
|
|
|
|
|
|
2011-05-07 22:46:56 +01:00
|
|
|
# static paths will be copied under the same name
|
2010-12-30 14:11:37 +00:00
|
|
|
STATIC_PATHS = ["pictures",]
|
2011-05-07 22:46:56 +01:00
|
|
|
|
|
|
|
|
# A list of files to copy from the source to the destination
|
|
|
|
|
FILES_TO_COPY = (('extra/robots.txt', 'robots.txt'),)
|
2011-05-10 23:18:11 +01:00
|
|
|
|
2011-05-11 09:42:37 +06:00
|
|
|
# foobar will not be used, because it's not in caps. All configuration keys
|
2011-01-13 00:46:10 +01:00
|
|
|
# have to be in caps
|
|
|
|
|
foobar = "barbaz"
|
2011-12-29 16:04:46 +01:00
|
|
|
|