~ubuntu-branches/ubuntu/vivid/moin/vivid

« back to all changes in this revision

Viewing changes to MoinMoin/wikiutil.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-01-07 21:33:21 UTC
  • mfrom: (0.1.34 sid)
  • Revision ID: package-import@ubuntu.com-20140107213321-574mr13z2oebjgms
Tags: 1.9.7-1ubuntu1
* Merge with Debian; remaining changes:
* debian/control:
  - remove python-xml from Suggests field, the package isn't in
    sys.path any more.
  - 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: fckeditor has a number of
    security problems and so this change probably needs to be carried
    indefinitely.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from MoinMoin import log
21
21
logging = log.getLogger(__name__)
22
22
 
23
 
from werkzeug.security import safe_str_cmp as safe_str_equal
24
 
 
25
23
from MoinMoin import config
26
24
from MoinMoin.support.python_compatibility import rsplit
27
25
from inspect import getargspec, isfunction, isclass, ismethod
28
26
 
29
27
from MoinMoin import web # needed so that next lines work:
30
28
import werkzeug
 
29
from werkzeug.security import safe_str_cmp as safe_str_equal
31
30
from MoinMoin.util import pysupport, lock
32
31
 
33
32
# Exceptions