Updates:
Summary: Moose crashes when importing Citezen
(OrderedCollection(Object)>>doesNotUnderstand: #unsafeAdd:)
Comment #3 on issue 736 by tudor.gi...(a)gmail.com: Moose crashes when
importing Citezen (OrderedCollection(Object)>>doesNotUnderstand:
#unsafeAdd:)
http://code.google.com/p/moose-technology/issues/detail?id=736
(No comment was entered for this change.)
Status: New
Owner: ----
CC: anquetil...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Famix
New issue 907 by tu...(a)tudorgirba.com: VerveineJ does not export source
anchors for FAMIXAnnotationType and FAMIXAnnotationTypeAttribute
http://code.google.com/p/moose-technology/issues/detail?id=907
When we have an explicit annotation in the code, we should also get the
source anchor associated with it.
For example, in the below case, SomeAnnotation.java should be associated
with SomeAnnotation:
SomeAnnotation.java
@Documented
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.CLASS)
public @interface SomeAnnotation {...}
The same applies for the contained FAMIXAnnotationTypeAttributes.
Status: New
Owner: anquetil...(a)gmail.com
CC: damien.c...(a)gmail.com
Labels: Type-Defect Priority-High Component-VerveineJ
New issue 910 by damien.c...(a)gmail.com: [VerveineJ] Some methods
have 'private' modifier in source code but not in model
http://code.google.com/p/moose-technology/issues/detail?id=910
1- Take ant-1.8.2.mse
2- Search methods with each isProtected not and: [each isPublic not and:
[each isPrivate not and: [each isStub not]]]
3- Some methods are private here
Status: New
Owner: ----
CC: alexandr...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Roassal Component-Glamour
New issue 870 by tu...(a)tudorgirba.com: ROFocusView focuses on the wrong spot
http://code.google.com/p/moose-technology/issues/detail?id=870
Open a Roassal Easel and paste this:
| node |
node := view node: #a.
ROFocusView new on: node view: view raw.
The node is selected somewhere at the bottom. The reason is likely to be
that the canvas has a static size, instead of adapting by default to the
size of the surrounding pane
Hi,
there is a class MOGraphVizLayout used in some visualisations (e.g.
GTVisualizations new viewPragmaConstellation or
MooseBrowser>>multiplicationBrowser). Should I port it into Roassal?
Cheers,
Jura
Hello
I've added new features for the force based layout.
You
can change the gravity center, tell where you want to see your fixed
nodes and so on.
I still have a bug with padding, and resizeStrategy,
for example when you click on Example in the view.
Gofer it
smalltalkhubUser: 'MathieuDehouck' project: 'RoassalAlgorithm';
package: 'RoassalForceBaseLayout';
load.
Try this :
---------------------------
"Preambule. It includes the
initialization. "
| rawView view layout |
rawView := ROView new.
view :=
ROMondrianViewBuilder view: rawView.
"enter your script
below"
"-------------"
"-------------"
view interaction on:
ROMouseEnter do: [ :n |
| nodes |
nodes := view raw
elementsFromModels: n element model allSubclasses.
ROHighlightElements
on: nodes ].
view interaction on: ROMouseLeave do: [ :n |
| nodes |
nodes := view raw elementsFromModels: n element model allSubclasses.
ROUnhighlightElements on: nodes ].
view shape rectangle size: 10.
view nodes: (Collection withAllSubclasses).
view edgesFrom:
#superclass.
layout := ROForceBasedLayout_N new.
layout fix: (view
nodes last) at: 450@450;
gravityAt: 437@38 .
view layout: layout.
view applyLayout.
"-------------"
"-------------"
"Below is the
initiation of the menu and opening the visualization"
ROEaselMorphic new
populateMenuOn: view.
view open
---------------------------------------
Mathieu
Hi,
I am trying to load Moose in a fresh Pharo 2.0 image by doing
> Gofer new
> smalltalkhubUser: 'Moose' project: 'Moose';
> package: 'ConfigurationOfMoose';
> load.
>
> (Smalltalk at: #ConfigurationOfMoose)
> perform: #loadDevelopment
and it does not load correctly (i.e., there is an error after some minutes)
I also tried #loadMinimal but it does not work either and I got:
> MetacelloProjectSpecLoadError: No version found for 'default' of ConfigurationOfMooseAlgos
> MetacelloMCProjectSpec>>loadVersion:
> MetacelloMCProjectSpec>>load
> MetacelloProjectReferenceSpec>>loadUsing:gofer:
> MetacelloFetchingMCSpecLoader(MetacelloCommonMCSpecLoader)>>linearLoadPackageSpecs:repositories: in Block: [:pkg | pkg loadUsing: self gofer: gofer]
> OrderedCollection>>do:
Can anyone please take a look at the issue and fix the ConfigurationOfMoose?
Cheers,
R