So if you have a template that is just: <t:comp ... /> <t:comp ... />
this won't work because you need the "t" namespace obviously. So it becomes something like this perhaps: <div xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"> <t:comp ... /> <t:comp ... /> </div> which works fine but now you have an extra div your output just to put in the namespace. Anyone know a good way around this like some element that won't render? Something like this could be good (empty is a bad name probably but you get the point): <t:empty xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"> <t:comp ... /> <t:comp ... /> </t:empty> -- Dan Adams Senior Software Engineer Interactive Factory 617.235.5857 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]