Mini Shell
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" />
<xsl:strip-space elements="*"/>
<xsl:template match="/OMA">
<DataArea>
<PageTitle>
<xsl:attribute name="display"><!--XLATESTART-->Version Report<!--XLATESTOP--></xsl:attribute>
</PageTitle>
<SummaryData>
<xsl:apply-templates select="Summary"/>
</SummaryData>
</DataArea>
</xsl:template>
<xsl:template match="Summary">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Zerion Mini Shell 1.0