include changelog in docs, cosmetic docs and pep8 fixes

This commit is contained in:
Thomas Waldmann 2013-12-15 16:50:18 +01:00
parent 1b9bd79f2b
commit 3f92c27125
3 changed files with 6 additions and 7 deletions

View File

@ -19,11 +19,10 @@ Other changes:
# alternatively: # alternatively:
from nsupdate.settings.prod import * # for production from nsupdate.settings.prod import * # for production
# after that, override whatever you need to override. # after that, override whatever you need to override.
* improved docs about a sane settings setup * improved docs about a sane settings setup
* document postgreSQL setup * document postgreSQL setup
* also support Python 2.6.x * also support Python 2.6.x
* for debugging, add django-debug-toolbar * for debugging, added django-debug-toolbar
Release 0.5.0 Release 0.5.0

View File

@ -3,3 +3,4 @@ Introduction
============ ============
.. include:: ../README.rst .. include:: ../README.rst
.. include:: ../CHANGES.rst

View File

@ -21,4 +21,3 @@ WWW_IPV6_HOST = 'ipv6.' + BASEDOMAIN # a host with ONLY a ipv6 address
# Hosts/domain names that are valid for this site; required if DEBUG is False # Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = [WWW_HOST, WWW_IPV4_HOST, WWW_IPV6_HOST] ALLOWED_HOSTS = [WWW_HOST, WWW_IPV4_HOST, WWW_IPV6_HOST]