There are two failing tests in the latest version on the public repository.
Both failures are related to 'mailto:' being translated into
'mailto:'.
Also, could the action and permissions be changed to lazily initialize.
Currently, the initialization is in the post load block. This is VW specific
so when I port it, I must convert it to #Smalltalk code manually. I think
this would work:
actions
actions isNil
ifTrue: [ self initializeActions ].
^actions
initializeActions
actions := Set new.
actions
add: ...
John Brant
Show replies by date