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

« back to all changes in this revision

Viewing changes to debian/patches/htdocs_moved_to_usr_share_moin.patch

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-03-30 12:55:34 UTC
  • mfrom: (0.1.17 sid)
  • Revision ID: james.westby@ubuntu.com-20100330125534-4c2ufc1rok24447l
Tags: 1.9.2-2ubuntu1
* Merge from Debian testing (LP: #521834). Based on work by Stefan Ebner.
  Remaining changes:
 - Remove python-xml from Suggests field, the package isn't anymore in
   sys.path.
 - Demote fckeditor from Recommends to Suggests; the code was previously
   embedded in moin, but it was also disabled, so there's no reason for us
   to pull this in by default currently. Note: This isn't necessary anymore
   but needs a MIR for fckeditor, so postpone dropping this change until
   lucid+1
* debian/rules:
  - Replace hardcoded python2.5 with python* and hardcore python2.6 for ln
* debian/control.in: drop versioned depends on cdbs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: folder with static web pages are moved to /usr/share/moin/htdocs
 
2
 only applicable on Debian systems storing web pages system-wide
 
3
Author: Frank Lin PIAT <fpiat@klabs.be>
 
4
Forwarded: not-needed
 
5
Last-Update: 2009-11-15
 
6
--- a/MoinMoin/web/static/__init__.py   2009-09-16 09:32:47.000000000 +0200
 
7
+++ b/MoinMoin/web/static/__init__.py   2009-09-16 09:32:43.000000000 +0200
 
8
@@ -52,7 +52,7 @@
 
9
 
 
10
 from werkzeug import SharedDataMiddleware
 
11
 
 
12
-STATIC_FILES_PATH = join(abspath(dirname(__file__)), 'htdocs')
 
13
+STATIC_FILES_PATH = '/usr/share/moin/htdocs'
 
14
 
 
15
 
 
16
 def make_static_serving_app(application, shared):