> 1. Be very, very careful of namespaces.. Its really easy to do > > <d:table xmlns="blah" /> > > and then > > <xsl:copy-of select="d:table"> > > And wonder why things aren't being output. Things aren't being output > because the xslt processor doesn't know what a d:table is unless you have an > xmlns="blah" in your xslt as well. <d:table> may look like an xhtml tag but > its not unless you have it in the xhtml namespace.
See how easy it is, I did it myself. :-) I mean if you have this in your document. <d:table xmlns:d="blah" /> then remember to add xmlns:d="blah" to any xslt that transforms that document later. Damon. _______________________________________________ oxf-users mailing list [EMAIL PROTECTED] http://mail.orbeon.com/mailman/listinfo/oxf-users
