SeasideSt / Seaside

The framework for developing sophisticated web applications in Smalltalk.
MIT License
508 stars 71 forks source link

Squeak needs version of WAInspector #1394

Open timrowledge opened 7 months ago

timrowledge commented 7 months ago

Whilst trying to follow the HPI seaside tutorial (so many problems...) I used the halo to inspect some component or other and discovered that the WAInspector current isWAPharoInspector, which implements #evaluate in a manner that cannot work for Squeak.

I'm pretty sure it should be

evaluate
^self object class compilerClass new
evaluate: input for: self object

... but not certain yet. Also not sure where one would put any WASqueaInspector select in the package loading process.

timrowledge commented 7 months ago

Simple implementation follwed by manual WAPharoInspector unload & WASqueakInspector select seems to make the UI work ok.