Oro smith wrote:
I have an xsl which begins like this:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:page="http://apache.org/cocoon/paginate/1.0";


I also have <br> tags inside xsl. The xsl is used to generate wml. however when the wml is generated every br tag has an xmlns associated with it.

<br xmlns:page="http://apache.org/cocoon/paginate/1.0";>

How can this be removed?

If you are generating wml, what about setting standard namespace to wml as well?

<xsl:stylesheet version="1.0"
  xmlns="http://www.wapforum.org/2001/wml";
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:page="http://apache.org/cocoon/paginate/1.0";>

--
Volkmar W. Pogatzki


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to