aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/nogaim.c
Commit message (Collapse)AuthorAgeLines
...
* Added imcb_chat_log() for chatroom system messages, so they can beWilmer van der Gaast2008-01-20-0/+18
| | | | | displayed inside the right channel.
* Moving imcb_chat_new() to a saner location (no code changes) and fixingWilmer van der Gaast2008-01-18-25/+26
| | | | | default channel topic.
* Fixing some Solaris compiler warnings (u_int->uint, adding some typecastsWilmer van der Gaast2008-01-17-3/+3
| | | | | for pid_t variables).
* Some changes to get rid of compiler warnings. (And disabling strictWilmer van der Gaast2007-11-22-5/+5
| | | | | aliasing because there are too many warnings about it. :-P)
* Added Jabber groupchat topic support.Wilmer van der Gaast2007-11-19-3/+3
|
* Merging /TOPIC code from Miklos Vajna. Untested, because I still have toWilmer van der Gaast2007-11-19-0/+24
| | | | | implement the Jabber hooks.
* Merging from devel/Jelmer.Wilmer van der Gaast2007-11-14-3/+3
|\
| * Fix another warning.Jelmer Vernooij2007-10-12-3/+3
| |
* | Merge from devel.Wilmer van der Gaast2007-10-12-36/+28
|\|
| * Added word_wrap() function to misc.c and using it at the right places soWilmer van der Gaast2007-10-12-33/+13
| | | | | | | | | | | | that long messages in groupchats also get wrapped properly (instead of truncated).
| * Made the netsplit-like quit messages optional.Wilmer van der Gaast2007-10-10-2/+14
| |
| * From vmiklos: More verbose error message on plugin load failures.Wilmer van der Gaast2007-08-30-1/+1
| |
* | Added imcb_clean_handle() to sanitize handles properly (without puttingWilmer van der Gaast2007-07-15-1/+32
| | | | | | | | | | | | | | 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.
* | Fixed imc_logout() (assigning u too early). Stupid me.Wilmer van der Gaast2007-07-11-1/+2
| |
* | Fixed nick hint function to only set the nick if it's different fromWilmer van der Gaast2007-07-02-7/+13
| | | | | | | | | | | | the current one (otherwise the dedupe function will dedupe the nick against itself).
* | Added imcb_remove_buddy() so deletions in Jabber roster pushes actuallyWilmer van der Gaast2007-06-14-0/+8
| | | | | | | | | | | | work. This also solves the issue of underscores appearing and disappearing in their nicknames when people leave/join a chat.
* | Fixed a memory management problem that caused some strange nickname issues.Wilmer van der Gaast2007-06-14-2/+6
| |
* | Fixed the duplicate-nick problem. Very very very stupid bug... :-(Wilmer van der Gaast2007-06-14-1/+1
| |
* | Fixed retarded use of strcpy() and no longer using Jabber fullnames forWilmer van der Gaast2007-06-04-2/+3
| | | | | | | | | | nickname generation. IM fullnames and IRC nicknames are just *different*.
* | Added imcb_buddy_nick_hint so the Jabber conference module can suggest saneWilmer van der Gaast2007-06-04-22/+25
| | | | | | | | | | | | | | | | 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.
* | Fixes: handling of being kicked, now sending <presence/> tags to allWilmer van der Gaast2007-04-22-3/+6
| | | | | | | | | | conferences the user's in.
* | Got rid of one HORRIBLE stupidity called chat_by_channel(), which stillWilmer van der Gaast2007-04-22-18/+0
| | | | | | | | | | | | | | 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...
* | Read-only support for Jabber conferences (non-anonymous rooms only).Wilmer van der Gaast2007-04-22-9/+12
|/ | | | | Just don't use this, you're really not going to like it. :-)
* Renamed some more prpl functions.Wilmer van der Gaast2007-04-20-3/+2
|
* Renamed/slightly changed syntax of groupchat callback functions.Wilmer van der Gaast2007-04-19-5/+5
|
* New code to use nicknames stored in ICQ contact lists.Wilmer van der Gaast2007-04-19-2/+23
|
* More API changes: buddy list management. imcb_add_buddy() is now a *real*Wilmer van der Gaast2007-04-18-25/+17
| | | | | | | | | callback, it's only called from inside IM-modules. This makes sure a buddy only gets added to the BitlBee structures if the add was successful. This gets rid of the weirdness described in #55. Unfortunately for now this change breaks A) automatic renaming of ICQ contacts (if there are names stored in the contact list) B) add -tmp.
* API cleanup pretty much complete. Fixed pretty much everything except theWilmer van der Gaast2007-04-16-15/+10
| | | | | buddy/groupchat related functions.
* Split serv_got_update() into imcb_buddy_(status|times). (Well, the secondWilmer van der Gaast2007-04-15-24/+33
| | | | | | | one isn't implemented yet, but I'll do that later.) At last I got rid of the hack called get_status_string(). And now Yahoo seems to mess up away messages...
* s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h aWilmer van der Gaast2007-04-15-50/+41
| | | | | | little bit, grouping things by category instead of original Gaim 0.58 filename.
* Cleaned up struct im_connection. No more username/password stuff sinceWilmer van der Gaast2007-04-15-16/+6
| | | | | it's in acc too. wants_to_die is now an argument to imc_logout().
* More cleanups, mainly in the callbacks. Replaced things likeWilmer van der Gaast2007-04-05-51/+56
| | | | | | | | do_error_dialog() and (set|hide)_login_progress(_error)?() with things that hopefully make more sense. Although it's still not really great...
* s/gaim_connection/im_connection/ and some other minor API changes. The restWilmer van der Gaast2007-03-30-214/+214
| | | | | | will come tomorrow. It compiles, I'll leave the real testing up to someone else. ;-)
* Preparing for Jabber conference room support.Wilmer van der Gaast2007-03-27-28/+20
|
* Merge from main tree.Wilmer van der Gaast2006-10-22-4/+4
|\
| * Away devoices are done by the server instead of by root now. This makesWilmer van der Gaast2006-10-22-4/+4
| | | | | | | | | | more sense with the "netsplit feature". (Because of less noisy joins.)
* | Complete fix (or mostly a work-around) for nested calls to signoff(). (CanWilmer van der Gaast2006-10-21-2/+2
| | | | | | | | | | | | | | happen when the IRC connection to the user is broken, a write() to it eventually fails, which triggers an irc_kill() which, in turn, will call signoff() for all accounts.)
* | Implemented a list of away states, using this for a better set_away(), andWilmer van der Gaast2006-09-23-2/+0
| | | | | | | | | | got rid of the double <presence> tag sent because of presence_announce().
* | Fixed return value on incomplete write()s in write handler, protectionWilmer van der Gaast2006-09-22-0/+5
|/ | | | | | | against write()ing to sockets that are closed already, hopefully sane detection for SASL support, and only sending type=unavailable presence tag to logged in sessions.
* Extra comments in set.h and now properly using set_getbool() instead ofWilmer van der Gaast2006-08-13-17/+17
| | | | | set_getint().
* Added a per-connection auto_reconnect setting.Wilmer van der Gaast2006-07-14-1/+2
|
* Implemented per-account nick lists instead of per-protocol nick lists.Wilmer van der Gaast2006-07-03-7/+7
| | | | | | | | | | nick_t is dead, instead nicks are just saves in a per-account_t GLib hash table. While doing this, the import_buddies command finally died and text_save() disappeared, because the old file format can't handle most of the new features in this branch anyway. Still have to implement support for the new nick lists in text_load()!
* Got rid of struct aim_user (now using account_t everywhere). Needs some moreWilmer van der Gaast2006-07-01-56/+43
| | | | | testing though.
* Made set.c API more generic so it's not specific to irc_t structures anymore,Wilmer van der Gaast2006-06-30-26/+27
| | | | | but can be used for account_t structures too, for example.
* Merging from devel/Jelmer.Wilmer van der Gaast2006-06-25-1/+2
|\
| * Merging libevent branch: Events can now be handles by both glib and libevent.Wilmer van der Gaast2006-06-21-14/+12
| |\
* | | Merging Jelmer's storage tree (with LDAP support).Wilmer van der Gaast2006-06-07-1/+2
|\| | | |/ |/|
| * Implemented netsplits for "account off".Wilmer van der Gaast2006-06-03-1/+2
| |
| |
| \
*-. | Merging from main development tree.Wilmer van der Gaast2006-05-26-96/+156
|\ \|
| | * Added bim_ functions for block/allow list management to keep gc->permit/denyWilmer van der Gaast2006-05-23-0/+46
| | | | | | | | | | | | | | | up-to-date at run-time.