Re: [Pharo-users] Spec > TreeModel: Updating the tree selection after a deletion

2016-08-11 Thread Nicolai Hess
2016-08-10 21:03 GMT+02:00 Nicolai Hess : > > > 2016-08-10 20:42 GMT+02:00 Nicolai Hess : > >> >> >> 2016-08-10 19:12 GMT+02:00 Nicolai Hess : >> >>> >>> >>> 2016-08-10 19:05 GMT+02:00 Offray Vladimir Luna Cárdenas < >>>

Re: [Pharo-users] RewriteTool matching parts of an array

2016-08-11 Thread Peter Uhnák
Nvm, I've misread it. Ok, I will do it manually then, and submit a bug report. :) Thanks, Peter On Thu, Aug 11, 2016 at 3:31 PM, Peter Uhnák wrote: > I get the exact same error when executing the script, I am running this on > Pharo 5 (50760) btw. > > On Thu, Aug 11, 2016

Re: [Pharo-users] RewriteTool matching parts of an array

2016-08-11 Thread Peter Uhnák
I get the exact same error when executing the script, I am running this on Pharo 5 (50760) btw. On Thu, Aug 11, 2016 at 3:15 PM, Mark Rizun wrote: > Hi Peter, > > I tried to perform this transformation with RewriteTool and got the same > DNU. > > >> However when I tried to

Re: [Pharo-users] RewriteTool matching parts of an array

2016-08-11 Thread Mark Rizun
Hi Peter, I tried to perform this transformation with RewriteTool and got the same DNU. > However when I tried to execute it I was met with DNU > OrderedCollection>>parent: > > It seems that the @first/@second part are not matched properly. > Actually they are matched properly, because if you

[Pharo-users] Pharo on a Mac

2016-08-11 Thread Bart Venckeleer
Hi all, 20 years ago I wrote an application in SmallTalk-V that I'm porting now to Pharo since Smalltalk-V doesn't run 64-bit systems. I run Pharo on a Mac and what I experience is a bit annoying and I hope one of you already solved the issues. In fact there are two things that bother me: 1. The

[Pharo-users] RewriteTool matching parts of an array

2016-08-11 Thread Peter Uhnák
Hi, I wanted to use RewriteTool to rewrite dynamic arrays Source AST: | base | base := {#Department -> {710 @ 255. Color lightMagenta}} matching AST: | base | base := {#Department -> {``@first. ``@second}} transformation: | base | base := {#Department -> (Array with: ``@first with: ``@second)}

Re: [Pharo-users] manipulating strings

2016-08-11 Thread Denis Kudriashov
2016-08-11 12:45 GMT+02:00 webwarrior : > Why not use standard collection API? > > 'Uquillas G\''{o}mez' reject: [ :c | #($\ ${ $} > There is short version: copyWithoutAll:#($\ ${ $}

Re: [Pharo-users] manipulating strings

2016-08-11 Thread Nicolai Hess
2016-08-11 7:30 GMT+02:00 stepharo : > Now I was really wondering how I could copy characters by characters > without relying on a stream to get a string from the correct size at the > end. > > In particular copyWithout: and friends only works either with one > subcollection or

Re: [Pharo-users] manipulating strings

2016-08-11 Thread webwarrior
Why not use standard collection API? 'Uquillas G\''{o}mez' reject: [ :c | #($\ ${ $} $' $`) includes: c ] thenCollect: #asLowercase -- View this message in context: http://forum.world.st/manipulating-strings-tp4910349p4910451.html Sent from the Pharo Smalltalk Users mailing list archive at