diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-06-15 15:39:44 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-06-15 15:40:34 +0200 |
commit | 21e89a961fb5b96715c70bbef5a359b4ab36f8d1 (patch) | |
tree | b3c832817c1d1aaec799ddbad1cbc072ca649d66 | |
parent | 7e499b895aaccb1ed8bb2a797773160dc1e3978f (diff) | |
download | Papillon-21e89a961fb5b96715c70bbef5a359b4ab36f8d1.tar.bz2 Papillon-21e89a961fb5b96715c70bbef5a359b4ab36f8d1.zip |
Remove EXTRA_URL
-rw-r--r-- | papillon/local_settings.py.sample | 3 | ||||
-rw-r--r-- | papillon/settings.py | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/papillon/local_settings.py.sample b/papillon/local_settings.py.sample index 8070842..b5ba7dc 100644 --- a/papillon/local_settings.py.sample +++ b/papillon/local_settings.py.sample @@ -11,9 +11,6 @@ PROJECT_PATH = os.path.dirname(os.path.abspath(__file__)) # Make this unique, and don't share it with anybody. SECRET_KEY = 'replace_this_with_something_else' -# if you have set an EXTRA_URL set the full path -EXTRA_URL = '' - TINYMCE_URL = 'http://localhost/tinymce/' MAX_COMMENT_NB = 10 # max number of comments by poll - 0 to disable comments ALLOW_FRONTPAGE_POLL = False # disabled is recommanded for public instance diff --git a/papillon/settings.py b/papillon/settings.py index 49b46c5..0f3dd65 100644 --- a/papillon/settings.py +++ b/papillon/settings.py @@ -10,7 +10,7 @@ TEMPLATE_DEBUG = DEBUG import os PROJECT_PATH = os.path.dirname(os.path.abspath(__file__)) -EXTRA_URL = 'papillon/' +EXTRA_URL = '' TINYMCE_URL = 'http://localhost/tinymce/' MAX_COMMENT_NB = 10 # max number of comments by poll - 0 to disable comments |