Great addition!
Where can we get it from?
Doru
On Tue, Dec 17, 2013 at 2:07 PM, Alexandre Bergel
<alexandre.bergel(a)me.com>wrote:
> Hi!
>
> A new builder for Roassal is coming… The goal of Relation tower is to
> easily visualize relations between group of elements. We had the
> inspiration from the following website http://peoplemov.in/#!
>
> Here are some screenshots:
>
> https://www.facebook.com/media/set/?set=a.559114290841839.1073741837.340543…
>
> If you like these screenshots, then you know where the like button is :-)
>
> We will have this visualization on the web, thanks to our smooth and nice
> Pharo2Amber migration process.
>
> Any idea on how to extend/apply Relation tower? Any set of data you want
> us to play with? Your data?
> Feedback are very welcome!
>
> Cheers,
> Ricardo & Alexandre
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
--
www.tudorgirba.com
"Every thing has its own flow"
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1027 by v.blonde...(a)gmail.com: The system doesn't open a warning
window on #notify:
http://code.google.com/p/moose-technology/issues/detail?id=1027
Describe the problem: what do you get? what do you expect?
When I try to send the message #notify: to an object, I get :
MessageNotUnderstood: receiver of "not" is nil.
In the method :
GTDebugger class>>openContext: aContext label: aString contents:
contentsStringOrNil
//
<primitive: 19> "Simulation guard"
ErrorRecursion not &
//
The class variable ErrorRecursion seems not initialized and should it be
at 'false' like in Spec.
How to reproduce the problem: step by step if necessary
To reproduce, open a Workspace under Moose-5.0 and do :
self notify: 'A Message'
It works under Pharo3.
Additional information: platform, context which may impact the problem
Linux x64, Moose-5.0 last version.
Please fill in the labels with the following information:
* Type-Defect
* Component-Debbugger
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1029 by rob...(a)pergl.org: Roassal Easel crashed
http://code.google.com/p/moose-technology/issues/detail?id=1029
Ubuntu 13.10
MooseSuite 4.9
Go to Browse - In Roassal Easel - eg - Adding Name - hover with mouse
around the tree
* Type-Defect
--
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
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1031 by rainbowt...(a)gmail.com: smalltalk import doesn't work
(moose5)
http://code.google.com/p/moose-technology/issues/detail?id=1031
moose 5 from pharo launcher
- open moose panel
- press import famix model from image
- select any package(s) >>>
- press next, finish
I get the debugger, closing it cancels import
Please fill in the labels with the following information:
* Type-Defect
* Component-Moose
--
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
Hi,
I looked a bit at the existing hardcoded traversal methods in a Pharo/Moose
image. To detect it, I used a traversal. Perhaps this can also be useful
for people that want to teach what a traversal is, or what an analysis is,
so I wrote a blog post about it:
http://www.humane-assessment.com/blog/looking-for-hardcoded-traversal-metho…
Cheers,
Doru
On Sat, Dec 14, 2013 at 3:44 PM, Mariano Martinez Peck <
marianopeck(a)gmail.com> wrote:
>
>
>
> On Wed, Dec 11, 2013 at 12:21 PM, Tudor Girba <tudor(a)tudorgirba.com>wrote:
>
>> Hi,
>>
>> I put together a little implementation for traversals. It is inspired by
>> an original implementation from Mariano.
>>
>
> Wow... my memory is sooo bad I don't remember ;)
>
>
>
>> Using DeepTraverser, you can traverse arbitrary graphs by describing the
>> traversal and by specifying the actions you want to perform on the nodes
>> and relations.
>>
>>
> Once (or even more times) we thought with Martin 2 things:
>
> 1) Reify the traversal in Fuel so that we could plug a different one.
> 2) Use Fuel only for traversing and allowing user a hook to plug the what
> to do with each node.
> 3) Use the same traversal of 2) for deepCopying
> 4) Use the same traversal of 2) to get an approximate memory consumption
> of the transitive closure of an object
>
> But as always happened we run out of time.
>
> Anyway...I think this is a nice area to explore. There are many uses for a
> nice traverser.
>
> Also, did you see we wrote a Rossal extension to print the fuel traversal?
>
> http://rmod.lille.inria.fr/web/pier/software/Fuel/Version1.9/Documentation/…
>
>
> The code is available in the Moose image as part of the MooseAlgos
>> subproject, but can also be loaded separately in a Pharo image via:
>>
>> Gofer new
>> url: 'http://www.smalltalkhub.com/mc/Moose/DeepTraverser/main';
>> package: ‘ConfigurationOfDeepTraverser’;
>> load.
>> (Smalltalk globals at: #ConfigurationOfDeepTraverser) loadDevelopment.
>>
>>
>> Just to give you an idea, here are some representative examples:
>>
>> Number
>> deep: #subclasses
>> do: [:each | Transcript show: each; cr].
>>
>> Number deepCollect: #subclasses.
>>
>> Number
>> deep: #subclasses
>> collect: #name.
>>
>> Number
>> deep: #subclasses
>> do: [:each | Transcript show: each; cr]
>> relationDo: [ :from :to | Transcript show: from; show: ' <-- '; show:
>> to; cr ].
>>
>>
>>
>> More details about the usages and a little description of the
>> implementation can be found here:
>> http://www.humane-assessment.com/blog/traversal-enabled-pharo-objects/
>>
>>
>> Cheers,
>> Doru
>>
>>
>>
>> --
>> www.tudorgirba.com
>>
>> "Every thing has its own flow"
>>
>
>
>
> --
> Mariano
> http://marianopeck.wordpress.com
>
--
www.tudorgirba.com
"Every thing has its own flow"