ConfigurationOfSeaside30 project stableVersion load: #('Zinc-Seaside') results in an image without WAComponent

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

ConfigurationOfSeaside30 project stableVersion load: #('Zinc-Seaside') results in an image without WAComponent

Paul DeBruicker
This is probably a testament to my lack of understanding but, I wanted
to make note of it in case its an error.

Starting from a fresh Pharo-1.3-13315 image if you load the
ConfigurationOfSeaside30 then in a workspace you run:

ConfigurationOfSeaside30 project stableVersion load: #('Zinc-Seaside')

You get an image that doesn't have WAComponent.  I would have thought
you'd get a base system.
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: ConfigurationOfSeaside30 project stableVersion load: #('Zinc-Seaside') results in an image without WAComponent

Dale Henrichs
Paul,

Sorry for the late reply ... I was taking a vacation last week ...

In general, if you load a specific package from a configuration (like 'Zinc-Seaside'), you will get that package plus the packages and projects that it directly depends upon loaded and nothing more...

If you want "Seaside loaded" then you need to think about what that means ... Do you want all of the Seaside packages loaded? Do you want the bare minimum of Seaside loaded? Do you want the standard Seaside packages loaded?

There are groups that you can use to perform the above operations, so you should decide which part of Seaside you want loaded and then include the optional packages as necessary:

  - `ConfigurationOfSeaside30 project stableVersion load: 'ALL'` will
    load all of the Seaside packages, including 'Zinc-Seaside'.

  - `ConfigurationOfSeaside30 project stableVersion load: #('Base' 'Zinc-Seaside')`
    will load the bare minimum of Seaside, plus 'Zinc-Seaside'.

  - `ConfigurationOfSeaside30 project stableVersion load: #('Core' 'Zinc-Seaside')`
    will load all of the standard Seaside packages, plus 'Zinc-Seaside'.

Dale

----- Original Message -----
| From: "Paul DeBruicker" <[hidden email]>
| To: "Seaside - general discussion" <[hidden email]>
| Sent: Saturday, December 24, 2011 12:40:55 PM
| Subject: [Seaside] ConfigurationOfSeaside30 project stableVersion load: #('Zinc-Seaside') results in an image without
| WAComponent
|
| This is probably a testament to my lack of understanding but, I
| wanted
| to make note of it in case its an error.
|
| Starting from a fresh Pharo-1.3-13315 image if you load the
| ConfigurationOfSeaside30 then in a workspace you run:
|
| ConfigurationOfSeaside30 project stableVersion load:
| #('Zinc-Seaside')
|
| You get an image that doesn't have WAComponent.  I would have thought
| you'd get a base system.
| _______________________________________________
| seaside mailing list
| [hidden email]
| http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
|
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside