|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
The code is now also available at Github: https://github.com/arneb/django-messages A user-to-user messaging system for DjangoDjango-messages enables your users to send private messages to each other. It provides a basic set of functionality your would expect from such a system. Every user has an Inbox, an Outbox and a Trash. Messages can be composed and there is an easy url-based approach to preloading the compose-form with the recipient-user, which makes it extremly easy to put "send xyz a message" links on a profile-page. Currently (svn-trunk) django-messages comes with these translations:
If you want to add a translation of fix one of the current translations you can easily do it via Transifex at: http://www.transifex.net/projects/p/django-messages/c/trunk/ Versions
DocumentationThe documentation is contained in the /docs/ directory and can be build with sphinx. A HTML version of the documentation is available at: http://files.arnebrodowski.de/software/django-messages/Documentation/ InstallDownload the tar archive, unpack and run python setup.py install or checkout the trunk and put the messages folder on your PYTHONPATH. Released versions of django-messages are also available on pypi and can be intalled with easy_install or pip. UsageAdd messages to your INSTALLED_APPS setting and add an include('messages.urls') at any point in your url-conf. The app includes some default templates, which are pretty simple. They extend a template called "base.html" and only emit stuff in the block "content" and block "sidebar". You may want to use your own templates, but the included ones are good enough for testing and getting started. DependenciesDjango-messages has no external dependencied except for django. But if django-notification and/or django-mailer are found it will make use of them. Note: as of r65 django-messages will only use django-notification if 'notification' is also added to the INSTALLES_APPS setting. This has been done to make situations possible where notification is on pythonpath but should not be used, or where notification is an other python package as django-notification which has the same name. News
|