remove support for django 1.5.x, stuff not needed any more when requiring >= 1.6

This commit is contained in:
Thomas Waldmann 2014-09-26 02:25:08 +02:00
parent 7344f7e284
commit 63c1cdbe6b
5 changed files with 0 additions and 19 deletions

View File

@ -14,7 +14,6 @@ env:
- TEST_OPTS="" - TEST_OPTS=""
- COVERAGE="" - COVERAGE=""
matrix: matrix:
- DJANGO=1.5.10
- DJANGO=1.6.7 - DJANGO=1.6.7
matrix: matrix:
exclude: exclude:

View File

@ -171,14 +171,6 @@ Obviously, this might lead to security issues with stealing, modifying and
faking domain cookies. faking domain cookies.
Sessions
========
We use Django's more safe JSONSerializer to serialize session data.
For Django >=1.5.3, the serializer is configurable.
For Django >=1.6 json will be the default rather than the less safe pickle format.
Django's SECRET_KEY Django's SECRET_KEY
=================== ===================

View File

@ -13,12 +13,6 @@ urlpatterns = patterns(
{'template_name': 'password_reset.html'}, name='password_reset'), {'template_name': 'password_reset.html'}, name='password_reset'),
url(r'^password_reset_done/$', 'django.contrib.auth.views.password_reset_done', url(r'^password_reset_done/$', 'django.contrib.auth.views.password_reset_done',
{'template_name': 'password_reset_done.html'}, name='password_reset_done'), {'template_name': 'password_reset_done.html'}, name='password_reset_done'),
# for django 1.5.x:
# url(r'^password_reset_confirm/(?P<uidb36>[0-9A-Za-z]{1,13})-(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
# 'django.contrib.auth.views.password_reset_confirm',
# {'template_name': 'password_reset_confirm.html'}, name='password_reset_confirm'),
#
# for django 1.6.x:
url(r'^password_reset_confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$', url(r'^password_reset_confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>.+)/$',
'django.contrib.auth.views.password_reset_confirm', 'django.contrib.auth.views.password_reset_confirm',
{'template_name': 'password_reset_confirm.html'}, name='password_reset_confirm'), {'template_name': 'password_reset_confirm.html'}, name='password_reset_confirm'),

View File

@ -247,8 +247,6 @@ SESSION_COOKIE_HTTPONLY = True
SESSION_COOKIE_AGE = 14 * 24 * 60 * 60 # 14 days, in seconds (remember_me is True) SESSION_COOKIE_AGE = 14 * 24 * 60 * 60 # 14 days, in seconds (remember_me is True)
SESSION_EXPIRE_AT_BROWSER_CLOSE = True # more safe (remember_me is False) SESSION_EXPIRE_AT_BROWSER_CLOSE = True # more safe (remember_me is False)
SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer'
# python-social-auth settings # python-social-auth settings
AUTHENTICATION_BACKENDS = ( AUTHENTICATION_BACKENDS = (

View File

@ -56,8 +56,6 @@ setup(
install_requires=install_requires + [ install_requires=install_requires + [
'netaddr', 'netaddr',
'django >=1.6, <1.7', # 1.7 is not tested yet 'django >=1.6, <1.7', # 1.7 is not tested yet
# django >= 1.5.3 also works, but needs a code change, see
# https://github.com/nsupdate-info/nsupdate.info/issues/141
'south', 'south',
'django-bootstrap-form', 'django-bootstrap-form',
'django-registration', 'django-registration',