source: greenstone3/trunk/web/interfaces/default/transform/gli4gs3.xsl@ 14353

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

page for the applet gli of GS3

File size: 1.1 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
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 <xsl:call-template name="standardPageBanner">
23 <xsl:with-param name="collName" select="$collName"/>
24 </xsl:call-template>
25
26 <xsl:call-template name="navigationBar">
27 <xsl:with-param name="collName" select="$collName"/>
28 </xsl:call-template>
29 <div >
30 <xsl:copy-of select="Applet"/>
31 </div>
32 </xsl:template>
33
34</xsl:stylesheet>
35
Note: See TracBrowser for help on using the repository browser.