source: trunk/gsdl3/web/interfaces/default/transform/html.xsl@ 9011

Last change on this file since 9011 was 8660, checked in by kjdon, 20 years ago

new stylesheets for page action for displaying external links inside the collection. nav.xsl produces a page containing a basic collection header - home,help,pref, and vavigation bar. html.xsl uses 2 frames - the top frame is the nav page for the current collection, and the second frame contains the link specified by url param.

  • Property svn:keywords set to Author Date Id Revision
File size: 978 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:output method="html"/>
10
11 <xsl:template match="page">
12 <html>
13 <head></head>
14 <frameset rows="68,*" noresize="" border="0">
15 <frame frameborder="0"><xsl:attribute name="src">?a=p&amp;sa=nav&amp;c=<xsl:value-of select="/page/pageRequest/paramList/param[@name='c']/@value" /></xsl:attribute></frame>
16 <frame frameborder="0"><xsl:attribute name="src"><xsl:value-of select="/page/pageRequest/paramList/param[@name='url']/@value"/></xsl:attribute></frame>
17 <noframes>
18 <p><xsl:value-of select="util:getInterfaceText('default', /page/@lang, 'textframebrowser')"/></p>
19 </noframes>
20 </frameset>
21 </html>
22 </xsl:template>
23
24</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.