source: trunk/gsdl3/interfaces/default/transform/document.xsl@ 3653

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

resource.xsl replaced with document.xsl

  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0"
3xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4xmlns:java="http://xml.apache.org/xslt/java"
5extension-element-prefixes="java">
6
7<xsl:include href="style.xsl"/>
8<xsl:output method="html"/>
9<!--
10<xsl:output method="xml"/>
11-->
12<xsl:template match="page">
13
14<xsl:variable name="collName"><xsl:value-of select="request/paramList/param[@name='c']/@value"/></xsl:variable>
15
16<html>
17<xsl:call-template name="greenstoneHead"/>
18<body xsl:use-attribute-sets="body-style">
19<center>
20<xsl:call-template name="collectionPageBanner">
21<xsl:with-param name="collName" select="$collName"/>
22</xsl:call-template>
23<xsl:apply-templates select="response"/>
24</center>
25<xsl:call-template name="greenstoneFooter"/>
26</body>
27</html>
28</xsl:template>
29
30<xsl:template match="response">
31<table width="537"><tr><td>
32<xsl:value-of disable-output-escaping="yes" select="content/document"/>
33</td></tr></table>
34<xsl:call-template name="greenBar"/>
35</xsl:template>
36</xsl:stylesheet>
37
38
39
Note: See TracBrowser for help on using the repository browser.