Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2016-06-25 19:07:43 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2016-06-25 19:07:43 +0300
commitf145c2e26186e19aec44891155b5808d852bc95c (patch)
tree7f846c49cbbb89b59bdcb9f8a9956f43b23031a8 /newlib/refcontainers.xslt
parent041ea4106881a3434e63ca95a38c911515793f09 (diff)
Revert "Make newlib manpages via DocBook XML (v3)"
This reverts commit 041ea4106881a3434e63ca95a38c911515793f09.
Diffstat (limited to 'newlib/refcontainers.xslt')
-rw-r--r--newlib/refcontainers.xslt14
1 files changed, 0 insertions, 14 deletions
diff --git a/newlib/refcontainers.xslt b/newlib/refcontainers.xslt
deleted file mode 100644
index 85396f6a8..000000000
--- a/newlib/refcontainers.xslt
+++ /dev/null
@@ -1,14 +0,0 @@
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <!-- trivial XSLT which removes the refentrycontainer layer -->
- <xsl:output method="xml" encoding="UTF-8" indent="yes" doctype-public="-//OASIS//DTD DocBook V4.5//EN" doctype-system="http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" />
- <xsl:strip-space elements="*"/>
-
- <!-- Whenever you match any node but refentrycontainer or any attribute -->
- <xsl:template match="node()[not(self::refentrycontainer)]|@*">
- <!-- Copy the current node -->
- <xsl:copy>
- <!-- Including any attributes it has and any child nodes -->
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-</xsl:stylesheet>