nerdyator / feedjack

Automatically exported from code.google.com/p/feedjack
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Feedjack does not work with recent Django trunk #26

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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#Refactoreddataba
sebackends

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-escapingint
emplates

The quick-fix for this is to wrap base templates in {% autoescape off %}
... {% endautoescape %}.

Original issue reported on code.google.com by paul.bissex on 22 Nov 2007 at 5:51

GoogleCodeExporter commented 8 years ago
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...

Original comment by marky...@gmail.com on 20 Jan 2008 at 8:07

GoogleCodeExporter commented 8 years ago
Fixed in http://code.google.com/p/feedjack/source/detail?r=43 and
http://code.google.com/p/feedjack/source/detail?r=44

Original comment by gpicon on 17 Mar 2008 at 1:59