source: greenstone3/trunk/web/interfaces/classic/transform/gli4gs3.xsl@ 14598

Last change on this file since 14598 was 14598, checked in by qq6, 17 years ago

add gli4gs3.xsl

File size: 977 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 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
11 <xsl:output method="html"/>
12
13 <xsl:template name="pageTitle">
14 <xsl:value-of select="pageResponse/service/applet"/>
15 </xsl:template>
16
17 <!-- page specific style goes here -->
18 <xsl:template name="pageStyle"/>
19
20 <xsl:template match="pageResponse">
21 <xsl:variable name="collName"><xsl:value-of select="../pageRequest/paramList/param[@name='c']/@value"/></xsl:variable>
22
23 <!-- <xsl:call-template name="navigationBar">
24 <xsl:with-param name="collName" select="$collName"/>
25 </xsl:call-template>-->
26 <div >
27 <xsl:copy-of select="Applet"/>
28 </div>
29 </xsl:template>
30
31</xsl:stylesheet>
32
Note: See TracBrowser for help on using the repository browser.