summaryrefslogtreecommitdiff
path: root/trunk/adodb5/xsl/remove-0.3.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/adodb5/xsl/remove-0.3.xsl')
-rw-r--r--trunk/adodb5/xsl/remove-0.3.xsl54
1 files changed, 0 insertions, 54 deletions
diff --git a/trunk/adodb5/xsl/remove-0.3.xsl b/trunk/adodb5/xsl/remove-0.3.xsl
deleted file mode 100644
index 4b1cd02e..00000000
--- a/trunk/adodb5/xsl/remove-0.3.xsl
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
->
- <xsl:output method="xml" indent="yes" omit-xml-declaration="no" encoding="UTF-8"/>
-
- <!-- Schema -->
- <xsl:template match="/">
- <xsl:comment>
-ADODB XMLSchema
-http://adodb-xmlschema.sourceforge.net
-</xsl:comment>
-
- <xsl:comment>
-Uninstallation Schema
-</xsl:comment>
-
- <xsl:element name="schema">
- <xsl:attribute name="version">0.3</xsl:attribute>
-
- <xsl:apply-templates select="schema/table">
- <xsl:sort select="position()" data-type="number" order="descending"/>
- </xsl:apply-templates>
- </xsl:element>
- </xsl:template>
-
- <!-- Table -->
- <xsl:template match="table">
- <xsl:if test="count(DROP) = 0">
- <xsl:element name="table">
- <xsl:attribute name="name"><xsl:value-of select="@name"/></xsl:attribute>
-
- <xsl:if test="string-length(@platform) > 0">
- <xsl:attribute name="platform"><xsl:value-of select="@platform"/></xsl:attribute>
- </xsl:if>
-
- <xsl:if test="string-length(@version) > 0">
- <xsl:attribute name="version"><xsl:value-of select="@version"/></xsl:attribute>
- </xsl:if>
-
- <xsl:apply-templates select="descr[1]"/>
-
- <xsl:element name="DROP"/>
- </xsl:element>
- </xsl:if>
- </xsl:template>
-
- <!-- Description -->
- <xsl:template match="descr">
- <xsl:element name="descr">
- <xsl:value-of select="normalize-space(text())"/>
- </xsl:element>
- </xsl:template>
-</xsl:stylesheet> \ No newline at end of file