From 2c5f2702143d092574709d6b48d55bb487d5ac45 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 20 Sep 2010 14:45:58 +0000 Subject: [PATCH] Set version info to release version 3.06 before branching. - Legacy-Id: 2528 --- ietf/__init__.py | 4 ++-- ietf/settings.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ietf/__init__.py b/ietf/__init__.py index 835181dd73..17e377cdd4 100644 --- a/ietf/__init__.py +++ b/ietf/__init__.py @@ -1,9 +1,9 @@ # Copyright The IETF Trust 2007, All Rights Reserved -__version__ = "3.06-dev" +__version__ = "3.06" __date__ = "$Date$" -__rev__ = "$Rev$ (dev) Latest release: Rev. 2505 " +__rev__ = "$Rev$" __id__ = "$Id$" diff --git a/ietf/settings.py b/ietf/settings.py index c4c9a34407..ba58c9026c 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -11,7 +11,7 @@ BASE_DIR = os.path.dirname(os.path.abspath(__file__)) -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG # Domain name of the IETF @@ -146,7 +146,7 @@ # Valid values: # 'production', 'test', 'development' # Override this in settings_local.py if it's not true -SERVER_MODE = 'development' +SERVER_MODE = 'production' # The name of the method to use to invoke the test suite TEST_RUNNER = 'ietf.utils.test_runner.run_tests'