I guessed that, it was a joke, no need to explain anything to me :p On Thu, Sep 13, 2007 at 04:13:07PM +0200, Lord Zak wrote: > I left MSN since a few weeks... I'm using Jabber... > > On 9/13/07, Youness Alaoui <[EMAIL PROTECTED]> wrote: > > > > WHAT??? you uninstalled amsn??? :@ > > :p > > > > On Thu, Sep 13, 2007 at 01:24:24PM +0200, Lord Zak wrote: > > > do you want me to reinstall amsn and test it for a moment to check if > > there > > > is some bugs ? :) > > > > > > On 9/13/07, Philippe Valembois - Phil < > > [EMAIL PROTECTED]> > > > wrote: > > > > > > > > Hi, > > > > I know that cHoBi on IRC gave me once some dark skin patch... I know > > > > that I fixed some but there are TewtWidget colors which are bad... I > > > > don't really know if we should do this now... > > > > And what about the splitting bar ? Is it fixed or not ? > > > > I saw a bug in multi-contact conversation with DPs which aren't well > > > > displayed... I don't really know how to fix that as this part of code > > is > > > > kind of trick :p > > > > Phil > > > > > > > > Vivia Nikolaidou a écrit : > > > > > YAY! Congrats!!!!!!!!! :)))))))))) > > > > > > > > > > Now, I think we had a couple of minor bugs and diffs on the forum - > > for > > > > > example, the diff for dark themes is ready, we can apply it as-is ? > > > > > > > > > > And then.... yeah... RELEASE!!!!!!!!! (I think) > > > > > > > > > > hmmm... wasn't I supposed to re-enable the spaces stars in newCL?... > > :$ > > > > > Alright, wait for me there :) > > > > > > > > > > On Thu, 13 Sep 2007, Youness Alaoui wrote: > > > > > > > > > >> FINALLY, the bug with the HTTP gateway is fixed! Read the cause and > > > > solution at http://www.amsn-project.net/forums/viewtopic.php?p=23472 > > > > >> Look at the diff below, it was SO simple to fix in the end!!! > > > > >> Now what's the next step? release 0.97 now ? what do you guys think > > ? > > > > >> > > > > >> wouhouuuuuu!!! :D > > > > >> > > > > >> KaKaRoTo > > > > >> > > > > >> ----- Forwarded message from [EMAIL PROTECTED] ----- > > > > >> > > > > >> From: [EMAIL PROTECTED] > > > > >> To: [EMAIL PROTECTED] > > > > >> Subject: [Amsn-commits] SF.net SVN: amsn: [9005] trunk/amsn > > > > >> > > > > >> Revision: 9005 > > > > >> http://amsn.svn.sourceforge.net/amsn/?rev=9005&view=rev > > > > >> Author: kakaroto > > > > >> Date: 2007-09-13 00:17:48 -0700 (Thu, 13 Sep 2007) > > > > >> > > > > >> Log Message: > > > > >> ----------- > > > > >> HTTP Proxy bug finally fixed. Was VERY easy, all we needed was the > > > > correct information. The solution I found was completely wrong and so > > > > undoable.. > > > > >> A huge thanks goes to pidgin guys who pinpointed the correct > > solution > > > > and to hilbert70 from the forums for relaying to us what they found. > > For > > > > more info read here : > > > > http://www.amsn-project.net/forums/viewtopic.php?p=23470#23470 > > > > >> > > > > >> Modified Paths: > > > > >> -------------- > > > > >> trunk/amsn/protocol.tcl > > > > >> trunk/amsn/proxy.tcl > > > > >> > > > > >> Modified: trunk/amsn/protocol.tcl > > > > >> =================================================================== > > > > >> --- trunk/amsn/protocol.tcl 2007-09-11 10:04:06 UTC (rev 9004) > > > > >> +++ trunk/amsn/protocol.tcl 2007-09-13 07:17:48 UTC (rev 9005) > > > > >> @@ -3421,6 +3421,7 @@ > > > > >> option -proxy "" > > > > >> option -time "" > > > > >> option -error_msg "" > > > > >> + option -force_gateway_server "" > > > > >> option -proxy_host > > > > >> option -proxy_port > > > > >> option -proxy_authenticate > > > > >> @@ -4425,6 +4426,7 @@ > > > > >> > > > > >> status_log "cmsn_open_sb: Opening SB $sb\n" green > > > > >> > > > > >> + $sb configure -force_gateway_server [lindex [split [lindex > > $recv > > > > 3] ":"]] > > > > >> $sb configure -server [split [lindex $recv 3] ":"] > > > > >> $sb configure -connected [list cmsn_conn_sb $sb] > > > > >> $sb configure -auth_cmd "USR" > > > > >> > > > > >> Modified: trunk/amsn/proxy.tcl > > > > >> =================================================================== > > > > >> --- trunk/amsn/proxy.tcl 2007-09-11 10:04:06 UTC (rev 9004) > > > > >> +++ trunk/amsn/proxy.tcl 2007-09-13 07:17:48 UTC (rev 9005) > > > > >> @@ -754,7 +754,11 @@ > > > > >> > > > > >> #On direct http connection, use gateway directly as > > proxy > > > > >> if { [$sb cget -proxy_host] == ""} { > > > > >> - set proxy_host "gateway.messenger.hotmail.com" > > > > >> + set proxy_host [$sb cget > > -force_gateway_server] > > > > >> + if {$proxy_host == "" } { > > > > >> + set proxy_host " > > > > gateway.messenger.hotmail.com" > > > > >> + } > > > > >> + > > > > >> set proxy_port 80 > > > > >> } else { > > > > >> set proxy_host [$sb cget -proxy_host] > > > > >> > > > > >> > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.net email is sponsored by: Microsoft > > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > > _______________________________________________ > > > > Amsn-devel mailing list > > > > Amsn-devel@lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/amsn-devel > > > > > > > > > > > > > > > > -- > > > Ubitux > > > [www.ubitux.com] > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > Amsn-devel mailing list > > > Amsn-devel@lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/amsn-devel > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Amsn-devel mailing list > > Amsn-devel@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/amsn-devel > > > > > > -- > Ubitux > [www.ubitux.com]
> ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Amsn-devel mailing list > Amsn-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/amsn-devel ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Amsn-devel mailing list Amsn-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/amsn-devel