OOps... Sorry !! I forgot we said that ! :d IMO it's safe but... as you and other like : especially J because it seems there are some troubles on Mac... Phil
Le Tuesday 04 July 2006 05:56, Youness Alaoui a écrit : > Hi Phil, > Thanks for fixing this. > But didn't we say this should be removed from the branch ? I don't > consider this as being a 'safe' enough fix to be in the 'release/bugfix' > branch. Remember, we created the branch to keep amsn's code as stable as > possible, when we decided to move some procs from protocol.tcl to a > separate tcl file... > What do you think ? > > p.s: amsn-devel in CC > > KKRT > > On Mon, Jul 03, 2006 at 03:46:57PM -0700, [EMAIL PROTECTED] wrote: > > Revision: 7006 > > Author: lephilousophe > > Date: 2006-07-03 15:46:50 -0700 (Mon, 03 Jul 2006) > > ViewCVS: http://svn.sourceforge.net/amsn/?rev=7006&view=rev > > > > Log Message: > > ----------- > > Apply ro modifications to branch too > > > > Modified Paths: > > -------------- > > branches/0_96/amsn/chatwindow.tcl > > branches/0_96/amsn/gui.tcl > > branches/0_96/amsn/plugins/remind/remind.tcl > > Modified: branches/0_96/amsn/chatwindow.tcl > > =================================================================== > > --- branches/0_96/amsn/chatwindow.tcl 2006-07-03 22:37:11 UTC (rev > > 7005) > > +++ branches/0_96/amsn/chatwindow.tcl 2006-07-03 22:46:50 UTC (rev > > 7006) > > @@ -60,10 +60,10 @@ > > method insert {args} {} > > method delete {args} {} > > > > - # Enable ins and del as synonyms, so the program can insert and > > + # Enable roinsert and rodelete as synonyms, so the program can > > insert > > and # delete. > > - delegate method ins to hull as insert > > - delegate method del to hull as delete > > + delegate method roinsert to hull as insert > > + delegate method rodelete to hull as delete > > > > # Pass all other methods and options to the real text widget, so > > # that the remaining behavior is as expected. > > @@ -175,7 +175,7 @@ > > # - window => Is the chat window widget (.msg_n - Where n is an > > integer) proc Clear { window } { > > set window [::ChatWindow::getCurrentTab $window] > > - [::ChatWindow::GetOutText $window] del 0.0 end > > + [::ChatWindow::GetOutText $window] rodelete 0.0 end > > } > > > > #/////////////////////////////////////////////////////////////////////// > >//////// > > > > > > Modified: branches/0_96/amsn/gui.tcl > > =================================================================== > > --- branches/0_96/amsn/gui.tcl 2006-07-03 22:37:11 UTC (rev 7005) > > +++ branches/0_96/amsn/gui.tcl 2006-07-03 22:46:50 UTC (rev 7006) > > @@ -2822,7 +2822,7 @@ > > set evPar(msg) txt > > > > ::plugins::PostEvent WinWrite evPar > > > > - [::ChatWindow::GetOutText ${win_name}] ins end "$txt" $tagid > > + [::ChatWindow::GetOutText ${win_name}] roinsert end "$txt" > > $tagid > > > > #TODO: Make an url_subst procedure, and improve this using > > regular > > expressions variable urlcount > > @@ -2864,8 +2864,8 @@ > > [::ChatWindow::GetOutText ${win_name}] tag bind > > $urlname > > <Button1-ButtonRelease> \ "[::ChatWindow::GetOutText ${win_name}] conf > > -cursor watch; launch_browser [string map {% %%} [list $urltext]]" > > > > - [::ChatWindow::GetOutText ${win_name}] del $pos > > $endpos > > - [::ChatWindow::GetOutText ${win_name}] ins $pos > > "$urltext" $urlname > > + [::ChatWindow::GetOutText ${win_name}] rodelete > > $pos $endpos > > + [::ChatWindow::GetOutText ${win_name}] roinsert > > $pos "$urltext" > > $urlname #Don't replace smileys in URLs > > [::ChatWindow::GetOutText ${win_name}] tag add > > dont_replace_smileys > > ${urlname}.first ${urlname}.last > > > > @@ -2960,9 +2960,8 @@ > > "[::ChatWindow::GetOutText ${win_name}] tag conf $tagid > > -underline > > false;\ [::ChatWindow::GetOutText ${win_name}] conf -cursor xterm" > > [::ChatWindow::GetOutText ${win_name}] tag bind $tagid > > <Button1-ButtonRelease> "$command" + > > [::ChatWindow::GetOutText > > ${win_name}] roinsert end "$txt" $tagid > > > > - [::ChatWindow::GetOutText ${win_name}] ins end "$txt" $tagid > > - > > if { $scrolling } { ::ChatWindow::Scroll > > [::ChatWindow::GetOutText > > ${win_name}] } > > > > } > > > > Modified: branches/0_96/amsn/plugins/remind/remind.tcl > > =================================================================== > > --- branches/0_96/amsn/plugins/remind/remind.tcl 2006-07-03 22:37:11 UTC > > (rev 7005) +++ branches/0_96/amsn/plugins/remind/remind.tcl 2006-07-03 > > 22:46:50 UTC (rev 7006) @@ -357,7 +357,7 @@ > > if { $version == "0.94" } { > > ${win_name}.f.out.text insert end "$txt" $tagid > > } else { > > - [::ChatWindow::GetOutText ${win_name}] ins end "$txt" $tagid > > + [::ChatWindow::GetOutText ${win_name}] roinsert end "$txt" > > $tagid > > } > > > > if {[::config::getKey chatsmileys]} { > > > > > > This was sent by the SourceForge.net collaborative development platform, > > the world's largest Open Source development site. > > > > > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job > > easier Download IBM WebSphere Application Server v.1.0.1 based on Apache > > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Amsn-commits mailing list > > [EMAIL PROTECTED] > > https://lists.sourceforge.net/lists/listinfo/amsn-commits > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Amsn-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/amsn-devel Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Amsn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/amsn-devel
