Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 805 by galois.z...(a)gmail.com: Can't import example model from
SCD:MSE webpage
http://code.google.com/p/moose-technology/issues/detail?id=805
I'm trying to test Moose and for that I wanted to import the meta-model
that describes the structure of the package LIB from the SDC:MSE webpage
(http://scg.unibe.ch/wiki/projects/fame/mse). THe problem is that the tool
produces an error saying "Element 'FM3.Package' not found".
1 - Copy the model text from the webpage and save it in a *.mse file;
2 - In Moose choose the Import model from MSE file
3 - Select the *.mse file you created in 1.
4 - Moose will present an error window with the title "Error:
Element 'FM3.Package' not found'
I juts downloaded Moose from the website. It is version 4.6.
I'm running Moose on a Mac sunning OS X 10.7.4.
The Java version I'm running is:
java version "1.6.0_31"
Java(TM) SE Runtime Environment (build 1.6.0_31-b04-415-11M3635)
Java HotSpot(TM) 64-Bit Server VM (build 20.6-b01-415, mixed mode)
Please fill in the labels with the following information:
* Type-Defect
* Component-FAMIX
Hi Ben (Coman :)),
Currently, Mondrian-Pharo-Morphic is branched.
I tried to understand the rubberBand-related code, but I did not quite understand its purpose.
Could you please merge the two branches? Also, in the process, please remove the active writing to Transcript.
Cheers,
Doru
--
www.tudorgirba.com
"Not knowing how to do something is not an argument for how it cannot be done."
Hi,
I'm trying to open a Roassal visualization in glamour. I have the following
script:
| browser action|
browser := GLMTabulator new.
browser
row: [ :r | r column: #columnA; column: #columnB ];
row: #seconRow.
browser transmit to: #columnA; andShow: [ :a |
a list display: [#('Value 1' 'Value 2' 'Value 3') ];
dynamicActionsOnSelection: [:list | self actionsFor: list ]
].
browser transmit from: #columnA; to: #columnB; andShow: [ :a |
a list titleIcon: GLMUIThemeExtraIcons glamorousBrowse
;title:'Data'; display:#('data A' 'data B' 'data C').
].
browser openOn: MooseModel root allModels anyOne.
actionsFor: aPresentation
|actions|
actions:=OrderedCollection new.
actions add: ((GLMGenericAction new)
action: [:each |AMerlinWizard openWizard(each selection)];
title: 'Open visualization';
yourself).
^actions.
Specifically, when I click in the option "Open visualization" of the popup
menu (see dynamicActionsOnSelection) a Merlin Wizard is opened (there are
some options that the user has to select) to create a Roassal (or Mondrian)
visualization. Currently, I'm creating the visualization in a new view.
However, I would like to open it in the #seconRow pane. Someone please
could tell me how I can accomplish this? Thanks
Cheers
Santiago
--
Santiago Vidal
Status: New
Owner: andreho...(a)gmail.com
Labels: Type-Enhancement Priority-Medium Component-EyeSee
New issue 803 by andreho...(a)gmail.com: Improve pie and kiviat charts
http://code.google.com/p/moose-technology/issues/detail?id=803
Pie and kiviat charts should work with legends.
Kiviat chart to plot metric labels on axis.
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Finder Milestone-4.7
New issue 802 by tudor.gi...(a)gmail.com: The MetaBrowser spawns an error
when wanting to browse the implementation of a property
http://code.google.com/p/moose-technology/issues/detail?id=802
browser := MooseMetaExplorer new browser.
browser openOn: MooseModel meta.
(browser pane port: #entityToSelect) value: FAMIXClass mooseDescription.
(browser pane port: #propertyToSelect) value: FAMIXClass mooseDescription
allComplexAttributes anyOne.
Then switch to the second pane and press Command+b.
Status: New
Owner: tudor.gi...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Glamour Milestone-4.7
New issue 804 by tudor.gi...(a)gmail.com: GLMRoassalEasel should support the
Mondrian API of Roassal
http://code.google.com/p/moose-technology/issues/detail?id=804
Right now, it provides ROView as an input. Instead, it should provide
ROMondrianViewBuilder
Hi,
I would like to get Athens for Balloon loaded by default in a Moose
image. The idea would be to make it easy for people to migrate to this
interface, to make the code ready for Cairo.
In the process of testing it, I noticed that the text examples do not
work with StrikeFont. Please note that we are using Pharo 1.4.
I tried it by doing the followings:
Gofer new
squeaksource: 'Athens';
package: 'ConfigurationOfAthens';
load.
((Smalltalk at: #ConfigurationOfAthens) project version: #development)
load: 'Athens-Morphic'.
And then:
AthensTextRenderTest test1.
The problem seems to be caused by a missing method: StrikeFont>>getPreciseAscent
@Igor: Is this a missing method, or is it something else? Would it be
difficult to fix this?
Cheers,
Doru
--
www.tudorgirba.com
"Every thing has its own flow"
Hi everybody, i am currently implementing a preProcessor which is a kind of
PPParser, so you can combine it like any parser. At this moment, it is able
to manage a simple transformation (a matched regular expression is replaced
by a substitution string) and it release the stream in a correct state
after his action (the remaining data are not preprocessed and the position
is correct).
Do you think i should release it directly in PetitParser or in another
module?
--
*Guillaume Larcheveque*