source: trunk/gsdl3/web/interfaces/nzdl/transform/classifier.xsl@ 5382

Last change on this file since 5382 was 5120, checked in by kjdon, 21 years ago

some style templates have been renamed, hopefully I haven't stuffed anything up, will check at some stage

  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
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 xmlns:java="http://xml.apache.org/xslt/java"
5 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
6 extension-element-prefixes="java util"
7 exclude-result-prefixes="java util">
8
9 <xsl:include href="style.xsl"/>
10 <xsl:include href="classifiertools.xsl"/>
11
12 <xsl:output method="html"/>
13
14 <xsl:template name="pageHead">
15 <head>
16 <title><xsl:value-of select="util:getInterfaceText($interface_name, /page/@lang, 'nzdl')"/></title>
17 </head>
18 <xsl:call-template name="headScript"/>
19 </xsl:template>
20
21 <xsl:template match="pageResponse">
22 <xsl:variable name="collName"><xsl:value-of select="/page/pageRequest/paramList/param[@name='c']/@value"/></xsl:variable>
23 <xsl:variable name="serviceName"><xsl:value-of select="service/@name"/></xsl:variable>
24 <center>
25 <xsl:call-template name="standardPageBanner">
26 <xsl:with-param name="collName" select="$collName"/>
27 <xsl:with-param name="pageType">brwse</xsl:with-param>
28 </xsl:call-template>
29 <p/>
30 <xsl:apply-templates select="classifier">
31 <xsl:with-param name="collName" select="$collName"/>
32 <xsl:with-param name="serviceName" select="$serviceName"/>
33 </xsl:apply-templates>
34 </center>
35 </xsl:template>
36
37
38</xsl:stylesheet>
39
40
41
42
43
44
Note: See TracBrowser for help on using the repository browser.