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