forked from github/pelican
71 lines
2.7 KiB
Python
71 lines
2.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
import locale
|
|
|
|
DEFAULT_THEME = os.sep.join([os.path.dirname(os.path.abspath(__file__)),
|
|
"themes/notmyidea"])
|
|
_DEFAULT_CONFIG = {'PATH': None,
|
|
'THEME': DEFAULT_THEME,
|
|
'OUTPUT_PATH': 'output/',
|
|
'MARKUP': ('rst', 'md'),
|
|
'STATIC_PATHS': ['images',],
|
|
'THEME_STATIC_PATHS': ['static',],
|
|
'FEED': 'feeds/all.atom.xml',
|
|
'CATEGORY_FEED': 'feeds/%s.atom.xml',
|
|
'TRANSLATION_FEED': 'feeds/all-%s.atom.xml',
|
|
'SITENAME': 'A Pelican Blog',
|
|
'DISPLAY_PAGES_ON_MENU': True,
|
|
'PDF_GENERATOR': False,
|
|
'DEFAULT_CATEGORY': 'misc',
|
|
'FALLBACK_ON_FS_DATE': True,
|
|
'CSS_FILE': 'main.css',
|
|
'REVERSE_ARCHIVE_ORDER': False,
|
|
'REVERSE_CATEGORY_ORDER': False,
|
|
'DELETE_OUTPUT_DIRECTORY': False,
|
|
'CLEAN_URLS': False, # use /blah/ instead /blah.html in urls
|
|
'RELATIVE_URLS': True,
|
|
'DEFAULT_LANG': 'en',
|
|
'TAG_CLOUD_STEPS': 4,
|
|
'TAG_CLOUD_MAX_ITEMS': 100,
|
|
'DIRECT_TEMPLATES': ('index', 'tags', 'categories', 'archives'),
|
|
'PAGINATED_DIRECT_TEMPLATES': ('index', ),
|
|
'PELICAN_CLASS': 'pelican.Pelican',
|
|
'DEFAULT_DATE_FORMAT': '%a %d %B %Y',
|
|
'DATE_FORMATS': {},
|
|
'JINJA_EXTENSIONS': [],
|
|
'LOCALE': '', # default to user locale
|
|
'WITH_PAGINATION': False,
|
|
'DEFAULT_PAGINATION': 5,
|
|
'DEFAULT_ORPHANS': 0,
|
|
'DEFAULT_METADATA': (),
|
|
'FILES_TO_COPY': (),
|
|
'DEFAULT_STATUS': 'published',
|
|
}
|
|
|
|
def read_settings(filename):
|
|
"""Load a Python file into a dictionary.
|
|
"""
|
|
context = _DEFAULT_CONFIG.copy()
|
|
if filename:
|
|
tempdict = {}
|
|
execfile(filename, tempdict)
|
|
for key in tempdict:
|
|
if key.isupper():
|
|
context[key] = tempdict[key]
|
|
|
|
# if locales is not a list, make it one
|
|
locales = context['LOCALE']
|
|
|
|
if type(locales) is str:
|
|
locales = [str]
|
|
|
|
# try to set the different locales, fallback on the default.
|
|
for locale_ in context['LOCALE']:
|
|
try:
|
|
locale.setlocale(locale.LC_ALL, locale_)
|
|
break # break if it is successfull
|
|
except locale.Error:
|
|
pass
|
|
|
|
# set the locale
|
|
return context
|