]> matita.cs.unibo.it Git - helm.git/blob - helm/on-line/xslt/getParam.xsl
ocaml 3.09 transition
[helm.git] / helm / on-line / xslt / getParam.xsl
1 <?xml version="1.0"?>
2
3
4 <xsl:stylesheet version="1.0"
5  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6  xmlns:helm="http://www.cs.unibo.it/helm">
7
8 <xsl:output 
9         method="xml"
10         encoding="iso-8859-1" 
11         media-type="text/html"
12         doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
13         doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
14
15 <xsl:param name="uri" select="''"/>
16
17 <xsl:template match="helm:getParam">
18  <xsl:value-of select="$uri"/>
19 </xsl:template>
20
21 <xsl:template match = "/|*">
22   <xsl:copy>
23    <xsl:copy-of select="@*"/>
24    <xsl:apply-templates/>
25   </xsl:copy>
26 </xsl:template>
27
28 </xsl:stylesheet>