-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathbaseconf.py
More file actions
37 lines (30 loc) · 886 Bytes
/
baseconf.py
File metadata and controls
37 lines (30 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# coding=utf-8
from __future__ import unicode_literals
import os
BRANCH = '4.1'
PLUGIN_PATHS = ["plugins"]
PLUGINS = ["cogsci-preprocess", "page_hierarchy"]
LOCALE = 'en_US'
MD_EXTENSIONS = ['codehilite(css_class=highlight)','extra','headerid']
AUTHOR = u'Sebastiaan Math\xf4t'
SITENAME = u'OpenSesame documentation'
STATIC_PATHS = ['pages']
ROOT_PATH = os.getcwd()
GITHUB_ROOT_URL = 'https://github.com/smathot/osdoc/blob/' + BRANCH
OUTPUT_PATH = 'output/' + BRANCH
PATH = 'content'
THEME= 'themes/cogsci'
TIMEZONE = 'Europe/Paris'
ARTICLE_URL = 'blog/{slug}'
ARTICLE_SAVE_AS = 'blog/{slug}.html'
PAGE_URL = 'pages/{slug}'
PAGE_SAVE_AS = '{slug}/index.html'
SLUGIFY_SOURCE = 'basename'
DEFAULT_LANG = u'en'
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
DEFAULT_PAGINATION = 5
SUMMARY_MAX_LENGTH = 250