aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/yahoo/yahoo.c
Commit message (Collapse)AuthorAgeLines
* Mainline merge. (Probably mostly irrelevant for this branch, oh well.)Wilmer van der Gaast2010-05-16-0/+9
|\
| * Add a warning when the user included a domain part in his/her Yahoo! username.Wilmer van der Gaast2010-05-14-0/+5
| |
| * Yahoo! seems to echo conference room invitations now, huh? No idea what thisWilmer van der Gaast2010-05-09-0/+4
| | | | | | | | | | is but let's ignore them.
* | Merging head. Most changes are not so relevant because they're to IMWilmer van der Gaast2010-03-20-1/+1
|\| | | | | | | | | modules.
| * Really set Yahoo! status messages properly. YMSG, how I hate you.Wilmer van der Gaast2010-03-16-1/+1
| |
* | Merging in mainline, including improved away/status stuff.Wilmer van der Gaast2010-03-07-30/+11
|\|
| * Yahoo! fixes. Turns out the protocol really is somewhat odd.Wilmer van der Gaast2010-03-06-1/+5
| |
| * Fixed up Yahoo! I'll have to do some more thorough testing of this codeWilmer van der Gaast2010-03-06-30/+7
| | | | | | | | | | since I may have broken something.
* | Merging BitlBee 1.2.4+Wilmer van der Gaast2009-11-23-20/+45
|\|
| * Valgrind pointed me at some memory leaks in the Yahoo! codek, including oneWilmer van der Gaast2009-10-17-14/+17
| | | | | | | | | | that existed for a while already. Fixed.
| * Fixed an ugly bug in the write handler that may have caused many weird bugsWilmer van der Gaast2009-10-10-3/+1
| | | | | | | | | | | | for a while already by only sending one packet even if more of them were generated during an event cycle.
| * More Yahoo! fixes: Adding and removing buddies works, and for the firstWilmer van der Gaast2009-10-10-3/+27
| | | | | | | | | | | | | | | | | | time buddy add requests are actually handled; from what I can see this simply didn't exist in libyahoo2 yet so far. :-( I melded pieces of changes from http://geny.sf.net/ to make this stuff work.
* | Make purple use BitlBee's event handling API. Since the APIs never reallyWilmer van der Gaast2009-10-11-2/+2
|/ | | | | | | | | | diverged too much this is fairly transparent. I did rename and redefine GAIM_INPUT_* variables to really make it work without adding another stupid layer in between. One problem left, the new libpurple input API doesn't care about return values. Fixing that in the next CL.
* Fixed ic->away leaking memory. This var is only used by OSCAR and shouldWilmer van der Gaast2008-12-14-6/+7
| | | | | | maybe be killed. Also fixed some completely broken indentation in those functions.
* Fixed one crash bug in Yahoo! chatroom invitation handling.Wilmer van der Gaast2008-09-28-2/+15
|
* ext_yahoo_error() shouldn't close the connection if the error is fatal,Wilmer van der Gaast2008-07-29-3/+0
| | | | | the caller will do it already.
* Never use yahoo_close() directly, always use yahoo_logoff().Wilmer van der Gaast2008-06-24-4/+1
|
* This seems to fix the Yahoo! logoff code. I have no idea why this was brokenWilmer van der Gaast2008-06-14-4/+0
| | | | | | | (on purpose) in libyahoo2, but this fix seems to work and at least Valgrind is still happy. And I actually see myself log off now, and the fd is actually cleaned up properly.
* query.h now defines a callback function type, not using void* for it anymore.Wilmer van der Gaast2008-04-05-2/+6
| | | | | | Got rid of the bogus window handler pointer as the first argument to the callback.
* Inviting someone to a Yahoo! chatroom with msg=NULL is bad. I wonder ifWilmer van der Gaast2008-03-15-1/+1
| | | | | /invite ever worked in the Yahoo! module...
* Apparently ext_yahoo_got_im can be called with msg=NULL, so it should beWilmer van der Gaast2008-01-17-3/+7
| | | | | handled. Let's just ignore those packets.
* Added "mail_notifications" setting. Who needs those notifications anyway?Wilmer van der Gaast2008-01-05-1/+9
| | | | | Closes: #338.
* Added /invite support for Jabber chatrooms (and fixed the argument orderWilmer van der Gaast2007-12-09-1/+1
| | | | | to chat_invite).
* Read-only support for Jabber conferences (non-anonymous rooms only).Wilmer van der Gaast2007-04-22-7/+7
| | | | | Just don't use this, you're really not going to like it. :-)
* Consistency; Using OPT_T(YP|HINK)ING for outgoing typing notfication crapWilmer van der Gaast2007-04-20-1/+1
| | | | | too.
* Renamed some more prpl functions.Wilmer van der Gaast2007-04-20-4/+4
|
* Renamed/slightly changed syntax of groupchat callback functions.Wilmer van der Gaast2007-04-19-11/+11
|
* More API changes: buddy list management. imcb_add_buddy() is now a *real*Wilmer van der Gaast2007-04-18-1/+6
| | | | | | | | | 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-9/+6
| | | | | buddy/groupchat related functions.
* Hopefully improved Yahoo! "markup" stripping.Wilmer van der Gaast2007-04-16-6/+12
|
* Updating the Yahoo! module. This seems to fix handling of incoming awayWilmer van der Gaast2007-04-15-42/+60
| | | | | | states/messages, should fix some issues with group chats, and unfortunately also adds some crap which I don't want to clean up for now.
* Split serv_got_update() into imcb_buddy_(status|times). (Well, the secondWilmer van der Gaast2007-04-15-43/+58
| | | | | | | 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-14/+14
| | | | | | 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-8/+8
| | | | | it's in acc too. wants_to_die is now an argument to imc_logout().
* More format string problems.Wilmer van der Gaast2007-04-15-16/+2
|
* More cleanups, mainly in the callbacks. Replaced things likeWilmer van der Gaast2007-04-05-21/+16
| | | | | | | | 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-108/+107
| | | | | | 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-23/+15
|
* Merging from devel.Wilmer van der Gaast2006-10-15-6/+8
|\
| * The Yahoo! module now properly sets away states instead of away messages.Wilmer van der Gaast2006-07-27-6/+8
| | | | | | | | | | | | (So other BitlBees can read your Yahoo! away states better and others can see the proper icons again.)
* | Implemented per-account nick lists instead of per-protocol nick lists.Wilmer van der Gaast2006-07-03-1/+2
| | | | | | | | | | | | | | | | | | | | 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-4/+4
|/ | | | | testing though.
* Merging from main development tree.Wilmer van der Gaast2006-05-19-1/+2
|\
| * Yahoo module now passes the idle value to serv_got_update().Wilmer van der Gaast2006-05-16-1/+2
| |
* | Added correct return values for callbacks in yahoo.c.Wilmer van der Gaast2006-05-15-6/+4
| |
* | Moved everything to the BitlBee event handling API.Wilmer van der Gaast2006-05-10-9/+9
|/
* Removed some unused stuff from nogaim.h, preparing to fix some API issues there.Wilmer van der Gaast2006-03-31-6/+1
|
* Fixed Yahoo! invisible status. (Thanks to a patch someone posted on ↵Wilmer van der Gaast2006-01-14-7/+10
| | | | FreshMeat some time ago.)
* Merge my pluginable branchJelmer Vernooij2005-12-14-12/+6
|\
| * Merge WilmerJelmer Vernooij2005-11-19-4/+0
| |\