summaryrefslogtreecommitdiffstats
path: root/libxslt/doc/xsa.xsl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-11-17 21:20:33 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-11-17 21:20:33 (GMT)
commit8d530e150d787e9a74e27592d4e67a496cd922da (patch)
tree654bad0c60b323298447897b79abd7bd9ce8f3c7 /libxslt/doc/xsa.xsl
parent8096d34300076a1aa9cb517de49fb920a051939f (diff)
downloadblt-8d530e150d787e9a74e27592d4e67a496cd922da.zip
blt-8d530e150d787e9a74e27592d4e67a496cd922da.tar.gz
blt-8d530e150d787e9a74e27592d4e67a496cd922da.tar.bz2
local fork libxslt
Diffstat (limited to 'libxslt/doc/xsa.xsl')
-rw-r--r--libxslt/doc/xsa.xsl54
1 files changed, 0 insertions, 54 deletions
diff --git a/libxslt/doc/xsa.xsl b/libxslt/doc/xsa.xsl
deleted file mode 100644
index 343ef34..0000000
--- a/libxslt/doc/xsa.xsl
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0"?>
-<!--
- Stylesheet generating the XSA entry for libxslt based on the
- latest News entry.
- See http://www.garshol.priv.no/download/xsa/ for a description of XSA
- -->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
- xmlns:xhtml="http://www.w3.org/1999/xhtml" exclude-result-prefixes="xhtml">
- <xsl:output method="xml"
- doctype-public="-//LM Garshol//DTD XML Software Autoupdate 1.0//EN//XML"
- doctype-system="http://www.garshol.priv.no/download/xsa/xsa.dtd"
- indent="yes"/>
-
- <xsl:template match="/">
-<xsa>
- <vendor>
- <name>Daniel Veillard</name>
- <email>daniel@veillard.com</email>
- <url>http://veillard.com/</url>
- </vendor>
- <product id="libxslt">
- <name>libxslt</name>
- <version><xsl:value-of select="substring-before(//xhtml:h3[2], ':')"/></version>
- <last-release><xsl:value-of select="substring-after(//xhtml:h3[2], ':')"/></last-release>
- <info-url>http://xmlsoft.org/XSLT/</info-url>
- <changes>
- <xsl:apply-templates select="//xhtml:h3[2]/following-sibling::*[1]"/>
- </changes>
- </product>
-</xsa>
- </xsl:template>
- <xsl:template match="xhtml:h3">
- </xsl:template>
- <xsl:template match="xhtml:ul">
- <xsl:apply-templates select=".//xhtml:li"/>
- <xsl:text>
-</xsl:text>
- </xsl:template>
- <xsl:template match="xhtml:li">
- <xsl:text> - </xsl:text>
- <xsl:value-of select="."/>
- <xsl:text>
-</xsl:text>
- </xsl:template>
- <xsl:template match="xhtml:a">
- <xsl:value-of select="."/>
- <xsl:text> at
-</xsl:text>
- <xsl:value-of select="@href"/>
- <xsl:text>
-</xsl:text>
- </xsl:template>
-</xsl:stylesheet>
-