Re: [Pharo-project] plugin in Nautilus

2013-04-20 Thread stephane ducasse
I use a group for that :) And what I would love is a group: latest loaded packages. On Apr 20, 2013, at 12:24 AM, Alexandre Bergel wrote: > Hi! > > Is there a documentation on how to create a plugin for Nautilus? > > I would like to create a command 'Hide all packages' in the Packag

Re: [Pharo-project] [Moose-dev] Roassal new algorithms

2013-04-20 Thread stephane ducasse
On Apr 20, 2013, at 8:23 AM, Tudor Girba wrote: > This visualization is precisely made for hierarchical graphs. That is why the > edges are called "hierarchical bundled edges". So, yes, you need a > hierarchical graph. +1 :) > > Cheers, > Doru > > > On Apr 19, 2013, at 8:57 PM, Alexandr

Re: [Pharo-project] Any wishes for Roassal?

2013-04-20 Thread stephane ducasse
We want speed up and less garbage generation (ie do not use collect when do will make it or some stuff like that). May be people here could have a look at it and do a fast code review? Stef > Hi! > > Roassal 2.0 is on the way. We would like to make sure everybody find this > release attracti

Re: [Pharo-project] Version 1.39 of Versionner

2013-04-20 Thread stephane ducasse
We should add more information in the configurationOf Stef >>> No idea why happened. >>> I copied the a missing file in the repository >>> Try again, it should work now >>> >>> Alexandre >> >> Works now - thanks. I've put a copy of the config into ss3/MetaRepoForPharo20 >> so one can easily lo

Re: [Pharo-project] Version 1.39 of Versionner

2013-04-20 Thread stephane ducasse
On Apr 19, 2013, at 5:25 PM, Torsten Bergmann wrote: >>> Works now - thanks. I've put a copy of the config into >>> ss3/MetaRepoForPharo20 >>> so one can easily load via Configuration browser from within the 2.0 image. >> >> Excellent! >> Something that would be amazing, is to have a small tex

Re: [Pharo-project] [Moose-dev] Roassal new algorithms

2013-04-20 Thread Frank Shearar
Sure, and I had to discover that for myself, since the d3 example was titled "flare imports". I only found out about the name "hierarchical bundled edges" thanks to Alexandre's original post! frank On 20 April 2013 07:23, Tudor Girba wrote: > This visualization is precisely made for hierarchical

Re: [Pharo-project] Any wishes for Roassal?

2013-04-20 Thread Camillo Bruni
On 2013-04-20, at 09:39, stephane ducasse wrote: > We want speed up and less garbage generation (ie do not use collect when do > will make it or some stuff like that). > May be people here could have a look at it and do a fast code review? there are some code critics for that :)

[Pharo-project] Smalltalk way of live

2013-04-20 Thread Hilaire Fernandes
I remember a few weeks ago someone shared a video about the Smalltalk "vivid" programming. I want to share this video I did for a DrGeo user willing to hack. I am afraid the comments are in French, so only useful for French audiance. http://www.dailymotion.com/group/drgeo#video=xyv6xv Hilaire -

[Pharo-project] [update 3.0] #30047

2013-04-20 Thread Marcus Denker
30047 - 4858 TimeProfiler is used by FreeTypeFont class for testing https://pharo.fogbugz.com/f/cases/4858/ 5044 Cleaning Icons https://pharo.fogbugz.com/f/cases/5044 10309 Introduce MorphTreeMorph in Spec https://pharo.fogbugz.com/f/cases/10309 10319 accesor

[Pharo-project] Date comparison broken

2013-04-20 Thread Milan Mimica
Hello | yesterday | yesterday := Date yesterday. yesterday < yesterday On Phalo 2.0, this evaluates to 'false'. I'ts not a joke. -- Milan Mimica http://sparklet.sf.net

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Milan Mimica
Please ignore. I whish there was a 'unsend' button. On 20 April 2013 18:31, Milan Mimica wrote: > Hello > > | yesterday | > yesterday := Date yesterday. > yesterday < yesterday > > On Phalo 2.0, this evaluates to 'false'. I'ts not a joke. > > > -- > Milan Mimica > http://sparklet.sf.net > --

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Milan Mimica
Actually, please don't ignore me. I knew there was sometime broken: (Date today - 1 day) < (Date today - 1 day) evaluates to 'true' On 20 April 2013 18:33, Milan Mimica wrote: > Please ignore. I whish there was a 'unsend' button. > > > On 20 April 2013 18:31, Milan Mimica wrote: > >> Hello >>

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Milan Mimica
I found a bug: in DateAndTime >> < julianDayNumber < other julianDayNumber ifTrue: [ ^ true ]. should be: self julianDayNumber < other julianDayNumber ifTrue: [ ^ true ]. On 20 April 2013 18:43, Milan Mimica wrote: > Actually, please don't ignore me. I knew there was sometime broken: > (Dat

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Camillo Bruni
yes ;) could you open an issue and possibly add a test that covers this? that would be great. On 2013-04-20, at 19:09, Milan Mimica wrote: > I found a bug: > > in DateAndTime >> < > > julianDayNumber < other julianDayNumber > ifTrue: [ ^ true ]. > > should be: > > self julianDayNumber < ot

[Pharo-project] [update 3.0] #30048

2013-04-20 Thread Marcus Denker
30048 - 10228 Fix tab key for autocompletion https://pharo.fogbugz.com/f/cases/10228 10335 Spec: Document difference between TextModel and TextInputFieldModel https://pharo.fogbugz.com/f/cases/10335 10334 SearchableTree https://pharo.fogbugz.com/f/case

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Milan Mimica
On 20 April 2013 19:10, Camillo Bruni wrote: > yes ;) > > could you open an issue and possibly add a test that covers this? > Only if http://bugs.pharo.org woudl let me register. It says "Invalid email address." when I fill the form. I have pushed the changes to http://ss3.gemstone.com/ss/PharoI

[Pharo-project] canUnderstand: #readFrom:

2013-04-20 Thread Milan Mimica
How come this evaluates to false? Integer canUnderstand: #readFrom: --> false Integer includesSelector: #readFrom: --> false However, it does implement the method. Integer readFrom: '1' readStream. --> 1 -- Milan Mimica http://sparklet.sf.net

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Benjamin
I just create you an account :) Ben On Apr 20, 2013, at 7:44 PM, Milan Mimica wrote: > On 20 April 2013 19:10, Camillo Bruni wrote: > yes ;) > > could you open an issue and possibly add a test that covers this? > > Only if http://bugs.pharo.org woudl let me register. It says "Invalid email

Re: [Pharo-project] canUnderstand: #readFrom:

2013-04-20 Thread Camillo Bruni
You are mixing up class and instance side :) #canUnderstand: is send to instances #includesSelector: is sent to classes (Integer canUnderstand: #readFrom) ==> (Integer class includesSelector: #readFrom:) On 2013-04-20, at 20:01, Milan Mimica wrote: > How come this evaluates to false? > Intege

Re: [Pharo-project] Date comparison broken

2013-04-20 Thread Milan Mimica
There you go https://pharo.fogbugz.com/default.asp?10343 On 20 April 2013 19:10, Camillo Bruni wrote: > yes ;) > > could you open an issue and possibly add a test that covers this? > > that would be great. > > On 2013-04-20, at 19:09, Milan Mimica wrote: > > > I found a bug: > > > > in DateAnd

[Pharo-project] [update 3.0] #30049

2013-04-20 Thread Marcus Denker
30049 - 10337 Remove old RBFormatter https://pharo.fogbugz.com/f/cases/10337 10339 MorphTreeMorph never removeSplitters https://pharo.fogbugz.com/f/cases/10339 10341 Cannot debug Halt in deferred startup actions when in interactive mode https://pharo.f

Re: [Pharo-project] canUnderstand: #readFrom:

2013-04-20 Thread Camille Teruel
> You are mixing up class and instance side :) > > #canUnderstand: is send to instances > #includesSelector: is sent to classes > > (Integer canUnderstand: #readFrom) ==> (Integer class includesSelector: > #readFrom:) The instance side equivalent of canUnderstand: is #respondsTo:.. #includesSe

[Pharo-project] GSoC: more mentors wanted

2013-04-20 Thread Janko Mivšek
Dear Pharoers, We have quite nice projects, but mentors are still missing: http://gsoc2013.esug.org/projects http://gsoc2013.esug.org/mentors Look for projects without mentors and if you are interested, register on the site, go to the project and click Edit in the grayed area and

Re: [Pharo-project] Any wishes for Roassal?

2013-04-20 Thread Alexandre Bergel
Hi Paul,Is there a way to hide all the edges pointing to a node unless the node isclicked, or has more fewer than X edges pointing to it, or ..?  I'musing Chronos for some things and each Timepoint has a Calendar that itreferences, but its the same Calendar so every Timepoint draws a line to th

Re: [Pharo-project] plugin in Nautilus

2013-04-20 Thread Alexandre Bergel
I tried to use groups, but it does not really work for me. Here is my scenario: I take a fresh image, I load Versionner then I load Roassal. I open a code browser, and guess what, I want to see Roassal and Versionner right away, and not have to scroll down. But I think that the most important, i

Re: [Pharo-project] plugin in Nautilus

2013-04-20 Thread stephane ducasse
On Apr 21, 2013, at 4:23 AM, Alexandre Bergel wrote: > I tried to use groups, but it does not really work for me. Here is my > scenario: > > I take a fresh image, I load Versionner then I load Roassal. > I open a code browser, and guess what, I want to see Roassal and Versionner > right away,