3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:subst="http://www.cs.unibo.it/helm/subst">
9 media-type="text/html" />
11 <xsl:param name="topurl" select="''"/>
13 <xsl:template match="subst:script">
14 <script language="{@language}" src="{concat($topurl,@src)}"></script>
17 <xsl:template match="subst:topurl">
18 <xsl:value-of select="$topurl"/>
21 <xsl:template match="/|*">
23 <xsl:copy-of select="@*"/>
24 <xsl:apply-templates/>