Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
---------------------------- Johan Brichau johan.brichau@uclouvain.be
Hi Johan,
I cannot reproduce that. The following works for me: - Download pharo1.0-10500-rc1dev09.12.1 - Load Moose: Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault
Were your steps different?
Cheers, Doru
On 11 Dec 2009, at 10:59, Johan Brichau wrote:
Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Presenting is storytelling."
Hi, I had the same problem but using ConfigurationOfMooseJEE that load Moose as dependency:
package: 'Moose-JEE' with: [ spec repository: 'http://www.squeaksource.com/MooseJEE'. spec requires: 'Moose for MooseJEE'"]; ....... ....... ....... spec project: 'Moose for MooseJEE' with: [ spec className: 'ConfigurationOfMoose'; file: 'ConfigurationOfMoose'; version: 'default'; repository: 'http://www.squeaksource.com/Moose' ].
In this case a warning message is displayed specifying some unsolved dependencies. Here part of the warning message:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel You must resolve these dependencies before you will be able to load these definitions: GLMMorphTreeColumn GLMMorphTreeColumn>>glamourColumn: GLMMorphTreeColumn>>rowMorphFor: GLMTreeMorphModel ....... ....... .......
Instead using Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault i don't have problem. I hope that this could help.
Cheers,
Fabrizio
On 11 Dec 2009, at 11:05, Tudor Girba wrote:
Hi Johan,
I cannot reproduce that. The following works for me:
- Download pharo1.0-10500-rc1dev09.12.1
- Load Moose:
Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault
Were your steps different?
Cheers, Doru
On 11 Dec 2009, at 10:59, Johan Brichau wrote:
Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Presenting is storytelling."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
When loading from a virgin image, I do not get the problem anymore.
It seems related somehow to projects that were loaded before Moose. I solved my case by first loading Moose and loading my own projects afterwards.
On 11 Dec 2009, at 11:27, Fabrizio Perin wrote:
Hi, I had the same problem but using ConfigurationOfMooseJEE that load Moose as dependency:
package: 'Moose-JEE' with: [ spec repository: 'http://www.squeaksource.com/MooseJEE'. spec requires: 'Moose for MooseJEE'"]; ....... ....... ....... spec project: 'Moose for MooseJEE' with: [ spec className: 'ConfigurationOfMoose'; file: 'ConfigurationOfMoose'; version: 'default'; repository: 'http://www.squeaksource.com/Moose' ].
In this case a warning message is displayed specifying some unsolved dependencies. Here part of the warning message:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel You must resolve these dependencies before you will be able to load these definitions: GLMMorphTreeColumn GLMMorphTreeColumn>>glamourColumn: GLMMorphTreeColumn>>rowMorphFor: GLMTreeMorphModel ....... ....... .......
Instead using Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault i don't have problem. I hope that this could help.
Cheers,
Fabrizio
On 11 Dec 2009, at 11:05, Tudor Girba wrote:
Hi Johan,
I cannot reproduce that. The following works for me:
- Download pharo1.0-10500-rc1dev09.12.1
- Load Moose:
Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault
Were your steps different?
Cheers, Doru
On 11 Dec 2009, at 10:59, Johan Brichau wrote:
Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Presenting is storytelling."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
---------------------------- Johan Brichau johan.brichau@uclouvain.be
In the same way it works for me too.
Cheers,
Fabrizio
On 11 Dec 2009, at 12:15, Johan Brichau wrote:
When loading from a virgin image, I do not get the problem anymore.
It seems related somehow to projects that were loaded before Moose. I solved my case by first loading Moose and loading my own projects afterwards.
On 11 Dec 2009, at 11:27, Fabrizio Perin wrote:
Hi, I had the same problem but using ConfigurationOfMooseJEE that load Moose as dependency:
package: 'Moose-JEE' with: [ spec repository: 'http://www.squeaksource.com/MooseJEE'. spec requires: 'Moose for MooseJEE'"]; ....... ....... ....... spec project: 'Moose for MooseJEE' with: [ spec className: 'ConfigurationOfMoose'; file: 'ConfigurationOfMoose'; version: 'default'; repository: 'http://www.squeaksource.com/Moose' ].
In this case a warning message is displayed specifying some unsolved dependencies. Here part of the warning message:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel You must resolve these dependencies before you will be able to load these definitions: GLMMorphTreeColumn GLMMorphTreeColumn>>glamourColumn: GLMMorphTreeColumn>>rowMorphFor: GLMTreeMorphModel ....... ....... .......
Instead using Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault i don't have problem. I hope that this could help.
Cheers,
Fabrizio
On 11 Dec 2009, at 11:05, Tudor Girba wrote:
Hi Johan,
I cannot reproduce that. The following works for me:
- Download pharo1.0-10500-rc1dev09.12.1
- Load Moose:
Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault
Were your steps different?
Cheers, Doru
On 11 Dec 2009, at 10:59, Johan Brichau wrote:
Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Presenting is storytelling."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Fabrizio Perin Institut fuer Mathematik und Informatik University Bern, IAM-SCG Neubrueckstrasse 10 CH-3012 Bern, Switzerland Tel: +41 31 631 33 13 FAX: +41 31 631 33 55
Hi,
I am not sure that the problems are the same, but they sure are exhibited in the same place.
I can now reproduce the MooseJEE problem (I added back the dependency to Moose), but I do not know yet what the problem actually is. I will get back with more details when I know them.
Cheers, Doru
On 11 Dec 2009, at 12:23, Fabrizio Perin wrote:
In the same way it works for me too.
Cheers,
Fabrizio
On 11 Dec 2009, at 12:15, Johan Brichau wrote:
When loading from a virgin image, I do not get the problem anymore.
It seems related somehow to projects that were loaded before Moose. I solved my case by first loading Moose and loading my own projects afterwards.
On 11 Dec 2009, at 11:27, Fabrizio Perin wrote:
Hi, I had the same problem but using ConfigurationOfMooseJEE that load Moose as dependency:
package: 'Moose-JEE' with: [ spec repository: 'http://www.squeaksource.com/MooseJEE'. spec requires: 'Moose for MooseJEE'"]; ....... ....... ....... spec project: 'Moose for MooseJEE' with: [ spec className: 'ConfigurationOfMoose'; file: 'ConfigurationOfMoose'; version: 'default'; repository: 'http://www.squeaksource.com/Moose' ].
In this case a warning message is displayed specifying some unsolved dependencies. Here part of the warning message:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel You must resolve these dependencies before you will be able to load these definitions: GLMMorphTreeColumn GLMMorphTreeColumn>>glamourColumn: GLMMorphTreeColumn>>rowMorphFor: GLMTreeMorphModel ....... ....... .......
Instead using Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault i don't have problem. I hope that this could help.
Cheers,
Fabrizio
On 11 Dec 2009, at 11:05, Tudor Girba wrote:
Hi Johan,
I cannot reproduce that. The following works for me:
- Download pharo1.0-10500-rc1dev09.12.1
- Load Moose:
Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault
Were your steps different?
Cheers, Doru
On 11 Dec 2009, at 10:59, Johan Brichau wrote:
Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Presenting is storytelling."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Fabrizio Perin Institut fuer Mathematik und Informatik University Bern, IAM-SCG Neubrueckstrasse 10 CH-3012 Bern, Switzerland Tel: +41 31 631 33 13 FAX: +41 31 631 33 55
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"The coherence of a trip is given by the clearness of the goal."
Ok, the problem of MooseJEE was solved, but I guess the other one remains intact.
Johan, what happens if after you load your code you load ConfigurationOfGlamour instead of ConfigurationOfMoose?
Cheers, Doru
On 11 Dec 2009, at 12:29, Tudor Girba wrote:
Hi,
I am not sure that the problems are the same, but they sure are exhibited in the same place.
I can now reproduce the MooseJEE problem (I added back the dependency to Moose), but I do not know yet what the problem actually is. I will get back with more details when I know them.
Cheers, Doru
On 11 Dec 2009, at 12:23, Fabrizio Perin wrote:
In the same way it works for me too.
Cheers,
Fabrizio
On 11 Dec 2009, at 12:15, Johan Brichau wrote:
When loading from a virgin image, I do not get the problem anymore.
It seems related somehow to projects that were loaded before Moose. I solved my case by first loading Moose and loading my own projects afterwards.
On 11 Dec 2009, at 11:27, Fabrizio Perin wrote:
Hi, I had the same problem but using ConfigurationOfMooseJEE that load Moose as dependency:
package: 'Moose-JEE' with: [ spec repository: 'http://www.squeaksource.com/MooseJEE'. spec requires: 'Moose for MooseJEE'"]; ....... ....... ....... spec project: 'Moose for MooseJEE' with: [ spec className: 'ConfigurationOfMoose'; file: 'ConfigurationOfMoose'; version: 'default'; repository: 'http://www.squeaksource.com/Moose' ].
In this case a warning message is displayed specifying some unsolved dependencies. Here part of the warning message:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel You must resolve these dependencies before you will be able to load these definitions: GLMMorphTreeColumn GLMMorphTreeColumn>>glamourColumn: GLMMorphTreeColumn>>rowMorphFor: GLMTreeMorphModel ....... ....... .......
Instead using Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault i don't have problem. I hope that this could help.
Cheers,
Fabrizio
On 11 Dec 2009, at 11:05, Tudor Girba wrote:
Hi Johan,
I cannot reproduce that. The following works for me:
- Download pharo1.0-10500-rc1dev09.12.1
- Load Moose:
Gofer new squeaksource: 'Moose'; addPackage: 'ConfigurationOfMoose'; load. (Smalltalk at: #ConfigurationOfMoose) perform: #loadDefault
Were your steps different?
Cheers, Doru
On 11 Dec 2009, at 10:59, Johan Brichau wrote:
Hi Moosers,
I just loaded Moose in the latest Pharo-Dev using the script on your website but I got a bunch of unloadable definitions:
This package depends on the following classes: MorphTreeModel MorphTreeColumn MorphTreeNodeModel
I did a proceed and obviously, Moose Finder does not open :-(
Can you help me out ?
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"Presenting is storytelling."
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Johan Brichau johan.brichau@uclouvain.be
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Fabrizio Perin Institut fuer Mathematik und Informatik University Bern, IAM-SCG Neubrueckstrasse 10 CH-3012 Bern, Switzerland Tel: +41 31 631 33 13 FAX: +41 31 631 33 55
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
-- www.tudorgirba.com
"The coherence of a trip is given by the clearness of the goal."
-- www.tudorgirba.com
"Don't give to get. Just give."