Re: [Pharo-users] Programmatic Scoped Browsing

2013-12-06 Thread Hernán Morales Durand
Sorry for the late reply. May anyone can drop a line for how to contribute (not bug reporting/patch) to projects like RB and Nautilus? Because there are 3 Nautilus repositories in SmalltalkHub... Hernán 2013/11/24 Stéphane Ducasse > > On Nov 24, 2013, at 5:55 PM, Hernán Morales Durand < > h

Re: [Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Stéphane Ducasse
On Nov 24, 2013, at 5:55 PM, Hernán Morales Durand wrote: > Hi Sean, > > I do this for browsing BioSmalltalk classes with Nautilus > > | pkgs env | > > pkgs := RPackageOrganizer default packages select: [ :each | each packageName > beginsWith: 'Bio' ]. > env := RBBrowserEnvironment new forP

Re: [Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Hernán Morales Durand
Hi Sean, I do this for browsing BioSmalltalk classes with Nautilus | pkgs env | pkgs := RPackageOrganizer default packages select: [ :each | each packageName beginsWith: 'Bio' ]. env := RBBrowserEnvironment new forPackages: pkgs. env label: 'BioSmalltalk'. Nautilus openInEnvironment: env Ch

[Pharo-users] Programmatic Scoped Browsing

2013-11-24 Thread Sean P. DeNigris
I tried: SystemNavigation new environment: RPackage allInstances third asEnvironment; browseAllSelect: aBlock but it still searched the whole image. I looked for examples in the image of manually building an environment/SystemDictionary, but didn't find anything helpful. Thank