First time here? Check out the FAQ!
2

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?

kluo's avatar
21
kluo
asked 2012-07-26 03:58:38 -0500, updated 2012-07-26 13:07:25 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

I think that we'll have to create a clone of the old messaging framework, because we need persistent messages, even when other apps might be ok with session or cookie-based messages.

Also - as you've rightly noticed - we need to set messages even without access to the request object.

Seems like the django's new messaging API won't work for us.

Evgeny's avatar
13.2k
Evgeny
answered 2012-07-26 04:12:53 -0500, updated 2012-07-26 04:14:53 -0500
edit flag offensive 0 remove flag delete link

Comments

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

kluo's avatar kluo (2012-07-26 13:34:55 -0500) edit

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

kluo's avatar kluo (2012-07-30 05:07:04 -0500) edit
add a comment see more comments