-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add django 1.8 support #165
Conversation
We allow 1.8 to fail as it's not currently out.
It's no longer needed.
One gotcha - if we've been called via deal_with_POST (for very long URLs), then move POST into GET before handling the request.
urlpatterns as a list has worked since 1.4.
This allows the same templates to work in anything from 1.4 upwards.
Use Django's render() shortcut rather than our own; create a render_to_string patch that uses request/context appropriately; stub out Context() when not needed; add TEMPLATES setting.
a5cd6ef
to
9212c49
Compare
Incidentally, why are you preferring |
I've added a few comments or questions, but otherwise this looks good to me. |
"why are you preferring get_version()" – |
This was added in Django 1.7 in order to invalidate sessions on password change.
Remove Django/South from packages files, and put requirements in setup.py rather than reqirements.txt.
3e633e1
to
87dacbc
Compare
Merged in fc7f2eb with Version 1.3 commit added on top separately to fix typos. |
And tidy up bits for some future proofing.