This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: xsl to xsl


At 03:57 PM 4/3/01 -0400, you wrote:
>Hello,
>I'm trying to output an xsl using xsl and am having a hard time
>distinguishing which parts i want the processor to actually process and
>which parts are meant to be straight output.  <xsl:text> doesn't seem to be
>any help and <![CDATA escapes all the brackets making the output useless.
>Any suggestions?
>Thanks,
>Alex
>

I believe that you can redefine the namespace for the XSL program itself 
and use the xsl: namespace for your output. You have to ensure that the new 
namespace uses the URI of the XSLT namespace.

for example,

<simon:stylesheet xmlns:simon="http://www.w3.org/1999/XSL/Transform";>
<simon:template match="/">
<xsl:template match="whatever">...

etc.


Simon

xmlgeek@email.com


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]