[Pharo-project] How to load Nautilus?
I took the latest PharoCore 1.3 and evaluated: Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load. ConfigurationOfNautilus project lastVersion load But it says This package depends on the following classes: SystemAnnouncer You must resolve these dependencies before you will be able to load these definitions: GroupAnnouncer Select Proceed to continue, or close this window to cancel the operation. Then after in the load, I have a DNU in MCWorkingCopy >> modified: aBooleanm, because MonticelloAnnouncer is nil (not defined) So....how I am supposed to load Nautilus? And if I want the integration with Refactoring Browser, OCompletion, Shout, etc, what should I do? load those packages and magically Nautilus will work ? What happens if I load Nautilus in a dev image? Thanks -- Mariano http://marianopeck.wordpress.com
On May 7, 2011, at 10:46 PM, Mariano Martinez Peck wrote:
I took the latest PharoCore 1.3 and evaluated:
Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load.
ConfigurationOfNautilus project lastVersion load
But it says
This package depends on the following classes: SystemAnnouncer You must resolve these dependencies before you will be able to load these definitions: GroupAnnouncer
Select Proceed to continue, or close this window to cancel the operation.
Then after in the load, I have a DNU in MCWorkingCopy >> modified: aBooleanm, because MonticelloAnnouncer is nil (not defined)
So....how I am supposed to load Nautilus?
Nautilus is based on RPackage so: - dl PharoCore 1.3 from Hudson - load RPackage 3.0 - load Nautilus (stable or default, should be the same) Here it works
And if I want the integration with Refactoring Browser, OCompletion, Shout, etc, what should I do? load those packages and magically Nautilus will work ?
OCompletion and Shout normally impact only the textMorph. I haven't test OCompletion (I do not use it, but I will do it right now), but for Shout, load the Shout package, and no, it's not magic, but Nautilus works. For refactoring browser, since Nautilus is based on BrowserEnvironment, it should work too. But I have to check and steal some menu's entries from OB.
What happens if I load Nautilus in a dev image?
No idea, let's try :) Ben
On Mon, May 9, 2011 at 11:46 AM, Benjamin < benjamin.vanryseghem.pharo@gmail.com> wrote:
On May 7, 2011, at 10:46 PM, Mariano Martinez Peck wrote:
I took the latest PharoCore 1.3 and evaluated:
Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load.
ConfigurationOfNautilus project lastVersion load
But it says
This package depends on the following classes: SystemAnnouncer You must resolve these dependencies before you will be able to load these definitions: GroupAnnouncer
Select Proceed to continue, or close this window to cancel the operation.
Then after in the load, I have a DNU in MCWorkingCopy >> modified: aBooleanm, because MonticelloAnnouncer is nil (not defined)
So....how I am supposed to load Nautilus?
Nautilus is based on RPackage so:
- dl PharoCore 1.3 from Hudson - load RPackage 3.0 - load Nautilus (stable or default, should be the same)
Here it works
But the idea is that it works outside your pc ;) So...if Nautilus is based on RPackage, then you must add it to ConfigurationOfNautilus as a depdeny. Otherwise, I cannot guess that you need RPackage. If fact, I didn'tknow until now. I don't know where RPackage is, nor which group should I load. :)
And if I want the integration with Refactoring Browser, OCompletion, Shout, etc, what should I do? load those packages and magically Nautilus will work ?
OCompletion and Shout normally impact only the textMorph. I haven't test OCompletion (I do not use it, but I will do it right now), but for Shout, load the Shout package, and no, it's not magic, but Nautilus works.
ok cool
For refactoring browser, since Nautilus is based on BrowserEnvironment, it should work too. But I have to check and steal some menu's entries from OB.
Cool. I think this is really important :)
What happens if I load Nautilus in a dev image?
No idea, let's try :)
Ben
-- Mariano http://marianopeck.wordpress.com
On May 9, 2011, at 11:51 AM, Mariano Martinez Peck wrote:
On Mon, May 9, 2011 at 11:46 AM, Benjamin <benjamin.vanryseghem.pharo@gmail.com> wrote:
On May 7, 2011, at 10:46 PM, Mariano Martinez Peck wrote:
I took the latest PharoCore 1.3 and evaluated:
Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load.
ConfigurationOfNautilus project lastVersion load
But it says
This package depends on the following classes: SystemAnnouncer You must resolve these dependencies before you will be able to load these definitions: GroupAnnouncer
Select Proceed to continue, or close this window to cancel the operation.
Then after in the load, I have a DNU in MCWorkingCopy >> modified: aBooleanm, because MonticelloAnnouncer is nil (not defined)
So....how I am supposed to load Nautilus?
Nautilus is based on RPackage so:
- dl PharoCore 1.3 from Hudson - load RPackage 3.0 - load Nautilus (stable or default, should be the same)
Here it works
But the idea is that it works outside your pc ;)
So...if Nautilus is based on RPackage, then you must add it to ConfigurationOfNautilus as a depdeny. Otherwise, I cannot guess that you need RPackage. If fact, I didn'tknow until now. I don't know where RPackage is, nor which group should I load.
:)
Yep, I will do that :) Ben
And if I want the integration with Refactoring Browser, OCompletion, Shout, etc, what should I do? load those packages and magically Nautilus will work ?
OCompletion and Shout normally impact only the textMorph. I haven't test OCompletion (I do not use it, but I will do it right now), but for Shout, load the Shout package, and no, it's not magic, but Nautilus works.
ok cool
For refactoring browser, since Nautilus is based on BrowserEnvironment, it should work too. But I have to check and steal some menu's entries from OB.
Cool. I think this is really important :)
What happens if I load Nautilus in a dev image?
No idea, let's try :)
Ben
-- Mariano http://marianopeck.wordpress.com
Now ConfigurationOfNautilus loads RPackage. On the last 1.3 core image: Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load. ConfigurationOfNautilus loadDefault It works ^^ Ben On May 9, 2011, at 11:51 AM, Mariano Martinez Peck wrote:
On Mon, May 9, 2011 at 11:46 AM, Benjamin <benjamin.vanryseghem.pharo@gmail.com> wrote:
On May 7, 2011, at 10:46 PM, Mariano Martinez Peck wrote:
I took the latest PharoCore 1.3 and evaluated:
Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load.
ConfigurationOfNautilus project lastVersion load
But it says
This package depends on the following classes: SystemAnnouncer You must resolve these dependencies before you will be able to load these definitions: GroupAnnouncer
Select Proceed to continue, or close this window to cancel the operation.
Then after in the load, I have a DNU in MCWorkingCopy >> modified: aBooleanm, because MonticelloAnnouncer is nil (not defined)
So....how I am supposed to load Nautilus?
Nautilus is based on RPackage so:
- dl PharoCore 1.3 from Hudson - load RPackage 3.0 - load Nautilus (stable or default, should be the same)
Here it works
But the idea is that it works outside your pc ;)
So...if Nautilus is based on RPackage, then you must add it to ConfigurationOfNautilus as a depdeny. Otherwise, I cannot guess that you need RPackage. If fact, I didn'tknow until now. I don't know where RPackage is, nor which group should I load.
:)
And if I want the integration with Refactoring Browser, OCompletion, Shout, etc, what should I do? load those packages and magically Nautilus will work ?
OCompletion and Shout normally impact only the textMorph. I haven't test OCompletion (I do not use it, but I will do it right now), but for Shout, load the Shout package, and no, it's not magic, but Nautilus works.
ok cool
For refactoring browser, since Nautilus is based on BrowserEnvironment, it should work too. But I have to check and steal some menu's entries from OB.
Cool. I think this is really important :)
What happens if I load Nautilus in a dev image?
No idea, let's try :)
Ben
-- Mariano http://marianopeck.wordpress.com
Hi Ben, On 9 May 2011, at 11:46, Benjamin wrote:
On May 7, 2011, at 10:46 PM, Mariano Martinez Peck wrote:
I took the latest PharoCore 1.3 and evaluated:
Gofer new squeaksource: 'Nautilus'; package: 'ConfigurationOfNautilus'; load.
ConfigurationOfNautilus project lastVersion load
But it says
This package depends on the following classes: SystemAnnouncer You must resolve these dependencies before you will be able to load these definitions: GroupAnnouncer
Select Proceed to continue, or close this window to cancel the operation.
Then after in the load, I have a DNU in MCWorkingCopy >> modified: aBooleanm, because MonticelloAnnouncer is nil (not defined)
So....how I am supposed to load Nautilus?
Nautilus is based on RPackage so:
- dl PharoCore 1.3 from Hudson - load RPackage 3.0 - load Nautilus (stable or default, should be the same)
You should add ConfigurationOfRPackage to ConfigurationOfNautilus so that all these load seamlessly. Cheers, Doru
Here it works
And if I want the integration with Refactoring Browser, OCompletion, Shout, etc, what should I do? load those packages and magically Nautilus will work ?
OCompletion and Shout normally impact only the textMorph. I haven't test OCompletion (I do not use it, but I will do it right now), but for Shout, load the Shout package, and no, it's not magic, but Nautilus works.
For refactoring browser, since Nautilus is based on BrowserEnvironment, it should work too. But I have to check and steal some menu's entries from OB.
What happens if I load Nautilus in a dev image?
No idea, let's try :)
Ben
-- www.tudorgirba.com "What we can governs what we wish."
participants (3)
-
Benjamin -
Mariano Martinez Peck -
Tudor Girba