Loading Seaside adaptors in 3.1

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

Loading Seaside adaptors in 3.1

Johan Brichau-2
Hi Seasiders,

If you want to load an adaptor with Seaside3.1, you need to load it explicitly using the ConfigurationOfSeaside3.
There is no default adaptor for any platform and the entire Metacello configuration has been written with modular loading in mind. So please do not add adaptors to the core group!

Metacello is very easy to use like this.

For example:

To load it with the Zinc adaptor:
        (ConfigurationOfSeaside3 project version:'3.1') load: #('Core' 'Zinc')

To load it with the WebClient adaptor:
        (ConfigurationOfSeaside3 project version:'3.1') load: #('Core' 'WebClient')

To load it with the Swazoo adaptor:
        (ConfigurationOfSeaside3 project version:'3.1') load: #('Core' 'Swazoo')

To load it with the Kom adaptor:
        (ConfigurationOfSeaside3 project version:'3.1') load: #('Core' 'Kom')

To load it with the Comanche adaptor:
        (ConfigurationOfSeaside3 project version:'3.1') load: #('Core' 'Comanche')

To load it with the FastCGI adaptor:
        (ConfigurationOfSeaside3 project version:'3.1') load: #('Core' 'FastCGI')

Cheers!
Johan_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside