[Pharo-dev] potential bug with PackaegSet

2013-06-30 Thread Stéphane Ducasse
Hi esteban In Seaside, I created a subclass of WAFileLibrary then StefWAFileLibrary addAllFilesIn: 'foo' my folder foo contained a simple sh file I got a method created in the class side of StefWAFileLibrary I created a separated package and I could not save (I could save) but the

Re: [Pharo-dev] potential bug with PackaegSet

2013-06-30 Thread Stéphane Ducasse
Probably linked to addFileIn: invokes compile: aString into: aClass classified: aSymbol The trick here is to be as silently a possible so that the package is not marked dirty when running WAFileLibrary test. This also makes running tests much faster. | methodNode

Re: [Pharo-dev] potential bug with PackaegSet

2013-06-30 Thread Marcus Denker
is this 3.0? We removed CompiledMethodWithNode there… On Jun 30, 2013, at 10:35 AM, Stéphane Ducasse stephane.duca...@inria.fr wrote: Probably linked to addFileIn: invokes compile: aString into: aClass classified: aSymbol The trick here is to be as silently a possible

Re: [Pharo-dev] potential bug with PackaegSet

2013-06-30 Thread Stéphane Ducasse
this is Seaside30 on Pharo2.0 and also on Seaside 31 on Pharo30 Stef is this 3.0? We removed CompiledMethodWithNode there… On Jun 30, 2013, at 10:35 AM, Stéphane Ducasse stephane.duca...@inria.fr wrote: Probably linked to addFileIn: invokes compile: aString into: aClass

Re: [Pharo-dev] [ANN] SS3 the canary site

2013-06-30 Thread Stéphane Ducasse
Thanks tobias. To me your version of SS3 looks even more Squeak centric and this is ok but my plate is full and I'm sorry but I focus on Pharo because we must deliver and continue. That was uncalled for. Stéphane Ducasse, what is it you want to tell me? Whatever emotion or reaction you

Re: [Pharo-dev] potential bug with PackaegSet

2013-06-30 Thread Stéphane Ducasse
I wonder if GRPharoPlatformcompile: aString into: aClass classified: aSymbol is not just duplicating logic and as such brings subtle bugs. Now the addAllFilesIn: is broken Implementing it as compile: aString into: aClass classified: aSymbol [aClass compile: aString classified:

Re: [Pharo-dev] SmalltalkHub upgrade!

2013-06-30 Thread Damien Cassou
On Fri, Jun 28, 2013 at 6:10 PM, kilon theki...@yahoo.co.uk wrote: I am curious is there an API that pharo can use to manage smalltalkhub ? By manage I mean to push, commit , pull etc Or ask smalltalkhub to search for a specific project and return its http adress and such things that we can

Re: [Pharo-dev] SmalltalkHub upgrade!

2013-06-30 Thread Sven Van Caekenberghe
Hi Nicolas, Great work. Thanks for taking care. Like I said before: it is a great responsibility that you are carrying, respect ! One day you have to write a blog post giving us all some insight in the production details, with some nice numbers and graphs. Sven PS: Is a source code browsing

Re: [Pharo-dev] SmalltalkHub upgrade!

2013-06-30 Thread Damien Cassou
On Sun, Jun 30, 2013 at 4:01 PM, Sven Van Caekenberghe s...@stfx.eu wrote: PS: Is a source code browsing feature something that we can expect someday ? It is really something that I miss: I often want to have a quick look at some code, before defining the repository and/or loading it. could

Re: [Pharo-dev] [ANN] SS3 the canary site

2013-06-30 Thread Sven Van Caekenberghe
Hi Tobias, On 28 Jun 2013, at 23:55, Tobias Pape das.li...@gmx.de wrote: Dear fellow Smalltalkers For me to test new features of SqueakSource3 and for you to have a look on new features and fixed bugs, I have created http://canary.netshed.de/ which is the most recent, say alpha,

Re: [Pharo-dev] SmalltalkHub upgrade!

2013-06-30 Thread kilon
Thanks Damien :) -- View this message in context: http://forum.world.st/Pharo-dev-SmalltalkHub-upgrade-tp4696167p4696431.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] List auto-selection of next item on delete

2013-06-30 Thread Stéphane Ducasse
even cooler :) Stef On Jun 30, 2013, at 4:46 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: It's the default behaviour Ben On Jun 30, 2013, at 4:31 PM, Stéphane Ducasse stephane.duca...@inria.fr wrote: Hi Is there a way to say to a list that when we delete a

[Pharo-dev] An ugly question about menu and domain objects

2013-06-30 Thread Stéphane Ducasse
Hi I have domain objects for example logs. And I have a UI. Now I would like to let the programmer to extend the Log items (either by subclassing or extensions) and add new actions. For example I would like that the compiler is able to define errors as log items so that after we can go to the

Re: [Pharo-dev] An ugly question about menu and domain objects

2013-06-30 Thread Damien Cassou
On Sun, Jun 30, 2013 at 7:06 PM, Stéphane Ducasse stephane.duca...@inria.fr wrote: Now I'm wondering how I could define menu items in a way that I do not polute the domain object with menus. you can use double-dispatch and create both a #menuForLogItem: and a #menuForSubLogItem: on the UI.

Re: [Pharo-dev] An ugly question about menu and domain objects

2013-06-30 Thread Benjamin
What I didi for Nautilus was to use pragmas, this way I have my domain object (Nautilus), and menus are defined in another class (NautilusRefactoring by example). And NautilusRefactoring knows how to communicate with Nautilus. This way, the domain abject can stay clean, and I have a special

Re: [Pharo-dev] An ugly question about menu and domain objects

2013-06-30 Thread Stéphane Ducasse
Ok I will look at it or you will show me. For now I'm in brainstorming and API extension stabilisation phase. Stef On Jun 30, 2013, at 8:23 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: What I didi for Nautilus was to use pragmas, this way I have my domain object (Nautilus), and

Re: [Pharo-dev] [Pharo-project] Understanding NBOpenGL

2013-06-30 Thread kilon
I am not going to post my code here cause it has become too big , you can find it here http://www.smalltalkhub.com/#!/~kilon/GLTutorial http://www.smalltalkhub.com/#!/~kilon/GLTutorial I tried adding newlines with String cr to my shaders strings, but apparently opengl is not convinced. It

Re: [Pharo-dev] Better Interruption in 2.0

2013-06-30 Thread Tudor Girba
Is this integrated in 2.0 already? Doru On Fri, Jun 28, 2013 at 3:12 PM, Goubier Thierry thierry.goub...@cea.frwrote: Hi Stephan, I've put a slice to integrate that and the overall UserInterrupt code to get it to work. Can you try it? It's

Re: [Pharo-dev] An ugly question about menu and domain objects

2013-06-30 Thread Stéphane Ducasse
for the logger in StephaneDucasse/SystemLogger/ But I'm not really happy. Do not use the configuration since I was editing it. Stef On Jun 30, 2013, at 10:11 PM, Tudor Girba tu...@tudorgirba.com wrote: Where can I look at this code? Doru On Sun, Jun 30, 2013 at 8:32 PM, Stéphane

Re: [Pharo-dev] [update 3.0] #30230

2013-06-30 Thread Sean P. DeNigris
Marcus Denker-4 wrote 11060 Introduce WorldMorph as subclass of PasteUpMorph https://pharo.fogbugz.com/f/cases/11060 Cool!!! I wonder why it was not done like that to begin with... - Cheers, Sean -- View this message in context: