MooseFinder… tests
by Yuriy Tymchuk
Hi,
does anybody know how MooseFinder…Tests are working? Bacause we have tests failing in MooseFinderForSimpleClassesTest and VerveineJMooseFinderTest. This test’s are a bit specific (not just doing something and asserting the result) and do not have any comments. If anyone knows what is this about, can you please take a look at that tests?
Cheers.
Uko
9 years, 1 month
Pb with Roassal2 and Glamour
by Alexandre Bergel
Hi!
A student is trying Glamour, and he apparently have found a bug with the integration of Roassal2.
MCHttpRepository
location: 'http://smalltalkhub.com/mc/ajperalt/testPBE2/main'
user: ''
password: ‘'
"PBE2CodeNavigator new open” will produce the bug.
Replacing
-=-=-=-=-=-=-=-=-=-=-=-=
constructor roassal2
when: [ :packageName | self organizer includesPackageNamed: packageName ];
painting: [ :view :packageName |
view nodes: (self organizer packageNamed: packageName) definedClasses.
view edgesFrom: #superclass.
view treeLayout ];
title: ‘Hierarchy'
-=-=-=-=-=-=-=-=-=-=-=-=
by
-=-=-=-=-=-=-=-=-=-=-=-=
constructor roassal
when: [ :packageName | self organizer includesPackageNamed: packageName ];
painting: [ :view :packageName |
view nodes: (self organizer packageNamed: packageName) definedClasses.
view edgesFrom: #superclass.
view treeLayout ];
title: ‘Hierarchy'
-=-=-=-=-=-=-=-=-=-=-=-=
just replacing #roassal2 by #roassal makes the example work.
Any idea what’s going on?
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
9 years, 1 month
Roassal2 is kind of unstable today...
by Alexandre Bergel
Yeah, we are all working hard :-)
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
9 years, 1 month
Display layered tree in Roassal
by Blondeau Vincent
Hi,
I would like to display a some elements by layers with Roassal.
Each element has a layer number (from 1 to 6 in the exemple) and is linked to elements from other layers (green lines).
So each line of the visualization contains elements of one layer.
I have tried with all the treeLayout but I don't get a representation by the wanted layers.
So I asked Usman and he tells me to use userDefinedEdges:.
So I defined virtual edges from all elements from a layer to all the elements to the next layer.
And I get:
[cid:image001.png@01CF4D0E.67BF1290]
All the nodes are on the good line but the linked between them (in green) are horribly crossed.
Which virtual nodes should I add to make it works ? Or should I create/use a layout ?
Thanks for your answers,
Cheers,
Vincent
________________________________
Ce message et les pi?ces jointes sont confidentiels et r?serv?s ? l'usage exclusif de ses destinataires. Il peut ?galement ?tre prot?g? par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir imm?diatement l'exp?diteur et de le d?truire. L'int?grit? du message ne pouvant ?tre assur?e sur Internet, la responsabilit? de Worldline ne pourra ?tre recherch?e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'exp?diteur ne donne aucune garantie ? cet ?gard et sa responsabilit? ne saurait ?tre recherch?e pour tout dommage r?sultant d'un virus transmis.
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
9 years, 1 month
Working on improving distribution map
by Leo Perard
Hello all,
I'll start to revise the implementation of DistributionMap. The idea is:
- move to Roassal 2
- cleaning: remove morph classes unused in the package
- integrate Kontractor
- add some sexy demos (authors distribution map)
- harmonize the vocabulary for the DistributionMap wizard (currently, we
talk about parts, elements and properties in the wizard, which is not
understandable for someone new)
What do you think about this?
--
Leo Perard
9 years, 1 month
Removing Moose entity
by Yuriy Tymchuk
Hi guys. Is there any special way to delete the moose entity? As far as I understand now we have to remove it from model and then from the other entities.
Uko
9 years, 1 month
Fwd: font template
by Stéphane Ducasse
Once the font registration fix is integrated in Pharo here are the way fonts should be defined.
Stef
Begin forwarded message:
> From: Igor Stasenko <siguctua(a)gmail.com>
> Subject: font template
> Date: 8 Apr 2014 17:42:12 GMT+2
> To: Stéphane Ducasse <stephane.ducasse(a)inria.fr>
>
>
>
> --
> Best regards,
> Igor Stasenko.
9 years, 1 month
Export your Graph-ET2 charts as PDF or SVG
by Pablo Estefó
Hi folks,
I just came to announce that now you can export your charts made with GraphET2 as PDF or SVG.
=.=.=
|builder normalizer data|
data := #(#(1 4) #(3 2) #(4 5) #(5 4) #(6 10) #(10 30) #(12 25)).
normalizer := RTNColorLinearNormalizer
inContext: data
withCommand: #second
lowColor: Color paleRed
highColor: Color blue.
builder := GET2Line data: data.
builder
x: #first;
y: #second;
lineWidth: 2;
dotColor: [ :v | (normalizer rtValue: v) alpha: 0.5];
dotSize: 15.
builder exportAsPDF. "or exportAsSVG"
=.=.=
https://www.dropbox.com/s/e2v9232h1kltlui/exampleLine.pdf
https://www.dropbox.com/s/3i2ure5o5h8035y/exampleLine.svg
Just in case you have not tried GraphET2 yet…
=.=.=
Gofer new smalltalkhubUser: 'ObjectProfile'
project: 'GraphET2';
package: 'ConfigurationOfGraphET2';
load.
(Smalltalk at: #ConfigurationOfGraphET2) load
=.=.=
Cheers,
Pablo
9 years, 1 month
Moose rues violation
by Yuriy Tymchuk
Just discovered that there is a cool thing: "OnMooseReport importAndOpen”
And we are doing quite bad :)
Uko
9 years, 1 month