DNU: ROMondrianViewBuilder >> container...

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

DNU: ROMondrianViewBuilder >> container...

Usman Bhatti
I'm getting this error in my visualizations. Should I open a bug entry?
DNU: ROMondrianViewBuilder >> container...

To reproduce: execute the following code in a freshly downloaded moose image, trigger the visualization by right-clicking on a number and selecting the menu item....
| browser |
	browser := GLMTabulator withStatusbar.
	browser column: #one; column: #two.
	browser transmit to: #one; andShow: [ :a |
		a list 
			title: 'Select and trigger from menu';
			display: [:x | 1 to: x ];
			selectionAct: [:list | 
				| value |
				value := list selection * 10. "simulate some custom setup"
				(list pane port: #customSelection) value: value ] 
			entitled:  'Multiply by 10 and then send outside'
			].
	browser transmit to: #two; from: #one port: #customSelection; andShow: [ :a |
		a roassal 
			title: 'Numbers in Roassal';
			painting: [:view :number | 
				view shape label.
				view nodes: (1 to: number).
				view edgesFrom: [:each | each // 5 ].
				view treeLayout.
				ROEaselMorphic new populateMenuOn: view.
				  ]].
	browser openOn: 42

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

Re: DNU: ROMondrianViewBuilder >> container...

abergel
Hi!

I have renamed ROMondrianViewBuilder >> container into ROMondrianViewBuilder >> raw
I cannot try out (internet is bad where I am right now), but it should be very easy to fix

Cheers,
Alexandre


On Jun 15, 2012, at 1:23 AM, Usman Bhatti wrote:

> I'm getting this error in my visualizations. Should I open a bug entry?
> DNU: ROMondrianViewBuilder >> container...
>
> To reproduce: execute the following code in a freshly downloaded moose image, trigger the visualization by right-clicking on a number and selecting the menu item....
> | browser |
> browser := GLMTabulator withStatusbar.
> browser column: #one; column: #two.
> browser transmit to: #one; andShow: [ :a |
> a list
> title: 'Select and trigger from menu';
> display: [:x | 1 to: x ];
> selectionAct: [:list |
> | value |
> value := list selection * 10. "simulate some custom setup"
> (list pane port: #customSelection) value: value ]
> entitled:  'Multiply by 10 and then send outside'
> ].
> browser transmit to: #two; from: #one port: #customSelection; andShow: [ :a |
> a roassal
> title: 'Numbers in Roassal';
> painting: [:view :number |
> view shape label.
> view nodes: (1 to: number).
> view edgesFrom: [:each | each // 5 ].
> view treeLayout.
> ROEaselMorphic new populateMenuOn: view.
>  ]].
> browser openOn: 42
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



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

Re: DNU: ROMondrianViewBuilder >> container...

Usman Bhatti
Hello Alex,

Thanx, it fixed the problem. There is one last method that still references container:

GLMMorphicRoassalRenderer >> render:

should I commit a fix?

On Fri, Jun 15, 2012 at 3:35 AM, Alexandre Bergel <[hidden email]> wrote:
Hi!

I have renamed ROMondrianViewBuilder >> container into ROMondrianViewBuilder >> raw
I cannot try out (internet is bad where I am right now), but it should be very easy to fix

Cheers,
Alexandre


On Jun 15, 2012, at 1:23 AM, Usman Bhatti wrote:

> I'm getting this error in my visualizations. Should I open a bug entry?
> DNU: ROMondrianViewBuilder >> container...
>
> To reproduce: execute the following code in a freshly downloaded moose image, trigger the visualization by right-clicking on a number and selecting the menu item....
> | browser |
>       browser := GLMTabulator withStatusbar.
>       browser column: #one; column: #two.
>       browser transmit to: #one; andShow: [ :a |
>               a list
>                       title: 'Select and trigger from menu';
>                       display: [:x | 1 to: x ];
>                       selectionAct: [:list |
>                               | value |
>                               value := list selection * 10. "simulate some custom setup"
>                               (list pane port: #customSelection) value: value ]
>                       entitled:  'Multiply by 10 and then send outside'
>                       ].
>       browser transmit to: #two; from: #one port: #customSelection; andShow: [ :a |
>               a roassal
>                       title: 'Numbers in Roassal';
>                       painting: [:view :number |
>                               view shape label.
>                               view nodes: (1 to: number).
>                               view edgesFrom: [:each | each // 5 ].
>                               view treeLayout.
>                               ROEaselMorphic new populateMenuOn: view.
>                                 ]].
>       browser openOn: 42
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



_______________________________________________
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: DNU: ROMondrianViewBuilder >> container...

abergel
Glamour needs to be updated. If you have the right to write in its repo, then do it :-)

Alexandre



Le 15 juin 2012 à 15:53, Usman Bhatti <[hidden email]> a écrit :

Hello Alex,

Thanx, it fixed the problem. There is one last method that still references container:

GLMMorphicRoassalRenderer >> render:

should I commit a fix?

On Fri, Jun 15, 2012 at 3:35 AM, Alexandre Bergel <[hidden email]> wrote:
Hi!

I have renamed ROMondrianViewBuilder >> container into ROMondrianViewBuilder >> raw
I cannot try out (internet is bad where I am right now), but it should be very easy to fix

Cheers,
Alexandre


On Jun 15, 2012, at 1:23 AM, Usman Bhatti wrote:

> I'm getting this error in my visualizations. Should I open a bug entry?
> DNU: ROMondrianViewBuilder >> container...
>
> To reproduce: execute the following code in a freshly downloaded moose image, trigger the visualization by right-clicking on a number and selecting the menu item....
> | browser |
>       browser := GLMTabulator withStatusbar.
>       browser column: #one; column: #two.
>       browser transmit to: #one; andShow: [ :a |
>               a list
>                       title: 'Select and trigger from menu';
>                       display: [:x | 1 to: x ];
>                       selectionAct: [:list |
>                               | value |
>                               value := list selection * 10. "simulate some custom setup"
>                               (list pane port: #customSelection) value: value ]
>                       entitled:  'Multiply by 10 and then send outside'
>                       ].
>       browser transmit to: #two; from: #one port: #customSelection; andShow: [ :a |
>               a roassal
>                       title: 'Numbers in Roassal';
>                       painting: [:view :number |
>                               view shape label.
>                               view nodes: (1 to: number).
>                               view edgesFrom: [:each | each // 5 ].
>                               view treeLayout.
>                               ROEaselMorphic new populateMenuOn: view.
>                                 ]].
>       browser openOn: 42
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

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



_______________________________________________
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
Reply | Threaded
Open this post in threaded view
|

Re: DNU: ROMondrianViewBuilder >> container...

Tudor Girba-2
Glamour is already updated to work with this. Please always check against the latest version.

Doru


On 15 Jun 2012, at 09:59, Alexandre Bergel wrote:

> Glamour needs to be updated. If you have the right to write in its repo, then do it :-)
>
> Alexandre
>
>
>
> Le 15 juin 2012 à 15:53, Usman Bhatti <[hidden email]> a écrit :
>
>> Hello Alex,
>>
>> Thanx, it fixed the problem. There is one last method that still references container:
>>
>> GLMMorphicRoassalRenderer >> render:
>>
>> should I commit a fix?
>>
>> On Fri, Jun 15, 2012 at 3:35 AM, Alexandre Bergel <[hidden email]> wrote:
>> Hi!
>>
>> I have renamed ROMondrianViewBuilder >> container into ROMondrianViewBuilder >> raw
>> I cannot try out (internet is bad where I am right now), but it should be very easy to fix
>>
>> Cheers,
>> Alexandre
>>
>>
>> On Jun 15, 2012, at 1:23 AM, Usman Bhatti wrote:
>>
>> > I'm getting this error in my visualizations. Should I open a bug entry?
>> > DNU: ROMondrianViewBuilder >> container...
>> >
>> > To reproduce: execute the following code in a freshly downloaded moose image, trigger the visualization by right-clicking on a number and selecting the menu item....
>> > | browser |
>> >       browser := GLMTabulator withStatusbar.
>> >       browser column: #one; column: #two.
>> >       browser transmit to: #one; andShow: [ :a |
>> >               a list
>> >                       title: 'Select and trigger from menu';
>> >                       display: [:x | 1 to: x ];
>> >                       selectionAct: [:list |
>> >                               | value |
>> >                               value := list selection * 10. "simulate some custom setup"
>> >                               (list pane port: #customSelection) value: value ]
>> >                       entitled:  'Multiply by 10 and then send outside'
>> >                       ].
>> >       browser transmit to: #two; from: #one port: #customSelection; andShow: [ :a |
>> >               a roassal
>> >                       title: 'Numbers in Roassal';
>> >                       painting: [:view :number |
>> >                               view shape label.
>> >                               view nodes: (1 to: number).
>> >                               view edgesFrom: [:each | each // 5 ].
>> >                               view treeLayout.
>> >                               ROEaselMorphic new populateMenuOn: view.
>> >                                 ]].
>> >       browser openOn: 42
>> >
>> > _______________________________________________
>> > Moose-dev mailing list
>> > [hidden email]
>> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>> _______________________________________________
>> 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

--
www.tudorgirba.com

"Be rather willing to give than demanding to get."




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

Re: DNU: ROMondrianViewBuilder >> container...

Usman Bhatti


On Fri, Jun 15, 2012 at 12:53 PM, Tudor Girba <[hidden email]> wrote:
Glamour is already updated to work with this. Please always check against the latest version.

Indeed. 
tx.
 

Doru


On 15 Jun 2012, at 09:59, Alexandre Bergel wrote:

> Glamour needs to be updated. If you have the right to write in its repo, then do it :-)
>
> Alexandre
>
>
>
> Le 15 juin 2012 à 15:53, Usman Bhatti <[hidden email]> a écrit :
>
>> Hello Alex,
>>
>> Thanx, it fixed the problem. There is one last method that still references container:
>>
>> GLMMorphicRoassalRenderer >> render:
>>
>> should I commit a fix?
>>
>> On Fri, Jun 15, 2012 at 3:35 AM, Alexandre Bergel <[hidden email]> wrote:
>> Hi!
>>
>> I have renamed ROMondrianViewBuilder >> container into ROMondrianViewBuilder >> raw
>> I cannot try out (internet is bad where I am right now), but it should be very easy to fix
>>
>> Cheers,
>> Alexandre
>>
>>
>> On Jun 15, 2012, at 1:23 AM, Usman Bhatti wrote:
>>
>> > I'm getting this error in my visualizations. Should I open a bug entry?
>> > DNU: ROMondrianViewBuilder >> container...
>> >
>> > To reproduce: execute the following code in a freshly downloaded moose image, trigger the visualization by right-clicking on a number and selecting the menu item....
>> > | browser |
>> >       browser := GLMTabulator withStatusbar.
>> >       browser column: #one; column: #two.
>> >       browser transmit to: #one; andShow: [ :a |
>> >               a list
>> >                       title: 'Select and trigger from menu';
>> >                       display: [:x | 1 to: x ];
>> >                       selectionAct: [:list |
>> >                               | value |
>> >                               value := list selection * 10. "simulate some custom setup"
>> >                               (list pane port: #customSelection) value: value ]
>> >                       entitled:  'Multiply by 10 and then send outside'
>> >                       ].
>> >       browser transmit to: #two; from: #one port: #customSelection; andShow: [ :a |
>> >               a roassal
>> >                       title: 'Numbers in Roassal';
>> >                       painting: [:view :number |
>> >                               view shape label.
>> >                               view nodes: (1 to: number).
>> >                               view edgesFrom: [:each | each // 5 ].
>> >                               view treeLayout.
>> >                               ROEaselMorphic new populateMenuOn: view.
>> >                                 ]].
>> >       browser openOn: 42
>> >
>> > _______________________________________________
>> > Moose-dev mailing list
>> > [hidden email]
>> > https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>> _______________________________________________
>> 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

--
www.tudorgirba.com

"Be rather willing to give than demanding to get."




_______________________________________________
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