Removed ipython and added django-extensions, django-debug-toolbar

This commit is contained in:
Jannis Leidel 2009-06-12 01:00:04 +02:00
parent fd6da1d129
commit ea8f0168e8
2 changed files with 16 additions and 1 deletions

View file

@ -2,15 +2,22 @@
parts =
python
django
django-debug-toolbar
develop = .
eggs =
django-authority
ipython
django-extensions
[django-debug-toolbar]
recipe=zerokspot.recipe.git
repository=git://github.com/robhudson/django-debug-toolbar.git
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
extra-paths =
${django-debug-toolbar:location}
[django]
recipe = djangorecipe
@ -18,3 +25,5 @@ version = trunk
projectegg = example
settings = development
eggs = ${buildout:eggs}
extra-paths =
${django-debug-toolbar:location}

View file

@ -40,9 +40,13 @@ MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'debug_toolbar.middleware.DebugToolbarMiddleware',
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
)
INTERNAL_IPS = ('127.0.0.1',)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.auth',
'django.core.context_processors.debug',
@ -64,6 +68,8 @@ INSTALLED_APPS = (
'django.contrib.admin',
'authority',
'example.exampleapp',
'debug_toolbar',
'django_extensions',
)
TEMPLATE_LOADERS = (