[Seaside] [ENH] Unnecessary repeat attribut in HTML page

Alain Fischer alain.fischer@bluewin.ch
Wed, 3 Apr 2002 00:07:47 +0200


Hi Avi,

If you take a look at the HTML generated by Seaside, you can see that 
there is unnecessary
repeat attribute for IAVisibleRepeat. This make unnecessary big HTML 
page. To prevent these
attributes I have modified the following method:

IAVisibleRepeat>>printContentsTo: page
	attributes removeKey: 'repeat' ifAbsent: [].
	self printOpenTagTo: page.
	super printContentsTo: page.
	self printCloseTagTo: page.

Perhaps it's not the best way to correct this. I let you decide.

Have a nice day
Alain.