-
Notifications
You must be signed in to change notification settings - Fork 6
User Reply Functionality #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Hi Karl, Sorry to take so long to answer your pull request. As you know, this is my work on a fork of the original project. I'm not using this application in any current projects. But there are some things you need to know. When I started extending the functionality behind I've always thought that Django is missing a good inter-user messaging application, with threaded messages, system messages, private messages, some nice templates, some nice built-in views, good test coverage. But in the end, no one out there has all of this. This one could with a lot of work, but I honestly think detaching this from I honestly think that should live in a separate repository, more visible in Github and more visible to the Django community, with a brand new name. I'm not sure what to do with this fork at the moment, probably in the future I will have to face this problem again in another project. Time constraints always force you to reuse things you would like to polish. I would really like to know what you think about what I'm saying. Maybe we can work together on it. Cheers, |
Hi Miguel, thanks for getting back to me. For my current project I've ended up hacking persistent-messages quite a As far as the integration with contrib.messages goes, I actually quite That said, we could still detach from contrib.messages and subsequently add For my current project I have some pretty tight deadlines, so will go ahead Cheers, On 12 February 2012 16:49, Miguel Araujo <
|
Added Django 1.4 compatibility and updated JS default to handle messages properly
Hi Maraujop,
thanks for your work on persistent-messages! I think as far as django messaging goes, this is one of the most promising approaches out here.
I would like to gradually extend the system to offer a fully fledged messaging system for both site notices as well as user messaging. The changes attached add two fields "parent_msg" and "replied" to the message model, allowing messages to have a parent message and to check whether or not a message has been replied to. This should make it easy to thread messages etc.
I've also added some initial templates (adopted from django-messages) for the inbox and compose page.
Please let me know if you're interested in taking the app into that direction, it'd be nice to do this together and on your fork rather than creating yet another fork of the project.
Karl Moritz