From 8df927f99fadb300a9b849c095401a23c87b42ca Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 23 Jun 2015 20:03:13 +0000 Subject: [PATCH] Set version info to release version 6.0.4 before branching. - Legacy-Id: 9689 --- 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 517b14268..09216f7e5 100644 --- a/ietf/__init__.py +++ b/ietf/__init__.py @@ -1,9 +1,9 @@ # Copyright The IETF Trust 2007, All Rights Reserved -__version__ = "6.0.4.dev0" +__version__ = "6.0.4" __date__ = "$Date$" -__rev__ = "$Rev$ (dev) Latest release: Rev. 9633 " +__rev__ = "$Rev$" __id__ = "$Id$" diff --git a/ietf/settings.py b/ietf/settings.py index 724bb0c71..f8c80abd2 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -21,7 +21,7 @@ sys.path.append(os.path.abspath(BASE_DIR + "/..")) import datetime -DEBUG = True +DEBUG = False TEMPLATE_DEBUG = DEBUG # Domain name of the IETF @@ -281,7 +281,7 @@ RFCDIFF_BASE_URL = "https://www.ietf.org/rfcdiff" # 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.IetfTestRunner'