]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/__init__.py
145859921fdcdc98c10c2a501da51a27d7f2a973
[osqa.git] / forum / settings / __init__.py
1 import os.path
2 from base import Setting, SettingSet, BaseSetting
3
4 from django.forms.widgets import Textarea
5 from django.utils.translation import ugettext_lazy as _
6 from django.conf import settings as djsettings
7 from django.utils.version import get_git_changeset
8
9 from forum.modules import get_modules_script_implementations
10
11 OSQA_VERSION = "Development Build"
12
13 VCS_REVISION = get_git_changeset()
14
15 # We'll have to keep in mind this variable on every release.
16 if VCS_REVISION == u'SVN-unknown':
17     VCS_REVISION = u'SVN-1000'
18
19 MAINTAINANCE_MODE = Setting('MAINTAINANCE_MODE', None)
20
21 SETTINGS_PACK = Setting('SETTINGS_PACK', "default")
22 DJSTYLE_ADMIN_INTERFACE = Setting('DJSTYLE_ADMIN_INTERFACE', True)
23 NODE_MAN_FILTERS = Setting('NODE_MAN_FILTERS', [])
24
25 APP_URL = djsettings.APP_URL
26 APP_BASE_URL = djsettings.APP_BASE_URL
27 FORCE_SCRIPT_NAME = djsettings.FORCE_SCRIPT_NAME
28 OSQA_SKIN = djsettings.OSQA_DEFAULT_SKIN
29 LANGUAGE_CODE = djsettings.LANGUAGE_CODE
30 ADMIN_MEDIA_PREFIX = djsettings.ADMIN_MEDIA_PREFIX
31 ONLINE_USERS = Setting('ONLINE_USERS', {})
32
33
34 from basic import *
35 from sidebar import *
36 from email import *
37 from extkeys import *
38 from minrep import *
39 from repgain import *
40 from voting import *
41 from upload import *
42 from about import *
43 from faq import *
44 from form import *
45 from view import *
46 from moderation import *
47 from users import *
48 from static import *
49 from urls import *
50 from accept import *
51 from sitemaps import *
52
53 __all__ = locals().keys()
54
55 # Be able to import all module settings as well
56 for k,v in get_modules_script_implementations('settings', BaseSetting).items():
57    if not k in __all__:
58         __all__.append(k)
59         exec "%s = v" % k
60
61
62 BADGES_SET = SettingSet('badges', _('Badges config'), _("Configure badges on your OSQA site."), 500)
63
64