Re: I need a django application to embed a chat javascript in admin site

2012-05-25 Thread jmolmo
I solve that using OpenFire ( An XMPP Server with chat , multiuser-chat, etc ..) and Strophe (a javascript library for the browser). Good luck Ariel El miércoles, 23 de mayo de 2012 16:37:42 UTC+2, Ariel escribió: > > Hi everybody, > > I need a django application to embed a chat javascript in

Re: I need a django application to embed a chat javascript in admin site

2012-05-25 Thread francescortiz
Implementing a simple global chat is pretty straightforward: 1- Don't use database 2- Implement filesystem based locking (multithread safe) 3- if there user wrote a new line, acquire lock and append the new line to the file. 4- releaase lock 5- send the last lines to the users. I recommend you

I need a django application to embed a chat javascript in admin site

2012-05-23 Thread Ariel Isaac Romero Cartaya
Hi everybody, I need a django application to embed a chat javascript in the admin app of my web site, I would like when the users are authenticated be able to contact by chat any other user authenticated in the admin site. How could I do this ??? Is there an application to make this ???