~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to contrib/tag-doc/src/resources/taglibdoc/taglib-frame.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2
 
<xsl:output
3
 
        method="html"
4
 
        version="4.0"
5
 
        omit-xml-declaration="yes"
6
 
        indent="yes"
7
 
/>
8
 
 
9
 
<xsl:template match="*">
10
 
<HTML>
11
 
<HEAD>
12
 
  <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style" />
13
 
</HEAD>
14
 
<BODY>
15
 
 
16
 
<TABLE BORDER="0" WIDTH="100%">
17
 
<TR>
18
 
<TD NOWRAP="true">
19
 
  <DIV>
20
 
  <xsl:element name="A">
21
 
    <xsl:attribute name="TARGET">tagFrame</xsl:attribute>
22
 
    <xsl:attribute name="HREF">taglib-summary.html</xsl:attribute>
23
 
    <xsl:attribute name="CLASS">FrameHeading</xsl:attribute>
24
 
      <xsl:value-of select="//taglib/shortname" />
25
 
  </xsl:element>
26
 
  </DIV>
27
 
  <BR/>
28
 
 
29
 
<xsl:for-each select="//taglib/tag">
30
 
<xsl:sort select="name"/>
31
 
  <xsl:element name="A">
32
 
    <xsl:attribute name="TARGET">tagFrame</xsl:attribute>
33
 
    <xsl:attribute name="HREF"><xsl:value-of select="name" />.html</xsl:attribute>
34
 
    <xsl:attribute name="CLASS">FrameItem</xsl:attribute>
35
 
      <xsl:value-of select="name" />
36
 
  </xsl:element>
37
 
  <BR/>
38
 
</xsl:for-each>
39
 
 
40
 
</TD>
41
 
</TR>
42
 
</TABLE>
43
 
 
44
 
 
45
 
</BODY>
46
 
</HTML>
47
 
</xsl:template>
48
 
</xsl:stylesheet>