lmandel | 0e9807b | 2005-12-07 06:38:29 +0000 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
| 3 | version="1.0" |
| 4 | xmlns:xalan="http://xml.apache.org/xslt" |
| 5 | exclude-result-prefixes="xalan"> |
| 6 | |
| 7 | <xsl:template match="packages"> |
| 8 | <xsl:text disable-output-escaping="yes"> |
| 9 | <?NLS TYPE="org.eclipse.help.toc"?> |
| 10 | </xsl:text> |
| 11 | <toc label="Javadoc Packages Reference"> |
| 12 | <xsl:for-each select="package"> |
| 13 | <xsl:sort select="text()"/> |
| 14 | <xsl:if test="text() != ''"> |
| 15 | <topic label="{text()}" href="reference/api/{translate(text(),'.','/')}/package-summary.html"/> |
| 16 | </xsl:if> |
| 17 | </xsl:for-each> |
| 18 | |
| 19 | </toc> |
| 20 | </xsl:template> |
| 21 | </xsl:stylesheet> |