<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1308</id>
	<title>Nabble - Pidgin - Development</title>
	<updated>2009-11-24T06:29:50Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Pidgin---Development-f1308.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pidgin---Development-f1308.html" />
	<subtitle type="html">This mailing list is used by developers and contributors of the Pidgin project to discuss changes to these programs, the web page, trac, version control, etc.
&lt;br&gt;Users seeking support can ask questions here, but PLEASE check the &lt;a href=&quot;http://pidgin.im/faq.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;FAQ&lt;/a&gt;&amp;nbsp;and our &lt;a href=&quot;http://developer.pidgin.im/search&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug tracking system&lt;/a&gt;&amp;nbsp;to make sure your issue isn't already known.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26496911</id>
	<title>clarification in libpurple</title>
	<published>2009-11-24T06:29:50Z</published>
	<updated>2009-11-24T06:29:50Z</updated>
	<author>
		<name>sai ram-4</name>
	</author>
	<content type="html">hi,&lt;br&gt;
    we are trying to develop a product which include myspace as a part.
we like to use libpurple and its files to facilitate instant messaging
between clients. can u clarify us what are the minimal files which we
should use from this libpurple library to facilitate a basic im between
two clients ?  awaiting for the reply.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thanks &amp;amp; Regards,&lt;br&gt;
Sairam.
&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496911&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/clarification-in-libpurple-tp26496911p26496911.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26490662</id>
	<title>Re: Carnegie Mellon Students looking for help</title>
	<published>2009-11-23T21:27:37Z</published>
	<updated>2009-11-23T21:27:37Z</updated>
	<author>
		<name>Sadrul Habib Chowdhury</name>
	</author>
	<content type="html">* Etan Reisner had this to say on [23 Nov 2009, 23:58:16 -0500]:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sun, Nov 22, 2009 at 03:18:53PM -0500, Anthony Hugh wrote:
&lt;br&gt;&amp;gt; &amp;gt; Thanks for all the quick responses. &amp;nbsp;We worked on ticket #3329 and submitted
&lt;br&gt;&amp;gt; &amp;gt; a patch.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Right now, we're trying to get a second bug fix in for the assignment.
&lt;br&gt;&amp;gt; &amp;gt; We're working on ticket #9422 (Sort in &amp;quot;New Instant Message&amp;quot; and we're
&lt;br&gt;&amp;gt; &amp;gt; having a little trouble finding the callback function on the &amp;quot;Name&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; textbox. &amp;nbsp;We see that it gets created via the &amp;quot;pidgin_dialogs_im&amp;quot; function
&lt;br&gt;&amp;gt; &amp;gt; in gtkdialogs.c. &amp;nbsp;We also saw that in gtkrequest.c:1109,
&lt;br&gt;&amp;gt; &amp;gt; pidgin_request_fields fills in the call back functions for the ok button and
&lt;br&gt;&amp;gt; &amp;gt; the cancel button. &amp;nbsp;We can't seem to find where the &amp;quot;Name&amp;quot; textbox functions
&lt;br&gt;&amp;gt; &amp;gt; are though. &amp;nbsp;Could someone give us some insights on where to look?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;gt; Anthony Hugh
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The line from pidgin_dialogs_im that is the &amp;quot;magic&amp;quot; line here is
&lt;br&gt;&amp;gt; purple_request_field_set_type_hint. If you look at
&lt;br&gt;&amp;gt; gtkrequest.c:setup_entry_field you will see that it calls
&lt;br&gt;&amp;gt; purple_request_field_get_type_hint (it is generally a fair bet that a
&lt;br&gt;&amp;gt; _set_ function has a matching _get_ function) and that when the field hint
&lt;br&gt;&amp;gt; has a prefix that matches &amp;quot;screenname&amp;quot; it does some stuff ending with a
&lt;br&gt;&amp;gt; call to pidgin_setup_screenname_autocomplete_with_filter (which is in
&lt;br&gt;&amp;gt; gtkutils.c). After a series of contortions that adds the necessary data to
&lt;br&gt;&amp;gt; the gtk_list_store and sets the sort column on the tree store.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Depending on what aspect of the request in #9422 you want to add you are
&lt;br&gt;&amp;gt; going to need to do different things.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Displaying the status would likely require a fair bit of work as I don't
&lt;br&gt;&amp;gt; imagine (though I haven't checked) that the GtkEntryCompletion stuff
&lt;br&gt;&amp;gt; supports showing complex completion results (beyond the matching text).
&lt;br&gt;&amp;gt; Which means it would require a custom completion implementation (or
&lt;br&gt;&amp;gt; similar solution to work).
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;#5936 discusses something similar. I don't seem to have the code for the
&lt;br&gt;screenshot posted in there, but it demonstrates that it should be
&lt;br&gt;possible, technically, to do some nifty stuff. However, I don't think we
&lt;br&gt;would want the dialog to be too cluttered with too much information.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Sadrul
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26490662&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Carnegie-Mellon-Students-looking-for-help-tp26101569p26490662.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26490503</id>
	<title>Re: Carnegie Mellon Students looking for help</title>
	<published>2009-11-23T20:58:16Z</published>
	<updated>2009-11-23T20:58:16Z</updated>
	<author>
		<name>Etan Reisner-2</name>
	</author>
	<content type="html">On Sun, Nov 22, 2009 at 03:18:53PM -0500, Anthony Hugh wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks for all the quick responses. &amp;nbsp;We worked on ticket #3329 and submitted
&lt;br&gt;&amp;gt; a patch.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Right now, we're trying to get a second bug fix in for the assignment.
&lt;br&gt;&amp;gt; We're working on ticket #9422 (Sort in &amp;quot;New Instant Message&amp;quot; and we're
&lt;br&gt;&amp;gt; having a little trouble finding the callback function on the &amp;quot;Name&amp;quot;
&lt;br&gt;&amp;gt; textbox. &amp;nbsp;We see that it gets created via the &amp;quot;pidgin_dialogs_im&amp;quot; function
&lt;br&gt;&amp;gt; in gtkdialogs.c. &amp;nbsp;We also saw that in gtkrequest.c:1109,
&lt;br&gt;&amp;gt; pidgin_request_fields fills in the call back functions for the ok button and
&lt;br&gt;&amp;gt; the cancel button. &amp;nbsp;We can't seem to find where the &amp;quot;Name&amp;quot; textbox functions
&lt;br&gt;&amp;gt; are though. &amp;nbsp;Could someone give us some insights on where to look?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Anthony Hugh
&lt;/div&gt;&lt;br&gt;The line from pidgin_dialogs_im that is the &amp;quot;magic&amp;quot; line here is
&lt;br&gt;purple_request_field_set_type_hint. If you look at
&lt;br&gt;gtkrequest.c:setup_entry_field you will see that it calls
&lt;br&gt;purple_request_field_get_type_hint (it is generally a fair bet that a
&lt;br&gt;_set_ function has a matching _get_ function) and that when the field hint
&lt;br&gt;has a prefix that matches &amp;quot;screenname&amp;quot; it does some stuff ending with a
&lt;br&gt;call to pidgin_setup_screenname_autocomplete_with_filter (which is in
&lt;br&gt;gtkutils.c). After a series of contortions that adds the necessary data to
&lt;br&gt;the gtk_list_store and sets the sort column on the tree store.
&lt;br&gt;&lt;br&gt;Depending on what aspect of the request in #9422 you want to add you are
&lt;br&gt;going to need to do different things.
&lt;br&gt;&lt;br&gt;Displaying the status would likely require a fair bit of work as I don't
&lt;br&gt;imagine (though I haven't checked) that the GtkEntryCompletion stuff
&lt;br&gt;supports showing complex completion results (beyond the matching text).
&lt;br&gt;Which means it would require a custom completion implementation (or
&lt;br&gt;similar solution to work).
&lt;br&gt;&lt;br&gt;Sorting by some other criteria should be considerably simpler, if the data
&lt;br&gt;is already in the tree model then simply modifying the sort column should
&lt;br&gt;make it work. If the data isn't in the tree model then it needs to be
&lt;br&gt;added and the sort column needs to be updated.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; -Etan
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26490503&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Carnegie-Mellon-Students-looking-for-help-tp26101569p26490503.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26487162</id>
	<title>Re: IM Freedom annual board meeting</title>
	<published>2009-11-23T14:26:05Z</published>
	<updated>2009-11-23T14:26:05Z</updated>
	<author>
		<name>Mark Doliner</name>
	</author>
	<content type="html">On Sun, Nov 22, 2009 at 1:00 PM, Luke Schierer &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26487162&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lschiere@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Just as an FYI, the annual board meeting of IM Freedom, the non-profit we set up to handle things for Pidgin, Finch, and other open source instant messaging programs that want to be under our umbrella, is having its annual board meeting tomorrow, 2009-11-23, at 6pm EST, in the jabber conference room &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26487162&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;board@...&lt;/a&gt;.  This conference room is moderated, so while you can join and observe, only board members can post.  A second conference room, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26487162&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;discussion@...&lt;/a&gt; will also be open for general comment.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Typically these are very boring meetings and nothing much happens, but feel free to join and observe.  This year we will be electing some new officers to join the board.
&lt;br&gt;&lt;br&gt;Correction: the board meeting will be in &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26487162&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;boardroom@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;-Mark
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26487162&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/IM-Freedom-annual-board-meeting-tp26469437p26487162.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26474369</id>
	<title>Re: Inclusion of MXit plugin into Pidgin</title>
	<published>2009-11-23T00:43:34Z</published>
	<updated>2009-11-23T00:43:34Z</updated>
	<author>
		<name>Sadrul Habib Chowdhury</name>
	</author>
	<content type="html">* Mark Doliner had this to say on [23 Nov 2009, 00:26:15 -0800]:
&lt;br&gt;[snip]
&lt;br&gt;&amp;gt; And Pieter, if you plan to make any
&lt;br&gt;&amp;gt; substantial changes to libpurple or Pidgin please work with another
&lt;br&gt;&amp;gt; developer to make sure we're familiar with the changes and everyone is
&lt;br&gt;&amp;gt; in agreement.
&lt;br&gt;&lt;br&gt;Also, I would encourage at least someone among the MXit folks to hang
&lt;br&gt;out in our regular chat rooms (on IRC on XMPP) if possible. I think
&lt;br&gt;that'd be helpful to keep the MXit prpl updated with the changes we make
&lt;br&gt;to pidgin/libpurple.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Sadrul
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474369&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Inclusion-of-MXit-plugin-into-Pidgin-tp25113019p26474369.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26474194</id>
	<title>Re: Inclusion of MXit plugin into Pidgin</title>
	<published>2009-11-23T00:26:15Z</published>
	<updated>2009-11-23T00:26:15Z</updated>
	<author>
		<name>Mark Doliner</name>
	</author>
	<content type="html">On Thu, Oct 29, 2009 at 9:17 AM, John Bailey &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474194&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rekkanoryo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Pieter Loubser wrote:
&lt;br&gt;&amp;gt;&amp;gt; There does not appear to be any other objections, so could you please
&lt;br&gt;&amp;gt;&amp;gt; let me know what the next step will be to get this plugin included.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The best thing to do would be to first have at least one person (but preferably
&lt;br&gt;&amp;gt; two for backup purposes) from your group familiarize him/herself with monotone.
&lt;br&gt;&lt;br&gt;*snip*
&lt;br&gt;&lt;br&gt;&amp;gt; In either event, the people who will be given access to our mtn.pidgin.im
&lt;br&gt;&amp;gt; netsync server will need to mail me the output of 'mtn pubkey &amp;lt;keyid&amp;gt;' where
&lt;br&gt;&amp;gt; &amp;lt;keyid&amp;gt; is the key name they chose.  You will probably want to use your mxit.com
&lt;br&gt;&amp;gt; email addresses as your key ID's for simplicity's sake.
&lt;br&gt;&lt;br&gt;Just want to update people on the status of MXit in libpurple. &amp;nbsp;The
&lt;br&gt;protocol is checked into im.pidgin.pidgin (aka trunk) and I think both
&lt;br&gt;Peter Loubser and Andrew Victor from MXit have commit access (I'm
&lt;br&gt;assuming John did that--thanks John!). &amp;nbsp;The source will definitely be
&lt;br&gt;included in our upcoming 2.6.4.
&lt;br&gt;&lt;br&gt;John you may have already talked to other devs about this, but I'm
&lt;br&gt;totally ok with the MXit guys making changes directly to
&lt;br&gt;im.pidgin.pidgin (you had suggested that they work in a branch, but I
&lt;br&gt;couldn't tell if you thought they should ALWAYS work in a branch, or
&lt;br&gt;only for the first release). &amp;nbsp;And Pieter, if you plan to make any
&lt;br&gt;substantial changes to libpurple or Pidgin please work with another
&lt;br&gt;developer to make sure we're familiar with the changes and everyone is
&lt;br&gt;in agreement.
&lt;br&gt;&lt;br&gt;Also Pieter, I made a few small changes to your protocol code today in
&lt;br&gt;im.pidgin.pidgin. &amp;nbsp;Just marked some strings for translation, got rid
&lt;br&gt;of a few compile warnings (they maybe only happened on 64bit platforms
&lt;br&gt;or with certain CFLAGS), maybe a small crash fix when getting an error
&lt;br&gt;registering a new account, etc. &amp;nbsp;Please let me know if you have any
&lt;br&gt;questions.
&lt;br&gt;&lt;br&gt;The only issue that I'm aware of is that struct raw_chunk in chunk.h
&lt;br&gt;uses &amp;quot;__attribute__ ((packed))&amp;quot; which we believe is a gcc-only
&lt;br&gt;compiler extension. &amp;nbsp;So this would break compilation with non-gcc
&lt;br&gt;compilers. &amp;nbsp;I suspect that doesn't affect too many people, but it's
&lt;br&gt;probably worth addressing before we release. &amp;nbsp;I don't know the best
&lt;br&gt;way to address it. &amp;nbsp;Maybe separate the data field out of the struct
&lt;br&gt;and set type and length separately based on the first few bytes from
&lt;br&gt;the character array.
&lt;br&gt;&lt;br&gt;-Mark
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474194&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Inclusion-of-MXit-plugin-into-Pidgin-tp25113019p26474194.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26469437</id>
	<title>IM Freedom annual board meeting</title>
	<published>2009-11-22T13:00:20Z</published>
	<updated>2009-11-22T13:00:20Z</updated>
	<author>
		<name>Luke Schierer-5</name>
	</author>
	<content type="html">Just as an FYI, the annual board meeting of IM Freedom, the non-profit we set up to handle things for Pidgin, Finch, and other open source instant messaging programs that want to be under our umbrella, is having its annual board meeting tomorrow, 2009-11-23, at 6pm EST, in the jabber conference room &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469437&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;board@...&lt;/a&gt;. &amp;nbsp;This conference room is moderated, so while you can join and observe, only board members can post. &amp;nbsp;A second conference room, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469437&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;discussion@...&lt;/a&gt; will also be open for general comment. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Typically these are very boring meetings and nothing much happens, but feel free to join and observe. &amp;nbsp;This year we will be electing some new officers to join the board. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Luke
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469437&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/IM-Freedom-annual-board-meeting-tp26469437p26469437.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26469198</id>
	<title>Mxit causes crash on win32</title>
	<published>2009-11-22T12:36:07Z</published>
	<updated>2009-11-22T12:36:07Z</updated>
	<author>
		<name>Andrea Visinoni</name>
	</author>
	<content type="html">(21:33:16) plugins: probing C:\Documents and 
&lt;br&gt;Settings\andrea\Desktop\pidgin-minor\plugins\libmxit.dll
&lt;br&gt;(21:33:16) prpl-loubserp-mxit: Loading MXit libPurple plugin...
&lt;br&gt;(21:33:16) g_log: file mxit.c: line 690 (init_plugin): assertion failed: 
&lt;br&gt;(sizeof( struct raw_chunk ) == 5)
&lt;br&gt;&lt;br&gt;Unspecified fatal error encoutered. Aborting
&lt;br&gt;&lt;br&gt;if i delete libmxit.dll from plugins directory, pidgin start correctly.
&lt;br&gt;&lt;br&gt;Andrea.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469198&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Mxit-causes-crash-on-win32-tp26469198p26469198.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26469042</id>
	<title>Re: Carnegie Mellon Students looking for help</title>
	<published>2009-11-22T12:18:53Z</published>
	<updated>2009-11-22T12:18:53Z</updated>
	<author>
		<name>Anthony Hugh-2</name>
	</author>
	<content type="html">Thanks for all the quick responses.  We worked on ticket #3329 and submitted a patch.  &lt;br&gt;&lt;br&gt;Right now, we&amp;#39;re trying to get a second bug fix in for the assignment.  We&amp;#39;re working on ticket #9422 (Sort in &amp;quot;New Instant Message&amp;quot; and we&amp;#39;re having a little trouble finding the callback function on the &amp;quot;Name&amp;quot; textbox.  We see that it gets created via the &amp;quot;pidgin_dialogs_im&amp;quot; function in gtkdialogs.c.  We also saw that in gtkrequest.c:1109, pidgin_request_fields fills in the call back functions for the ok button and the cancel button.  We can&amp;#39;t seem to find where the &amp;quot;Name&amp;quot; textbox functions are though.  Could someone give us some insights on where to look? &lt;br&gt;

&lt;br&gt;Thanks, &lt;br&gt;Anthony Hugh&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Oct 28, 2009 at 10:51 PM, Etan Reisner &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469042&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pidgin@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;&quot;&gt;


On Wed, Oct 28, 2009 at 04:26:21PM -0400, Anthony Hugh wrote:&lt;br&gt;
&amp;lt;snip&amp;gt;&lt;br&gt;
&lt;div&gt;&amp;gt; 1577:  Sort groups alphabetically.&lt;br&gt;
&amp;gt; 9422:  Sort in &amp;quot;New Instant Message&amp;quot;&lt;br&gt;
&amp;gt; 2434:  Add chatroom buddy to blist by dragging&lt;br&gt;
&amp;gt; 3329:  Autocompletion of screennames with spaces&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&amp;gt; Any help would be appreciated.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt; Anthony Hugh&lt;br&gt;
&lt;br&gt;
I think fixing #3329 would be great, it is an unfortunate limitation at&lt;br&gt;
the moment, but I&amp;#39;m unsure what the best solution to the problem is.&lt;br&gt;
Modifying our matching algorithm to ignore spaces in nicknames for&lt;br&gt;
matching (as suggested by the poster of the ticket) is one reasonable&lt;br&gt;
solution but I wonder if there are others that would also work.&lt;br&gt;
&lt;br&gt;
I think #2434 is likely both less helpful (we have a right-click menu item&lt;br&gt;
for Add) as well as harder to do since drag-and-drop is trickier and this&lt;br&gt;
will not work for all chats as the chatroom nickname does not always&lt;br&gt;
contain enough information to actually add the buddy with.&lt;br&gt;
&lt;br&gt;
Without looking I&amp;#39;m not at all sure what would be involved in doing #9422.&lt;br&gt;
&lt;br&gt;
While I think that there is merit to wanting groups sorted automatically&lt;br&gt;
(#1577) I think that most people tend to have many many fewer groups than&lt;br&gt;
buddies and that managing their sort order by hand is eminently doable.&lt;br&gt;
There are also fewer possible sorting options for groups that I can&lt;br&gt;
imagine people wanting (other than Manual and Alphabetically I can only&lt;br&gt;
really think of By Account and I think that&amp;#39;s a bit of a stretch) so I&amp;#39;m&lt;br&gt;
not sure adding the sort of sorting system we have for buddies makes&lt;br&gt;
nearly as much sense (not to mention the added confusion of having two&lt;br&gt;
sorting systems active in the buddy list at one time).&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
    -Etan&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26469042&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Carnegie-Mellon-Students-looking-for-help-tp26101569p26469042.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26467913</id>
	<title>Pidgin is in string freeze!</title>
	<published>2009-11-22T10:23:46Z</published>
	<updated>2009-11-22T10:23:46Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">Hi, all,
&lt;br&gt;&lt;br&gt;The im.pidgin.pidgin branch is now officially in string freeze for the upcoming
&lt;br&gt;2.6.4 release. &amp;nbsp;No strings are allowed to change during the freeze.
&lt;br&gt;&lt;br&gt;Translators, please work on your translations! &amp;nbsp;There have been several string
&lt;br&gt;changes and additions since I announced the intent to string freeze, so if you
&lt;br&gt;already updated your translation last weekend, it will need further updating.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26467913&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26467913/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pidgin-is-in-string-freeze%21-tp26467913p26467913.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26459450</id>
	<title>Re: Upcoming string freeze</title>
	<published>2009-11-21T11:16:31Z</published>
	<updated>2009-11-21T11:16:31Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">John Bailey wrote:
&lt;br&gt;&amp;gt; Developers--get your string changes in before next Sunday.
&lt;br&gt;&lt;br&gt;Just a reminder to developers that the &amp;quot;next Sunday&amp;quot; I'm referring to is
&lt;br&gt;tomorrow. &amp;nbsp;I will be announcing the string freeze sometime around 1200-1400 US
&lt;br&gt;EST tomorrow. &amp;nbsp;This means you have 21 or so hours left to get string changes in.
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26459450&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26459450/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Upcoming-string-freeze-tp26354100p26459450.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26456323</id>
	<title>Rajith Ravi gave reference to you</title>
	<published>2009-11-21T04:54:44Z</published>
	<updated>2009-11-21T04:54:44Z</updated>
	<author>
		<name>donotreply-3</name>
	</author>
	<content type="html">Dear user,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Your friend Rajith Ravi (E-mail &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26456323&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;reju.ashes@...&lt;/a&gt;) referred you.
&lt;br&gt;RankSheet.com is a Free Online Exam, Free Certification and Job Portal.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Please follow the link to create your free account to write online exam and get free Certification &lt;a href=&quot;http://RankSheet.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://RankSheet.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Any queries or concerns please reach us by &lt;a href=&quot;http://RankSheet.com/public/ContactUs.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://RankSheet.com/public/ContactUs.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks &amp;amp; Regards,
&lt;br&gt;&lt;br&gt;RankSheet.com Team
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26456323&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Rajith-Ravi-gave-reference-to-you-tp26456323p26456323.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26454643</id>
	<title>Compiling pidgin in CDT/eclipse</title>
	<published>2009-11-21T00:44:45Z</published>
	<updated>2009-11-21T00:44:45Z</updated>
	<author>
		<name>nuwan gunarahtna</name>
	</author>
	<content type="html">Hi,&lt;br&gt;Is there any source that guide how to compile pidgin in cdt/eclipse?&lt;br&gt;&lt;br&gt;thanks &lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26454643&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Compiling-pidgin-in-CDT-eclipse-tp26454643p26454643.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26387667</id>
	<title>What are they doing?</title>
	<published>2009-11-17T02:38:19Z</published>
	<updated>2009-11-17T02:38:19Z</updated>
	<author>
		<name>Ivor-4</name>
	</author>
	<content type="html">Hi! Please look at this short video. What are they doing?
&lt;br&gt;&lt;a href=&quot;http://tube23441.notlong.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tube23441.notlong.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26387667&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/What-are-they-doing--tp26387667p26387667.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26385356</id>
	<title>Re: Preference window reworking</title>
	<published>2009-11-16T23:13:02Z</published>
	<updated>2009-11-16T23:13:02Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">Luke Schierer wrote:
&lt;br&gt;&amp;gt; I don't really care about the other changes listed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Merge away!
&lt;br&gt;&lt;br&gt;Done. &amp;nbsp;A user in the XMPP conference helped track down a crash that I fixed
&lt;br&gt;first, and I also restored part of the font stuff I axed, but only for Windows,
&lt;br&gt;where the preferences actually matter. &amp;nbsp;Other than that, the rest of the changes
&lt;br&gt;stand and have been merged.
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26385356&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26385356/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Preference-window-reworking-tp26374293p26385356.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26384091</id>
	<title>Re: Preference window reworking</title>
	<published>2009-11-16T20:01:33Z</published>
	<updated>2009-11-16T20:01:33Z</updated>
	<author>
		<name>Luke Schierer-5</name>
	</author>
	<content type="html">&lt;br&gt;On Nov 16, 2009, at 10:54 EST, John Bailey wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi, all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As some of you are aware, I have been spending time working on our prefs window.
&lt;br&gt;&amp;gt; We've recently been getting complaints because the window is too tall to fit on
&lt;br&gt;&amp;gt; the short, wide screens common on netbooks. &amp;nbsp;In that vein, I've been looking at
&lt;br&gt;&amp;gt; changes that make our prefs window shorter. &amp;nbsp;This work has been happening on the
&lt;br&gt;&amp;gt; im.pidgin.cpw.rekkanoryo.prefs_window branch. &amp;nbsp;Coincidentally, even with all
&lt;br&gt;&amp;gt; these changes, our prefs window still fits on an 800x600 screen.
&lt;br&gt;&lt;br&gt;Good, we had all sorts of complaints back in the day about not fitting in 800x600.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Among the notable changes:
&lt;br&gt;&amp;gt; &amp;nbsp;* Tabs moved to the left side. &amp;nbsp;This gives us room to add more tabs if needed,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;without going back to the old treeview we had in the 1.x.y days. &amp;nbsp;(If the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;tabs get moved back to the top, the width of the tab row will force the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;pages in the GtkNotebook to be wider than they need to be and add at least
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;27 pixels to the height of the window.)
&lt;br&gt;&amp;gt; &amp;nbsp;* Browser tab is now only suppressed on Windows or OS X.
&lt;br&gt;&amp;gt; &amp;nbsp;* Now have a Proxy tab that is always shown.
&lt;br&gt;&amp;gt; &amp;nbsp;* Browser and Proxy tabs each have their own GNOME-specific messages.
&lt;/div&gt;&lt;br&gt;cool, I never liked fully suppressing these tabs.
&lt;br&gt;&lt;br&gt;I don't really care about the other changes listed.
&lt;br&gt;&lt;br&gt;Merge away!
&lt;br&gt;&lt;br&gt;Luke
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; John
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26384091&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26384091&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Preference-window-reworking-tp26374293p26384091.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26374293</id>
	<title>Preference window reworking</title>
	<published>2009-11-16T07:54:13Z</published>
	<updated>2009-11-16T07:54:13Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">Hi, all,
&lt;br&gt;&lt;br&gt;As some of you are aware, I have been spending time working on our prefs window.
&lt;br&gt;&amp;nbsp;We've recently been getting complaints because the window is too tall to fit on
&lt;br&gt;the short, wide screens common on netbooks. &amp;nbsp;In that vein, I've been looking at
&lt;br&gt;changes that make our prefs window shorter. &amp;nbsp;This work has been happening on the
&lt;br&gt;im.pidgin.cpw.rekkanoryo.prefs_window branch. &amp;nbsp;Coincidentally, even with all
&lt;br&gt;these changes, our prefs window still fits on an 800x600 screen.
&lt;br&gt;&lt;br&gt;Among the notable changes:
&lt;br&gt;&amp;nbsp; * Tabs moved to the left side. &amp;nbsp;This gives us room to add more tabs if needed,
&lt;br&gt;&amp;nbsp; &amp;nbsp; without going back to the old treeview we had in the 1.x.y days. &amp;nbsp;(If the
&lt;br&gt;&amp;nbsp; &amp;nbsp; tabs get moved back to the top, the width of the tab row will force the
&lt;br&gt;&amp;nbsp; &amp;nbsp; pages in the GtkNotebook to be wider than they need to be and add at least
&lt;br&gt;&amp;nbsp; &amp;nbsp; 27 pixels to the height of the window.)
&lt;br&gt;&amp;nbsp; * Browser tab is now only suppressed on Windows or OS X.
&lt;br&gt;&amp;nbsp; * Now have a Proxy tab that is always shown.
&lt;br&gt;&amp;nbsp; * Browser and Proxy tabs each have their own GNOME-specific messages.
&lt;br&gt;&amp;nbsp; * Moved the port range spinbuttons to be in the same hbox as their controlling
&lt;br&gt;&amp;nbsp; &amp;nbsp; checkbox. (Network tab)
&lt;br&gt;&amp;nbsp; * Status/Idle tab and Sounds tab have lost unneeded sections; moved those
&lt;br&gt;&amp;nbsp; &amp;nbsp; prefs into other sections on the same tab.
&lt;br&gt;&amp;nbsp; * Smiley Themes tab has been renamed to Themes, and all theme selectors have
&lt;br&gt;&amp;nbsp; &amp;nbsp; been moved there. &amp;nbsp;Elliott converted the smiley theme selector to be
&lt;br&gt;&amp;nbsp; &amp;nbsp; consistent with the other theme selectors.
&lt;br&gt;&amp;nbsp; * Removed the GNOME document font lookup and the overriding pref for
&lt;br&gt;&amp;nbsp; &amp;nbsp; conversation windows. &amp;nbsp;This font can be controlled from the GTK+ Theme
&lt;br&gt;&amp;nbsp; &amp;nbsp; Control plugin.
&lt;br&gt;&lt;br&gt;As a result of these changes, gtkparasite tells me the prefs window is now
&lt;br&gt;698x492 (WxH), which will fit pretty well on netbook screens and still leave
&lt;br&gt;plenty of extra room on an 800x600 screen.
&lt;br&gt;&lt;br&gt;Thanks to Elliott's work last night, I feel the work is merge-ready, even though
&lt;br&gt;I didn't originally intend it for 2.6.4. &amp;nbsp;If no one objects, I'd like to merge
&lt;br&gt;these changes in for 2.6.4 before string freeze.
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26374293&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26374293/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Preference-window-reworking-tp26374293p26374293.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26372057</id>
	<title>YMSG15 question: no response to 0x83 packets</title>
	<published>2009-11-16T05:39:46Z</published>
	<updated>2009-11-16T05:39:46Z</updated>
	<author>
		<name>Gleb Peregud</name>
	</author>
	<content type="html">Hello.
&lt;br&gt;&lt;br&gt;I'm sorry if it is not an appropriate list to ask this kind of
&lt;br&gt;question. I would be thankful if you point me to the more appropriate
&lt;br&gt;list :)
&lt;br&gt;&lt;br&gt;I've implemented a YIM version 15 client in Erlang lately. I have
&lt;br&gt;noticed a quite weird behaviour of Yahoo! servers.
&lt;br&gt;&lt;br&gt;For some unknown reason after long and heavy usage I'm not getting any
&lt;br&gt;responses to the packets with service equal 0x83 (131), i.e. to
&lt;br&gt;YAHOO_SERVICE_ADDBUDDY requests. It does not respond with anything at
&lt;br&gt;all. It does not even send an error response if given buddy ID does
&lt;br&gt;not exist. Though it gets back to normal after some time by itself.
&lt;br&gt;&lt;br&gt;I would be grateful for any pointers.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Gleb Peregud
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26372057&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/YMSG15-question%3A-no-response-to-0x83-packets-tp26372057p26372057.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26366739</id>
	<title>how to disable all the logged in accounts auto idle-away?</title>
	<published>2009-11-15T20:25:39Z</published>
	<updated>2009-11-15T20:25:39Z</updated>
	<author>
		<name>xin zhuang-5</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
hi, There,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;As I am studying the libpurple from the nullclient, I have this problem of making the accounts &quot;online-forever&quot;.&lt;/div&gt;&lt;div&gt;to make it work,&amp;nbsp;what I have done:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;nbsp;1. set the preference &quot;/purple/away/idle_reporting&quot; as &quot;none&quot; / or anything other than &quot;system&quot; / &quot;purple&quot;.&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;nbsp;2.&amp;nbsp;set the preference &quot;/purple/away/away_when_idle&quot; FALSE.&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;nbsp;3.&amp;nbsp;purple_savedstatus_set_idleaway(FALSE);&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;I have checked the function call libpurple/idle/check_idleness(), seems that if I have set&amp;nbsp;&quot;/purple/away/idle_reporting&quot; to something other than &quot;system&quot; / &quot;purple&quot;, then the r
 eport-idle will be stopped, and by setting &quot;/purple/away/away_when_idle&quot; then the &quot;auto-away&quot; is also disabled, but still I can not stop the accounts from changing to idle after several minutes.&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Did I miss something? Any help will be appreciated.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;----&lt;/div&gt;with regards.&lt;br&gt;&lt;br&gt;&lt;div&gt;Steven Zhuang&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt; 		 	   		  &lt;br /&gt;&lt;hr /&gt;Windows Live: Make it easier for your friends to see  &lt;a href='http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_2:092009' target='_new' rel=&quot;nofollow&quot;&gt;what you’re up to on Facebook.&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26366739&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-disable-all-the-logged-in-accounts-auto-idle-away--tp26366739p26366739.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26363070</id>
	<title>Re: The webkit branch and message style themes</title>
	<published>2009-11-15T12:39:38Z</published>
	<updated>2009-11-15T12:39:38Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">Marcus Lundblad wrote:
&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I haven't really followed the development in that branch. But considering
&lt;br&gt;&amp;gt;&amp;gt; the amount of work that may be necessary to get it releasable, perhaps we
&lt;br&gt;&amp;gt;&amp;gt; can target it for 2.7.0?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; I think this will need a major bump, as it will effectively remove API
&lt;br&gt;&amp;gt; (GtkIMHtml)
&lt;br&gt;&lt;br&gt;Marcus is correct--if we replace GtkImHtml we have to bump to 3.0.0--even if we
&lt;br&gt;don't kill the API, we're changing behavior in such a way that it *will* break a
&lt;br&gt;number of existing plugins. &amp;nbsp;I'm not against doing this, but there's a LOT of
&lt;br&gt;stuff we really do need to do for 3.0.0, ideally including finishing
&lt;br&gt;gobjectification of libpurple, merging in the keyring stuff, etc.
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26363070&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26363070/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/The-webkit-branch-and-message-style-themes-tp26309117p26363070.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26362984</id>
	<title>Re: The webkit branch and message style themes</title>
	<published>2009-11-15T12:29:05Z</published>
	<updated>2009-11-15T12:29:05Z</updated>
	<author>
		<name>Marcus Lundblad</name>
	</author>
	<content type="html">tor 2009-11-12 klockan 12:02 -0500 skrev Sadrul Habib Chowdhury:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; * Marcus Lundblad had this to say on [11 Nov 2009, 22:38:58 +0100]:
&lt;br&gt;&amp;gt; &amp;gt; I had a discussion with Masca (and others) the other day about
&lt;br&gt;&amp;gt; &amp;gt; integrating the Adium message style support (which is currently a plugin
&lt;br&gt;&amp;gt; &amp;gt; in the webkitmessageview branch) into the Pidgin core (probably as a
&lt;br&gt;&amp;gt; &amp;gt; theme loader).
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; How does this sound?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I haven't really followed the development in that branch. But considering
&lt;br&gt;&amp;gt; the amount of work that may be necessary to get it releasable, perhaps we
&lt;br&gt;&amp;gt; can target it for 2.7.0?
&lt;br&gt;&amp;gt; 
&lt;/div&gt;I think this will need a major bump, as it will effectively remove API
&lt;br&gt;(GtkIMHtml)
&lt;br&gt;&lt;br&gt;//Marcus
&lt;br&gt;&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Sadrul
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26362984&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/The-webkit-branch-and-message-style-themes-tp26309117p26362984.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26354505</id>
	<title>Re: The webkit branch and message style themes</title>
	<published>2009-11-14T14:31:58Z</published>
	<updated>2009-11-14T14:31:58Z</updated>
	<author>
		<name>Jorge Villaseñor</name>
	</author>
	<content type="html">On Thu, Nov 12, 2009 at 11:02 AM, Sadrul Habib Chowdhury
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26354505&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;imadil@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; * Marcus Lundblad had this to say on [11 Nov 2009, 22:38:58 +0100]:
&lt;br&gt;&amp;gt;&amp;gt; I had a discussion with Masca (and others) the other day about
&lt;br&gt;&amp;gt;&amp;gt; integrating the Adium message style support (which is currently a plugin
&lt;br&gt;&amp;gt;&amp;gt; in the webkitmessageview branch) into the Pidgin core (probably as a
&lt;br&gt;&amp;gt;&amp;gt; theme loader).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; How does this sound?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&lt;br&gt;I think it must be integrated in core using the theme infrastructure.
&lt;br&gt;(I also think smiley themes must be integrated to the new themes API).
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I haven't really followed the development in that branch. But considering
&lt;br&gt;&amp;gt; the amount of work that may be necessary to get it releasable, perhaps we
&lt;br&gt;&amp;gt; can target it for 2.7.0?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Sadrul
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;IIRC this branch changed some API so it can't be released before
&lt;br&gt;3.0.0. Still I think it worth start working on getting this bit
&lt;br&gt;working.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26354505&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/The-webkit-branch-and-message-style-themes-tp26309117p26354505.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26354100</id>
	<title>Upcoming string freeze</title>
	<published>2009-11-14T13:38:22Z</published>
	<updated>2009-11-14T13:38:22Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">Hi, everyone. &amp;nbsp;Just a warning that I'm planning to announce a string freeze next
&lt;br&gt;weekend.
&lt;br&gt;&lt;br&gt;The freeze will run from Sunday, 2009-11-22 through at least Sunday, 2009-11-29,
&lt;br&gt;with a planned release on the evening of November 29. &amp;nbsp;The release may be
&lt;br&gt;delayed, and in that case the string freeze will be extended until release.
&lt;br&gt;&lt;br&gt;Developers--get your string changes in before next Sunday.
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26354100&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26354100/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Upcoming-string-freeze-tp26354100p26354100.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26330658</id>
	<title>Reset Your LinkedIn Password</title>
	<published>2009-11-12T19:18:54Z</published>
	<updated>2009-11-12T19:18:54Z</updated>
	<author>
		<name>LinkedIn Password</name>
	</author>
	<content type="html">
&lt;html&gt;
  &lt;body&gt;



&lt;table border=&quot;0&quot; width=&quot;550&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;max-width:550px; border-top:4px solid #39C; font: 12px arial, sans-serif; margin: 0 auto;&quot;&gt;&lt;tr&gt;&lt;td&gt;  
  &lt;h1 style=&quot;color: #000; font: bold 23px arial; margin:5px 0;&quot;&gt;LinkedIn&lt;/h1&gt;


&lt;p&gt;Dear Dipankar,&lt;/p&gt;

&lt;p&gt;We have received your request to reset your LinkedIn password. Please &lt;a name=&quot;_resetLink&quot; href=&quot;https://www.linkedin.com/e/pwr/29805650/kq7Exiei/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;use this secure URL&lt;/a&gt; to reset your password within 5 days.&lt;/p&gt;

&lt;p&gt;To reset your password, please enter your new password twice on the page that opens.&lt;/p&gt;

&lt;p&gt;If you cannot access the link above, you can paste the following address into your browser:&lt;br&gt; https://www.linkedin.com/e/pwr/29805650/kq7Exiei/&lt;/p&gt;

&lt;p&gt;Thank you for using LinkedIn!&lt;/p&gt;

&lt;p&gt;- The LinkedIn Team&lt;br&gt;
&lt;a href=&quot;http://www.linkedin.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/&lt;/a&gt;&lt;/p&gt;

&lt;p style=&quot;border-top: 2px solid #ccc; padding-top: 15px; margin-top: 15px; font-size: 10px; color: #999;&quot;&gt;&amp;#169; 2009, LinkedIn Corporation&lt;/p&gt;







&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26330658&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Reset-Your-LinkedIn-Password-tp26330658p26330658.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26322327</id>
	<title>Re: The webkit branch and message style themes</title>
	<published>2009-11-12T09:00:43Z</published>
	<updated>2009-11-12T09:00:43Z</updated>
	<author>
		<name>Sadrul Habib Chowdhury</name>
	</author>
	<content type="html">* Marcus Lundblad had this to say on [11 Nov 2009, 22:38:58 +0100]:
&lt;br&gt;&amp;gt; I had a discussion with Masca (and others) the other day about
&lt;br&gt;&amp;gt; integrating the Adium message style support (which is currently a plugin
&lt;br&gt;&amp;gt; in the webkitmessageview branch) into the Pidgin core (probably as a
&lt;br&gt;&amp;gt; theme loader).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How does this sound?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;I haven't really followed the development in that branch. But considering
&lt;br&gt;the amount of work that may be necessary to get it releasable, perhaps we
&lt;br&gt;can target it for 2.7.0?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Sadrul
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26322327&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/The-webkit-branch-and-message-style-themes-tp26309117p26322327.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26314756</id>
	<title>Matthew Joiner wants to stay in touch on LinkedIn</title>
	<published>2009-11-11T23:51:54Z</published>
	<updated>2009-11-11T23:51:54Z</updated>
	<author>
		<name>Matt Joiner</name>
	</author>
	<content type="html">
&lt;html&gt;
  &lt;body&gt;

  

&lt;table border=&quot;0&quot; width=&quot;550&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;max-width:550px; border-top:4px solid #39C; font: 12px arial, sans-serif; margin: 0 auto;&quot;&gt;&lt;tr&gt;&lt;td&gt;  
  &lt;h1 style=&quot;color: #000; font: bold 23px arial; margin:5px 0;&quot;&gt;LinkedIn&lt;/h1&gt;


&lt;div style=&quot;font:13px arial, sans-serif; width:540px&quot;&gt;  
  &lt;p&gt;
    Pidgin,&lt;br /&gt;
&lt;br /&gt;
I'd like to add you to my professional network on LinkedIn.&lt;br /&gt;
&lt;br /&gt;
- Matthew Joiner
  &lt;/p&gt;
  &lt;p&gt;
        &lt;a href=&quot;https://www.linkedin.com/e/isd/856848640/agwYilMZ/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Confirm that you know Matthew Joiner&lt;/a&gt;
  &lt;/p&gt;
  
  &lt;p&gt;Every day, millions of professionals like &lt;strong&gt;Matthew Joiner&lt;/strong&gt; use LinkedIn to connect with colleagues, find experts, and explore opportunities.&lt;/p&gt;
&lt;/div&gt;






  &lt;p style=&quot;width: 550px; margin: 3px auto; font: 10px arial, sans-serif; color: #999;&quot;&gt;&amp;#169; 2009, LinkedIn Corporation

&lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314756&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Matthew-Joiner-wants-to-stay-in-touch-on-LinkedIn-tp26314756p26314756.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26309117</id>
	<title>The webkit branch and message style themes</title>
	<published>2009-11-11T13:38:58Z</published>
	<updated>2009-11-11T13:38:58Z</updated>
	<author>
		<name>Marcus Lundblad</name>
	</author>
	<content type="html">I had a discussion with Masca (and others) the other day about
&lt;br&gt;integrating the Adium message style support (which is currently a plugin
&lt;br&gt;in the webkitmessageview branch) into the Pidgin core (probably as a
&lt;br&gt;theme loader).
&lt;br&gt;&lt;br&gt;How does this sound?
&lt;br&gt;&lt;br&gt;//Marcus
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26309117&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/The-webkit-branch-and-message-style-themes-tp26309117p26309117.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26277498</id>
	<title>Reset Your LinkedIn Password</title>
	<published>2009-11-09T18:49:52Z</published>
	<updated>2009-11-09T18:49:52Z</updated>
	<author>
		<name>LinkedIn Password</name>
	</author>
	<content type="html">
&lt;html&gt;
  &lt;body&gt;



&lt;table border=&quot;0&quot; width=&quot;550&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;max-width:550px; border-top:4px solid #39C; font: 12px arial, sans-serif; margin: 0 auto;&quot;&gt;&lt;tr&gt;&lt;td&gt;  
  &lt;h1 style=&quot;color: #000; font: bold 23px arial; margin:5px 0;&quot;&gt;LinkedIn&lt;/h1&gt;


&lt;p&gt;Dear Shuying,&lt;/p&gt;

&lt;p&gt;We have received your request to reset your LinkedIn password. Please &lt;a name=&quot;_resetLink&quot; href=&quot;https://www.linkedin.com/e/pwr/29569292/3HiunqIT/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;use this secure URL&lt;/a&gt; to reset your password within 5 days.&lt;/p&gt;

&lt;p&gt;To reset your password, please enter your new password twice on the page that opens.&lt;/p&gt;

&lt;p&gt;If you cannot access the link above, you can paste the following address into your browser:&lt;br&gt; https://www.linkedin.com/e/pwr/29569292/3HiunqIT/&lt;/p&gt;

&lt;p&gt;Thank you for using LinkedIn!&lt;/p&gt;

&lt;p&gt;- The LinkedIn Team&lt;br&gt;
&lt;a href=&quot;http://www.linkedin.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/&lt;/a&gt;&lt;/p&gt;

&lt;p style=&quot;border-top: 2px solid #ccc; padding-top: 15px; margin-top: 15px; font-size: 10px; color: #999;&quot;&gt;&amp;#169; 2009, LinkedIn Corporation&lt;/p&gt;







&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26277498&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Reset-Your-LinkedIn-Password-tp26277498p26277498.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26277024</id>
	<title>LinkedIn Messages, 11/09/2009</title>
	<published>2009-11-09T17:48:32Z</published>
	<updated>2009-11-09T17:48:32Z</updated>
	<author>
		<name>LinkedIn Communication</name>
	</author>
	<content type="html">
&lt;html&gt;
  &lt;body&gt;



&lt;table border=&quot;0&quot; width=&quot;550&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;max-width:550px; border-top:4px solid #39C; font: 12px arial, sans-serif; margin: 0 auto;&quot;&gt;&lt;tr&gt;&lt;td&gt;  
  &lt;h1 style=&quot;color: #000; font: bold 23px arial; margin:5px 0;&quot;&gt;LinkedIn&lt;/h1&gt;



    
&lt;h2 style=&quot;margin:0; padding:0; font:17px arial; color:#069;&quot;&gt;REMINDERS&lt;/h2&gt;
    &lt;p style=&quot;margin: 5px 0;font-size:12px&quot;&gt;&lt;strong&gt;Invitation reminders:&lt;/strong&gt;&lt;/p&gt;
  
                &lt;span style=&quot;color:#999999;&quot;&gt;&amp;#8226;&lt;/span&gt;&amp;nbsp;
                &lt;a href=&quot;http://www.linkedin.com/e/vOJotRfLU6S5QrwLMLSwgAJnFX/blk/I1537278064_2/39vd3oMe3sOdPcRckALqnpPbOYWrSlI/EML-bt1-rem-frm_svi/&quot; style=&quot;color:#0066CC;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt; From &lt;strong&gt;Sulabh Mahajan&lt;/strong&gt; &lt;/a&gt;
        &lt;br&gt;


&lt;br&gt;

&lt;div style=&quot;border-bottom: 3px solid #ddd; line-height:3px&quot;&gt;&amp;nbsp;&lt;/div&gt;

&lt;br&gt;

    &lt;h2 style=&quot;margin:0; padding:0; font:17px arial; color:#069;&quot;&gt;PENDING MESSAGES&lt;/h2&gt;
    &lt;p style=&quot;margin:0 0 15px 0;&quot;&gt;
      &lt;span style=&quot;color:#999999;&quot;&gt;&amp;#8226;&lt;/span&gt; There are a total of 15 messages awaiting your response. &lt;a href=&quot;http://www.linkedin.com/e/vOJotRfLU6S5QrwLMLSwgAJnFX/inb/&quot; style=&quot;color:#0066CC;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;strong&gt;Visit your InBox now.&lt;/strong&gt;&lt;/a&gt;
    &lt;/p&gt;
    &lt;div style=&quot;border-top: 3px solid #ddd; line-height:3px&quot;&gt;&amp;nbsp;&lt;/div&gt;
  
  &lt;p style=&quot;margin: 10px 0;&quot;&gt;Don't want to receive email notifications? &lt;a href=&quot;https://www.linkedin.com/e/vOJotRfLU6S5QrwLMLSwgAJnFX/prv/&quot; style=&quot;color:#0066CC;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Adjust your message settings.&lt;/a&gt;&lt;/p&gt;
  &lt;p style=&quot;color:#999999; font-size:11px;&quot;&gt;LinkedIn values your privacy. At no time has LinkedIn made your email address available to any other LinkedIn user without your permission. &amp;#169; 2009, LinkedIn Corporation.&lt;/p&gt;  
  





&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26277024&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/LinkedIn-Messages%2C-11-09-2009-tp26277024p26277024.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26271792</id>
	<title>Re: pidgin: 661db628: http://dev.aol.com/aim/oscar/ says, &quot;A</title>
	<published>2009-11-09T10:58:29Z</published>
	<updated>2009-11-09T10:58:29Z</updated>
	<author>
		<name>Zachary West</name>
	</author>
	<content type="html">&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 5, 2009 at 03:21, Mark Doliner &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26271792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;&quot;&gt;

&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;On Wed, Nov 4, 2009 at 11:25 PM, Richard Laager &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26271792&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlaager@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; On Wed, 2009-11-04 at 17:21 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26271792&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;markdoliner@...&lt;/a&gt; wrote:&lt;br&gt;
&amp;gt;&amp;gt; &lt;a href=&quot;http://dev.aol.com/aim/oscar/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dev.aol.com/aim/oscar/&lt;/a&gt; says, &amp;quot;All strings in Feedbag are UTF8&lt;br&gt;
&amp;gt;&amp;gt; encoded.&amp;quot;  So stop trying to validate stuff as utf8 then salvage when&lt;br&gt;
&amp;gt;&amp;gt; it isn&amp;#39;t and just display broken crap or crash.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; This seems like a bad idea. If we can really crash on invalid data, this&lt;br&gt;
&amp;gt; is going to be our next security issue.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;Yeah, maybe.  It would only be invalid date in your own roster, which&lt;br&gt;
wouldn&amp;#39;t be considered a security issue because it isn&amp;#39;t remotely&lt;br&gt;
exploitable (although it would be a nuisance to any person who is&lt;br&gt;
affected).  I wondered if there is some possibility of non-utf8 in an&lt;br&gt;
ICQ friend request, but these changes don&amp;#39;t affect that.&lt;br&gt;
&lt;br&gt;
-Mark&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;The latest Adium beta is running with these changes, and we&amp;#39;re seeing a fair amount of bug reports for crashing due to the change. Perhaps a little further reaching amount of invalid data than expected?&lt;br&gt;

&lt;br&gt;Unless the crash we&amp;#39;re seeing is different (but I don&amp;#39;t think it is, seems like this change). Here&amp;#39;s an example backtrace:&lt;font size=&quot;2&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;pre class=&quot;paste-area&quot;&gt;&lt;font size=&quot;2&quot;&gt;Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib             	0x91161990 strlen + 16
1   ...s.openspecies.rtool.libglib	0x005ec10d g_utf8_collate_key + 416
2   libpurple                     	0x0071d015 purple_find_group + 102
3   libpurple                     	0x0085f046 purple_ssi_parselist + 1818
4   libpurple                     	0x0083dbba parsedata + 574
5   libpurple                     	0x0083f38c snachandler + 132
6   libpurple                     	0x0084dbac parse_snac + 239
7   libpurple                     	0x0084de20 parse_flap + 153
8   libpurple                     	0x0084e18b flap_connection_recv + 832
9   libpurple                     	0x0084e1fc flap_connection_recv_cb_ssl + 23
10  libpurple                     	0x0076c003 recv_cb + 43
&lt;/font&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;-- &lt;br&gt;Zachary West&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26271792&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-pidgin%3A-661db628%3A-http%3A--dev.aol.com-aim-oscar--says%2C-%22A-tp26210233p26271792.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26258924</id>
	<title>How print money at home and make them looks real</title>
	<published>2009-11-08T14:53:57Z</published>
	<updated>2009-11-08T14:53:57Z</updated>
	<author>
		<name>AdminUser-4</name>
	</author>
	<content type="html">Damn, i print it and use 20$ bill in gas station)), be careful ))
&lt;br&gt;&lt;a href=&quot;http://fineurl.com/moneyprint&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://fineurl.com/moneyprint&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26258924&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-print-money-at-home-and-make-them-looks-real-tp26258924p26258924.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26241744</id>
	<title>Re: New IM Freedom Board Members!</title>
	<published>2009-11-06T19:04:20Z</published>
	<updated>2009-11-06T19:04:20Z</updated>
	<author>
		<name>John Bailey-2</name>
	</author>
	<content type="html">Mark Doliner wrote:
&lt;br&gt;&amp;gt; Hi! &amp;nbsp;The IM Freedom foundation will be holding a board meeting
&lt;br&gt;&amp;gt; sometime in the next month and we're looking for new blood to be on
&lt;br&gt;&amp;gt; the board. &amp;nbsp;There's some info about IMF at &lt;a href=&quot;http://imfreedom.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://imfreedom.org/&lt;/a&gt;. &amp;nbsp;One
&lt;br&gt;&amp;gt; popular question is &amp;quot;What do you do?!&amp;quot; &amp;nbsp;To which the answer is mostly
&lt;br&gt;&amp;gt; &amp;quot;not much.&amp;quot; &amp;nbsp;But you can help change that! &amp;nbsp;If you're a regular Pidgin
&lt;br&gt;&amp;gt; contributor and are interested in this, please join the IMF Discussion
&lt;br&gt;&amp;gt; mailing list[1] and send an email saying you're interested. &amp;nbsp;Or ask
&lt;br&gt;&amp;gt; questions on IRC or our Jabber chatroom. &amp;nbsp;Or ask me.
&lt;br&gt;&lt;br&gt;I have already indicated to Ethan (and to the entire floor of
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26241744&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;devel@...&lt;/a&gt;) on several occasions that I am willing to fill a
&lt;br&gt;slot on the board. &amp;nbsp;I cannot fill an officer's position, though.
&lt;br&gt;&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26241744&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (853 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26241744/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-IM-Freedom-Board-Members%21-tp26210788p26241744.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210788</id>
	<title>New IM Freedom Board Members!</title>
	<published>2009-11-05T00:24:57Z</published>
	<updated>2009-11-05T00:24:57Z</updated>
	<author>
		<name>Mark Doliner</name>
	</author>
	<content type="html">Hi! &amp;nbsp;The IM Freedom foundation will be holding a board meeting
&lt;br&gt;sometime in the next month and we're looking for new blood to be on
&lt;br&gt;the board. &amp;nbsp;There's some info about IMF at &lt;a href=&quot;http://imfreedom.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://imfreedom.org/&lt;/a&gt;. &amp;nbsp;One
&lt;br&gt;popular question is &amp;quot;What do you do?!&amp;quot; &amp;nbsp;To which the answer is mostly
&lt;br&gt;&amp;quot;not much.&amp;quot; &amp;nbsp;But you can help change that! &amp;nbsp;If you're a regular Pidgin
&lt;br&gt;contributor and are interested in this, please join the IMF Discussion
&lt;br&gt;mailing list[1] and send an email saying you're interested. &amp;nbsp;Or ask
&lt;br&gt;questions on IRC or our Jabber chatroom. &amp;nbsp;Or ask me.
&lt;br&gt;&lt;br&gt;-Mark
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://imfreedom.org/cgi-bin/mailman/listinfo/discussion&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://imfreedom.org/cgi-bin/mailman/listinfo/discussion&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210788&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-IM-Freedom-Board-Members%21-tp26210788p26210788.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210755</id>
	<title>Re: pidgin: 661db628: http://dev.aol.com/aim/oscar/ says, &quot;A</title>
	<published>2009-11-05T00:21:15Z</published>
	<updated>2009-11-05T00:21:15Z</updated>
	<author>
		<name>Mark Doliner</name>
	</author>
	<content type="html">On Wed, Nov 4, 2009 at 11:25 PM, Richard Laager &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210755&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlaager@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; On Wed, 2009-11-04 at 17:21 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210755&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;markdoliner@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://dev.aol.com/aim/oscar/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.aol.com/aim/oscar/&lt;/a&gt;&amp;nbsp;says, &amp;quot;All strings in Feedbag are UTF8
&lt;br&gt;&amp;gt;&amp;gt; encoded.&amp;quot;  So stop trying to validate stuff as utf8 then salvage when
&lt;br&gt;&amp;gt;&amp;gt; it isn't and just display broken crap or crash.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This seems like a bad idea. If we can really crash on invalid data, this
&lt;br&gt;&amp;gt; is going to be our next security issue.
&lt;br&gt;&lt;br&gt;Yeah, maybe. &amp;nbsp;It would only be invalid date in your own roster, which
&lt;br&gt;wouldn't be considered a security issue because it isn't remotely
&lt;br&gt;exploitable (although it would be a nuisance to any person who is
&lt;br&gt;affected). &amp;nbsp;I wondered if there is some possibility of non-utf8 in an
&lt;br&gt;ICQ friend request, but these changes don't affect that.
&lt;br&gt;&lt;br&gt;-Mark
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210755&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-pidgin%3A-661db628%3A-http%3A--dev.aol.com-aim-oscar--says%2C-%22A-tp26210233p26210755.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210233</id>
	<title>Re: pidgin: 661db628: http://dev.aol.com/aim/oscar/ says, &quot;A</title>
	<published>2009-11-04T23:25:12Z</published>
	<updated>2009-11-04T23:25:12Z</updated>
	<author>
		<name>Richard Laager</name>
	</author>
	<content type="html">On Wed, 2009-11-04 at 17:21 -0500, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210233&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;markdoliner@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://dev.aol.com/aim/oscar/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.aol.com/aim/oscar/&lt;/a&gt;&amp;nbsp;says, &amp;quot;All strings in Feedbag are UTF8
&lt;br&gt;&amp;gt; encoded.&amp;quot; &amp;nbsp;So stop trying to validate stuff as utf8 then salvage when
&lt;br&gt;&amp;gt; it isn't and just display broken crap or crash.
&lt;br&gt;&lt;br&gt;This seems like a bad idea. If we can really crash on invalid data, this
&lt;br&gt;is going to be our next security issue.
&lt;br&gt;&lt;br&gt;Richard
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26210233&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://pidgin.im/cgi-bin/mailman/listinfo/devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pidgin.im/cgi-bin/mailman/listinfo/devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26210233/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-pidgin%3A-661db628%3A-http%3A--dev.aol.com-aim-oscar--says%2C-%22A-tp26210233p26210233.html" />
</entry>

</feed>
