Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Fixing a crash bug that causes crashes only with buggy Jabber conference | Wilmer van der Gaast | 2009-10-04 | -6/+9 |
| | | | | | | servers, sending a "you left this chat" without first acknowledging you entering it. | |||
* | Fixed a bug that caused crashes when joining certain kinds of Google Talk | Wilmer van der Gaast | 2009-06-03 | -2/+4 |
| | | | | | | | | | chatrooms. Doesn't seem to be Google Talk specific, other than that this is the first time I see empty <x xmlns="http://jabber.org/protocol/muc#user"/> elements that cause this crash. A more proper/efficient fix may be to just move the break outside the inner if. | |||
* | Adding the password to the right part of the <presence> stanza so joining | Wilmer van der Gaast | 2008-09-28 | -1/+1 |
| | | | | | password-protected rooms *really* works. | |||
* | Restored support for password-protected chatrooms (for now only by accepting | Wilmer van der Gaast | 2008-09-28 | -1/+1 |
| | | | | | a password in the IRC JOIN command). | |||
* | Added support for password-protected Jabber chatrooms. | Wilmer van der Gaast | 2008-02-10 | -0/+2 |
| | ||||
* | Messages from the user are also included in backlogs when joining a Jabber | Wilmer van der Gaast | 2008-02-03 | -3/+6 |
| | | | | | | chatroom. Until now they were ignored, which might make backlogs a little bit confusing. | |||
* | The Jabber module now uses imcb_chat_log() instead of imcb_log() where | Wilmer van der Gaast | 2008-01-20 | -5/+41 |
| | | | | | possible. | |||
* | Fixed handing of failed groupchat joins. | Wilmer van der Gaast | 2008-01-13 | -6/+5 |
| | ||||
* | Added /invite support for Jabber chatrooms (and fixed the argument order | Wilmer van der Gaast | 2007-12-09 | -0/+21 |
| | | | | | to chat_invite). | |||
* | Forgot to return something in jabber_chat_join_failed(). | Wilmer van der Gaast | 2007-12-02 | -3/+3 |
| | ||||
* | Handling of presence-error packets (only useful for groupchats now), moved | Wilmer van der Gaast | 2007-12-02 | -4/+44 |
| | | | | | | jabber_chat_by_jid() (with the right name) to conference.c, I don't know what it was doing in jabber_util.c. | |||
* | Added Jabber groupchat topic support. | Wilmer van der Gaast | 2007-11-19 | -0/+28 |
| | ||||
* | Added imcb_clean_handle() to sanitize handles properly (without putting | Wilmer van der Gaast | 2007-07-15 | -0/+3 |
| | | | | | | | IRC-specific stuff into the Jabber module). Only using this in the MUC code for now because this only works if the IM module can somehow convert the cleaned up handle back to the original one. | |||
* | Added (and using) jabber_chat_free() for better memory management, fixed | Wilmer van der Gaast | 2007-07-02 | -7/+14 |
| | | | | | | channel name generation code in root_commands.c and fixed one memory leak in jabber_buddy_remove_bare(). | |||
* | Stripping of unwanted characters (@ and =) in channel nicknames. | Wilmer van der Gaast | 2007-07-02 | -1/+11 |
| | ||||
* | Keeping an original (not normalized) copy of the user's nickname. This | Wilmer van der Gaast | 2007-07-01 | -2/+5 |
| | | | | | | | fixes a bug reported by James Teh in the monster ticket #20. There's no proper garbage collection yet in the Jabber conference code, really have to do that soon. :-( | |||
* | Better handling of private messages via groupchats. | Wilmer van der Gaast | 2007-07-01 | -3/+5 |
| | ||||
* | Added imcb_remove_buddy() so deletions in Jabber roster pushes actually | Wilmer van der Gaast | 2007-06-14 | -1/+3 |
| | | | | | | work. This also solves the issue of underscores appearing and disappearing in their nicknames when people leave/join a chat. | |||
* | Calling imcb_add_buddy() before setting the nickname. This is the only | Wilmer van der Gaast | 2007-06-04 | -3/+6 |
| | | | | | way to set the nickname in time before BitlBee sends the JOIN. | |||
* | Added imcb_buddy_nick_hint so the Jabber conference module can suggest sane | Wilmer van der Gaast | 2007-06-04 | -0/+3 |
| | | | | | | | | nicknames for chatroom participants. There'll probably be a lot of underscores now, but this is by far the cleanest way to implement this, I think. At least now whispers will work properly. Also using this function call to set names for ICQ contacts in a slightly saner way. | |||
* | Now anonymous rooms should really work. This makes sure the self-join will | Wilmer van der Gaast | 2007-06-04 | -4/+8 |
| | | | | | | actually be recognized properly. This is running on my work machine for a few days already. | |||
* | Prepared the Jabber module for anonymous rooms, but the BitlBee core | Wilmer van der Gaast | 2007-04-25 | -14/+17 |
| | | | | | | doesn't deal with it very well, and I don't really know yet how I'll solve this... :-( | |||
* | Fixes: handling of being kicked, now sending <presence/> tags to all | Wilmer van der Gaast | 2007-04-22 | -0/+2 |
| | | | | | conferences the user's in. | |||
* | Got rid of one HORRIBLE stupidity called chat_by_channel(), which still | Wilmer van der Gaast | 2007-04-22 | -2/+2 |
| | | | | | | | used the GLOBAL IM connections list, allowing user A to interfere with user B's groupchats if running in daemon mode. I can't believe this was still there... | |||
* | You can send messages too now. But it's still very kludgy and doesn't work | Wilmer van der Gaast | 2007-04-22 | -9/+20 |
| | | | | | with anonymous rooms (ie about 95% of all available Jabber chatrooms?). | |||
* | Read-only support for Jabber conferences (non-anonymous rooms only). | Wilmer van der Gaast | 2007-04-22 | -0/+193 |
Just don't use this, you're really not going to like it. :-) |