Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The stylesheet</p> <pre><code>&lt;xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output indent="yes"/&gt; &lt;xsl:strip-space elements="*"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="//DEST[@method and not(node())]"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="@* | node()"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="@* , node()"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;xsl:template match="DEST[@method and not(node())]"&gt; &lt;xsl:apply-templates select=".."&gt; &lt;xsl:with-param name="leaf" select="current()"/&gt; &lt;/xsl:apply-templates&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*[DEST[@method and not(node())]]"&gt; &lt;xsl:param name="leaf"/&gt; &lt;xsl:copy&gt; &lt;xsl:copy-of select="@* , $leaf"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>transforms</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;main method="modify"&gt; &lt;MACHINE method="modify"&gt; &lt;SOURCE id="AFRICA" method="modify"&gt; &lt;DEST id="RUSSIA" method="delete"/&gt; &lt;DEST id="USA" method="modify"/&gt; &lt;/SOURCE&gt; &lt;SOURCE id="USA" method="modify"&gt; &lt;DEST id="AUSTRALIA" method="modify"/&gt; &lt;DEST id="CANADA" method="create"/&gt; &lt;/SOURCE&gt; &lt;/MACHINE&gt; &lt;/main&gt; </code></pre> <p>into</p> <pre><code>&lt;SOURCE id="AFRICA" method="modify"&gt; &lt;DEST id="RUSSIA" method="delete"/&gt; &lt;/SOURCE&gt; &lt;SOURCE id="AFRICA" method="modify"&gt; &lt;DEST id="USA" method="modify"/&gt; &lt;/SOURCE&gt; &lt;SOURCE id="USA" method="modify"&gt; &lt;DEST id="AUSTRALIA" method="modify"/&gt; &lt;/SOURCE&gt; &lt;SOURCE id="USA" method="modify"&gt; &lt;DEST id="CANADA" method="create"/&gt; &lt;/SOURCE&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload