Re: [Pharo-project] NetNameResolver problem on Linux Ubuntu 9.04

2009-05-05 Thread Alain Plantec
Michael Rueger a écrit : > Alain Plantec wrote: > >> I'm on Ubuntu 9.04, I'm using Exupery VM 0.15.1. >> >> I do not have any problem on a VirtualBox/Ubuntu 8.10, same VM. > > Hmm, as that is a major version change in Ubuntu we may need to build > a new VM? > Anyone any ideas what changed between

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 String>>localize ^ self _then_ String>>printOn: aStream "Print inside string quotes, doubling inbedded quotes." self size < 100 ifTrue: [ self localize storeOn: aStream ] ifFalse: [ self storeO

Re: [Pharo-project] SubpaneDividerMorph question of existence

2009-05-05 Thread Hernán Morales Durand
Hello Stéphane, It was the divider used when the system browsers were all green and plain (Squeak versions up to 3.0) and from there was replaced by BorderedSubpaneDividerMorph in the main Squeak distribution. Cheers, Hernán 2009/5/5 Stéphane Ducasse : > Hi buzy pharoers > > I found a removal s

Re: [Pharo-project] NetNameResolver problem on Linux Ubuntu 9.04

2009-05-05 Thread Cameron Sanders
This is the solution I used for the Mac. See the recent thread of: Monticello/ftp stopped working for me. The FTP side has another defect I mentioned... and I guess I need to learn where to enter that detail in the bug tracking system. -Cam On May 5, 2009, at 4:42 PM, Alain Plantec wrote: >

Re: [Pharo-project] NetNameResolver problem on Linux Ubuntu 9.04

2009-05-05 Thread John M McIntosh
Bert sent me a note saying for example 'localhost' returns an IPV6 address in checking it see ::1(localhost),0(0)-inet6-stream-tcp fe80::1%lo0(localhost),0(0)-inet6-stream-tcp 127.0.0.1(localhost),0(0)-inet4-stream-tcp then returns the first one. Well mmm that breaks things that think they migh

Re: [Pharo-project] NetNameResolver problem on Linux Ubuntu 9.04

2009-05-05 Thread Mariano Martinez Peck
On Tue, May 5, 2009 at 8:13 PM, Michael Rueger wrote: > Alain Plantec wrote: > > > I'm on Ubuntu 9.04, I'm using Exupery VM 0.15.1. > > > > I do not have any problem on a VirtualBox/Ubuntu 8.10, same VM. > > Hmm, as that is a major version change in Ubuntu we may need to build a > new VM? > Anyon

Re: [Pharo-project] NetNameResolver problem on Linux Ubuntu 9.04

2009-05-05 Thread Michael Rueger
Alain Plantec wrote: > I'm on Ubuntu 9.04, I'm using Exupery VM 0.15.1. > > I do not have any problem on a VirtualBox/Ubuntu 8.10, same VM. Hmm, as that is a major version change in Ubuntu we may need to build a new VM? Anyone any ideas what changed between the two Ubuntu versions? Michael __

[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: 'www.squea

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 wrote: > 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 wanted to do that. Perhaps

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 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 pain. It should be

[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 Mc

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 > wrote: > Hi Mariano, > > I think the problem is that since #l

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,

[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 t

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 wrote: > 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 problem! Thanks for t

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 wrote: > Hi Mariano, > > I think the problem is that since #localize is not implemented the > system stops working because it depends on String>>printOn: > (considering that source code is a string too...). Yes. I think this is the reason. > If

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

2009-05-05 Thread Alexandre Bergel
The localize method is present neither in .dev image nor in a core. Alexandre On 5 May 2009, at 17:52, Mariano Martinez Peck wrote: > 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 printO

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 String>>printOn: (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, over

Re: [Pharo-project] Pier-EmailSender and "Contact Us"

2009-05-05 Thread John M McIntosh
No, the intent is preserve the images as they are shipped see http://www.mobilewikiserver.com/ST80Docs.html & http://www.mobilewikiserver.com/SqueakDocs.html However if you have a script that removals all the *extra* things that people could run for server images that would be helpful at least

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 store

Re: [Pharo-project] Pier-EmailSender and "Contact Us"

2009-05-05 Thread John M McIntosh
Well then for http://bugs.squeak.org/view.php?id=6581 who would stick that into 3.11? Let alone that I'm looking at 3.10.2 image Added (partly) http://bugs.squeak.org/view.php?id=7348 On 5-May-09, at 2:07 AM, Andreas Raab wrote: > Hi John - > > John M McIntosh wrote: >> (I had to fix the sq 3

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

2009-05-05 Thread Alexandre Bergel
> Cool! I'm currently collecting all the cases which freezing an image, > to find a best way in new scheduler how to prevent that. > I need more!! :) > > :)But does this happen also to you ? In a 10300 on OSX I can do without any problem: String compile: 'foo ^ 60'. 'abc' foo => 60 Something

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

2009-05-05 Thread Igor Stasenko
2009/5/5 Mariano Martinez Peck : > > > On Tue, May 5, 2009 at 2:30 PM, Igor Stasenko wrote: >> >> 2009/5/5 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. >> > >> >> Cool! I'm

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 sour

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 2:30 PM, Igor Stasenko wrote: > 2009/5/5 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. > > > > Cool! I'm currently collecting all the cases which freezing

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

2009-05-05 Thread Igor Stasenko
2009/5/5 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. > Cool! I'm currently collecting all the cases which freezing an image, to find a best way in new scheduler how to prevent that. I ne

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

2009-05-05 Thread Igor Stasenko
2009/5/5 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), w

[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 http://lists.gforge.inria.fr/cgi-bin/mailman/l

[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

[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 http://lists.gforge.i

Re: [Pharo-project] Pier-EmailSender and "Contact Us"

2009-05-05 Thread Tudor Girba
Hi guys, I believe this mail exchange belongs to the Pharo and not to the Smallwiki mailing list :). Cheers, Doru On 5 May 2009, at 09:33, stéphane ducasse wrote: > Apparently there is no value in what we are doing: > removing etoy, removing a lot of ***SHIT*** from squeak, fixing tons > o