X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/76d6665baae1d1485b99323cc4dd2836661295aa..2c3ba81e19fd6d84ab208ad90a48fd81e4780c29:/forum/settings/__init__.py diff --git a/forum/settings/__init__.py b/forum/settings/__init__.py index 9b0cbed..218f114 100644 --- a/forum/settings/__init__.py +++ b/forum/settings/__init__.py @@ -1,14 +1,21 @@ import os.path -from base import Setting, SettingSet +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_svn_revision +from forum.modules import get_modules_script_implementations + OSQA_VERSION = "Development Build" + SVN_REVISION = get_svn_revision(djsettings.SITE_SRC_ROOT) +# We'll have to keep in mind this variable on every release. +if SVN_REVISION == u'SVN-unknown': + SVN_REVISION = u'SVN-1000' + MAINTAINANCE_MODE = Setting('MAINTAINANCE_MODE', None) SETTINGS_PACK = Setting('SETTINGS_PACK', "default") @@ -16,7 +23,8 @@ 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 ADMIN_MEDIA_PREFIX = djsettings.ADMIN_MEDIA_PREFIX @@ -40,8 +48,17 @@ 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()