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?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
kluo's avatar
21
kluo
asked 12 years ago, updated 12 years ago

Comments

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 12 years ago, updated 12 years ago
link

Comments

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

kluo's avatar kluo (12 years ago)

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

kluo's avatar kluo (12 years ago)
see more comments