Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'docs/org.eclipse.wst.validation.doc.isv/extDocToc.xsl')
-rw-r--r--docs/org.eclipse.wst.validation.doc.isv/extDocToc.xsl22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/org.eclipse.wst.validation.doc.isv/extDocToc.xsl b/docs/org.eclipse.wst.validation.doc.isv/extDocToc.xsl
deleted file mode 100644
index 30e54b8dc..000000000
--- a/docs/org.eclipse.wst.validation.doc.isv/extDocToc.xsl
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns:xalan="http://xml.apache.org/xslt"
- exclude-result-prefixes="xalan">
- <xsl:param name="listed-ext-points"/>
-
- <xsl:template match="components">
- <xsl:text disable-output-escaping="yes">
-&lt;?NLS TYPE="org.eclipse.help.toc"?&gt;
- </xsl:text>
- <toc label="Extension Points Reference">
- <xsl:for-each select="document(component/@file)/files/file">
- <xsl:sort select="text()"/>
- <xsl:if test="contains($listed-ext-points, translate(substring(text(), 0, string-length(text()) - 4),'_','.'))">
- <topic label="{translate(substring(text(), 0, string-length(text()) - 4),'_','.')}" href="reference/extension-points/{../@component}/{text()}">
- </topic>
- </xsl:if>
- </xsl:for-each>
- </toc>
- </xsl:template>
-</xsl:stylesheet>

Back to the top