X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/5806688fd0986ae297d9c500382585cecbaa72d3..ee224eb2acc8f8d6ef4af6c083060a4403f45cd9:/forum/settings/__init__.py diff --git a/forum/settings/__init__.py b/forum/settings/__init__.py index 6351ece..4120d2b 100644 --- a/forum/settings/__init__.py +++ b/forum/settings/__init__.py @@ -1,15 +1,33 @@ import os.path -from base import Setting, SettingSet -from forms import ImageFormWidget +from base import Setting, SettingSet, BaseSetting from django.forms.widgets import Textarea from django.utils.translation import ugettext_lazy as _ from django.conf import settings as djsettings +from django.utils.version import get_git_changeset + +from forum.modules import get_modules_script_implementations + +OSQA_VERSION = "Development Build" + +VCS_REVISION = get_git_changeset() + +# We'll have to keep in mind this variable on every release. +if VCS_REVISION == u'SVN-unknown': + VCS_REVISION = u'SVN-1000' + +MAINTAINANCE_MODE = Setting('MAINTAINANCE_MODE', None) -OSQA_VERSION = Setting('OSQA_VERSION', "Development Version") SETTINGS_PACK = Setting('SETTINGS_PACK', "default") +DJSTYLE_ADMIN_INTERFACE = Setting('DJSTYLE_ADMIN_INTERFACE', True) +NODE_MAN_FILTERS = Setting('NODE_MAN_FILTERS', []) + APP_URL = djsettings.APP_URL -FORUM_SCRIPT_ALIAS = djsettings.FORUM_SCRIPT_ALIAS +APP_BASE_URL = djsettings.APP_BASE_URL +FORCE_SCRIPT_NAME = djsettings.FORCE_SCRIPT_NAME +OSQA_SKIN = djsettings.OSQA_DEFAULT_SKIN +LANGUAGE_CODE = djsettings.LANGUAGE_CODE +ONLINE_USERS = Setting('ONLINE_USERS', {}) from basic import * @@ -23,10 +41,23 @@ from upload import * from about import * from faq import * from form import * +from view import * from moderation import * from users import * +from static import * +from urls import * +from accept import * +from sitemaps import * + +__all__ = locals().keys() + +# Be able to import all module settings as well +for k,v in get_modules_script_implementations('settings', BaseSetting).items(): + if not k in __all__: + __all__.append(k) + exec "%s = v" % k + BADGES_SET = SettingSet('badges', _('Badges config'), _("Configure badges on your OSQA site."), 500) -#__all__ = locals().keys()