~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to debian/patches/20001_disable_gui_editor.patch

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mfrom: (0.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080622211713-fpo2zrq3s5dfecxg
Tags: 1.7.0-3
Simplify /etc/moin/wikilist format: "USER URL" (drop unneeded middle
CONFIG_DIR that was wrongly advertised as DATA_DIR).  Make
moin-mass-migrate handle both formats and warn about deprecation of
the old one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff --git a/wiki/config/wikifarm/farmconfig.py b/wiki/config/wikifarm/farmconfig.py
 
2
index e28a4d0..fe92537 100644
 
3
--- a/wiki/config/wikifarm/farmconfig.py
 
4
+++ b/wiki/config/wikifarm/farmconfig.py
 
5
@@ -183,3 +183,7 @@ class FarmConfig(DefaultConfig):
 
6
     # Enable graphical charts, requires gdchart.
 
7
     #chart_options = {'width': 600, 'height': 300}
 
8
 
 
9
+    # The GUI WYSISYG editor is not installed with Debian.
 
10
+    # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
 
11
+    editor_force = True
 
12
+    editor_default = 'text'  # internal default, just for completeness
 
13
diff --git a/wiki/config/wikifarm/mywiki.py b/wiki/config/wikifarm/mywiki.py
 
14
index bb76249..1089bd4 100644
 
15
--- a/wiki/config/wikifarm/mywiki.py
 
16
+++ b/wiki/config/wikifarm/mywiki.py
 
17
@@ -32,3 +32,7 @@ class Config(FarmConfig):
 
18
 
 
19
     data_dir = '/org/mywiki/data/'
 
20
 
 
21
+    # The GUI WYSISYG editor is not installed with Debian.
 
22
+    # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info
 
23
+    editor_force = True
 
24
+    editor_default = 'text'  # internal default, just for completeness