]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/on-line/xslt/metadataControl.xsl
First version of metadata interface.
[helm.git] / helm / on-line / xslt / metadataControl.xsl
diff --git a/helm/on-line/xslt/metadataControl.xsl b/helm/on-line/xslt/metadataControl.xsl
new file mode 100644 (file)
index 0000000..c33d7b2
--- /dev/null
@@ -0,0 +1,26 @@
+<?xml version="1.0"?>
+
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:subst="http://www.cs.unibo.it/helm/subst">
+
+<xsl:output 
+       method="xml"
+       encoding="iso-8859-1" 
+       media-type="text/html"
+       doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
+       doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
+
+<xsl:param name="RDFURI" select="''"/>
+
+<!-- BUG UWOBO -->
+<xsl:include href="http://phd.cs.unibo.it/helm/xslt/metadataLib.xsl"/>
+
+<xsl:template match="unresolved|url">
+ <xsl:apply-templates mode="makelink" select=".">
+  <xsl:with-param name="name" select="$CICURI"/>
+  <xsl:with-param name="RDFURI" select="$RDFURI"/>
+ </xsl:apply-templates>
+</xsl:template>
+
+</xsl:stylesheet>