Package: moin / 1.9.9-1+deb9u1

disable_gui_editor_if_fckeditor_missing.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: disable GUI editor if FCKeditor missing
 only applicable on Debian systems where a system-wide FCKeditor is used
 from a static location and might in some cases be missing
Author: Frank Lin PIAT <fpiat@klabs.be>
Forwarded: not-needed
Last-Update: 2009-11-15
Index: b/MoinMoin/config/multiconfig.py
===================================================================
--- a/MoinMoin/config/multiconfig.py
+++ b/MoinMoin/config/multiconfig.py
@@ -1461,6 +1461,14 @@ def _add_options_to_defconfig(opts, addg
 _add_options_to_defconfig(options)
 _add_options_to_defconfig(options_no_group_name, False)
 
+# Debian Specific:
+# Try to auto-detect if the package fckeditor is installed
+# (This can be overiden in the wiki configuration file).
+if not os.path.exists('/usr/share/fckeditor/fckeditor.js'):
+     setattr(DefaultConfig, 'editor_force', True)
+     setattr(DefaultConfig, 'editor_default', 'text')
+
+
 # remove the gettext pseudo function
 del _