Hi Nico,

what exactly is updatePage: aPage for?

We all seem to be using it to update head information and guessing
from the position in respondOn: it is not intended to modify the
body element.

        | page |
        page := self defaultPageClass new.
        self buildOn: page body.
        self updatePage: page.
        page respondOn: aResponse

So why not call it "updateHead: aHead" and use it like

        | page |
        page := self defaultPageClass new.
        self buildOn: page body.
        self updateHead: page head.
        page respondOn: aResponse

Later,
s.


_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to