]> matita.cs.unibo.it Git - helm.git/blob - helm/on-line/xslt/metadataControl.xsl
ocaml 3.09 transition
[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 <xsl:import href="toplevel_header.xsl"/>
12
13 <xsl:output 
14         method="xml"
15         encoding="iso-8859-1" 
16         media-type="text/html"
17         doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
18         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
19
20 <xsl:param name="CICURI" select="''"/>
21
22 <xsl:template match="/">
23  <html>
24   <head>
25    <title>Metadata of <xsl:value-of select="$CICURI"/></title>
26   </head>
27   <body onLoad="window.focus()" bgColor="white">
28    <xsl:call-template name="add_breadcrumb_trail" >
29     <xsl:with-param name="CICURI" select="$CICURI"/>
30    </xsl:call-template>
31    <xsl:variable name="CICURL">
32      <xsl:call-template name="makeURL">
33       <xsl:with-param name="uri" select="$CICURI"/>
34      </xsl:call-template>
35    </xsl:variable>
36    <xsl:apply-templates select="*"/>
37   <xsl:call-template name="loop_show_dc">
38    <xsl:with-param name="CICURI" select="$CICURI"/>
39   </xsl:call-template>
40   </body>
41  </html>
42 </xsl:template>
43
44 </xsl:stylesheet>