I use various namespace declarations in my xslt, as
follows:

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:sql="http://apache.org/cocoon/SQL/2.0";
  xmlns:xhtml="http://www.w3.org/1999/xhtml";
xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0";
   
  xmlns:dc="http://purl.org/dc/elements/1.1/";
>

As a result, cocoon includes all of the namespaces
within the html tag of the output xhtml as follows:

<html xmlns:dc="http://purl.org/dc/elements/1.1/";
xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0";
xmlns:xhtml="http://www.w3.org/1999/xhtml";
xmlns:sql="http://apache.org/cocoon/SQL/2.0";>

How can I prevent cocoon from including the namespaces
the the output html tag?


Kirk




                
__________________________________
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 

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

Reply via email to