Add a method to String freezes my pharo image

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
17 messages Options
Reply | Threaded
Open this post in threaded view
|

Add a method to String freezes my pharo image

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
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Igor Stasenko
2009/5/5 Mariano Martinez Peck <[hidden email]>:
> 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 need more!! :)

> Cheers,
>
> Mariano
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Best regards,
Igor Stasenko AKA sig.

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Mariano Martinez Peck


On Tue, May 5, 2009 at 2:30 PM, Igor Stasenko <[hidden email]> wrote:
2009/5/5 Mariano Martinez Peck <[hidden email]>:
> 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 need more!! :)

:)    But does this happen also to you ?
 

> Cheers,
>
> Mariano
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Best regards,
Igor Stasenko AKA sig.

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Igor Stasenko
2009/5/5 Mariano Martinez Peck <[hidden email]>:

>
>
> On Tue, May 5, 2009 at 2:30 PM, Igor Stasenko <[hidden email]> wrote:
>>
>> 2009/5/5 Mariano Martinez Peck <[hidden email]>:
>> > 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 need more!! :)
>
> :)    But does this happen also to you ?
>

i'm not yet moved my code on 10300.

>>
>> > Cheers,
>> >
>> > Mariano
>> >
>> > _______________________________________________
>> > Pharo-project mailing list
>> > [hidden email]
>> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>>
>>
>>
>> --
>> Best regards,
>> Igor Stasenko AKA sig.
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Best regards,
Igor Stasenko AKA sig.

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Alexandre Bergel
In reply to this post by Mariano Martinez Peck
> 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 more you want me to test ?

Alexandre



>
>
> > Cheers,
> >
> > Mariano
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
>
>
>
> --
> Best regards,
> Igor Stasenko AKA sig.
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Mariano Martinez Peck
Fuck....It 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 storeOn: aStream ]
        ifFalse: [ self storeOn: aStream ]

4)  save it and put initials if asked.
5) as localize is not created yet, it ask you the selector. Ignore it and select localize  (the first option)
6) ctrl + a (select all text) and try to create the method localize. It can be just empty this method.
7) try to save
8) your image may be freeze :)


Can you confirm this ? I am sorry I said I was on Linux. I thought I was at home, but  not, unfortunately I am with Windows at work :(

Cheers,

Mariano


On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel <[hidden email]> wrote:
> 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 more you want me to test ?

Alexandre



>
>
> > Cheers,
> >
> > Mariano
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
>
>
>
> --
> Best regards,
> Igor Stasenko AKA sig.
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

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, overriding String>>printOn: does not seem to be a good  
idea.

HTH,
Adrian

On May 5, 2009, at 17:52 , Mariano Martinez Peck wrote:

> Fuck....It 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 storeOn: aStream ]
>        ifFalse: [ self storeOn: aStream ]
>
> 4)  save it and put initials if asked.
> 5) as localize is not created yet, it ask you the selector. Ignore  
> it and
> select localize  (the first option)
> 6) ctrl + a (select all text) and try to create the method localize.  
> It can
> be just empty this method.
> 7) try to save
> 8) your image may be freeze :)
>
>
> Can you confirm this ? I am sorry I said I was on Linux. I thought I  
> was at
> home, but  not, unfortunately I am with Windows at work :(
>
> Cheers,
>
> Mariano
>
>
> On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel  
> <[hidden email]>wrote:
>
>>> 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 more you want me to test ?
>>
>> Alexandre
>>
>>
>>
>>>
>>>
>>>> Cheers,
>>>>
>>>> Mariano
>>>>
>>>> _______________________________________________
>>>> Pharo-project mailing list
>>>> [hidden email]
>>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>>>
>>>
>>>
>>>
>>> --
>>> Best regards,
>>> Igor Stasenko AKA sig.
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> [hidden email]
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> [hidden email]
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Alexandre Bergel
In reply to this post by Mariano Martinez Peck
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:

> Fuck....It 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 storeOn: aStream ]
>         ifFalse: [ self storeOn: aStream ]
>
> 4)  save it and put initials if asked.
> 5) as localize is not created yet, it ask you the selector. Ignore  
> it and select localize  (the first option)
> 6) ctrl + a (select all text) and try to create the method localize.  
> It can be just empty this method.
> 7) try to save
> 8) your image may be freeze :)
>
>
> Can you confirm this ? I am sorry I said I was on Linux. I thought I  
> was at home, but  not, unfortunately I am with Windows at work :(
>
> Cheers,
>
> Mariano
>
>
> On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel  
> <[hidden email]> wrote:
> > 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 more you want me to test ?
>
> Alexandre
>
>
>
> >
> >
> > > Cheers,
> > >
> > > Mariano
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> > >
> >
> >
> >
> > --
> > Best regards,
> > Igor Stasenko AKA sig.
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Mariano Martinez Peck
In reply to this post by Adrian Lienhard


On Tue, May 5, 2009 at 3:34 PM, Adrian Lienhard <[hidden email]> 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 you first
implement #localize and then implement #printOn: it seems to work ok.

I tried that and works ok.
 

In any case, overriding String>>printOn: does not seem to be a good
idea.
 
Yes. I know. But, there is a reason. I need to get int18 in Pier components because my final user (spanish) will do thing with Pier, like posting, and I need to have it in Spanish. I thought I could override String >> printOn:    so that translate to spanish. However, I couldn't test this solution. I was going to tested and then send an email to Pier list and see if there is a better solution for this. I don't want to touch Pier code.

Thanks for your concern about that ;)


HTH,
Adrian

On May 5, 2009, at 17:52 , Mariano Martinez Peck wrote:

> Fuck....It 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 storeOn: aStream ]
>        ifFalse: [ self storeOn: aStream ]
>
> 4)  save it and put initials if asked.
> 5) as localize is not created yet, it ask you the selector. Ignore
> it and
> select localize  (the first option)
> 6) ctrl + a (select all text) and try to create the method localize.
> It can
> be just empty this method.
> 7) try to save
> 8) your image may be freeze :)
>
>
> Can you confirm this ? I am sorry I said I was on Linux. I thought I
> was at
> home, but  not, unfortunately I am with Windows at work :(
>
> Cheers,
>
> Mariano
>
>
> On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> <[hidden email]>wrote:
>
>>> 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 more you want me to test ?
>>
>> Alexandre
>>
>>
>>
>>>
>>>
>>>> Cheers,
>>>>
>>>> Mariano
>>>>
>>>> _______________________________________________
>>>> Pharo-project mailing list
>>>> [hidden email]
>>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>>>
>>>
>>>
>>>
>>> --
>>> Best regards,
>>> Igor Stasenko AKA sig.
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> [hidden email]
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> [hidden email]
>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Mariano Martinez Peck
In reply to this post by Alexandre Bergel


On Tue, May 5, 2009 at 3:44 PM, Alexandre Bergel <[hidden email]> 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 the help!

Mariano
 


Alexandre


On 5 May 2009, at 17:52, Mariano Martinez Peck wrote:

> Fuck....It 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 storeOn: aStream ]
>         ifFalse: [ self storeOn: aStream ]
>
> 4)  save it and put initials if asked.
> 5) as localize is not created yet, it ask you the selector. Ignore
> it and select localize  (the first option)
> 6) ctrl + a (select all text) and try to create the method localize.
> It can be just empty this method.
> 7) try to save
> 8) your image may be freeze :)
>
>
> Can you confirm this ? I am sorry I said I was on Linux. I thought I
> was at home, but  not, unfortunately I am with Windows at work :(
>
> Cheers,
>
> Mariano
>
>
> On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> <[hidden email]> wrote:
> > 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 more you want me to test ?
>
> Alexandre
>
>
>
> >
> >
> > > Cheers,
> > >
> > > Mariano
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> project
> > >
> >
> >
> >
> > --
> > Best regards,
> > Igor Stasenko AKA sig.
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Stéphane Ducasse
In reply to this post by Mariano Martinez Peck
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,
>
> Mariano
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Stéphane Ducasse
In reply to this post by Mariano Martinez Peck
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 <[hidden email]>  
> 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 you first
> implement #localize and then implement #printOn: it seems to work ok.
>
> I tried that and works ok.
>
>
> In any case, overriding String>>printOn: does not seem to be a good
> idea.
>
> Yes. I know. But, there is a reason. I need to get int18 in Pier  
> components because my final user (spanish) will do thing with Pier,  
> like posting, and I need to have it in Spanish. I thought I could  
> override String >> printOn:    so that translate to spanish.  
> However, I couldn't test this solution. I was going to tested and  
> then send an email to Pier list and see if there is a better  
> solution for this. I don't want to touch Pier code.
>
> Thanks for your concern about that ;)
>
>
> HTH,
> Adrian
>
> On May 5, 2009, at 17:52 , Mariano Martinez Peck wrote:
>
> > Fuck....It 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 storeOn: aStream ]
> >        ifFalse: [ self storeOn: aStream ]
> >
> > 4)  save it and put initials if asked.
> > 5) as localize is not created yet, it ask you the selector. Ignore
> > it and
> > select localize  (the first option)
> > 6) ctrl + a (select all text) and try to create the method localize.
> > It can
> > be just empty this method.
> > 7) try to save
> > 8) your image may be freeze :)
> >
> >
> > Can you confirm this ? I am sorry I said I was on Linux. I thought I
> > was at
> > home, but  not, unfortunately I am with Windows at work :(
> >
> > Cheers,
> >
> > Mariano
> >
> >
> > On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> > <[hidden email]>wrote:
> >
> >>> 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 more you want me to test ?
> >>
> >> Alexandre
> >>
> >>
> >>
> >>>
> >>>
> >>>> Cheers,
> >>>>
> >>>> Mariano
> >>>>
> >>>> _______________________________________________
> >>>> Pharo-project mailing list
> >>>> [hidden email]
> >>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >>>>
> >>>
> >>>
> >>>
> >>> --
> >>> Best regards,
> >>> Igor Stasenko AKA sig.
> >>>
> >>> _______________________________________________
> >>> Pharo-project mailing list
> >>> [hidden email]
> >>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> >>>
> >>> _______________________________________________
> >>> Pharo-project mailing list
> >>> [hidden email]
> >>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> >>
> >> --
> >> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> >> Alexandre Bergel  http://www.bergel.eu
> >> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >>
> >>
> >>
> >>
> >>
> >>
> >> _______________________________________________
> >> Pharo-project mailing list
> >> [hidden email]
> >> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >>
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Michael Roberts-2
On Tue, May 5, 2009 at 9:21 PM, Stéphane Ducasse
<[hidden email]> 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 left for tool support.

Mike

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Mariano Martinez Peck
In reply to this post by Stéphane Ducasse


On Tue, May 5, 2009 at 7:21 PM, Stéphane Ducasse <[hidden email]> 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 you can read it and tell me if this (displayString could help me in this case).

Thanks for the help!

 

Stef

On May 5, 2009, at 7:29 PM, Mariano Martinez Peck wrote:

>
>
> On Tue, May 5, 2009 at 3:34 PM, Adrian Lienhard <[hidden email]>
> 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 you first
> implement #localize and then implement #printOn: it seems to work ok.
>
> I tried that and works ok.
>
>
> In any case, overriding String>>printOn: does not seem to be a good
> idea.
>
> Yes. I know. But, there is a reason. I need to get int18 in Pier
> components because my final user (spanish) will do thing with Pier,
> like posting, and I need to have it in Spanish. I thought I could
> override String >> printOn:    so that translate to spanish.
> However, I couldn't test this solution. I was going to tested and
> then send an email to Pier list and see if there is a better
> solution for this. I don't want to touch Pier code.
>
> Thanks for your concern about that ;)
>
>
> HTH,
> Adrian
>
> On May 5, 2009, at 17:52 , Mariano Martinez Peck wrote:
>
> > Fuck....It 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 storeOn: aStream ]
> >        ifFalse: [ self storeOn: aStream ]
> >
> > 4)  save it and put initials if asked.
> > 5) as localize is not created yet, it ask you the selector. Ignore
> > it and
> > select localize  (the first option)
> > 6) ctrl + a (select all text) and try to create the method localize.
> > It can
> > be just empty this method.
> > 7) try to save
> > 8) your image may be freeze :)
> >
> >
> > Can you confirm this ? I am sorry I said I was on Linux. I thought I
> > was at
> > home, but  not, unfortunately I am with Windows at work :(
> >
> > Cheers,
> >
> > Mariano
> >
> >
> > On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> > <[hidden email]>wrote:
> >
> >>> 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 more you want me to test ?
> >>
> >> Alexandre
> >>
> >>
> >>
> >>>
> >>>
> >>>> Cheers,
> >>>>
> >>>> Mariano
> >>>>
> >>>> _______________________________________________
> >>>> Pharo-project mailing list
> >>>> [hidden email]
> >>>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >>>>
> >>>
> >>>
> >>>
> >>> --
> >>> Best regards,
> >>> Igor Stasenko AKA sig.
> >>>
> >>> _______________________________________________
> >>> Pharo-project mailing list
> >>> [hidden email]
> >>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> project
> >>>
> >>> _______________________________________________
> >>> Pharo-project mailing list
> >>> [hidden email]
> >>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> project
> >>
> >> --
> >> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> >> Alexandre Bergel  http://www.bergel.eu
> >> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >>
> >>
> >>
> >>
> >>
> >>
> >> _______________________________________________
> >> Pharo-project mailing list
> >> [hidden email]
> >> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >>
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Alexandre Bergel
In reply to this post by Mariano Martinez Peck
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 storeOn: aStream ]


No freeze. I haven't tried to create printOn: before creating  
localize. It may freeze, but this is expected.

Alexandre

On 5 May 2009, at 19:29, Mariano Martinez Peck wrote:

>
>
> On Tue, May 5, 2009 at 3:44 PM, Alexandre Bergel  
> <[hidden email]> 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 the help!
>
> Mariano
>
>
>
> Alexandre
>
>
> On 5 May 2009, at 17:52, Mariano Martinez Peck wrote:
>
> > Fuck....It 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 storeOn: aStream ]
> >         ifFalse: [ self storeOn: aStream ]
> >
> > 4)  save it and put initials if asked.
> > 5) as localize is not created yet, it ask you the selector. Ignore
> > it and select localize  (the first option)
> > 6) ctrl + a (select all text) and try to create the method localize.
> > It can be just empty this method.
> > 7) try to save
> > 8) your image may be freeze :)
> >
> >
> > Can you confirm this ? I am sorry I said I was on Linux. I thought I
> > was at home, but  not, unfortunately I am with Windows at work :(
> >
> > Cheers,
> >
> > Mariano
> >
> >
> > On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> > <[hidden email]> wrote:
> > > 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 more you want me to test ?
> >
> > Alexandre
> >
> >
> >
> > >
> > >
> > > > Cheers,
> > > >
> > > > Mariano
> > > >
> > > > _______________________________________________
> > > > Pharo-project mailing list
> > > > [hidden email]
> > > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> > project
> > > >
> > >
> > >
> > >
> > > --
> > > Best regards,
> > > Igor Stasenko AKA sig.
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> >
> > --
> > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > Alexandre Bergel  http://www.bergel.eu
> > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Mariano Martinez Peck


On Wed, May 6, 2009 at 4:26 AM, Alexandre Bergel <[hidden email]> wrote:
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 storeOn: aStream ]


No freeze. I haven't tried to create printOn: before creating
localize. It may freeze, but this is expected.

Ok then. Closed incident. I was my ignorance.

Thanks for the test and help.

Mariano

 

Alexandre

On 5 May 2009, at 19:29, Mariano Martinez Peck wrote:

>
>
> On Tue, May 5, 2009 at 3:44 PM, Alexandre Bergel
> <[hidden email]> 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 the help!
>
> Mariano
>
>
>
> Alexandre
>
>
> On 5 May 2009, at 17:52, Mariano Martinez Peck wrote:
>
> > Fuck....It 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 storeOn: aStream ]
> >         ifFalse: [ self storeOn: aStream ]
> >
> > 4)  save it and put initials if asked.
> > 5) as localize is not created yet, it ask you the selector. Ignore
> > it and select localize  (the first option)
> > 6) ctrl + a (select all text) and try to create the method localize.
> > It can be just empty this method.
> > 7) try to save
> > 8) your image may be freeze :)
> >
> >
> > Can you confirm this ? I am sorry I said I was on Linux. I thought I
> > was at home, but  not, unfortunately I am with Windows at work :(
> >
> > Cheers,
> >
> > Mariano
> >
> >
> > On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> > <[hidden email]> wrote:
> > > 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 more you want me to test ?
> >
> > Alexandre
> >
> >
> >
> > >
> > >
> > > > Cheers,
> > > >
> > > > Mariano
> > > >
> > > > _______________________________________________
> > > > Pharo-project mailing list
> > > > [hidden email]
> > > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> > project
> > > >
> > >
> > >
> > >
> > > --
> > > Best regards,
> > > Igor Stasenko AKA sig.
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> project
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> project
> >
> > --
> > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > Alexandre Bergel  http://www.bergel.eu
> > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: Add a method to String freezes my pharo image

Alexandre Bergel
> Ok then. Closed incident. I was my ignorance.
>
> Thanks for the test and help.

No problem at all

Cheers,
Alexandre

>
> On 5 May 2009, at 19:29, Mariano Martinez Peck wrote:
>
> >
> >
> > On Tue, May 5, 2009 at 3:44 PM, Alexandre Bergel
> > <[hidden email]> 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 the help!
> >
> > Mariano
> >
> >
> >
> > Alexandre
> >
> >
> > On 5 May 2009, at 17:52, Mariano Martinez Peck wrote:
> >
> > > Fuck....It 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 storeOn: aStream ]
> > >         ifFalse: [ self storeOn: aStream ]
> > >
> > > 4)  save it and put initials if asked.
> > > 5) as localize is not created yet, it ask you the selector. Ignore
> > > it and select localize  (the first option)
> > > 6) ctrl + a (select all text) and try to create the method  
> localize.
> > > It can be just empty this method.
> > > 7) try to save
> > > 8) your image may be freeze :)
> > >
> > >
> > > Can you confirm this ? I am sorry I said I was on Linux. I  
> thought I
> > > was at home, but  not, unfortunately I am with Windows at work :(
> > >
> > > Cheers,
> > >
> > > Mariano
> > >
> > >
> > > On Tue, May 5, 2009 at 2:40 PM, Alexandre Bergel
> > > <[hidden email]> wrote:
> > > > 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 more you want me to test ?
> > >
> > > Alexandre
> > >
> > >
> > >
> > > >
> > > >
> > > > > Cheers,
> > > > >
> > > > > Mariano
> > > > >
> > > > > _______________________________________________
> > > > > Pharo-project mailing list
> > > > > [hidden email]
> > > > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> > > project
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > Best regards,
> > > > Igor Stasenko AKA sig.
> > > >
> > > > _______________________________________________
> > > > Pharo-project mailing list
> > > > [hidden email]
> > > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> > project
> > > >
> > > > _______________________________________________
> > > > Pharo-project mailing list
> > > > [hidden email]
> > > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-
> > project
> > >
> > > --
> > > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > > Alexandre Bergel  http://www.bergel.eu
> > > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> > >
> > >
> > >
> > >
> > >
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > [hidden email]
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- 
> project
> >
> > --
> > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > Alexandre Bergel  http://www.bergel.eu
> > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
> > _______________________________________________
> > Pharo-project mailing list
> > [hidden email]
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project