| Issue 26: | Feedjack does not work with recent Django trunk | |
| 2 people starred this issue and may be notified of changes. | Back to list |
The feedjack.org page doesn't currently alert users to the fact that the app doesn't work correctly with the latest Django trunk. Two changes that need to be accounted for: http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Refactoreddatabasebackends The fix for this one is simply to replace "backend.quote_name" with "connection.ops.quote_name" in fjlib.py. http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Auto-escapingintemplates The quick-fix for this is to wrap base templates in {% autoescape off %} ... {% endautoescape %}. |
|
,
Jan 20, 2008
Worked for me - but I also was need to cut some "help" part of this string in
"models.py":
url = models.CharField(_('url'), maxlength=100, unique=True)
For "syncdb" begin to work...
|
|
,
Mar 16, 2008
Fixed in http://code.google.com/p/feedjack/source/detail?r=43 and http://code.google.com/p/feedjack/source/detail?r=44
Status: Fixed
Owner: gpicon Labels: -Priority-Medium Priority-Critical |
|
|
|