Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium Milestone-4.3 Component-Famix
Component-SmalltalkImporter
New issue 528 by jannik.l...(a)gmail.com: Remove Category Importer
http://code.google.com/p/moose-technology/issues/detail?id=528
With RPackage, Category importer is useless,
We should remove it.
They are some referecnes in examples in DSM.
Hi Alex,
Any updates of the project about constructing visualizations with Roassal
for the web (with Amber?)?
Did that project get accepted for GSoc? If not, do you plan to have a
version of Roassal that could allow scripting visualizations on the web
(with Seaside)?
Because soon we'll need it ;).
regards,
usman
Updates:
Labels: -Milestone-4.2
Comment #4 on issue 228 by tudor.gi...(a)gmail.com: Nested browsers do not
take "when", or "display" into account
http://code.google.com/p/moose-technology/issues/detail?id=228
(No comment was entered for this change.)
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-Glamour
New issue 757 by tudor.gi...(a)gmail.com: Smalltalk completion appears at
absolute coordinates, instead of relative ones in Finder
http://code.google.com/p/moose-technology/issues/detail?id=757
Try this:
GLMFinder new
show: [:a |
a smalltalkCode ];
openOn: ''.
and then type "1 as".
You will see that the completion appears in the top right of the world,
instead of the top right of the text pane. This only happens in the finder,
and it is likely due to some problems of transforming coordinates.
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 648 by cy.delau...(a)gmail.com: improve overview pyramid
http://code.google.com/p/moose-technology/issues/detail?id=648
Overview pyramid should use colors so that we can easily read the different
results.
Maybe also change the color code (green / blue / red for now.)
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 709 by jannik.l...(a)gmail.com: add Moose-Eclipse-Plugin in Moose
http://code.google.com/p/moose-technology/issues/detail?id=709
I don't know if we integrate it in Moose.
But we need to do something: a web page on the Moose site, with how to load
it.
Updates:
Summary: The table presentation for Glamour should provide dynamic sorting
and column manipulation
Comment #14 on issue 156 by tudor.gi...(a)gmail.com: The table presentation
for Glamour should provide dynamic sorting and column manipulation
http://code.google.com/p/moose-technology/issues/detail?id=156
(No comment was entered for this change.)
Updates:
Labels: -Component-Tools Component-ExternalTools
Comment #1 on issue 254 by tudor.gi...(a)gmail.com: inFusion default
initializer export to MSE
http://code.google.com/p/moose-technology/issues/detail?id=254
(No comment was entered for this change.)
Status: New
Owner: ----
CC: alexandr...(a)gmail.com
Labels: Type-Defect Priority-Critical Component-Roassal Milestone-4.9
New issue 987 by tu...(a)tudorgirba.com: Roassal does not display edges when
the source is not visible
http://code.google.com/p/moose-technology/issues/detail?id=987
Try this:
view nodes: { 1 . 2 }.
view edgeFromAssociation: 2->1.
view horizontalLineLayout horizontalGap: 1000.
I think it is easy to fix, but at the same time it is really annoying, so I
mark it as critical :)
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
Hello,
I am trying to create a roassal minimap in a glamour browser. But I do not
get a minimap when pressing m key.
It might be something to do with how keystrokes are interpreted in Glamour.
can you have a look?
Here's a simple browser with a roassal visualization (adapted from one of
ben's mail on moose-dev).
| browser viewHack |
browser := GLMTabulator new.
browser column: #list; column: #drawing.
browser transmit
to: #list;
andShow: [ :a | a list ].
browser transmit
to: #drawing;
andShow: [ :a | a roassal painting:
[ :moview :collection |
moview raw @ (ROMiniMap new targetView: moview stack).
collection do: [ :x | moview view add: (ROElement spriteOn:
x) + ROLabel + ROBox white ].
ROVerticalLineLayout on: moview view elements.
viewHack := moview view.
] ].
browser transmit
from: #list port:#selection;
to: #drawing;
transformed:
[ :x | | foundElements |
viewHack elements do: [ :el | ROUnhighlightElement on: el ].
targetElement := viewHack elements at: x.
ROFocusView on: targetElement.
ROHighlightElement on: targetElement color: Color red.
viewHack signalUpdate
].
browser openOn: #(1 2 3 4 5 6).