Re: [Pharo-project] loading code from command line inovcation

2011-06-04 Thread Stéphane Ducasse
that your bug is logged in the bug tracking system. and as such not getting lost in the flow of mails On Jun 3, 2011, at 10:56 PM, Hilaire Fernandes wrote: > What am I suppose to understand from this url? > > Le 31/05/2011 10:27, Stéphane Ducasse a écrit : >> http://code.google.com/p/pharo/iss

Re: [Pharo-project] Compiling and using the FT2Plugin

2011-06-04 Thread Alain Plantec
Hi Igor, #configureFT2Plugin: is the place for #addExternalLibraries: but it only works for FT2Plugin compiled as internal plugin. To compile the FT2Plugin as external, you also have to use #addExternalLibraries: #('freetype') but not sent from #configureFT2Plugin:. It is because of cmake and w

[Pharo-project] Problem with Traits and #initialize.

2011-06-04 Thread Mariano Martinez Peck
1) Browse the example Trait1 and you will see methods like: Trait1 >> c ^ 'Trait1>>c' and: Trait1 >> c1 ^ 'Trait1>>c1' 2) Now, execute "Trait1 initialize" 3) BOOM. Trait1 has no longo any method. In the browse they are shown like: Trait1 >> c "This method does not exist." se

Re: [Pharo-project] loading code from command line inovcation

2011-06-04 Thread Marcus Denker
On Jun 3, 2011, at 10:57 PM, Hilaire Fernandes wrote: > What am I suppose to understand from this url? > a better link is http://code.google.com/p/pharo/issues/detail?id=4319 > Le 31/05/2011 10:27, Stéphane Ducasse a écrit : >> http://code.google.com/p/pharo/issues/list?thanks=4319 >>

Re: [Pharo-project] Problem with Traits and #initialize.

2011-06-04 Thread Stéphane Ducasse
why would it make sense to send initialize? Stef On Jun 4, 2011, at 11:42 AM, Mariano Martinez Peck wrote: > 1) Browse the example Trait1 and you will see methods like: > Trait1 >> c > > ^ 'Trait1>>c' > > and: > > Trait1 >> c1 > > ^ 'Trait1>>c1' > > > 2) Now, execute "Trait1 initi

Re: [Pharo-project] Problem with Traits and #initialize.

2011-06-04 Thread Lukas Renggli
Did you look at TraitBehavior>>#initialize and Behavior>>#initialize? They both clear the method dictionary, reset superclass, clear users and traits, etc. What you observe is what is implemented in these methods. Normally you should never call class-side initialize methods manually, the system do

Re: [Pharo-project] Problem with Traits and #initialize.

2011-06-04 Thread Mariano Martinez Peck
On Sat, Jun 4, 2011 at 12:04 PM, Stéphane Ducasse wrote: > why would it make sense to send initialize? > Because the system has fucking names. PackageInfo >> classes answers both, traits and classes. I wanted to send #initialize to all classes of a package. Of course, I did a workaround: ((Pack

Re: [Pharo-project] Problem with Traits and #initialize.

2011-06-04 Thread Mariano Martinez Peck
On Sat, Jun 4, 2011 at 12:28 PM, Lukas Renggli wrote: > Did you look at TraitBehavior>>#initialize and Behavior>>#initialize? > They both clear the method dictionary, reset superclass, clear users > and traits, etc. > > Thanks for the point. I can see now. > What you observe is what is implemen

Re: [Pharo-project] [Pharo-users] we should fix the timeout because I have problem to commit morphic changes.

2011-06-04 Thread Mariano Martinez Peck
I was bit for that today because SS was slow... And yes, I think it may be related to Zinc. On Sat, Jun 4, 2011 at 12:18 PM, Stéphane Ducasse wrote: > hi sven/marcus > > what is the solution for the timeout? > because I get in trouble and cannot publish morphic or I have to retry and > this is

Re: [Pharo-project] Problem with Traits and #initialize.

2011-06-04 Thread Lukas Renggli
>> What you observe is what is implemented in these methods. Normally you >> should never call class-side initialize methods manually, the system >> does > > yeah, the system *should* do it for me. I cannot reproduce it, but I find > myself several times having to explicitly send class side #initia

[Pharo-project] Call For Papers: IWST@ESUG2011

2011-06-04 Thread Alain Plantec
IWST @ ESUG 2011 International Workshop on Smalltalk Technologies ACM In-Cooperation August 23th, 2011 Edinburgh, Scotland http://www.esug.org/Conferences/2011/International-Workshop-on-Smalltalk-Technologies SUBMISSION DEADLINE : June 17, 2011 Authors of the best accepted papers will be in

Re: [Pharo-project] Compiling and using the FT2Plugin

2011-06-04 Thread Igor Stasenko
On 4 June 2011 11:34, Alain Plantec wrote: > Hi Igor, > > #configureFT2Plugin: is the place for #addExternalLibraries: but it only > works for FT2Plugin compiled as internal plugin. > To compile the FT2Plugin as external, you also have to use > #addExternalLibraries: #('freetype') but not sent fro

Re: [Pharo-project] [squeak-dev] Re: usability of Pharo and Squeak

2011-06-04 Thread Germán Arduino
Hi Dale and folks: First of all let me say Dale, your capacity to deliver new projects is awesome! 2011/6/3 Dale Henrichs : > > > - Original Message - > | From: "Andreas Wacknitz" > | > | I hope you will be successful. I don't like programming web > | interfaces because I am still not co

Re: [Pharo-project] OSProcess on 1.2

2011-06-04 Thread David T. Lewis
On Fri, Jun 03, 2011 at 08:42:49PM -0700, Sean P. DeNigris wrote: > > David T. Lewis wrote: > > > > If you have a chance, could you please run the following and post > > your results from the transcript? > > > > Sure... > > #('CommandShell versionString ==> 4.4.15' > 'OSProcess versionString

Re: [Pharo-project] OSProcess on 1.2

2011-06-04 Thread Sean P. DeNigris
David T. Lewis wrote: > > Some of the VMs for OS X were accidentally built with an out of > date OSProcessPlugin (OSPP). It looks like you have one of them. > You have version 4.2.4 of OSPP which was from April 2007, and > does not contain many necessary updates and fixes. > Aha! That VM came d

[Pharo-project] Toward MVP: SimpleGridExample vs. ClassListExample, etc.

2011-06-04 Thread Schwab,Wilhelm K
I have a couple of GUIs to create, and took another look at my (very) slowly evolving MVP package. A small update appears below, but the question of the day is one of performance of MorphTreeMorph in its various incarnations. ClassListExample is very impressive and reasonably quick. SimpleGrid

Re: [Pharo-project] Toward MVP: SimpleGridExample vs. ClassListExample, etc.

2011-06-04 Thread Stéphane Ducasse
On Jun 4, 2011, at 6:08 PM, Schwab,Wilhelm K wrote: > I have a couple of GUIs to create, and took another look at my (very) slowly > evolving MVP package. A small update appears below, but the question of the > day is one of performance of MorphTreeMorph in its various incarnations. > > Class

Re: [Pharo-project] usability of Pharo and Squeak

2011-06-04 Thread Andreas Wacknitz
Am 31.05.2011 um 09:38 schrieb laurent laffont: > On Tue, May 31, 2011 at 8:18 AM, Andreas Wacknitz wrote: > Hi all, > > I have convinced a friend to take a closer look at Pharo 1.2.1 and Dolphin > Smalltalk. He is an experienced Java developer. > After some time he started to complain about P

Re: [Pharo-project] OSProcess on 1.2

2011-06-04 Thread David T. Lewis
On Sat, Jun 04, 2011 at 08:00:32AM -0700, Sean P. DeNigris wrote: > > David T. Lewis wrote: > > > > Some of the VMs for OS X were accidentally built with an out of > > date OSProcessPlugin (OSPP). It looks like you have one of them. > > You have version 4.2.4 of OSPP which was from April 2007, an

Re: [Pharo-project] usability of Pharo and Squeak

2011-06-04 Thread laurent laffont
On Sat, Jun 4, 2011 at 6:27 PM, Andreas Wacknitz wrote: > > Am 31.05.2011 um 09:38 schrieb laurent laffont: > > On Tue, May 31, 2011 at 8:18 AM, Andreas Wacknitz wrote: > >> Hi all, >> >> I have convinced a friend to take a closer look at Pharo 1.2.1 and Dolphin >> Smalltalk. He is an experienced

Re: [Pharo-project] Toward MVP: SimpleGridExample vs. ClassListExample, etc.

2011-06-04 Thread Alain Plantec
yes, it is slow. the idea would be to build the list in background. you can try the lazy version also. LazyMorphTreeMorph. a row is built only when it is visible. Cheers Alain Le 04/06/2011 18:08, Schwab,Wilhelm K a écrit : I have a couple of GUIs to create, and took another look at my (very) sl

Re: [Pharo-project] Toward MVP: SimpleGridExample vs. ClassListExample, etc.

2011-06-04 Thread Schwab,Wilhelm K
Stef, Thanks for the homework assignments :) I have not specifically looked at simple grid in 1.3, but I will do so - gotta go for a run first. My MVP code is not yet available, but I intend to release it once it is remotely worth having. I was pleasantly surprised to find more than I thought

Re: [Pharo-project] OSProcess on 1.2

2011-06-04 Thread Sean P. DeNigris
David T. Lewis wrote: > > But I think you said you are using a 4.2.5 VM, > For the Cocoa VM (5.7.4.1), TestRunner hangs again. One hanging test was UnixProcessTestCase>>testClassForkHeadlessSqueakAndDo on "[p isRunning] whileTrue: [(Delay forMilliseconds: 100) wait]." These were the values for

Re: [Pharo-project] Compiling and using the FT2Plugin

2011-06-04 Thread Mariano Martinez Peck
Hi Alain. I am a bit late, sorry. I just wanted to let you know that you made me happy :) Not only because you could build the vm by yourself but in addition you could help us, comment a problem and even helping with the solution. That kind of thing is exactly what I expect and hope when I write my

Re: [Pharo-project] OSProcess on 1.2

2011-06-04 Thread Sean P. DeNigris
David T. Lewis wrote: > > If I remember correctly, there are no plans for further updates > to that VM (Esteban could say better than me of course). > From http://forum.world.st/looking-for-feedback-on-Cocoa-Cog-MT-VM-td3534230.html : Esteban Lorenzano wrote: > > What is definitively true, is

Re: [Pharo-project] Toward MVP: SimpleGridExample vs. ClassListExample, etc.

2011-06-04 Thread Stéphane Ducasse
On Jun 4, 2011, at 6:55 PM, Schwab,Wilhelm K wrote: > Stef, > > Thanks for the homework assignments :) > > I have not specifically looked at simple grid in 1.3, but I will do so - > gotta go for a run first. > > My MVP code is not yet available, but I intend to release it once it is > remote

[Pharo-project] [update 1.3] #13244

2011-06-04 Thread Stéphane Ducasse
13244 - - Issue 4349: Base64MimeConverterTest in CollectionsTests. Thanks Pavel Krivanek. http://code.google.com/p/pharo/issues/detail?id=4349 - Issue 4331: Lists Fusion part two. Tx B. van ryseghem.

[Pharo-project] [update 1.3] #13245

2011-06-04 Thread stephane ducasse
13245 - - Issue 4331: Lists Fusion. Now deprecate PluggableIconListMorphOfMany, PluggableListMorphOfMany, PluggableMorphListMorphOfMany since PluggableListMorph can do the same. Thanks Benjamin this is cool :). - Issue 4348: CompilerEvaluationTest>>#testEvaluationOfSelfSend dependent on

[Pharo-project] Cuis 3.3

2011-06-04 Thread stephane ducasse
Hi guys Some items would be good to have in pharo like the event cleaning... to bad that we cannot collaborate more but this is like that. Stef New in Cuis 3.3 --- * New nice Icon set from Tango (Casey) - Most menu options have now a nice icon * ContentPack - A

Re: [Pharo-project] Cuis 3.3

2011-06-04 Thread Guillermo Polito
Maybe we can list the interesting things to add and open tickets? That we we'll not forget ;) On Sat, Jun 4, 2011 at 6:09 PM, stephane ducasse wrote: > Hi guys > > Some items would be good to have in pharo like the event cleaning... to bad > that we cannot collaborate more > but this is like tha