1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="2.0"
3 xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:h="http://www.w3.org/1999/xhtml"
5 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6 xmlns:fn="http://www.w3.org/2005/xpath-functions"
7 xmlns:svg="http://www.w3.org/2000/svg"
8 xmlns:xs="http://www.w3.org/2001/XMLSchema"
9 exclude-result-prefixes="fn h xs">
14 doctype-public="-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
15 doctype-system="http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"/>
18 <xsl:param name="title"/>
19 <xsl:param name="isRoot"/>
20 <xsl:param name="urlBase"/>
21 <xsl:param name="wwwRead"/>
22 <xsl:param name="wwwPost"/>
25 <!-- Celý dokument -->
26 <xsl:template match="/">
29 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
30 <meta http-equiv="X-NNTP-Generated" content="{fn:current-dateTime()}" />
31 <xsl:if test="$urlBase">
32 <base href="{$urlBase}"/>
34 <xsl:if test="$title">
35 <title><xsl:value-of select="$title"/></title>
37 <style type="text/css">
39 font-family: sans-serif;
44 border-top: 2px solid grey;
50 background-color: #eee;
54 border-left: 3px solid silver;
58 background-color: #eee;
61 border-left: 3px solid #a00;
74 background-color: #afa;
79 <xsl:if test="$title and $isRoot">
80 <h1><xsl:value-of select="$title"/></h1>
82 <xsl:apply-templates select="h:html/h:body/node()"/>
84 <xsl:if test="$wwwRead or $wwwPost">
85 <div class="wwwLinks">
86 <p>Přístup přes síť www:</p>
88 <xsl:if test="$wwwRead"><li><a href="{$wwwRead}">číst tento příspěvek</a></li></xsl:if>
89 <xsl:if test="$wwwPost"><li><a href="{$wwwPost}">odpovědět na tento příspěvek</a></li></xsl:if>
99 <xsl:template match="h:a">
100 <a href="{@href}" title="{@title}"><xsl:apply-templates/></a>
105 <xsl:template match="h:img">
106 <img src="{@src}" alt="{@alt}" title="{@title}"><xsl:apply-templates/></img>
110 <xsl:template match="h:abbr">
111 <abbr title="{@title}"><xsl:apply-templates/></abbr>
115 <!-- Další povolené značky – ostatní odfiltrujeme (zbude z nich jen text) -->
116 <xsl:template match="*">
138 name() = 'blockquote'">
139 <xsl:element name="{name()}">
140 <xsl:apply-templates/>
144 <xsl:value-of select="."/>
151 Z neuzavřeného (nevalidně se vyskytujícího v body) textu uděláme odstavce.
153 <xsl:template match="h:body/text()">
154 <xsl:call-template name="dělejOdstavce">
155 <xsl:with-param name="blokTextu" select="."/>
158 <xsl:template name="dělejOdstavce">
159 <xsl:param name="blokTextu"/>
160 <xsl:variable name="oddělovač" select="'\n\s+\n\s+'"/>
161 <xsl:for-each select="fn:tokenize(., $oddělovač)">
162 <xsl:if test="normalize-space(.)">
164 <xsl:value-of select="."/>
166 Toto je poslední odstavec bloku textu
167 a blok nekončí dvěma konci řádku →
168 může za ním následovat značka (např. odkaz nebo tučné písmo)
169 vnořená do téhož odstavce
172 position() = last() and
173 not(fn:matches($blokTextu, concat('.*', $oddělovač ,'$')))
176 <xsl:variable name="n" select="$blokTextu/following-sibling::*[position() = 1]"/>
177 <xsl:variable name="nn" select="$n/name()"/>
179 Za blokem textu nenásleduje značka, která nemůže být uvnitř odstavce.
192 $nn = 'blockquote' or
195 <xsl:apply-templates select="$n"/>
196 <xsl:apply-templates select="$n/following-sibling::text()[position() = 1]"/>