There is work going on for the Configuration as you will
see from Phillips and Paul's postings here:
http://lists.squeakfoundation.org/pipermail/seaside-dev/2012-November/date.htmlIt's not yet ready.
But for Pharo 2.0 latest you can use this script:
https://github.com/renggli/builder/blob/master/scripts/seaside31-pharo2.stand then
"Zinc Server"
Gofer new
squeaksource: 'ZincHTTPComponents';
package: 'Zinc-Seaside';
load.
"Start Zinc"
(ZnZincServerAdaptor port: 8080)
codec: GRPharoUtf8Codec new;
start.
to run Seaside. You have to either disable the deprecated
warnings or fix WAAbstractFileLibrary>>updateRoot: and some
other methods to use #includesSubstring: instead of
#includesSubString: since this has changed in Pharo 2.0.
Just check for senders of #includesSubString: and then it
runs.
Thx
T.
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside