[Seaside] newbie question ...

Randal L. Schwartz merlyn at stonehenge.com
Sun Sep 6 19:44:27 UTC 2009


>>>>> "Johannes" == Johannes Brauer <brauer at nordakademie.de> writes:

Johannes> Hi,
Johannes> can somebody explain me the difference between

Johannes> html text: 'a text'

Johannes> and

Johannes> html render: 'a text'

The latter takes a lot more steps:

  html render: 'a text'

sends:

  'a text' renderOn: html

which is found in String, and then sends:

  html text: 'a text'

:-)

So, if you don't mind going slower, you can take the long route if you want.

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn at stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion


More information about the seaside mailing list