[Seaside] Loading Seaside adaptors in 3.1

Johan Brichau johan at inceptive.be
Fri Sep 27 07:25:05 UTC 2013


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


More information about the seaside mailing list