Skip to content

Commit 028b7e3

Browse files
committed
Reverted to [9025] because commit [9026] failed (it was incomplete with a broken working dir).
- Legacy-Id: 9027 Note: SVN reference [9026] has been migrated to Git commit 4a3749a
1 parent 4a3749a commit 028b7e3

3,588 files changed

Lines changed: 136269 additions & 169088 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bin/graph-models

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
# Requires modelviz.py from
66
# http://code.djangoproject.com/wiki/DjangoGraphviz
77
#
8-
cd ${0%/*}/../ietf
9-
PYTHONPATH=`dirname $PWD`:`dirname $PWD/..`
8+
PYTHONPATH=`dirname $PWD`
109
export PYTHONPATH
1110
module=${PWD##*/}
1211
DJANGO_SETTINGS_MODULE=$module.settings
@@ -19,4 +18,4 @@ do
1918
fi
2019
done
2120
modelviz.py $* $models > models.dot
22-
dot -Tpng models.dot > models.png
21+
dot -Tpng models.dot

bin/test-crawl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ settings_module = args.settings or "ietf.settings"
2525

2626
os.environ.setdefault("DJANGO_SETTINGS_MODULE", settings_module)
2727

28-
import django
2928
import django.test
3029

3130
# prevent memory from leaking when settings.DEBUG=True
@@ -78,7 +77,6 @@ def extract_html_urls(content):
7877

7978
yield url
8079

81-
django.setup()
8280
client = django.test.Client()
8381

8482
for url in initial_urls:

changelog

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
ietfdb (5.11.0) ietf; urgency=medium
2-
3-
This relese upgrades Django from 1.6.4 to 1.7.1, and tastypie from 0.11.1 to
4-
0.12.1. It changes the database migrations infrastructure from that provided
5-
by "south", to the builtin replacement newly introduced with Django 1.7.
6-
7-
There are also a set of changes required by the upgrade, and some fixes
8-
to bugs revealed by the improved infrastructure provided by Django 1.7.
9-
10-
Deployment note: When deploying this, migrations need some extra care.
11-
You should run the following:
12-
$ ietf/manage.py migrate --fake doc
13-
$ ietf/manage.py migrate --fake community
14-
$ ietf/manage.py migrate --fake dbtemplate
15-
$ ietf/manage.py migrate
16-
17-
181
ietfdb (5.10.3) ietf; urgency=medium
192

203
This is a minor bugfix release in preparation for the upcoming upgrade from

django/__init__.py

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,7 @@
1-
VERSION = (1, 7, 4, 'final', 0)
2-
1+
VERSION = (1, 6, 0, 'final', 0)
32

43
def get_version(*args, **kwargs):
54
# Don't litter django/__init__.py with all the get_version stuff.
65
# Only import if it's actually called.
76
from django.utils.version import get_version
87
return get_version(*args, **kwargs)
9-
10-
11-
def setup():
12-
"""
13-
Configure the settings (this happens as a side effect of accessing the
14-
first setting), configure logging and populate the app registry.
15-
"""
16-
from django.apps import apps
17-
from django.conf import settings
18-
from django.utils.log import configure_logging
19-
20-
configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
21-
apps.populate(settings.INSTALLED_APPS)

django/apps/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

django/apps/config.py

Lines changed: 0 additions & 207 deletions
This file was deleted.

0 commit comments

Comments
 (0)