Highlight problem with glamour

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

Highlight problem with glamour

Fabrizio Perin
Hi,
i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.

 | browser |
       browser := GLMTabulator new.
       browser
               column: #details.
               
       "if you need initial display"
       browser transmit to: #details; andShow: [:a |
               a text display: [:x |
                                | string |
                                string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
                                (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
       
       browser openOn: 5

Any idea?

Cheers,

Fabrizio
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Highlight problem with glamour

Fabrizio Perin
It basically breaks after 4096 characters.


On 12 May 2011, at 16:02, Fabrizio Perin wrote:

> Hi,
> i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.
>
> | browser |
>       browser := GLMTabulator new.
>       browser
>               column: #details.
>
>       "if you need initial display"
>       browser transmit to: #details; andShow: [:a |
>               a text display: [:x |
> | string |
> string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
> (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
>
>       browser openOn: 5
>
> Any idea?
>
> Cheers,
>
> Fabrizio
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Highlight problem with glamour

Tudor Girba
Thanks, Fabrizio.

I noticed a similar problem with highlighting Java code, but I thought it was related to the grammar.

I CC-ed the Pharo mailing list.

Anyone knows why it would be a problem to highlight text with more than 4096 characters in a TextMorph?

Cheers,
Doru


On 12 May 2011, at 16:03, Fabrizio Perin wrote:

> It basically breaks after 4096 characters.
>
>
> On 12 May 2011, at 16:02, Fabrizio Perin wrote:
>
>> Hi,
>> i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.
>>
>> | browser |
>>      browser := GLMTabulator new.
>>      browser
>>              column: #details.
>>
>>      "if you need initial display"
>>      browser transmit to: #details; andShow: [:a |
>>              a text display: [:x |
>> | string |
>> string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
>> (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
>>
>>      browser openOn: 5
>>
>> Any idea?
>>
>> Cheers,
>>
>> Fabrizio
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
www.tudorgirba.com

"The coherence of a trip is given by the clearness of the goal."





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Highlight problem with glamour

Fabrizio Perin
Jorge figure out that in Pharo 1.1 it works.

Cheers,

Fabrizio

On 12 May 2011, at 16:10, Tudor Girba wrote:

> Thanks, Fabrizio.
>
> I noticed a similar problem with highlighting Java code, but I thought it was related to the grammar.
>
> I CC-ed the Pharo mailing list.
>
> Anyone knows why it would be a problem to highlight text with more than 4096 characters in a TextMorph?
>
> Cheers,
> Doru
>
>
> On 12 May 2011, at 16:03, Fabrizio Perin wrote:
>
>> It basically breaks after 4096 characters.
>>
>>
>> On 12 May 2011, at 16:02, Fabrizio Perin wrote:
>>
>>> Hi,
>>> i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.
>>>
>>> | browser |
>>>     browser := GLMTabulator new.
>>>     browser
>>>             column: #details.
>>>
>>>     "if you need initial display"
>>>     browser transmit to: #details; andShow: [:a |
>>>             a text display: [:x |
>>> | string |
>>> string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
>>> (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
>>>
>>>     browser openOn: 5
>>>
>>> Any idea?
>>>
>>> Cheers,
>>>
>>> Fabrizio
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> www.tudorgirba.com
>
> "The coherence of a trip is given by the clearness of the goal."
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Marcus Denker-4
In reply to this post by Fabrizio Perin

On May 12, 2011, at 4:10 PM, Tudor Girba wrote:

> Thanks, Fabrizio.
>
> I noticed a similar problem with highlighting Java code, but I thought it was related to the grammar.
>
> I CC-ed the Pharo mailing list.
>
> Anyone knows why it would be a problem to highlight text with more than 4096 characters in a TextMorph?
>

Which version of Pharo are you using?

> Cheers,
> Doru
>
>
> On 12 May 2011, at 16:03, Fabrizio Perin wrote:
>
>> It basically breaks after 4096 characters.
>>
>>
>> On 12 May 2011, at 16:02, Fabrizio Perin wrote:
>>
>>> Hi,
>>> i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.
>>>
>>> | browser |
>>>     browser := GLMTabulator new.
>>>     browser
>>>             column: #details.
>>>
>>>     "if you need initial display"
>>>     browser transmit to: #details; andShow: [:a |
>>>             a text display: [:x |
>>> | string |
>>> string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
>>> (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
>>>
>>>     browser openOn: 5
>>>
>>> Any idea?
>>>
>>> Cheers,
>>>
>>> Fabrizio
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> www.tudorgirba.com
>
> "The coherence of a trip is given by the clearness of the goal."
>
>
>
>
>

--
Marcus Denker  -- http://www.marcusdenker.de
INRIA Lille -- Nord Europe. Team RMoD.


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Fabrizio Perin
Hi Markus,
seems that on the 1.1 it was working. after that no. The current textlint  is on
Pharo1.2.1
Latest update: #12345

Cheers,

Fabrizio

 
On 12 May 2011, at 16:30, Marcus Denker wrote:

>
> On May 12, 2011, at 4:10 PM, Tudor Girba wrote:
>
>> Thanks, Fabrizio.
>>
>> I noticed a similar problem with highlighting Java code, but I thought it was related to the grammar.
>>
>> I CC-ed the Pharo mailing list.
>>
>> Anyone knows why it would be a problem to highlight text with more than 4096 characters in a TextMorph?
>>
>
> Which version of Pharo are you using?
>
>> Cheers,
>> Doru
>>
>>
>> On 12 May 2011, at 16:03, Fabrizio Perin wrote:
>>
>>> It basically breaks after 4096 characters.
>>>
>>>
>>> On 12 May 2011, at 16:02, Fabrizio Perin wrote:
>>>
>>>> Hi,
>>>> i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.
>>>>
>>>> | browser |
>>>>    browser := GLMTabulator new.
>>>>    browser
>>>>            column: #details.
>>>>
>>>>    "if you need initial display"
>>>>    browser transmit to: #details; andShow: [:a |
>>>>            a text display: [:x |
>>>> | string |
>>>> string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
>>>> (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
>>>>
>>>>    browser openOn: 5
>>>>
>>>> Any idea?
>>>>
>>>> Cheers,
>>>>
>>>> Fabrizio
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> [hidden email]
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> www.tudorgirba.com
>>
>> "The coherence of a trip is given by the clearness of the goal."
>>
>>
>>
>>
>>
>
> --
> Marcus Denker  -- http://www.marcusdenker.de
> INRIA Lille -- Nord Europe. Team RMoD.
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Tudor Girba
In reply to this post by Marcus Denker-4
Hi,

On 12 May 2011, at 16:30, Marcus Denker wrote:

>
> On May 12, 2011, at 4:10 PM, Tudor Girba wrote:
>
>> Thanks, Fabrizio.
>>
>> I noticed a similar problem with highlighting Java code, but I thought it was related to the grammar.
>>
>> I CC-ed the Pharo mailing list.
>>
>> Anyone knows why it would be a problem to highlight text with more than 4096 characters in a TextMorph?
>>
>
> Which version of Pharo are you using?

It is Pharo 1.2.1.

Cheers,
Doru



>> Cheers,
>> Doru
>>
>>
>> On 12 May 2011, at 16:03, Fabrizio Perin wrote:
>>
>>> It basically breaks after 4096 characters.
>>>
>>>
>>> On 12 May 2011, at 16:02, Fabrizio Perin wrote:
>>>
>>>> Hi,
>>>> i was playing with textlint and i noticed that the highlight is broken. Seems that the problem is related to the length of the text. If you try to execute the script below you notice that the highlight doesn't work. If you lower 1000 to 100 it works. It seems that the break point is 194. After that it dies.
>>>>
>>>> | browser |
>>>>    browser := GLMTabulator new.
>>>>    browser
>>>>            column: #details.
>>>>
>>>>    "if you need initial display"
>>>>    browser transmit to: #details; andShow: [:a |
>>>>            a text display: [:x |
>>>> | string |
>>>> string := ''.1 to: 1000 do: [:i | string := string, 'jjjjj j j j j j jjj j'].
>>>> (string asText addAttribute: TextColor red), ('jjjjj j j j j j jjj j' asText) ] ].
>>>>
>>>>    browser openOn: 5
>>>>
>>>> Any idea?
>>>>
>>>> Cheers,
>>>>
>>>> Fabrizio
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> [hidden email]
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> www.tudorgirba.com
>>
>> "The coherence of a trip is given by the clearness of the goal."
>>
>>
>>
>>
>>
>
> --
> Marcus Denker  -- http://www.marcusdenker.de
> INRIA Lille -- Nord Europe. Team RMoD.
>
>

--
www.tudorgirba.com

"Beauty is where we see it."




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Tudor Girba
In reply to this post by Tudor Girba
Hi,

On 12 May 2011, at 16:44, Marcus Denker wrote:

>
> On May 12, 2011, at 4:42 PM, Tudor Girba wrote:
>>
>> I did not mean that someone should look into the posted code. I was in a hurry and I simply asked a direct question if anyone has any idea of why 4096 would be a limit for highlighting text in TextMorph. The question had nothing to do with Glamour, but I am sorry if the form of the mail made you waste your time.
>>
>> In any case, I will look into this in more details.
>>
>
>
> maybe this is relevant? We should release 1.2.2....
>
> http://code.google.com/p/pharo/issues/detail?id=4157

Hmm. Sounds similar, but I am too ignorant.

I could reproduce the problem outside of Glamour. The issue is indeed not with TextMorph, but with PluggableTextMorph:

string := ''.
1 to: 1000 do: [:i | string := string, 'abcde'].
text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
(PluggableTextMorph on: text text: #yourself accept: #value) openInWindow

Cheers,
Doru


>
> --
> Marcus Denker  -- http://www.marcusdenker.de
> INRIA Lille -- Nord Europe. Team RMoD.
>
>

--
www.tudorgirba.com

"Problem solving should be focused on describing
the problem in a way that makes the solution obvious."





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Marcus Denker-4
In reply to this post by Tudor Girba

On May 12, 2011, at 4:51 PM, Tudor Girba wrote:

> Hi,
>
> On 12 May 2011, at 16:44, Marcus Denker wrote:
>
>>
>> On May 12, 2011, at 4:42 PM, Tudor Girba wrote:
>>>
>>> I did not mean that someone should look into the posted code. I was in a hurry and I simply asked a direct question if anyone has any idea of why 4096 would be a limit for highlighting text in TextMorph. The question had nothing to do with Glamour, but I am sorry if the form of the mail made you waste your time.
>>>
>>> In any case, I will look into this in more details.
>>>
>>
>>
>> maybe this is relevant? We should release 1.2.2....
>>
>> http://code.google.com/p/pharo/issues/detail?id=4157
>
> Hmm. Sounds similar, but I am too ignorant.
>
> I could reproduce the problem outside of Glamour. The issue is indeed not with TextMorph, but with PluggableTextMorph:
>
> string := ''.
> 1 to: 1000 do: [:i | string := string, 'abcde'].
> text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
> (PluggableTextMorph on: text text: #yourself accept: #value) openInWindow
>


works fine in 1.2.2a


--
Marcus Denker  -- http://www.marcusdenker.de
INRIA Lille -- Nord Europe. Team RMoD.


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Tudor Girba
In reply to this post by Tudor Girba
Hi again,


On 12 May 2011, at 16:51, Tudor Girba wrote:

> Hi,
>
> On 12 May 2011, at 16:44, Marcus Denker wrote:
>
>>
>> On May 12, 2011, at 4:42 PM, Tudor Girba wrote:
>>>
>>> I did not mean that someone should look into the posted code. I was in a hurry and I simply asked a direct question if anyone has any idea of why 4096 would be a limit for highlighting text in TextMorph. The question had nothing to do with Glamour, but I am sorry if the form of the mail made you waste your time.
>>>
>>> In any case, I will look into this in more details.
>>>
>>
>>
>> maybe this is relevant? We should release 1.2.2....
>>
>> http://code.google.com/p/pharo/issues/detail?id=4157
>
> Hmm. Sounds similar, but I am too ignorant.
>
> I could reproduce the problem outside of Glamour. The issue is indeed not with TextMorph, but with PluggableTextMorph:
>
> string := ''.
> 1 to: 1000 do: [:i | string := string, 'abcde'].
> text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
> (PluggableTextMorph on: text text: #yourself accept: #value) openInWindow

I tried the fix attached suggested in issue 4157 and then my test works fine, so I guess it does fix the problem:
http://code.google.com/p/pharo/issues/detail?id=4157

Cheers,
Doru


> Cheers,
> Doru
>
>
>>
>> --
>> Marcus Denker  -- http://www.marcusdenker.de
>> INRIA Lille -- Nord Europe. Team RMoD.
>>
>>
>
> --
> www.tudorgirba.com
>
> "Problem solving should be focused on describing
> the problem in a way that makes the solution obvious."
>
>
>
>

--
www.tudorgirba.com

"There are no old things, there are only old ways of looking at them."




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Fabrizio Perin
Sorry i just tried on a Pharo 1.2.2.a

|string text|
string := ''.
1 to: 1000 do: [:i | string := string, 'abcde'].
text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
(PluggableTextMorph on: text text: #yourself accept: #value) openInWindow

and the problem is still the same. with less characters it works.

Cheers,

Fabrizio

On 12 May 2011, at 16:55, Tudor Girba wrote:

> Hi again,
>
>
> On 12 May 2011, at 16:51, Tudor Girba wrote:
>
>> Hi,
>>
>> On 12 May 2011, at 16:44, Marcus Denker wrote:
>>
>>>
>>> On May 12, 2011, at 4:42 PM, Tudor Girba wrote:
>>>>
>>>> I did not mean that someone should look into the posted code. I was in a hurry and I simply asked a direct question if anyone has any idea of why 4096 would be a limit for highlighting text in TextMorph. The question had nothing to do with Glamour, but I am sorry if the form of the mail made you waste your time.
>>>>
>>>> In any case, I will look into this in more details.
>>>>
>>>
>>>
>>> maybe this is relevant? We should release 1.2.2....
>>>
>>> http://code.google.com/p/pharo/issues/detail?id=4157
>>
>> Hmm. Sounds similar, but I am too ignorant.
>>
>> I could reproduce the problem outside of Glamour. The issue is indeed not with TextMorph, but with PluggableTextMorph:
>>
>> string := ''.
>> 1 to: 1000 do: [:i | string := string, 'abcde'].
>> text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
>> (PluggableTextMorph on: text text: #yourself accept: #value) openInWindow
>
> I tried the fix attached suggested in issue 4157 and then my test works fine, so I guess it does fix the problem:
> http://code.google.com/p/pharo/issues/detail?id=4157
>
> Cheers,
> Doru
>
>
>> Cheers,
>> Doru
>>
>>
>>>
>>> --
>>> Marcus Denker  -- http://www.marcusdenker.de
>>> INRIA Lille -- Nord Europe. Team RMoD.
>>>
>>>
>>
>> --
>> www.tudorgirba.com
>>
>> "Problem solving should be focused on describing
>> the problem in a way that makes the solution obvious."
>>
>>
>>
>>
>
> --
> www.tudorgirba.com
>
> "There are no old things, there are only old ways of looking at them."
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Re: Highlight problem with glamour

Fabrizio Perin
Ok by importing the cs file attached here it works for me too


Is this solution standard in Pahro 1.3 or we have to setup a textlint image include the code in the cs file by our self?

Thanks a lot anyway for the valuable help.

Cheers,

Fabrizio

On 12 May 2011, at 17:32, Fabrizio Perin wrote:

Sorry i just tried on a Pharo 1.2.2.a

|string text|
string := ''.
1 to: 1000 do: [:i | string := string, 'abcde'].
text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
(PluggableTextMorph on: text text: #yourself accept: #value) openInWindow

and the problem is still the same. with less characters it works.

Cheers,

Fabrizio

On 12 May 2011, at 16:55, Tudor Girba wrote:

Hi again,


On 12 May 2011, at 16:51, Tudor Girba wrote:

Hi,

On 12 May 2011, at 16:44, Marcus Denker wrote:


On May 12, 2011, at 4:42 PM, Tudor Girba wrote:

I did not mean that someone should look into the posted code. I was in a hurry and I simply asked a direct question if anyone has any idea of why 4096 would be a limit for highlighting text in TextMorph. The question had nothing to do with Glamour, but I am sorry if the form of the mail made you waste your time.

In any case, I will look into this in more details.



maybe this is relevant? We should release 1.2.2....

http://code.google.com/p/pharo/issues/detail?id=4157

Hmm. Sounds similar, but I am too ignorant.

I could reproduce the problem outside of Glamour. The issue is indeed not with TextMorph, but with PluggableTextMorph:

string := ''.
1 to: 1000 do: [:i | string := string, 'abcde'].
text := ((string asText addAttribute: TextColor red), ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' asText)).
(PluggableTextMorph on: text text: #yourself accept: #value) openInWindow

I tried the fix attached suggested in issue 4157 and then my test works fine, so I guess it does fix the problem:
http://code.google.com/p/pharo/issues/detail?id=4157

Cheers,
Doru


Cheers,
Doru



--
Marcus Denker  -- http://www.marcusdenker.de
INRIA Lille -- Nord Europe. Team RMoD.



--
www.tudorgirba.com

"Problem solving should be focused on describing
the problem in a way that makes the solution obvious."





--
www.tudorgirba.com

"There are no old things, there are only old ways of looking at them."




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev