šablona/stránka.xsl
changeset 19 b81b96475fe0
parent 18 45e41566f8a6
child 20 29361e026fa3
--- a/šablona/stránka.xsl	Sat Apr 30 19:34:55 2011 +0200
+++ b/šablona/stránka.xsl	Sat Apr 30 20:20:54 2011 +0200
@@ -9,21 +9,22 @@
 	xmlns:fn="http://www.w3.org/2005/xpath-functions"
 	xmlns:svg="http://www.w3.org/2000/svg"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
-	exclude-result-prefixes="fn h s k xs m">
+	exclude-result-prefixes="fn h s k m xs">
 	<xsl:output 
 		method="xml" 
 		indent="yes" 
 		encoding="UTF-8"		
 		doctype-public="-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" 
 		doctype-system="http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"/>
-	
-	<!-- Vstupní adresář: -->
+		
 	<xsl:param name="vstup" select="'../vstup/'"/>
 	<xsl:param name="vstupníPřípona" select="'.xml'"/>
 	<xsl:param name="výstupníPřípona" select="'.xhtml'"/>
 	<xsl:param name="vsuvkováPřípona" select="'.inc'"/>
 	<xsl:param name="podporaZaostalýchProhlížečů" select="false()" as="xs:boolean"/>
 	
+	<xsl:include href="makra.xsl"/>
+	
 	<!-- Celý dokument: -->
 	<xsl:template match="/">
 		<xsl:variable name="konfigurace" select="document(concat($vstup, 'web.conf'))"/>
@@ -111,24 +112,5 @@
     		<xsl:apply-templates/>
     	</a>
     </xsl:template>
-    
-    <!-- Ukázka vlastního „makra“: -->
-    <xsl:template match="m:měřák">
-    	<xsl:variable name="hodnota" select="number(@hodnota)"/>
-    	<xsl:variable name="šířkaGrafu" select="128"/>
-		<xsl:choose>			
-			<xsl:when test="$hodnota &gt;= 0 and $hodnota &lt;= 100">				
-				<div style="border: 1px solid black; width: {$šířkaGrafu}px; height: 16px; padding: 0px; text-align: center; background-color: #cfc;">			
-					<div style="margin: 0px; background-color: #A4E666; width: {@hodnota*$šířkaGrafu div 100}px; height: 16px;"><xsl:call-template name="varováníRetardace"/></div>
-					<p style="margin: 0px; font-size: 12px; position: relative; top: -15px;">
-						<xsl:value-of select="@hodnota"/>/100
-					</p>	
-				</div>
-			</xsl:when>
-			<xsl:otherwise>
-				<xsl:message terminate="yes">Hodnota měřáku musí být nejméně 0 a nejvíce 100 (udává procenta).</xsl:message>
-			</xsl:otherwise>
-		</xsl:choose>
-	</xsl:template>
 
 </xsl:stylesheet>