[Pharo-project] SubpaneDividerMorph question of existence

2009-05-05 Thread Stéphane Ducasse
Hi buzy pharoers I found a removal script from etoyers and they removed SubpaneDividerMorph. I check in Pharo this class has no subclass and nobody uses it. Stef ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

[Pharo-project] Author in Squeak (Thread moved over from smallwiki)

2009-05-05 Thread Keith Hodges
stéphane ducasse wrote: Apparently there is no value in what we are doing: I didn't say that, is that what you believe? removing etoy, removing a lot of ***SHIT*** from squeak, fixing tons of bugs (the bug archives is full of fixed bugs and fixes problems), writing more tests, cleaning a HUGE

[Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Mariano Martinez Peck
No matter which method I try to add. Is this happening only to me ? I am using pharo core 10300 and exupery vm on ubuntu. Cheers, Mariano ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr

Re: [Pharo-project] Author in Squeak (Thread moved over from smallwiki)

2009-05-05 Thread Igor Stasenko
2009/5/5 Keith Hodges keith_hod...@yahoo.co.uk: stéphane ducasse wrote: Apparently there is no value in what we are doing: I didn't say that, is that what you believe? removing etoy, removing a lot of ***SHIT*** from squeak, fixing tons of bugs (the bug archives is full of fixed bugs and

Re: [Pharo-project] Author in Squeak (Thread moved over from smallwiki)

2009-05-05 Thread MichaelA
My impression. This is a bunch of whining. I am not trying to be imflamatory but that is my impression. For my part, I don't care two dead flies about compatibility with squeak. I am very happy that a bunch of very bright and motivated individuals are working hard to produce a stable open

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Mariano Martinez Peck
FuckIt seems to be more complex to reproduce. These are the steps I am doing 1) open OB. 2) go to String class, method printOn: 3) modify printOn: to this: printOn: aStream Print inside string quotes, doubling inbedded quotes. self size 100 ifTrue: [ self localize

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Adrian Lienhard
Hi Mariano, I think the problem is that since #localize is not implemented the system stops working because it depends on StringprintOn: (considering that source code is a string too...). If you first implement #localize and then implement #printOn: it seems to work ok. In any case,

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Mariano Martinez Peck
On Tue, May 5, 2009 at 3:34 PM, Adrian Lienhard a...@netstyle.ch wrote: Hi Mariano, I think the problem is that since #localize is not implemented the system stops working because it depends on StringprintOn: (considering that source code is a string too...). Yes. I think this is the

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Mariano Martinez Peck
On Tue, May 5, 2009 at 3:44 PM, Alexandre Bergel alexan...@bergel.euwrote: The localize method is present neither in .dev image nor in a core. No. I was creating it. However, what I reported happens with any selector name. Choose any other name instead of localize and you will get the same

[Pharo-project] UIManager default informUserDuring: - DNU (10300)

2009-05-05 Thread Stéphane Ducasse
UIManager default informUserDuring: [:bar | #(one two three) do: [ :info | bar value: info. (Delay forSeconds: 1)]] leads to an error. Apparently barValue does not like

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Stéphane Ducasse
woops this is strange and I'm sorry for that. On my 300 is has no effect just compiles it. Stef On May 5, 2009, at 5:23 PM, Mariano Martinez Peck wrote: No matter which method I try to add. Is this happening only to me ? I am using pharo core 10300 and exupery vm on ubuntu. Cheers,

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Stéphane Ducasse
why don't you define a displayString for your user and keep printOn: for the debugger. In VW this is like that. Stef On May 5, 2009, at 7:29 PM, Mariano Martinez Peck wrote: On Tue, May 5, 2009 at 3:34 PM, Adrian Lienhard a...@netstyle.ch wrote: Hi Mariano, I think the problem is

[Pharo-project] Fwd: Pier-EmailSender and Contact Us

2009-05-05 Thread Stéphane Ducasse
marcus told me once that scriptloader was already getting a big class with a lot of method. For now I do not have something else than removing all tests and scriptloader. I removed a lot of bookMorph but still it is hanging there :) Stef On May 5, 2009, at 5:53 PM, John M McIntosh

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Michael Roberts
On Tue, May 5, 2009 at 9:21 PM, Stéphane Ducasse stephane.duca...@inria.fr wrote: why don't you define a displayString for your user and keep printOn: for the debugger. In VW this is like that. Stef +1 from experience systems that have deeply extended or altered printOn: printString are a

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Mariano Martinez Peck
On Tue, May 5, 2009 at 7:21 PM, Stéphane Ducasse stephane.duca...@inria.frwrote: why don't you define a displayString for your user and keep printOn: for the debugger. In VW this is like that. I don't know If I can do this. I've just send an email to Pier mailing lists explaining why I

[Pharo-project] NetNameResolver problem on Linux Ubuntu 9.04

2009-05-05 Thread Alain Plantec
Hi all, Since one week I have network problems: system update is not working, Monticello can't open any http repository... I've investigated a little bit and found that NetNameResolver always fail when trying to resolve www.squeaksource.com as an example: NetNameResolver addressForName:

Re: [Pharo-project] Add a method to String freezes my pharo image

2009-05-05 Thread Alexandre Bergel
Hi Mariano, Actually it behaves as expected. I first defined Stringlocalize ^ self _then_ StringprintOn: aStream Print inside string quotes, doubling inbedded quotes. self size 100 ifTrue: [ self localize storeOn: aStream ] ifFalse: [ self storeOn: