From 49d5f1a0105acdadd3a50ddcc2f1dc95a997c263 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 16 Feb 2014 18:36:46 +0000 Subject: [PATCH] Set version info and settings back to development mode - Legacy-Id: 7252 --- 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 bf852707e..eea04e307 100644 --- a/ietf/__init__.py +++ b/ietf/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8-no-bom -*- # Copyright The IETF Trust 2007, All Rights Reserved -__version__ = "5.0.1" +__version__ = "5.0.2-dev" __date__ = "$Date$" -__rev__ = "$Rev$" +__rev__ = "$Rev$ (dev) Latest release: Rev. 7250 " __id__ = "$Id$" diff --git a/ietf/settings.py b/ietf/settings.py index 1811d3506..cf4837c27 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -19,7 +19,7 @@ LOG_DIR = '/var/log/datatracker' import sys sys.path.append(os.path.abspath(BASE_DIR + "/..")) -DEBUG = False +DEBUG = True TEMPLATE_DEBUG = DEBUG # Domain name of the IETF @@ -219,7 +219,7 @@ RFCDIFF_PREFIX = "//www.ietf.org/rfcdiff" # Valid values: # 'production', 'test', 'development' # Override this in settings_local.py if it's not true -SERVER_MODE = 'production' +SERVER_MODE = 'development' # The name of the method to use to invoke the test suite TEST_RUNNER = 'ietf.utils.test_runner.IetfTestRunner'