Re: [Pharo-users] ecompletion and new browser
My bad, I was confused about Monticello and Metacello beeing the same thing. Now I see they're more like rpm and yum so, since now on Metacello it is!!. Thanks to all, specially Mariano
i installed the O2 browser with Metacello configuration method but ecompletion does not work. in workspace it is ok but in O2 browser it does'nt. i grab a fresh copy of latest pharo image and i installed seaside, squeakdbx etc. at least i installed O2 and there is no completion. 2010/4/3 Yoandy RodrÃguez MartÃnez <yrodriguezma@uci.cu>
My bad, I was confused about Monticello and Metacello beeing the same thing. Now I see they're more like rpm and yum so, since now on Metacello it is!!.
Thanks to all, specially Mariano
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
-- zekUs - http://zekus.net/blog
Hi zekus can you show us the script you used to load? + the image you took? Stef On Apr 5, 2010, at 2:07 PM, zekUs wrote:
i installed the O2 browser with Metacello configuration method but ecompletion does not work. in workspace it is ok but in O2 browser it does'nt. i grab a fresh copy of latest pharo image and i installed seaside, squeakdbx etc. at least i installed O2 and there is no completion.
2010/4/3 Yoandy RodrÃguez MartÃnez <yrodriguezma@uci.cu>
My bad, I was confused about Monticello and Metacello beeing the same thing. Now I see they're more like rpm and yum so, since now on Metacello it is!!.
Thanks to all, specially Mariano
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
-- zekUs - http://zekus.net/blog _______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
i just downloaded the image from pharo-project web site today. it is called 1.0 RC3. my installation process is; 1-open monticello browser and browse MetacelloRepository. 2-load the configuration package. (ConfigurationOfO2 for this situation) 3-eval the load like method. for O2 i evaluated: (Smalltalk at: #ConfigurationOfO2) loadDefault. i am installing my all other tools like this. 2010/4/5 Stéphane Ducasse <stephane.ducasse@inria.fr>
Hi zekus
can you show us the script you used to load? + the image you took?
-- zekUs - http://zekus.net/blog
On Mon, Apr 5, 2010 at 2:48 PM, zekUs <zekzekus@gmail.com> wrote:
i just downloaded the image from pharo-project web site today. it is called 1.0 RC3. my installation process is;
1-open monticello browser and browse MetacelloRepository. 2-load the configuration package. (ConfigurationOfO2 for this situation) 3-eval the load like method. for O2 i evaluated:
(Smalltalk at: #ConfigurationOfO2) loadDefault.
i am installing my all other tools like this.
But that's not what you want. That's why I told you to install it in this way: Gofer new squeaksource: 'MetacelloRepository'; package:'ConfigurationOfO2'; load. ((Smalltalk at: #ConfigurationOfO2) project version: '1.2') load: 'Dev'. In metacello you can define groups of packages. When you load something with Metacello, you can do just load and that will load the default packages. But after, you can have differents groups. The default can be just the core packages. Then you can have groups called "Dev" where it also installs the dev tools. Using load: you specify a group name, a package name or a list. Take a look at the class ConfigurationOfO2, to the baseline methods, at the end, where the groups are defined. Moreover, I recommend you to read the Metacello tutorial: http://code.google.com/p/metacello/wiki/Tutorial Cheers Mariano
2010/4/5 Stéphane Ducasse <stephane.ducasse@inria.fr>
Hi zekus
can you show us the script you used to load? + the image you took?
--
zekUs - http://zekus.net/blog
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
thanks for reply. it works now. so we must take look at configuration packages before loading the package. i am getting used to this metacello system slowly. 2010/4/5 Mariano Martinez Peck <marianopeck@gmail.com>
But that's not what you want. That's why I told you to install it in this way:
Gofer new squeaksource: 'MetacelloRepository'; package:'ConfigurationOfO2'; load.
((Smalltalk at: #ConfigurationOfO2) project version: '1.2') load: 'Dev'.
In metacello you can define groups of packages. When you load something with Metacello, you can do just load and that will load the default packages. But after, you can have differents groups. The default can be just the core packages. Then you can have groups called "Dev" where it also installs the dev tools.
Using load: you specify a group name, a package name or a list.
Take a look at the class ConfigurationOfO2, to the baseline methods, at the end, where the groups are defined.
Moreover, I recommend you to read the Metacello tutorial:
http://code.google.com/p/metacello/wiki/Tutorial
Cheers
Mariano
_______________________________________________
-- zekUs - http://zekus.net/blog
On Mon, Apr 5, 2010 at 5:12 PM, zekUs <zekzekus@gmail.com> wrote:
thanks for reply. it works now.
so we must take look at configuration packages before loading the package. i am getting used to this metacello system slowly.
Yes. If the "default" doesn't satisfy your needs, then yes. There is no need to explicitly look the code. You can just inspect for example: (ConfigurationOfO2 project version: '1.2') groups Then, you can inspect a particular group, and inspect the result of the message "includes" to see what it is included in such group. Hope this helps. Cheers Mariano 2010/4/5 Mariano Martinez Peck <marianopeck@gmail.com>
But that's not what you want. That's why I told you to install it in this way:
Gofer new squeaksource: 'MetacelloRepository'; package:'ConfigurationOfO2'; load.
((Smalltalk at: #ConfigurationOfO2) project version: '1.2') load: 'Dev'.
In metacello you can define groups of packages. When you load something with Metacello, you can do just load and that will load the default packages. But after, you can have differents groups. The default can be just the core packages. Then you can have groups called "Dev" where it also installs the dev tools.
Using load: you specify a group name, a package name or a list.
Take a look at the class ConfigurationOfO2, to the baseline methods, at the end, where the groups are defined.
Moreover, I recommend you to read the Metacello tutorial:
http://code.google.com/p/metacello/wiki/Tutorial
Cheers
Mariano
_______________________________________________
-- zekUs - http://zekus.net/blog
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
participants (4)
-
Mariano Martinez Peck -
Stéphane Ducasse -
Yoandy RodrÃguez MartÃnez -
zekUs