Re: [Pharo-users] Line end convention in method source

2016-02-19 Thread Marcus Denker
Hi, This is strange… do you have a way to re-create it? it looks like a bug (or a non-wanted side effect) to me... > On 17 Feb 2016, at 09:56, Norbert Hartl wrote: > > I had a strange effect using a method as storage. I had a list of strings > that I compiled into a method. The strings were de

Re: [Pharo-users] Line end convention in method source

2016-02-19 Thread Sven Van Caekenberghe
But I think it is a bit dangerous to rely on a specific EOL convention being maintained in method source code. Although I agree that it should not touch the contents of constants. You could do something (inefficient) like ^ String lf join: 'one two three' lines I've done this before (to get CR

Re: [Pharo-users] Line end convention in method source

2016-02-19 Thread Peter Uhnák
Or be platform-independent and store it in an array, and retrieve on demand? MyStorage>>strings ^ #('string1' 'string2' 'string3' ...) MyStorage>>stringsSeparated ^ self stringsSeparatedBy: String lf MyStorage>>stringsSeparatedBy: aSeparator ^ self string joinUsing: aSeparator On F

Re: [Pharo-users] Line end convention in method source

2016-02-19 Thread Norbert Hartl
I didn't think about danger because it is a short term hack that will go away soon. I was just wondering because I think it is a bug. I now compile storeString into the method which generates an ordered collection. Norbert > Am 19.02.2016 um 10:46 schrieb Sven Van Caekenberghe : > > But I thin

Re: [Pharo-users] Using GTSpotter how do I find an implementor of #accept ?

2016-02-19 Thread stepharo
I still do not get why a tool like spotter does not focus first one working on the key scenarios we all want: - sender - implementor - open a class - class refs Because this is what we do 95% of the time. Le 11/6/15 09:38, Nicolai Hess a écrit : 2015-06-11 7:05 GMT+02:00 Paul

Re: [Pharo-users] Using GTSpotter how do I find an implementor of #accept ?

2016-02-19 Thread Peter Uhnák
On Fri, Feb 19, 2016 at 5:38 PM, stepharo wrote: > I still do not get why a tool like spotter does not focus first one > working on the key scenarios we all want: > - sender > - implementor > - open a class > - class refs > > Because this is what we do 95% of the time. > Spotter

Re: [Pharo-users] Using GTSpotter how do I find an implementor of #accept ?

2016-02-19 Thread Paul DeBruicker
+1 At this point I just keep a Workspace open to type what I'm looking for in and hit cmd+m or n or N or B. Instead of shift+end I hit opt+tab to find the Workspace. Not as convenient as shift+Enter but the problems in outlined in this message are gone. Its probably possible to remap shift+enter

[Pharo-users] GSOC 2016 we are done

2016-02-19 Thread Serge Stinckwich
Dear all, the GSOC website is close now. Thank to the incredible work of Peter and Uko, we were able to submitting our application for GSOC 2016. Thank you all the people who provide insights and advices for the application. You can still update the topics list by providing pull requests on githu

Re: [Pharo-users] GSOC 2016 we are done

2016-02-19 Thread Tudor Girba
Amazing work! Thank you, Doru > On Feb 19, 2016, at 8:05 PM, Serge Stinckwich > wrote: > > Dear all, > > the GSOC website is close now. Thank to the incredible work of Peter and Uko, > we were able to submitting our application for GSOC 2016. > Thank you all the people who provide insights a

[Pharo-users] REEF examples

2016-02-19 Thread recursive68
Hi, I'm trying to use REEF but can only find a few limited examples which aren't helping really. Does anyone know for example how I would update a RETextField value when a REButton is clicked ? I found this example someone answered to a the query I had but it doesn't work: REForm subclass: #MyFo