I loaded Seaside 2.8.3 into the new core for fun (I used MetacelloRepository ConfigurationOfSeaside28) . It's less than 10M, which is pretty sweet. It loads, which is sweet. On executing WAKom startOn: 8080 to get the party started , I go to localhost:8080/seaside/config. So far so good.
Then the page renders and all CSS is gone. Not a huge problem. But not ideal. No CSS at all.
I decide to save my work. I'll address the disappearance of the CSS some other time. Then I get:
MessageNotUnderstood: SmalltalkImage>>extractParameters:
This is something that exists in 3.10.2. Pressing Debug, the method that needs this is:
WAKom>>#startUp
self name = #WAKom ifTrue: [
SmalltalkImage current extractParameters
at: 'PORT' ifPresent: [ :value |
value isEmptyOrNil
ifFalse: [ port := value asInteger ] ] ].
port ifNotNil: [ self startOn: port ]
I don't know if anybody else has this problem, but it kind of looks like a thing.
Chris