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 _
7 USERS_SET = SettingSet('users', _('Users settings'), _("General settings for the OSQA users."), 20)
9 STORE_GREETING_IN_COOKIE = Setting('STORE_GREETING_IN_COOKIE', True, USERS_SET, dict(
10 label = _("Store greeting in cookie"),
11 help_text = _("If you check this the greeting will be stored in a cookie and the users won't be notified on logout."),
14 EDITABLE_SCREEN_NAME = Setting('EDITABLE_SCREEN_NAME', False, USERS_SET, dict(
15 label = _("Editable screen name"),
16 help_text = _("Allow users to alter their screen name."),
19 MIN_USERNAME_LENGTH = Setting('MIN_USERNAME_LENGTH', 3, USERS_SET, dict(
20 label = _("Minimum username length"),
21 help_text = _("The minimum length (in character) of a username.")))
23 RESERVED_USERNAMES = Setting('RESERVED_USERNAMES',
24 [_('fuck'), _('shit'), _('ass'), _('sex'), _('add'), _('edit'), _('save'), _('delete'), _('manage'), _('update'), _('remove'), _('new')]
26 label = _("Disabled usernames"),
27 help_text = _("A comma separated list of disabled usernames (usernames not allowed during a new user registration)."),
28 widget=CommaStringListWidget))
30 TRUNCATE_LONG_USERNAMES = Setting('TRUNCATE_LONG_USERNAMES', True, USERS_SET, dict(
31 label=_("Truncate long usernames"),
32 help_text = _("The long usernames will be truncated.."),
36 TRUNCATE_USERNAMES_LONGER_THAN = Setting('TRUNCATE_USERNAMES_LONGER_THAN', 15, USERS_SET, dict(
37 label = _("Truncate usernames longer than"),
38 help_text = _("The usernames that are longer than this will be truncated and ... will be appended.")))
40 SHOW_STATUS_DIAMONDS = Setting('SHOW_STATUS_DIAMONDS', True, USERS_SET, dict(
41 label=_("Show status diamonds"),
42 help_text = _("Show status \"diamonds\" next to moderators or superusers usernames."),
46 EMAIL_UNIQUE = Setting('EMAIL_UNIQUE', True, USERS_SET, dict(
47 label = _("Force unique email"),
48 help_text = _("Should each user have an unique email."),
51 REQUIRE_EMAIL_VALIDATION_TO = Setting('REQUIRE_EMAIL_VALIDATION_TO', [], USERS_SET, dict(
52 label = _("Require email validation to..."),
53 help_text = _("Which actions in this site, users without a valid email will be prevented from doing."),
54 widget=CheckboxSelectMultiple,
55 choices=(("ask", _("ask questions")), ("answer", _("provide answers")), ("comment", _("make comments")), ("flag", _("report posts"))),
59 DONT_NOTIFY_UNVALIDATED = Setting('DONT_NOTIFY_UNVALIDATED', True, USERS_SET, dict(
60 label = _("Don't notify to invalid emails"),
61 help_text = _("Do not notify users with unvalidated emails."),
64 HOLD_PENDING_POSTS_MINUTES = Setting('HOLD_PENDING_POSTS_MINUTES', 120, USERS_SET, dict(
65 label=_("Hold pending posts for X minutes"),
66 help_text=_("How much time in minutes a post should be kept in session until the user logs in or validates the email.")
69 WARN_PENDING_POSTS_MINUTES = Setting('WARN_PENDING_POSTS_MINUTES', 15, USERS_SET, dict(
70 label=_("Warn about pending posts afer X minutes"),
71 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.")
74 GRAVATAR_RATING_CHOICES = (
75 ('g', _('suitable for display on all websites with any audience type.')),
76 ('pg', _('may contain rude gestures, provocatively dressed individuals, the lesser swear words, or mild violence.')),
77 ('r', _('may contain such things as harsh profanity, intense violence, nudity, or hard drug use.')),
78 ('x', _('may contain hardcore sexual imagery or extremely disturbing violence.')),
81 GRAVATAR_ALLOWED_RATING = Setting('GRAVATAR_ALLOWED_RATING', 'g', USERS_SET, dict(
82 label = _("Gravatar rating"),
83 help_text = _("Gravatar allows users to self-rate their images so that they can indicate if an image is appropriate for a certain audience."),
85 choices=GRAVATAR_RATING_CHOICES,
88 GRAVATAR_DEFAULT_CHOICES = (
89 ('mm', _('(mystery-man) a simple, cartoon-style silhouetted outline of a person (does not vary by email hash)')),
90 ('identicon', _('a geometric pattern based on an email hash')),
91 ('monsterid', _('a generated "monster" with different colors, faces, etc')),
92 ('wavatar', _('generated faces with differing features and backgrounds')),
95 GRAVATAR_DEFAULT_IMAGE = Setting('GRAVATAR_DEFAULT_IMAGE', 'identicon', USERS_SET, dict(
96 label = _("Gravatar default"),
97 help_text = _("Gravatar has a number of built in options which you can also use as defaults."),
99 choices=GRAVATAR_DEFAULT_CHOICES,