|
Project Information
Featured
Downloads
|
A messaging system with users last activity indicator for the django framework. Good for community sites so people can see who is active, and communicate via quick pms. The version 0.3 contains a few bugfixes, but it is still a beta. Features
InstallThis software works with django 0.97 svn Put the folder django_messaging in your python path SettingsRegister the app: add this line in your INSTALLED_APPS 'django_messaging', Register the middleware: add this line in your MIDDLEWARE_CLASSES 'django_messaging.middleware.DjangoMessagingMiddleware', Configure the profile class: AUTH_PROFILE_MODULE='django_messaging.DmUser' Note: you have to use django_messaging.DmUser class for the moment. The ability to use his own AUTH_PROFILE_MODULE class may be added later. Be sure to have your MEDIA_URL and MEDIA_ROOT settings configured. TemplatesCopy the templates/messaging folder to your templates directory. Put this line in your template wherever you want the messaging interface to appear: <p id="messaging"><script type="text/javascript">load_index()</script></p> Media filesCopy the media directory to the location setup in MEDIA_ROOT and rename this directory to messaging JavascriptAdd these lines to your main template to call the javascript libs (replace my_media_url with your media path): <script type="text/javascript" src="my_media_url/messaging/javascript/ajax.js"></script> <script type="text/javascript" src="my_media_url/messaging/javascript/messaging.js"></script> SetupIf you plug this module in a site that has existing users, you have to run a script before start using it, or adding users to contacts wont work until the users connect to the site:
$ export DJANGO_SETTINGS_MODULE=my_project.settings $ cd django_messaging/tests/ $ python setup.py NotesThe application is not yet internationalized: all the application messages are in french. Help welcome. Contribute and feedbackPlease report any bugs Feel free to improve the code or to come talk about the module: syntax_error in #django-fr on irc.freenode.net - Site: http://www.patrainet.com |