šablona/stránka.xsl
changeset 18 45e41566f8a6
parent 17 02bad17b4590
child 19 b81b96475fe0
--- a/šablona/stránka.xsl	Sat Apr 30 17:06:59 2011 +0200
+++ b/šablona/stránka.xsl	Sat Apr 30 19:34:55 2011 +0200
@@ -2,13 +2,14 @@
 <xsl:stylesheet version="2.0"
 	xmlns="http://www.w3.org/1999/xhtml"
 	xmlns:h="http://www.w3.org/1999/xhtml"
-	xmlns:g="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/prostor"
+	xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
+	xmlns:k="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/konfigurace"
 	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
 	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 	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 g xs m">
+	exclude-result-prefixes="fn h s k xs m">
 	<xsl:output 
 		method="xml" 
 		indent="yes" 
@@ -31,36 +32,36 @@
 				<xsl:if test="$podporaZaostalýchProhlížečů">
 					<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
 				</xsl:if>
-				<title><xsl:value-of select="g:stránka/g:nadpis"/></title>
+				<title><xsl:value-of select="s:stránka/s:nadpis"/></title>
 				<link title="Novinky (Atom)" href="atom.xml" type="application/atom+xml" rel="alternate"/>
 				<link title="Novinky (RSS)"  href="rss.xml"  type="application/rss+xml"  rel="alternate"/>
-				<xsl:apply-templates select="$konfigurace/g:web/g:js"/>
-				<xsl:apply-templates select="$konfigurace/g:web/g:css"/>				
+				<xsl:apply-templates select="$konfigurace/k:web/k:js"/>
+				<xsl:apply-templates select="$konfigurace/k:web/k:css"/>				
 			</head>
 			<body>
 				<div id="tělo">
 					<div id="záhlaví">
-						<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'záhlaví', $vsuvkováPřípona)))/g:stránka/h:text/node()"/>
+						<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'záhlaví', $vsuvkováPřípona)))/s:stránka/h:text/node()"/>
 					</div>
 					<div id="vnitřek">
-						<h1><xsl:value-of select="g:stránka/g:nadpis"/></h1>
+						<h1><xsl:value-of select="s:stránka/s:nadpis"/></h1>
 						<ul id="nabídka">
-							<xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[g:stránka/g:pořadí]">
-								<xsl:sort select="empty(./g:stránka/g:pořadí)"/>
-								<xsl:sort select="./g:stránka/g:pořadí"/>
+							<xsl:for-each select="collection(concat('../vstup/?select=*', $vstupníPřípona))[s:stránka/s:pořadí]">
+								<xsl:sort select="empty(./s:stránka/s:pořadí)"/>
+								<xsl:sort select="./s:stránka/s:pořadí"/>
 								<li>
 									<xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/>
 									<xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, $vstupníPřípona, $výstupníPřípona)"/>
-									<a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a>
+									<a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./s:stránka/s:nadpis"/></a>
 								</li>
 							</xsl:for-each>
 						</ul>
 						<div id="text">
-							<xsl:apply-templates select="g:stránka/h:text/node()"/>
+							<xsl:apply-templates select="s:stránka/h:text/node()"/>
 						</div>
 					</div>
 					<div id="zápatí">
-						<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'zápatí', $vsuvkováPřípona)))/g:stránka/h:text/node()"/>
+						<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'zápatí', $vsuvkováPřípona)))/s:stránka/h:text/node()"/>
 					</div>
 				</div>
 			</body>
@@ -75,7 +76,7 @@
 		</xsl:element>
     </xsl:template>
     
-    <!-- Odkazy na JavaScript a kaskádové styly -->
+    <!-- Varování pro případ, že jsme v režimu podpory pro zaostalé prohlížeče -->
     <xsl:template name="varováníRetardace">
     	<xsl:if test="$podporaZaostalýchProhlížečů">
 			<xsl:comment>
@@ -84,13 +85,15 @@
 				jako je např. Firefox nebo Chromium (případně Opera či Safari).
 			</xsl:comment>
     	</xsl:if>
-    </xsl:template>    
-    <xsl:template match="g:web/g:js">    	
+    </xsl:template>
+
+    <!-- Odkazy na JavaScript a kaskádové styly -->    
+    <xsl:template match="k:web/k:js">    	
     	<script src="{text()}" type="text/javascript">
     		<xsl:call-template name="varováníRetardace"/>
     	</script>
     </xsl:template>
-    <xsl:template match="g:web/g:css">
+    <xsl:template match="k:web/k:css">
     	<link href="{text()}" type="text/css" rel="StyleSheet" />
     </xsl:template>
    
@@ -110,7 +113,7 @@
     </xsl:template>
     
     <!-- Ukázka vlastního „makra“: -->
-    <xsl:template match="g:měřák">
+    <xsl:template match="m:měřák">
     	<xsl:variable name="hodnota" select="number(@hodnota)"/>
     	<xsl:variable name="šířkaGrafu" select="128"/>
 		<xsl:choose>