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

Last change on this file since 4731 was 4712, checked in by kjdon, 21 years ago

made a lot of changes, cant remember tham all. config stuff is now global params, translate stuff is now done on the fly using java and XSLTUtil, redoing the document display stuff so that it switches automatically between toc, page nav, and just displaying the text

  • Property svn:keywords set to Author Date Id Revision
File size: 986 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="pageHead">
14 <head>
15 <title>
16 <xsl:value-of select="pageResponse/applet"/>
17 </title>
18 </head>
19 </xsl:template>
20
21 <xsl:template match="pageResponse">
22 <xsl:variable name="collName"><xsl:value-of select="../pageRequest/paramList/param[@name='c']/@value"/></xsl:variable>
23 <center>
24 <xsl:call-template name="collectionPageBanner">
25 <xsl:with-param name="collName" select="$collName"/>
26 </xsl:call-template>
27 <p/>
28 <xsl:copy-of select="applet"/>
29 <xsl:call-template name="greenBar"/>
30 </center>
31 </xsl:template>
32</xsl:stylesheet>
33
Note: See TracBrowser for help on using the repository browser.