]> matita.cs.unibo.it Git - helm.git/blob - helm/on-line/xslt/metadataControl.xsl
bread crumb trail added
[helm.git] / helm / on-line / xslt / metadataControl.xsl
1 <?xml version="1.0"?>
2
3 <xsl:stylesheet version="1.0"
4  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5  xmlns:subst="http://www.cs.unibo.it/helm/subst"
6  xmlns="http://www.w3.org/1999/xhtml">
7
8 <xsl:import href="utils.xsl"/>
9 <xsl:import href="show_dc.xsl"/>
10 <xsl:import href="links_library.xsl"/>
11
12 <xsl:output 
13         method="xml"
14         encoding="iso-8859-1" 
15         media-type="text/html"
16         doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
17         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
18
19 <xsl:param name="CICURI" select="''"/>
20
21 <xsl:template match="/">
22  <html>
23   <head>
24    <title>Metadata of <xsl:value-of select="$CICURI"/></title>
25   </head>
26   <body onLoad="window.focus()" bgColor="white">
27    <xsl:call-template name="add_breadcrumb_trail" >
28     <xsl:with-param name="CICURI" select="$CICURI"/>
29    </xsl:call-template>
30    <xsl:variable name="CICURL">
31      <xsl:call-template name="makeURL">
32       <xsl:with-param name="uri" select="$CICURI"/>
33      </xsl:call-template>
34    </xsl:variable>
35    <xsl:apply-templates select="*"/>
36   <xsl:call-template name="loop_show_dc">
37    <xsl:with-param name="CICURI" select="$CICURI"/>
38   </xsl:call-template>
39   </body>
40  </html>
41 </xsl:template>
42
43 </xsl:stylesheet>