Commit d25da1c6 by benjaoming

Bump to 0.0.15

parent 51daba03
include README.md include README.md
include requirements.txt include requirements.txt
include model_chart_wiki.pdf
recursive-include wiki *.html *.txt *.png *.js *.css *.gif *.less recursive-include wiki *.html *.txt *.png *.js *.css *.gif *.less
recursive-include django_notify *.html *.txt *.png *.js *.css *.gif recursive-include django_notify *.html *.txt *.png *.js *.css *.gif
...@@ -30,7 +30,7 @@ packages = find_packages() ...@@ -30,7 +30,7 @@ packages = find_packages()
setup( setup(
name = "wiki", name = "wiki",
version = "0.0.14", version = "0.0.15",
author = "Benjamin Bach", author = "Benjamin Bach",
author_email = "benjamin@overtag.dk", author_email = "benjamin@overtag.dk",
url = "http://www.django-wiki.org", url = "http://www.django-wiki.org",
......
...@@ -13,7 +13,7 @@ WIKI_LANGUAGE = 'markdown' ...@@ -13,7 +13,7 @@ WIKI_LANGUAGE = 'markdown'
# extend the built-in editor and customize it.... # extend the built-in editor and customize it....
EDITOR = getattr( django_settings, 'WIKI_EDITOR', 'wiki.editors.markitup.MarkItUp' ) EDITOR = getattr( django_settings, 'WIKI_EDITOR', 'wiki.editors.markitup.MarkItUp' )
MARKDOWN_KWARGS = {'extensions': ['headerid', 'extra', 'toc'], 'safe_mode': 'replace'} MARKDOWN_KWARGS = {'extensions': ['footnotes', 'headerid', 'extra', 'toc'], 'safe_mode': 'replace'}
MARKDOWN_KWARGS.update(getattr( django_settings, 'WIKI_MARKDOWN_KWARGS', {} )) MARKDOWN_KWARGS.update(getattr( django_settings, 'WIKI_MARKDOWN_KWARGS', {} ))
# This slug is used in URLPath if an article has been deleted. The children of the # This slug is used in URLPath if an article has been deleted. The children of the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment