summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/settings.py b/settings.py
index d1a8686..9078f11 100644
--- a/settings.py
+++ b/settings.py
@@ -90,4 +90,14 @@ INSTALLED_APPS = (
QM_PATTERN="\[\[\s*[Qq][Mm]:([ABC]?)(\d{4})-(\d*)-(\d*)\]\]"
-from localsettings import * #localsettings needs to take precedence. Call it to override any existing vars. \ No newline at end of file
+TINYMCE_JS_URL = 'http://debug.example.org/tiny_mce/tiny_mce_src.js'
+TINYMCE_DEFAULT_CONFIG = {
+ 'plugins': "table,spellchecker,paste,searchreplace",
+ 'theme': "advanced",
+}
+TINYMCE_SPELLCHECKER = False
+TINYMCE_COMPRESSOR = True
+
+MAX_LOGBOOK_ENTRY_TITLE_LENGTH = 200
+
+from localsettings import * #localsettings needs to take precedence. Call it to override any existing vars.