log libpurple/protocols/jabber/jabber.c @ 18921:ba3b22cd280b

age author description
Tue, 31 Jul 2007 15:01:14 +0000 Andreas Monitzer Mixed up TRUE and FALSE.
Tue, 31 Jul 2007 03:50:41 +0000 Andreas Monitzer Implemented a callback for unregistering, mirroring the registration callback. Since this is a new API, I can do it properly by passing it right in the unregister function call, instead of having a separate function for setting it.
Mon, 30 Jul 2007 00:05:02 +0000 Andreas Monitzer propagate from branch 'im.pidgin.pidgin' (head cd20365dc59b48132f198784fbca95b91d1fc5c9)
Thu, 09 Aug 2007 18:58:07 +0000 Daniel Atallah Fix uninitialized variable access.
Sun, 29 Jul 2007 06:10:24 +0000 Mark Doliner Fix a bunch of possible crashes in jabber when using slash commands in
Mon, 30 Jul 2007 00:01:08 +0000 Andreas Monitzer Added unregistering XMPP accounts. This requires a new prpl-struct entry, but I got an ok for that on the mailing list.
Mon, 16 Jul 2007 13:56:22 +0000 Andreas Monitzer Added the ability to unregister from a gateway.
Wed, 11 Jul 2007 22:27:44 +0000 Andreas Monitzer propagate from branch 'im.pidgin.pidgin' (head b195e262642015df66e36d33e9dd16ecae5df9d5)
Wed, 27 Jun 2007 21:41:04 +0000 Sean Egan Make password fileds in Jabber's Change Password dialog required. Fixes #1907
Sat, 23 Jun 2007 06:01:30 +0000 Sadrul Habib Chowdhury Fix a crash when you have an IM window open on a jabber account and the
Sun, 17 Jun 2007 15:27:35 +0000 Nathan Walp server-side jabber vcards now take precedence over local vcards, so
Wed, 11 Jul 2007 00:17:11 +0000 Andreas Monitzer Fixed bug that caused incorrect stream negotiation, which ejabberd and openfire tolerate, but gtalk does not.
Sun, 08 Jul 2007 22:52:48 +0000 Andreas Monitzer Added an option to require SSL or TLS when connecting to an XMPP server.
Tue, 03 Jul 2007 23:51:26 +0000 Andreas Monitzer Fixed a bug in the XMPP parser involving event handlers that replace the xmlnode packet. This caused double frees in this situation. The replacing function must free the xmlnode, since multiple event handlers could do this, and the intermediate xml trees would leak otherwise.
Tue, 03 Jul 2007 15:50:24 +0000 Andreas Monitzer Fixed copy/paste error.
Tue, 03 Jul 2007 13:37:25 +0000 Andreas Monitzer Added the option to enable/disable buzz via a status setting. It's default off for the pidgin folks.
Tue, 03 Jul 2007 11:04:50 +0000 Andreas Monitzer Switched buzz namespace and tag name to be libpurple-specific and use a more professionally-sounding name ('attention' instead of 'buzz').
Fri, 29 Jun 2007 21:44:42 +0000 Andreas Monitzer disapproval of revision '217714a0fa711773c0d419f8cd82297ffc339507'
Thu, 28 Jun 2007 13:22:13 +0000 Andreas Monitzer Removed buzz support.
Wed, 27 Jun 2007 03:23:52 +0000 Andreas Monitzer Added buzz support using a private extension. Maybe I should write a XEP about that.
Mon, 25 Jun 2007 19:08:16 +0000 Andreas Monitzer The server's ad-hoc commands are now listed in the account's action menu. Note that this requires an additional field in the _PurplePluginAction struct. There's no other way, since there was no way to supply user_data, and dynamically created functions are not supported by C. This should be fine, since that struct is only malloced in purple_plugin_action_new, which is part of the core. Applications have to either pass the struct unmodified, or restore the user_data pointer if the action is recreated when necessary (as is the case in Adium).
Fri, 22 Jun 2007 11:52:50 +0000 Andreas Monitzer Simplified registration callback per request of Sean.
Fri, 22 Jun 2007 00:05:35 +0000 Andreas Monitzer Implemented a callback for a successful registration, supplying the username and password to the application when available, in the way explained by Sean.
Wed, 20 Jun 2007 10:18:52 +0000 Andreas Monitzer Introduced an additional connection stage to the jabber connection progress in order to be able to tell in the application, whether SSL/TLS is enabled, so it can display a lock icon next to the connection.
Wed, 20 Jun 2007 00:13:02 +0000 Andreas Monitzer Fixed a leak: The XML parser was never cleaned up on disconnect.
Tue, 19 Jun 2007 14:50:22 +0000 Andreas Monitzer Added the ability to register gateways, re-using most of the account registration code for this.
Mon, 18 Jun 2007 14:45:17 +0000 Andreas Monitzer Implemented XEP-0172: User Nickname, fixed some potential crashers in the other PEP callbacks.
Mon, 18 Jun 2007 12:37:29 +0000 Andreas Monitzer Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Sun, 17 Jun 2007 20:31:01 +0000 Andreas Monitzer Implemented user tune, currently untested.
Sun, 17 Jun 2007 03:51:19 +0000 Andreas Monitzer Implemented receiving other people's avatars via XEP-0084. Note that this code now includes a workaround for a non-spec incompatibility for the current ejabberd PEP implementation, and doesn't use the correct namespace due to Psi using the wrong one (outdated?). Works fine though, and the vcard-based approach is retained.
Sun, 17 Jun 2007 01:16:55 +0000 Andreas Monitzer Added support for setting the avatar via XEP-0084. Receiving other people's avatar is up next.
Fri, 15 Jun 2007 07:13:41 +0000 Andreas Monitzer PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Wed, 13 Jun 2007 16:03:11 +0000 Andreas Monitzer Implemented a mood menu action (non-functional right now for some reason)
Tue, 12 Jun 2007 03:19:42 +0000 Andreas Monitzer Fixed a few small mistakes I discovered while testing user mood in Adium.
Tue, 12 Jun 2007 01:25:46 +0000 Andreas Monitzer Fixed whitespace to match the coding convention used in libpurple
Mon, 11 Jun 2007 23:33:39 +0000 Andreas Monitzer implemented user mood, still missing the front end interface
Wed, 06 Jun 2007 02:07:53 +0000 Andreas Monitzer Implemented adding callbacks for PEP events. Moved the feature list to be application-global instead of per-connection (makes more sense).
Wed, 06 Jun 2007 01:19:49 +0000 Andreas Monitzer Added the ability to define extensions to caps
Wed, 06 Jun 2007 00:04:29 +0000 Andreas Monitzer applied patch for supporting XEP-0199: XMPP Ping
Wed, 06 Jun 2007 00:01:15 +0000 Andreas Monitzer added preliminary frame for pep-support
Tue, 05 Jun 2007 16:31:20 +0000 Andreas Monitzer New API name change, per request of Sean.
Tue, 05 Jun 2007 15:18:30 +0000 Andreas Monitzer Fixed one of the issues in the ssl stuff, allowing CN cert checks for starttls-connections in XMPP.
Fri, 08 Jun 2007 12:38:30 +0000 Nathan Walp merge of '4b50880d8517570eaa67d4cd9d88c5934bb832f1'
Fri, 08 Jun 2007 12:38:21 +0000 Nathan Walp if we don't have an icon, lets not clear the icon on login (fixes #788)
Thu, 07 Jun 2007 06:22:37 +0000 Mark Doliner Better error message for when a Jabber connection fails
Fri, 11 May 2007 00:15:12 +0000 Nathan Walp fix #699
Wed, 09 May 2007 00:02:17 +0000 Sean Egan Handle people forgetting to enter a domain. Also, change 'server,' in the account options to 'domain,' which is its proper name, and hopefully less confusion
Tue, 08 May 2007 22:08:46 +0000 Sean Egan Removes 'jabber.org' defaults from XMPP. I think we had agreed this was a good idea.
Sat, 05 May 2007 19:08:07 +0000 Richard Laager s/Jabber/XMPP in user-visible places.
Thu, 03 May 2007 12:04:04 +0000 Nathan Walp this should fix jabber buddy icons (but it will re-introduce the behavior of overwriting your vCard whenever you sign in).
Tue, 01 May 2007 14:11:35 +0000 Luke Schierer disapproval of revision 'c0c4c168411c9fbc5ccb9790a43e21a62f6dcd55'
Tue, 01 May 2007 05:53:57 +0000 Richard Laager s/Jabber/XMPP/ in user-visible places.
Thu, 26 Apr 2007 12:25:49 +0000 Evan Schoenberg Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Wed, 18 Apr 2007 19:51:24 +0000 Sean Egan This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sun, 15 Apr 2007 00:14:34 +0000 Nathan Walp patch from Simon Wilkinson to support Jabber/XMPP w/o passwords
Sun, 25 Mar 2007 07:07:29 +0000 Mark Doliner Minor code cleanup
Sun, 25 Mar 2007 07:01:57 +0000 Mark Doliner Correctly handle the Jabber disconnection error for signing onto the
Sun, 25 Mar 2007 06:24:04 +0000 Mark Doliner Don't advertise that we support the adverts, invite and translate
Sat, 24 Mar 2007 20:06:21 +0000 Stu Tomlinson Re-arrange #includes so 'make check' stands a chance of passing during
Mon, 19 Mar 2007 07:01:17 +0000 Sean Egan sed -ie 's/gaim/purple/g'