Gofer new
squeaksource: 'XMLSupport'; package: 'XML-Parser'; load. raise error because of tests not present. Did I do something wrong? Then why the configuration load pastell? why this is squeakCommon? Does it work if this is in pharo? Why do we load SIXX in gemstone? This configuration looks like a mess. Can somebody fix that. core should load the parser sixx may be sixx pastell should load core and pastell Stef version105: spec <version: '1.0.5' imports: #('1.0.5-baseline' )> spec for: #'common' do: [ spec blessing: #stable. spec author: 'Alexandre Bergel'. spec timestamp: '10/5/2010 14:06'. ]. spec for: #'squeakCommon' do: [ spec package: 'XML-Parser' with: 'XML-Parser-AlexandreBergel.93'; package: 'Pastell' with: 'Pastell-Alexandre_Bergel.18'.]. spec for: #'gemstone' do: [ spec project: 'Grease Core' with: '1.0-rc'. spec package: 'XML-Parser' with: 'XML-Parser.g-DaleHenrichs.93'; package: 'SIXX' with: 'SIXX-NorbertHartl.171'.]. Stef |
in seaside3.0
On Oct 31, 2010, at 10:55 AM, stephane ducasse wrote: > Gofer new > squeaksource: 'XMLSupport'; > package: 'XML-Parser'; load. > > raise error because of tests not present. > > Did I do something wrong? > > > Then why the configuration load pastell? > > why this is squeakCommon? Does it work if this is in pharo? > > Why do we load SIXX in gemstone? > > This configuration looks like a mess. Can somebody fix that. > core should load the parser > sixx may be sixx > pastell should load core and pastell > > Stef > > > version105: spec > <version: '1.0.5' imports: #('1.0.5-baseline' )> > > spec for: #'common' do: [ > spec blessing: #stable. > spec author: 'Alexandre Bergel'. > spec timestamp: '10/5/2010 14:06'. > ]. > > spec for: #'squeakCommon' do: [ > spec > package: 'XML-Parser' with: 'XML-Parser-AlexandreBergel.93'; > package: 'Pastell' with: 'Pastell-Alexandre_Bergel.18'.]. > > spec for: #'gemstone' do: [ > spec project: 'Grease Core' with: '1.0-rc'. > spec > package: 'XML-Parser' with: 'XML-Parser.g-DaleHenrichs.93'; > package: 'SIXX' with: 'SIXX-NorbertHartl.171'.]. > > > > Stef > |
In reply to this post by stephane ducasse
Am 2010-10-31 um 10:55 schrieb stephane ducasse:
> why this is squeakCommon? Does it work if this is in pharo? #squeakCommon is for configuration specs common to Pharo and Squeak. #pharo is for configuration specs for Pharo only. #squeak is for configuration specs for Squeak only. So Long, -Tobias |
In reply to this post by stephane ducasse
Hi Stef,
This works without dog sounds: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfXMLSupport'; load. ConfigurationOfXMLSupport load On 31 Oct 2010, at 10:55, stephane ducasse wrote: > Gofer new > squeaksource: 'XMLSupport'; > package: 'XML-Parser'; load. > > raise error because of tests not present. > > Did I do something wrong? |
In reply to this post by stephane ducasse
On Nov 1, 2010, at 4:14 PM, Johan Brichau wrote: > Hi Stef, > > This works without dog sounds: > > Gofer new > squeaksource: 'MetacelloRepository'; > package: 'ConfigurationOfXMLSupport'; load. > ConfigurationOfXMLSupport load Thanks johan! Probably the configuration in the Project is not up to date. The pattern should be publish and maintain a configuration per project (imagine that metacelloRepository vanish tomorrow) copy the config from time to time to Metacello Alex is it you that maintain the configurationOfXMLSupport? The new publish mechanism dale is working on will probably save this problem. Stef > On 31 Oct 2010, at 10:55, stephane ducasse wrote: > >> Gofer new >> squeaksource: 'XMLSupport'; >> package: 'XML-Parser'; load. >> >> raise error because of tests not present. >> >> Did I do something wrong? > > |
Ok,
last but not least the most up to date variant :) Gofer new squeaksource: 'XMLSupport'; package: 'ConfigurationOfXMLSupport'; load. ConfigurationOfXMLSupport load Norbert On 01.11.2010, at 20:17, Stéphane Ducasse wrote: > > On Nov 1, 2010, at 4:14 PM, Johan Brichau wrote: > >> Hi Stef, >> >> This works without dog sounds: >> >> Gofer new >> squeaksource: 'MetacelloRepository'; >> package: 'ConfigurationOfXMLSupport'; load. >> ConfigurationOfXMLSupport load > > Thanks johan! > > Probably the configuration in the Project is not up to date. > The pattern should be > publish and maintain a configuration per project (imagine that metacelloRepository vanish tomorrow) > copy the config from time to time to Metacello > > Alex is it you that maintain the configurationOfXMLSupport? > > The new publish mechanism dale is working on will probably save this problem. > > Stef > >> On 31 Oct 2010, at 10:55, stephane ducasse wrote: >> >>> Gofer new >>> squeaksource: 'XMLSupport'; >>> package: 'XML-Parser'; load. >>> >>> raise error because of tests not present. >>> >>> Did I do something wrong? >> >> > > |
In reply to this post by Stéphane Ducasse
tx!
On Nov 1, 2010, at 11:24 PM, Norbert Hartl wrote: > Ok, > > last but not least the most up to date variant :) > > Gofer new > squeaksource: 'XMLSupport'; > package: 'ConfigurationOfXMLSupport'; load. > ConfigurationOfXMLSupport load > > Norbert > > > On 01.11.2010, at 20:17, Stéphane Ducasse wrote: > >> >> On Nov 1, 2010, at 4:14 PM, Johan Brichau wrote: >> >>> Hi Stef, >>> >>> This works without dog sounds: >>> >>> Gofer new >>> squeaksource: 'MetacelloRepository'; >>> package: 'ConfigurationOfXMLSupport'; load. >>> ConfigurationOfXMLSupport load >> >> Thanks johan! >> >> Probably the configuration in the Project is not up to date. >> The pattern should be >> publish and maintain a configuration per project (imagine that metacelloRepository vanish tomorrow) >> copy the config from time to time to Metacello >> >> Alex is it you that maintain the configurationOfXMLSupport? >> >> The new publish mechanism dale is working on will probably save this problem. >> >> Stef >> >>> On 31 Oct 2010, at 10:55, stephane ducasse wrote: >>> >>>> Gofer new >>>> squeaksource: 'XMLSupport'; >>>> package: 'XML-Parser'; load. >>>> >>>> raise error because of tests not present. >>>> >>>> Did I do something wrong? >>> >>> >> >> > > |
In reply to this post by Stéphane Ducasse
Yes, I am maintaining ConfigurationOfXMLSupport, but this MetacelloRepository is adding a lot of unnecessary noise...
So, the last configuration is in the XMLSupport repository Alexandre On 1 Nov 2010, at 16:17, Stéphane Ducasse wrote: > Alex is it you that maintain the configurationOfXMLSupport? -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. |
Free forum by Nabble | Edit this page |