source: trunk/gsdl3/web/interfaces/default/transform/applet.xsl@ 4149

Last change on this file since 4149 was 4047, checked in by kjdon, 21 years ago

interfaces directory moved to inside web directory, this is a copy of the old default interface

  • Property svn:keywords set to Author Date Id Revision
File size: 860 bytes
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5 <xsl:include href="style.xsl"/>
6
7 <xsl:output method="html"/>
8
9 <xsl:template name="pageHead">
10 <head>
11 <title><xsl:call-template name="text"><xsl:with-param name="key">nzdl</xsl:with-param></xsl:call-template></title>
12 </head>
13 </xsl:template>
14
15 <xsl:template match="pageResponse">
16 <xsl:variable name="collName"><xsl:value-of select="ancestor::page/pageRequest/paramList/param[@name='c']/@value"/></xsl:variable>
17 <center>
18 <xsl:call-template name="collectionPageBanner">
19 <xsl:with-param name="collName" select="$collName"/>
20 </xsl:call-template>
21 <p/>
22 <xsl:copy-of select="applet"/>
23 <xsl:call-template name="greenBar"/>
24 </center>
25 </xsl:template>
26</xsl:stylesheet>
27
Note: See TracBrowser for help on using the repository browser.