GAE+Django dev logs
I am implementing my own blog on GAE, today when I worked on the RSS feed I met a problem, the Django version come with GAE (1.1.5) doesn't work well with django.contrib.syndication, it will always throw an error:
'module' object has no attribute 'quote_name' app engine
The error is from inside the syndication framework and called into the django's model functions, looks like the default django version come along with GAE have some issue for that.
Then I decided to install django 1.0 code and the lastes Django helper to my project, before today I always use teh default django from GAE and use helper r52. (the latest helper only work on django 1.0).
Unfortunately, they don't work, the reason is here:
http://groups.google.com/group/google-appengine/browse_thread/thread/f6d3cb4a66340bc5
http://code.djangoproject.com/ticket/9115
I applied the patch from here, modified temp.py, and now everything works well for me ! Django 1.0 is running in GAE, and the syndication framework works !
Related posts:
- I combined all my English blog in one…
- GAE+Django dev logs
- My GAE toy: Site Traffic Comparer
- Open Social is not that "open" after all
- A Farewell to"Don't be evil" -- Google.cn banned a common Chinese people name.
- Google Maps + Google Ditu Mashup
- Get google reader's UID
Search related in web: