diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-17 00:19:05 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-17 00:19:05 +0000 |
commit | 1a044759c61bbd1b86627d4a56cc17c12b72797a (patch) | |
tree | 6a7212432e859014ffd2639b400f0de321722613 /localsettings_wsl.py | |
parent | a6a0db3c8fba153fd6cd83220f4325bd86aa9635 (diff) | |
download | troggle-1a044759c61bbd1b86627d4a56cc17c12b72797a.tar.gz troggle-1a044759c61bbd1b86627d4a56cc17c12b72797a.tar.bz2 troggle-1a044759c61bbd1b86627d4a56cc17c12b72797a.zip |
tidying
Diffstat (limited to 'localsettings_wsl.py')
-rw-r--r-- | localsettings_wsl.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/localsettings_wsl.py b/localsettings_wsl.py index 0fdbde7..3fd3d0a 100644 --- a/localsettings_wsl.py +++ b/localsettings_wsl.py @@ -179,10 +179,22 @@ ENTRANCEDESCRIPTIONS = EXPOWEB / "entrance_data" sys.path.append(str(REPOS_ROOT_PATH)) sys.path.append(str(PYTHON_PATH)) -#TINY_MCE_MEDIA_ROOT = STATIC_ROOT + '/tiny_mce/' # not needed while TinyMCE not installed -#TINY_MCE_MEDIA_URL = STATIC_URL + '/tiny_mce/' # not needed while TinyMCE not installed # Sanitise these to be strings as Django seems to be particularly sensitive to crashing if they aren't STATIC_URL = str(STATIC_URL) + "/" MEDIA_URL = str(MEDIA_URL) + "/" +# Re-enable TinyMCE when Dj upgraded to v3. Also templates/editexpopage.html +# TINYMCE_DEFAULT_CONFIG = { +# 'plugins': "table,spellchecker,paste,searchreplace", +# 'theme': "advanced", +# } +# TINYMCE_SPELLCHECKER = False +# TINYMCE_COMPRESSOR = True +#TINY_MCE_MEDIA_ROOT = STATIC_ROOT + '/tiny_mce/' # not needed while TinyMCE not installed +#TINY_MCE_MEDIA_URL = STATIC_URL + '/tiny_mce/' # not needed while TinyMCE not installed + + +# TEST_RUNNER = "django.test.runner.DiscoverRunner" + +print(" + finished importing troggle/localsettings.py")
\ No newline at end of file |