Issue 940 in moose-technology: In Pharo 2.0 the SpyWizard does not take notice of newly added packages. Possible solution: use RPackageOrganizer

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 940 in moose-technology: In Pharo 2.0 the SpyWizard does not take notice of newly added packages. Possible solution: use RPackageOrganizer

moose-technology
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 940 by [hidden email]: In Pharo 2.0 the SpyWizard does not take  
notice of newly added packages. Possible solution: use RPackageOrganizer
http://code.google.com/p/moose-technology/issues/detail?id=940

Describe the problem: what do you get? what do you expect?
In Pharo 2.0 the SpyWizard does not take notice of newly added packages.

How to reproduce the problem: step by step if necessary
- load Spy into Pharo 2.0
- open for example the HapaoWizard and have a look at the packages  
available. Close the wizard.
- add a new package to your image
- open the HapaoWizard again: the new package does not appear in the list  
of available packages.


Possible solution:
Change
SpyWizard>>packagesList
        ^ (PackageOrganizer default packageNames select: #isString)  
asSortedCollection: [ :a :b | a < b ]

to:
SpyWizard>>packagesList
        ^ (RPackageOrganizer default packageNames select: #isString)  
asSortedCollection: [ :a :b | a < b ]

or perhaps:
SpyWizard>>packagesList
        ^ (SystemNavigation default packageOrganizerClass default packageNames  
select: #isString) asSortedCollection: [ :a :b | a < b ]

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 940 in moose-technology: In Pharo 2.0 the SpyWizard does not take notice of newly added packages. Possible solution: use RPackageOrganizer

moose-technology
Updates:
        Status: WontFix

Comment #1 on issue 940 by [hidden email]: In Pharo 2.0 the SpyWizard  
does not take notice of newly added packages. Possible solution: use  
RPackageOrganizer
http://code.google.com/p/moose-technology/issues/detail?id=940

I think this won't be fixed.

--
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev