]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/users.py
2c2c3acac40743edf8ad8c087096df0cc04eafc6
[osqa.git] / forum / settings / users.py
1 from forms import CommaStringListWidget
2 from django.forms import CheckboxSelectMultiple
3 from django.forms.widgets import RadioSelect
4 from base import Setting, SettingSet
5 from django.utils.translation import ugettext as _
6
7 USERS_SET = SettingSet('users', _('Users settings'), _("General settings for the OSQA users."), 20)
8
9 ALLOW_NEGATIVE_REPUTATION = Setting('ALLOW_NEGATIVE_REPUTATION', True, USERS_SET, dict(
10 label = _("Allow negative reputation"),
11 help_text = _("Check if you want to allow negative user reputations in the community."),
12 required=False))
13
14 STORE_GREETING_IN_COOKIE = Setting('STORE_GREETING_IN_COOKIE', True, USERS_SET, dict(
15 label = _("Store greeting in cookie"),
16 help_text = _("If you check this the greeting will be stored in a cookie and the users won't be notified on logout."),
17 required=False))
18
19 EDITABLE_SCREEN_NAME = Setting('EDITABLE_SCREEN_NAME', False, USERS_SET, dict(
20 label = _("Editable screen name"),
21 help_text = _("Allow users to alter their screen name."),
22 required=False))
23
24 MIN_USERNAME_LENGTH = Setting('MIN_USERNAME_LENGTH', 3, USERS_SET, dict(
25 label = _("Minimum username length"),
26 help_text = _("The minimum length (in character) of a username.")))
27
28 RESERVED_USERNAMES = Setting('RESERVED_USERNAMES',
29 [_('fuck'), _('shit'), _('ass'), _('sex'), _('add'), _('edit'), _('save'), _('delete'), _('manage'), _('update'), _('remove'), _('new')]
30 , USERS_SET, dict(
31 label = _("Disabled usernames"),
32 help_text = _("A comma separated list of disabled usernames (usernames not allowed during a new user registration)."),
33 widget=CommaStringListWidget))
34
35 TRUNCATE_LONG_USERNAMES = Setting('TRUNCATE_LONG_USERNAMES', True, USERS_SET, dict(
36 label=_("Truncate long usernames"),
37 help_text = _("The long usernames will be truncated.."),
38 required=False,
39 ))
40
41 SHOW_USER_ACCEPT_RATE = Setting('SHOW_USER_ACCEPT_RATE', True, USERS_SET, dict(
42 label = _("Show user accept rate"),
43 help_text = _("If you check this the user accept rate will be displayed on the user posts."),
44 required=False))
45
46 TRUNCATE_USERNAMES_LONGER_THAN = Setting('TRUNCATE_USERNAMES_LONGER_THAN', 15, USERS_SET, dict(
47 label = _("Truncate usernames longer than"),
48 help_text = _("The usernames that are longer than this will be truncated and ... will be appended.")))
49
50 SHOW_STATUS_DIAMONDS = Setting('SHOW_STATUS_DIAMONDS', True, USERS_SET, dict(
51 label=_("Show status diamonds"),
52 help_text = _("Show status \"diamonds\" next to moderators or superusers usernames."),
53 required=False,
54 ))
55
56 EMAIL_UNIQUE = Setting('EMAIL_UNIQUE', True, USERS_SET, dict(
57 label = _("Force unique email"),
58 help_text = _("Should each user have an unique email."),
59 required=False))
60
61 REQUIRE_EMAIL_VALIDATION_TO = Setting('REQUIRE_EMAIL_VALIDATION_TO', [], USERS_SET, dict(
62 label = _("Require email validation to..."),
63 help_text = _("Which actions in this site, users without a valid email will be prevented from doing."),
64 widget=CheckboxSelectMultiple,
65 choices=(("ask", _("ask questions")), ("answer", _("provide answers")), ("comment", _("make comments")), ("flag", _("report posts"))),
66 required=False,
67 ))
68
69 DONT_NOTIFY_UNVALIDATED = Setting('DONT_NOTIFY_UNVALIDATED', True, USERS_SET, dict(
70 label = _("Don't notify to invalid emails"),
71 help_text = _("Do not notify users with unvalidated emails."),
72 required=False))
73
74 HOLD_PENDING_POSTS_MINUTES = Setting('HOLD_PENDING_POSTS_MINUTES', 120, USERS_SET, dict(
75 label=_("Hold pending posts for X minutes"),
76 help_text=_("How much time in minutes a post should be kept in session until the user logs in or validates the email.")
77 ))
78
79 WARN_PENDING_POSTS_MINUTES = Setting('WARN_PENDING_POSTS_MINUTES', 15, USERS_SET, dict(
80 label=_("Warn about pending posts afer X minutes"),
81 help_text=_("How much time in minutes a user that just logged in or validated his email should be warned about a pending post instead of publishing it automatically.")
82 ))
83
84 GRAVATAR_RATING_CHOICES = (
85     ('g', _('suitable for display on all websites with any audience type.')),
86     ('pg', _('may contain rude gestures, provocatively dressed individuals, the lesser swear words, or mild violence.')),
87     ('r', _('may contain such things as harsh profanity, intense violence, nudity, or hard drug use.')),
88     ('x', _('may contain hardcore sexual imagery or extremely disturbing violence.')),
89 )
90
91 GRAVATAR_ALLOWED_RATING = Setting('GRAVATAR_ALLOWED_RATING', 'g', USERS_SET, dict(
92 label = _("Gravatar rating"),
93 help_text = _("Gravatar allows users to self-rate their images so that they can indicate if an image is appropriate for a certain audience."),
94 widget=RadioSelect,
95 choices=GRAVATAR_RATING_CHOICES,
96 required=False))
97
98 GRAVATAR_DEFAULT_CHOICES = (
99     ('mm', _('(mystery-man) a simple, cartoon-style silhouetted outline of a person (does not vary by email hash)')),
100     ('identicon', _('a geometric pattern based on an email hash')),
101     ('monsterid', _('a generated "monster" with different colors, faces, etc')),
102     ('wavatar', _('generated faces with differing features and backgrounds')),
103 )
104
105 GRAVATAR_DEFAULT_IMAGE = Setting('GRAVATAR_DEFAULT_IMAGE', 'identicon', USERS_SET, dict(
106 label = _("Gravatar default"),
107 help_text = _("Gravatar has a number of built in options which you can also use as defaults."),
108 widget=RadioSelect,
109 choices=GRAVATAR_DEFAULT_CHOICES,
110 required=False))
111