[Seaside] Seaside suggestions :-)

Marco Qualizza mlq at codedaemon.com
Sat Mar 19 03:42:07 CET 2005


I'm sorry for the intrusion if this isn't the correct list for this
question, but where does one suggest fixes/changes to Seaside?

For example, while
#a = 'a'
is true in Squeak, it evaluates to false in VW, while
#a = 'a' asSymbol
evaluates correctly in both.

(On VW the pretty printer doesn't work. ;-) )

So, the changes that I'd like to suggest are, in
WAPrettyPrintedDocument>>isKnownTag:
change
^ self knownTags includes: aString
to
^ self knownTags includes: aString asSymbol

and in WAPrettyPrintedDocument>>isKnownAttribute:
change
^ self knownAttributes includes: aString asLowercase
to
^ self knownAttributes includes: aString asLowercase asSymbol

Thanks,
   Marco



More information about the Seaside mailing list