[Seaside] element <body>

Jim Benson jb@speed.net
Mon, 17 Jun 2002 13:35:25 -0700


The code generator seems pretty content spitting out

<body>

in IAPage>>printContentsTo:

That is, it ignores the body tag attributes when generating code.

However, I need to be able to say such silly things as:

<body bgcolor='000000'>

and such. Right, really I need to be able to put a 'class=' statement in
there, but for sake of example...

I don't see any way to do that currently. When I generate

 html

^ '<html>
   <heading>
   </heading>
   <body bgcolor=''000000''>
   </body>
   </html>'


The HTML generated does not show the bgcolor tag. Is there a way around
this?

Jim