Ok, I will login again when I arrive at home. I'll send you a Jabber msg when I do it, to coordinate :D
Cheers, Fran. 2005/6/3, Norman Rasmussen <[EMAIL PROTECTED]>: > Yup, indeed. > > I was waiting for you to try and login again, so I could see the Phone > Type, but I'm guessing that the HaSBlog was the issue. I've updated > my version from CVS, but it will probably still break. It would be > useful if you could try login once more, so that I can confirm that > it's HSB that's breaking it. > > On 02/06/05, Francisco Joaqu?n Rodr?guez Prados <[EMAIL PROTECTED]> wrote: > > Huh, sounds like someone found out why I was not able to login :D > > > > 2005/6/2, Norman Rasmussen <[EMAIL PROTECTED]>: > > > new bug :-) > > > > > > NotificationClient: "[EMAIL PROTECTED]" lost connection with MSN servers > > > MSNConnection: "[EMAIL PROTECTED]" destroyed > > > MSNConnection: "[EMAIL PROTECTED]" initialised > > > LegacyConnection: "[EMAIL PROTECTED]" - loggedIn() > > > NotificationClient: "[EMAIL PROTECTED]" authenticated with MSN servers > > > Traceback (most recent call last): > > > > -- > > Francisco Joaqu?n Rodr?guez Prados > > Fachbereich Informatik, > > Fachhochschule Darmstadt, > > Darmstadt, Germany > > _______________________________________________ > > py-transports mailing list > > [email protected] > > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > > > > -- > - Norman Rasmussen > - Email: [EMAIL PROTECTED] > - Home page: http://norman.rasmussen.co.za/ > -- Francisco Joaqu?n Rodr?guez Prados Fachbereich Informatik, Fachhochschule Darmstadt, Darmstadt, Germany From [EMAIL PROTECTED] Fri Jun 3 13:58:41 2005 From: [EMAIL PROTECTED] (Lars T. Mikkelsen) Date: Fri Jun 3 13:58:49 2005 Subject: [py-transports] MSN avatar read support In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> On Fri, Jun 03, 2005 at 11:45:06PM +1000, James Bunton wrote: > After lots and lots of work, you can finally see MSN avatars, in the > avatars branch :) Really nice work! :-) > The other important thing, which I wanted to ask people about, is how > often I should fetch avatars from MSN contacts. The first time you talk > to them? Every time one of them appears online? > > The current behaviour is to grab the avatar off a MSN user every time > it changes, provided we don't already have a copy of it. I think the current behaviour is nice. :-) > Please check it out, let me know what works, what doesn't, and what > breaks. I've tested with Apple iChat and Pandion - iChat works, Pandion needs the attached patch (the avatar hash should be inside a photo-element). Best regards, Lars -------------- next part -------------- Index: jabw.py =================================================================== RCS file: /home/cvs/msn-transport/PyMSNt/src/jabw.py,v retrieving revision 1.19.2.7 diff -u -r1.19.2.7 jabw.py --- jabw.py 3 Jun 2005 12:32:29 -0000 1.19.2.7 +++ jabw.py 3 Jun 2005 13:07:57 -0000 @@ -58,7 +58,8 @@ if(avatarhash): s = el.addElement("x") s.attributes["xmlns"] = "vcard-temp:x:update" - s.addContent(avatarhash) + photo = s.addElement("photo") + photo.addContent(avatarhash) pytrans.send(el) From [EMAIL PROTECTED] Fri Jun 3 14:22:30 2005 From: [EMAIL PROTECTED] (James Bunton) Date: Fri Jun 3 14:22:36 2005 Subject: [py-transports] MSN avatar read support In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> On 03/06/2005, at 11:58 PM, Lars T. Mikkelsen wrote: > On Fri, Jun 03, 2005 at 11:45:06PM +1000, James Bunton wrote: >> After lots and lots of work, you can finally see MSN avatars, in the >> avatars branch :) > > Really nice work! :-) > >> The other important thing, which I wanted to ask people about, is how >> often I should fetch avatars from MSN contacts. The first time you >> talk >> to them? Every time one of them appears online? >> >> The current behaviour is to grab the avatar off a MSN user every time >> it changes, provided we don't already have a copy of it. > > I think the current behaviour is nice. :-) > >> Please check it out, let me know what works, what doesn't, and what >> breaks. > > I've tested with Apple iChat and Pandion - iChat works, Pandion needs > the attached patch (the avatar hash should be inside a photo-element). Putting it inside a separate photo element doesn't break iChat? --- James
