xml editor

   XML Editor
   XML Author
      DITA Editor
      DocBook Editor
      TEI Editor
      XHTML Editor
      Schema Editor
      XML Schema Editor
      RelaxNG Editor
   XQuery
   SVN Client
      Office Open XML
      XSL:FO Editor
      SVG Editor
      WSDL Editor
Supported platforms
Compatible with Windows7 & Mac OS X Snow Leopard
Ready for
data server software
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Modifying XML file


Subject: RE: [xsl] Modifying XML file
From: <Jarno.Elovirta@xxxxxxxxx>
Date: Tue, 1 Mar 2005 08:44:03 +0200

Hi,

>     Let's say I have 2 XML nodes <a>, and <c>.  My
> ultimate goal is to add a third node, <b>, in between
> <a>, and <c> in the XML file.  I would like to do this
> using an XSL transformation, with both the original
> file and the output file in XML format.  What would
> this part of the XSL look like?

<xsl:template match="a">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
  <b/>
</xsl:template>
<xsl:template match="@* | node()">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

> Also, for the output
> to be in XML format, do I ONLY need to change the
> output method to "xml", or is there more to it?
> Thanks so much.

xsl:output method defaults to "xml" (there are cases when "html" is the
default, see the spec for details), so you don't need to set it.

Cheers,

Jarno - Solitary Experiments: The Dark Inside Me (Lights of Euphoria mixb)


Current Thread
Keywords
XML Editor | XML Author | WYSIWYG Editors | Schema Editor | XSD Documentation | XSL/XSLT Editor | XQuery | XML Databases | SVN Client
© 2002-2009 SyncRO Soft Ltd. All rights reserved. | Sitemap | Privacy Policy | This website was created & generated with <oXygen/>® XML Editor