šablona/stránka-společné.xsl
changeset 71 895757141bff
parent 61 9503eb8377f1
child 77 2f11f0ba6f13
     1.1 --- a/šablona/stránka-společné.xsl	Sat Jan 07 19:39:28 2012 +0100
     1.2 +++ b/šablona/stránka-společné.xsl	Sat Jan 07 20:09:44 2012 +0100
     1.3 @@ -70,4 +70,18 @@
     1.4      	<link href="{text()}" type="text/css" rel="StyleSheet" />
     1.5      </xsl:template>
     1.6      
     1.7 +    <xsl:function name="m:escapuj-url-zachovej-lomítka" as="xs:string">
     1.8 +		<xsl:param name="cesta"/>
     1.9 +		<xsl:value-of select="replace(encode-for-uri($cesta), '%2F', '/')"/>
    1.10 +	</xsl:function>
    1.11 +	
    1.12 +	<!--
    1.13 +		Vrací obsah textového souboru ve vstupním adresáři.
    1.14 +		Obvykle jako parametr předáváme atribut „src“.
    1.15 +	-->
    1.16 +	<xsl:function name="m:načti-textový-soubor" as="xs:string">
    1.17 +		<xsl:param name="soubor"/>
    1.18 +		<xsl:value-of select="unparsed-text(concat($vstup, $soubor))"/>
    1.19 +	</xsl:function>
    1.20 +    
    1.21  </xsl:stylesheet>