[Pharo-users] Any YAML parser?

2015-06-20 Thread Julien Delplanque
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

Re: [Pharo-users] Understanding edge connections and tree layout (it was Re: Visualizing a repository tree)

2015-06-20 Thread Alexandre Bergel
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

Re: [Pharo-users] Understanding edge connections and tree layout (it was Re: Visualizing a repository tree)

2015-06-20 Thread Alexandre Bergel
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

Re: [Pharo-users] Status of Twitter (api/analysis/visualization) in Pharo?

2015-06-20 Thread Offray Vladimir Luna Cárdenas
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

Re: [Pharo-users] Status of Twitter (api/analysis/visualization) in Pharo?

2015-06-20 Thread Offray Vladimir Luna Cárdenas
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

Re: [Pharo-users] Understanding edge connections and tree layout (it was Re: Visualizing a repository tree)

2015-06-20 Thread Alexandre Bergel
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

Re: [Pharo-users] Chaning node colors in a RTMondrian view (It was Re: Understanding edge connections and tree layout)

2015-06-20 Thread Alexandre Bergel
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