view piecrust/__init__.py @ 27:105f24f490cb

Various fixes for the default page source: * Use forward slashes in ref paths * `auto_format` extensions should be stripped * Don't ignore pages with arbitrary extensions
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 19 Aug 2014 11:50:21 -0700
parents f485ba500df3
children 485682a6de50
line wrap: on
line source


APP_VERSION = '2.0.0alpha'

CACHE_DIR = '_cache'
CONTENT_DIR = '_content'
TEMPLATES_DIR = '_content/templates'
PLUGINS_DIR = '_content/plugins'
THEME_DIR = '_content/theme'

CONFIG_PATH = '_content/config.yml'
THEME_CONFIG_PATH = '_content/theme_config.yml'

DEFAULT_FORMAT = 'markdown'
DEFAULT_TEMPLATE_ENGINE = 'jinja2'
DEFAULT_POSTS_FS = 'flat'
DEFAULT_DATE_FORMAT = '%b %d, %Y'
DEFAULT_PLUGIN_SOURCE = 'http://bitbucket.org/ludovicchabant/'
DEFAULT_THEME_SOURCE = 'http://bitbucket.org/ludovicchabant/'

PIECRUST_URL = 'http://bolt80.com/piecrust/'