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]
Other format: [Raw text]

Output XML doc with XSL doc name in comment


Dear Friends,
I am attempting to output the xsl document in a comment field when I
generate the new xml document.

I am not getting anywhere.

Anyone have a suggestion?

Sincerely,
Mike F.

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<xsl:stylesheet   version="1.0"  
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output version="1.0" method="xml" indent="yes" encoding="utf-8"
omit-xml-declaration="no" standalone="no" media-type="text/xml"/>

<xsl:template match="/">
  <xsl:comment>
    <xsl:variable name="rr" select="document('')"/>
    <xsl:value-of select="concat('xyz', $rr)"/>
  </xsl:comment>
  <LLL>
   <xsl:apply-templates select="//*"/>
  </LLL>
</xsl:template>

</xsl:stylesheet>

__________________________________________________
Do You Yahoo!?
Yahoo! Health - your guide to health and wellness
http://health.yahoo.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]