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

« back to all changes in this revision

Viewing changes to wiki/config/more_samples/user_wikiconfig_snippet

  • 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
    # This is a sample configuration snippet that shows how to configure user
 
2
    # and user preferences related functionality.
 
3
 
 
4
    #userprefs_disabled = [] # allow disabling certain userpreferences plugins
 
5
 
 
6
    #user_autocreate = False # auto-create user profiles? needs support in auth method!
 
7
 
 
8
    #user_homewiki = 'Self' # interwiki name for where user homepages are located
 
9
 
 
10
    #password_checker = None
 
11
    #user_email_unique = True # do we check whether a user's email is unique?
 
12
    #user_jid_unique = True # do we check whether a user's email is unique?
 
13
 
 
14
    #tz_offset = 0.0 # default time zone offset in hours from UTC
 
15
 
 
16
    #quicklinks_default = [] # preload user quicklinks with this page list
 
17
    #subscribed_pages_default = [] # preload user subscribed pages with this page list
 
18
 
 
19
    #user_checkbox_defaults = {'mailto_author': 0,
 
20
    #                          'edit_on_doubleclick': 0,
 
21
    #                          'remember_last_visit': 0,
 
22
    #                          'show_comments': 0,
 
23
    #                          'show_nonexist_qm': 0, # nonexist_qm
 
24
    #                          'show_page_trail': 1,
 
25
    #                          'show_toolbar': 1,
 
26
    #                          'show_topbottom': 0,
 
27
    #                          'show_fancy_diff': 1,
 
28
    #                          'wikiname_add_spaces': 0,
 
29
    #                          'remember_me': 1,
 
30
    #                         }
 
31
 
 
32
    # don't let the user change those
 
33
    #user_checkbox_disable = [] # ['disabled', ]
 
34
 
 
35
    # remove those checkboxes:
 
36
    #user_checkbox_remove = [] # ['remember_me', 'disabled', ]
 
37
 
 
38
    #user_form_defaults = {# key: default - do NOT remove keys from here!
 
39
    #    'name': '',
 
40
    #    'aliasname': '',
 
41
    #    'password': '',
 
42
    #    'password2': '',
 
43
    #    'email': '',
 
44
    #    'jid': '',
 
45
    #    'css_url': '',
 
46
    #    'edit_rows': "20",
 
47
    #}
 
48
 
 
49
    # don't let the user change those, but show them:
 
50
    #user_form_disable = [] # ['name', 'aliasname', 'email', ]
 
51
 
 
52
    # remove those completely:
 
53
    #user_form_remove = [] # ['password', 'password2', ]
 
54