Hiroshi Miura
|
a95825ede8
|
python3 compatibility
- Things are suggested in python3 porting guide.
https://docs.djangoproject.com/en/1.8/topics/python3/
1. adding ```from django.utils.encoding import
python_2_unicode_compatible```
2. ``` __str__``` instead of ```__unicode__```
https://docs.djangoproject.com/en/1.8/topics/python3/#str-and-unicode-methods
3. Adding ```from __future__ import unicode_literals``` at the top
of your Python modules
https://docs.djangoproject.com/en/1.8/topics/python3/#unicode-literals
4. Removing the `u` prefix before unicode strings;
https://docs.djangoproject.com/en/1.8/topics/python3/#unicode-literals
- also closed #66
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
|
2015-08-03 23:32:25 +09:00 |
|
Hiroshi Miura
|
039ce4e000
|
Return unicode from _unicode_ methods
Import from PyCon improvement.
Author: Dan Poirier <dpoirier@caktusgroup.com>
Date: Mon Jul 8 15:55:33 2013 -0400
Return unicode from __unicode__ methods
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
|
2015-05-25 08:35:55 +09:00 |
|
Patrick Altman
|
b694901831
|
Remove migrations
These migrations were written for South. Now that we have Django 1.7,
we will just use Django migrations once we hit a 1.0 release.
|
2014-12-18 08:19:01 -06:00 |
|
David Ray
|
ef66c7ed12
|
Adding South Support; Work on #1
|
2014-01-14 09:47:49 -05:00 |
|
Luke Hatcher
|
1b57961061
|
orderings on schedules
|
2013-01-29 03:14:56 -05:00 |
|
Luke Hatcher
|
76c4a7b79c
|
update conferences app
|
2012-07-12 00:38:01 -04:00 |
|
James Tauber
|
09aa60777f
|
updated project layout for 1.4 (without content changes)
|
2012-05-29 14:53:04 -04:00 |
|