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

« back to all changes in this revision

Viewing changes to MoinMoin/config/__init__.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:
22
22
# When creating files, we use e.g. 0666 & config.umask for the mode:
23
23
umask = 0770
24
24
 
 
25
# list of acceptable password hashing schemes for cfg.password_scheme,
 
26
# here we only give reasonably good schemes, which is passlib (if we
 
27
# have passlib) and ssha (if we only have builtin stuff):
 
28
password_schemes_configurable = ['{PASSLIB}', '{SSHA}', ]
 
29
 
 
30
# ordered list of supported password hashing schemes, best (passlib) should be
 
31
# first, best builtin one should be second. this is what we support if we
 
32
# encounter it in user profiles:
 
33
password_schemes_supported = password_schemes_configurable + ['{SHA}', '{APR1}', '{MD5}', '{DES}', ]
 
34
 
25
35
# Default value for the static stuff URL prefix (css, img, js).
26
36
# Caution:
27
37
# * do NOT use this directly, it is only the DEFAULT value to be used by