<?xml version="1.0" encoding="UTF-8"?>
<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: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">
<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"/>
<!-- Celý dokument: -->
<xsl:template match="/">
<xsl:variable name="konfigurace" select="document(concat($vstup, 'web.conf'))"/>
<html>
<head>
<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>
<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"/>
</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()"/>
</div>
<div id="vnitřek">
<h1><xsl:value-of select="g:stránka/g: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í"/>
<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>
</li>
</xsl:for-each>
</ul>
<div id="text">
<xsl:apply-templates select="g: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()"/>
</div>
</div>
</body>
</html>
</xsl:template>
<!-- Kopírujeme elementy, ale vynecháme nepoužité xmlns deklarace: -->
<xsl:template match="*">
<xsl:element name="{name()}">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<!-- Odkazy na JavaScript a kaskádové styly -->
<xsl:template name="varováníRetardace">
<xsl:if test="$podporaZaostalýchProhlížečů">
<xsl:comment>
Generátor byl spuštěn v režimu podpory zaostalých prohlížečů.
Uživatelům doporučujeme upgrade na skutečný WWW prohlížeč,
jako je např. Firefox nebo Chromium (případně Opera či Safari).
</xsl:comment>
</xsl:if>
</xsl:template>
<xsl:template match="g:web/g:js">
<script src="{text()}" type="text/javascript">
<xsl:call-template name="varováníRetardace"/>
</script>
</xsl:template>
<xsl:template match="g:web/g:css">
<link href="{text()}" type="text/css" rel="StyleSheet" />
</xsl:template>
<!-- Ukázka vlastního „makra“: -->
<xsl:template match="g:měřák">
<xsl:variable name="hodnota" select="number(@hodnota)"/>
<xsl:variable name="šířkaGrafu" select="128"/>
<xsl:choose>
<xsl:when test="$hodnota >= 0 and $hodnota <= 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>