+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)