libjava/ChangeLog:
[official-gcc.git] / libjava / classpath / tools / resource / gnu / classpath / tools / gjdoc / doctranslets / html / allclasses.xsl
blob8739d197f62e87bcd75b2907a3a7e995a8fa192c
1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- allclasses.xsl
4 Copyright (C) 2003 Free Software Foundation, Inc.
6 This file is part of GNU Classpath.
8 GNU Classpath is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU Classpath is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Classpath; see the file COPYING. If not, write to the
20 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 02111-1307 USA.
22 -->
24 <!-- Creates the allclasses.html file for HTML documentation.
25 -->
27 <xsl:stylesheet version="1.0"
28 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
29 xmlns:gjdoc="http://www.gnu.org/software/cp-tools/gjdocxml"
30 xmlns:html="http://www.w3.org/TR/REC-html40"
31 xmlns="http://www.w3.org/TR/REC-html40">
33 <xsl:include href="html_common.xsl"/>
35 <xsl:output method="xml"
36 encoding="utf-8"
37 indent="no"/>
39 <xsl:strip-space elements="*"/>
41 <xsl:template match="/">
42 <html>
43 <head>
44 <title>
45 <xsl:value-of select="concat(/gjdoc:rootdoc/gjdoc:title, ' - All Classes')"/>
46 </title>
47 <xsl:call-template name="include_common"/>
48 </head>
49 <body onload="secondaryPageLoaded('classes');" class="menu allclasses">
50 <h3 class="menu-title">All Classes</h3>
51 <xsl:for-each select="gjdoc:rootdoc/gjdoc:classdoc/@name">
52 <xsl:sort select="." order="ascending"/>
53 <xsl:variable name="v_url" select="concat(translate(../gjdoc:containingPackage/@name,'.','/'), '/', ../@name, '.html')"/>
54 <a href="{$v_url}" target="content" class="menu allclasses">
55 <xsl:value-of select="."/>
56 </a>
57 <br/>
58 </xsl:for-each>
59 </body>
60 </html>
61 </xsl:template>
63 </xsl:stylesheet>