add some url and saveas settings that weren't present in the default settings dict

This commit is contained in:
Alexis Metaireau 2012-03-10 13:23:50 +01:00
commit 8499ce3340

View file

@ -35,6 +35,12 @@ _DEFAULT_CONFIG = {'PATH': None,
'PAGE_SAVE_AS': 'pages/{slug}.html',
'PAGE_LANG_URL': 'pages/{slug}-{lang}.html',
'PAGE_LANG_SAVE_AS': 'pages/{slug}-{lang}.html',
'CATEGORY_URL': 'category/{name}.html',
'CATEGORY_SAVE_AS': 'category/{name}.html',
'TAG_URL': 'tag/{name}.html',
'TAG_SAVE_AS': 'tag/{name}.html',
'AUTHOR_URL': u'author/{name}.html',
'AUTHOR_SAVE_AS': u'author/{name}.html',
'RELATIVE_URLS': True,
'DEFAULT_LANG': 'en',
'TAG_CLOUD_STEPS': 4,