Hi everybody,
I googled a bit for a YAML parser in Pharo but I didn't found anything.
Does anybody wrote a YAML parser for Pharo?
Regards,
Julien
Hi Offray,
The problem is rather easy to solve. Consider this script:
-=-=-=-=-=-=-=-=-=-=-=-=
timeline := FossilTimeline new.
timeline importFromUrl:
'http://mutabit.com/deltas/repos.fossil/piamed/libro/doc/tip/Libro/timeline-buscador.json'.
"Visualization"
view := RTMondrian new.
view nodes
Let me know if this works for you
Cheers,
Alexandre
> On Jun 20, 2015, at 2:46 PM, Alexandre Bergel wrote:
>
> Hi Offray,
>
> The problem is rather easy to solve. Consider this script:
>
> -=-=-=-=-=-=-=-=-=-=-=-=
> timeline := FossilTimeline new.
> timeline importFromUrl:
> 'http://mutabi
Hi Martin,
On 16/06/15 10:14, MartinW wrote:
Thank you very much, Offray, that looks very interesting.
Thanks. I think that is important to keep politicians and public
accountable for what they say and do and social networks could help in
doing that in a more dynamic way (of course is not e
Thanks Arturo. Seems a really interesting advance. The seaside UI uses
the Twitter API? Let us know when the project is uploaded.
Cheers,
Offray
On 16/06/15 11:18, Arturo Zambrano wrote:
Hi Martin,
this are good news. There is a seaside base UI for controlling tweets
download. I will let yo
Hi
I do not recommend to use Mondrian for doing what you need. Actually, I suggest
to make your own layout.
You may want to check the following code example:
-=-=-=-=-=-=-=-=-=
classes := RTShape withAllSubclasses.
oldestAge := (classes collect: #ageInDays) max.
v := RTView new.
v @ RTDragga
Hi Offray,
Rather easy. Simply use a new shape.
For example:
-=-=-=-=
b := RTMondrian new.
b shape circle
size: [ :cls | cls numberOfMethods log * 10 ];
color: (Color red alpha: 0.5).
b nodes: RTObject withAllSubclasses.
b layout flow.
b
-=-=-=-=
Another example:
-=-=-=-=
classe