Le Sunday 23 July 2006 08:07, Jérôme Gagnon-Voyer a écrit :
> yo
Hi
>
> Your message about RC2 is copy-pasted here, just after my message
>
> I'll take a look at the Bug tracker with the Revision number...good
> to know, I tought it didn't work at all. But stil the bug tracker
> should be updated, where is Karol?
>
> Phil will take care of my HTTP bug, I will send him PROTOCOL/DEBUG
> monday.
I hope I will find the cause
>
> I want you or Phil to take care of problems with autopackage.
Hum, it won't be easy to do in a so short time : I thought autopackage for 
0.97...
>
> I'll take care of looking /fixing/assign bugs from the bug tracker.
>
> I want Harry to merge things from branch to 0.96, things Youness said
> that were stable enough in his last message. (BTW the GUI thing is
> stable enough)
>
> Phil: You sent me a patch via aMSN earlier today about the history
> log problem on Mac but I was out so I didn't accept it, send it here.
Yep
I uses the rotext that David Luyer added (by the way he took that from the 
snit documentation)
>
> Billiob: I want you to read the thread "Sorry to disturb you" and
> look at things to see if I forgot something and volunteer to fix
> something, if you don't find something, just go to the bug tracker
> and start looking.
>
> (BTW, I assign tasks like that, not to be rude, but to get things done)
Don't worry ;)

By the way look at my other mail for other status...
Phil
Index: loging.tcl
===================================================================
--- loging.tcl	(révision 7058)
+++ loging.tcl	(copie de travail)
@@ -449,7 +449,7 @@
 		frame $wname.buttons -class Amsn
 
 
-		text $wname.blueframe.log.txt -yscrollcommand "$wname.blueframe.log.ys set" -font splainf \
+		::ChatWindow::rotext $wname.blueframe.log.txt -yscrollcommand "$wname.blueframe.log.ys set" -font splainf \
 		    -background white -relief flat -highlightthickness 0 -height 1 -exportselection 1 -selectborderwidth 1 \
 		    -wrap word
 		scrollbar $wname.blueframe.log.ys -command "$wname.blueframe.log.txt yview" -highlightthickness 0 \
@@ -522,7 +522,6 @@
 		pack $wname.buttons -side bottom -fill x -pady 3
 		bind $wname <<Escape>> "destroy $wname"
 		bind ${wname}.blueframe.log.txt <<Button3>> "tk_popup ${wname}.copypaste %X %Y"
-		bind ${wname} <Control-c> "tk_textCopy ${wname}.blueframe.log.txt"
 		moveinscreen $wname 30
 	}
 
@@ -1011,8 +1010,7 @@
 
 		::log::Fileexist $email $date
 
-		$w.blueframe.log.txt configure -state normal
-		$w.blueframe.log.txt delete 0.0 end
+		$w.blueframe.log.txt rodelete 0.0 end
 
 		::log::ResetSave $w $email
 
@@ -1095,8 +1093,7 @@
 
 		::log::Fileexist $email "."
 
-		$w.blueframe.log.txt configure -state normal
-		$w.blueframe.log.txt delete 0.0 end
+		$w.blueframe.log.txt rodelete 0.0 end
 		if { [file exists [file join ${log_dir} ${email}.log]] } {
 			set size "[::amsn::sizeconvert [file size "[file join ${log_dir} ${email}.log]"]]o"
 			wm title $w "[trans history] (${email} - $size)"
@@ -1227,10 +1224,9 @@
 		}
 
 		if {[llength $result] > 0} {
-			eval [list ${wname}.blueframe.log.txt insert end] $result
+			eval [list ${wname}.blueframe.log.txt roinsert end] $result
 		}
 		${wname}.blueframe.log.txt yview moveto 1.0
-		${wname}.blueframe.log.txt configure -state disabled
 	}
 
 	#///////////////////////////////////////////////////////////////////////////////
@@ -1250,16 +1246,16 @@
 
 		switch $color {
 			RED {
-				${wname}.blueframe.log.txt insert end "$string" red
+				${wname}.blueframe.log.txt roinsert end "$string" red
 			}
 			GRA {
-				${wname}.blueframe.log.txt insert end "$string" gray
+				${wname}.blueframe.log.txt roinsert end "$string" gray
 			}
 			NOR {
-				${wname}.blueframe.log.txt insert end "$string" normal
+				${wname}.blueframe.log.txt roinsert end "$string" normal
 			}
 			ITA {
-				${wname}.blueframe.log.txt insert end "$string" italic
+				${wname}.blueframe.log.txt roinsert end "$string" italic
 			}
 		}
 
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Amsn-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amsn-devel

Reply via email to