First time here? Check out the FAQ!

kluo's profile - activity

2013-03-13 17:41:29 -0500 received badge Famous Question (source)
2012-07-30 05:07:04 -0500 commented answer How to update Django 1.3 messaging to new messaging framework of Django 1.4?

Hi, roughly when do you think askbot will have support for Django 1.4?

2012-07-26 13:34:55 -0500 commented answer How to update Django 1.3 messaging to new messaging framework of Django 1.4?

https://github.com/philomat/django-persistent-messages looks like a good possible option here

2012-07-26 13:07:25 -0500 received badge Editor (source)
2012-07-26 09:12:39 -0500 received badge Nice Question (source)
2012-07-26 04:13:00 -0500 received badge Student (source)
2012-07-26 03:58:38 -0500 asked a question How to update Django 1.3 messaging to new messaging framework of Django 1.4?

Hi, I'm trying to get askbot working with Django 1.4 and am having some issue with the deprecated user.message_set.create() method, which is what is used for notifying a user when they have been awarded a badge. To update this to the new Django 1.4 messaging framework, you would need to use messages.success(request, msg). However this is called within notify_award_message which is called after saving an Award instance, so there is no reference to request. Any ideas how to get this, and any other areas in askbot code using the old messaging method, working?

2012-07-23 18:38:43 -0500 commented answer Does askbot support django 1.4 trunk version?

I am also getting this same error message trying to use Django 1.4. When I try importing in python interpreter it works fine...any help appreciated

EDIT: found the answer, you need to edit one line in urls.py

'django.contrib.syndication.views.feed',

to

'django.contrib.syndication.views.Feed',