Re: [Pharo-project] OBDependencyWalker for Pharo

2009-12-26 Thread Hernán Morales Durand
Hi Mariano, To install the Dependency Browser in the 1.0 dev image, please evaluate: Gofer new squeaksource: 'DependencyWalker'; package: 'DependencyWalker'; package: 'OBDependencyWalker'; package: 'DWTraitsFix'; load; recompile. and then

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-12-26 Thread Mariano Martinez Peck
Hernán: I would like to use this tools to detect dependencies between packages and with that write the metacello configurations for Pharo. Do you know how can I manage to install it in the latests 1.0 dev image? thanks mariano On Sun, Aug 16, 2009 at 10:04 AM, Stéphane Ducasse < stephane.duca..

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-16 Thread Stéphane Ducasse
I imagine that david did that because he could not touch the code. I hope that with the new OB release things will get clarified and better. Stef On Aug 15, 2009, at 3:11 PM, Hernán Morales Durand wrote: > Hi Cesar, > Please update to the latest version of the DependencyBrowser. I was > using

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-15 Thread Hernán Morales Durand
Hi Cesar, Please update to the latest version of the DependencyBrowser. I was using a ClassSortFilter for filtering packages (which is wrong), and there are two different implementations of this message from David and Lukas: OBClassSortFilter>>nodesFrom:forNode: The one from David was preventin

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-14 Thread csrabak
Hernán, I also don't have the expertise to debug it, but could you get more info if you put a #theClass method in OBClassSort with a sefl halt on it? It will avoid the sending of messages upstream in the "food chain"... Em 14/08/2009 09:05, Hernán Morales Durand < hernan.mora...@gmail.com > escreve

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-14 Thread csrabak
Yes I urge you to consider a Smalltalk based alternative :-D (having friends that like several alternatives I'll note mention any in particular [but see: one them run in Pharo ;-) ]) OK, I'll wait patiently as a Tibetan monk :-) Regards, Em 14/08/2009 00:41, Hernán Morales Durand < hernan.mora...@g

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-14 Thread Hernán Morales Durand
Ok, I found this could be related with an OB installation using this script: http://code.google.com/p/pharo/wiki/ImageBuildScripts I've loaded "AST", "Refactoring", "OmniBrowser" and "Tools". Then loaded the DependencyBrowser, selected a package and gotcha, the #theClass MNU was raised. However I w

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-14 Thread Stéphane Ducasse
apparently there was a change in OB and it would be good to understand because we have some open issues that are related to that. Stef > Oh, that page was obsolete sorry about that, working with PHP pages is > so... fuckin horrible! > However that's not the issue here. I need to do a little re

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread Hernán Morales Durand
Oh, that page was obsolete sorry about that, working with PHP pages is so... fuckin horrible! However that's not the issue here. I need to do a little research to see why the Dependency Browser breaks with mysterious OB stuff? I will update the repository as soon as I find the cause. Thanks for rep

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread Hernán Morales Durand
Hi csrabak, Thanks for the feedback. I wonder how you've installed the DW? Anyone else experimented this trouble? That MNU is fine, the problem is that message should never be sent to an OBInheritanceDependencyNode. Please note the two leftmost panes (columns) in the DependencyBrowser contains sy

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread csrabak
It is not an instalallation problem. It is an execution problem. . . Fire DW and select any class in left pane it will show a "Gathering..." dialog and then MNU: OBInheritanceDependencyNode doesn't understand theClass. . . Em 13/08/2009 01:28, Hernán Morales Durand < hernan.mora...@gmail.com > escr

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread Mariano Martinez Peck
On Thu, Aug 13, 2009 at 12:36 PM, Stéphane Ducasse < stephane.duca...@inria.fr> wrote: > If you use an OB based browser. > I am using the default system browser of the PharoBeta. I attach this information in the ticket. > > Stef > > On Aug 13, 2009, at 2:58 PM, Mariano Martinez Peck wrote: > >

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread Stéphane Ducasse
If you use an OB based browser. Stef On Aug 13, 2009, at 2:58 PM, Mariano Martinez Peck wrote: > > > On Thu, Aug 13, 2009 at 7:30 AM, Stéphane Ducasse > wrote: > Mariano and everybody > when you open a ticket please >- make sure that we know if this is for the OB version of a > tools

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread Mariano Martinez Peck
On Thu, Aug 13, 2009 at 7:30 AM, Stéphane Ducasse wrote: > Mariano and everybody > when you open a ticket please >- make sure that we know if this is for the OB version of a tools or > not Stef: con can I know this? > >- send a clear mail to the list I already sent an email

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-13 Thread Stéphane Ducasse
Mariano and everybody when you open a ticket please - make sure that we know if this is for the OB version of a tools or not - send a clear mail to the list Stef On Aug 13, 2009, at 3:11 AM, Mariano Martinez Peck wrote: > > > 2009/8/12 > In my attempt to install OBDependencyWal

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-12 Thread Hernán Morales Durand
Hello there, I cannot reproduce the installation problem in #10413. To install DW with the OmniBrowser support in a clean Pharo #10413 just doIt the following: ScriptLoader loadOBAlpha. Installer ss project: 'DependencyWalker'; install: 'DependencyWalker'; install: 'OBDependencyW

Re: [Pharo-project] OBDependencyWalker for Pharo

2009-08-12 Thread Mariano Martinez Peck
2009/8/12 > In my attempt to install OBDependencyWalker in Pharo beta #10413, I > discovered that it triggers DNUs because #theClass is no longer available in > this image version. > > I could not find easily the rationale for stripping the method. > > Is this a known fact and OBDependencyWalker

[Pharo-project] OBDependencyWalker for Pharo

2009-08-12 Thread csrabak
In my attempt to install OBDependencyWalker in Pharo beta #10413, I discovered that it triggers DNUs because #theClass is no longer available in this image version. I could not find easily the rationale for stripping the method. Is this a known fact and OBDependencyWalker should be modified, or #th