Drupal: XSLT odstavce – textové vs. netextové uzly.
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:call-template name="zpracujTělo">
83 <xsl:with-param name="prvek" select="h:html/h:body/node()[1]"/>
86 <xsl:if test="$wwwRead or $wwwPost">
87 <div class="wwwLinks">
88 <p>Přístup přes síť www:</p>
90 <xsl:if test="$wwwRead"><li><a href="{$wwwRead}">číst tento příspěvek</a></li></xsl:if>
91 <xsl:if test="$wwwPost"><li><a href="{$wwwPost}">odpovědět na tento příspěvek</a></li></xsl:if>
101 <xsl:template match="h:a">
102 <a href="{@href}" title="{@title}"><xsl:apply-templates/></a>
107 <xsl:template match="h:img">
108 <img src="{@src}" alt="{@alt}" title="{@title}"><xsl:apply-templates/></img>
112 <xsl:template match="h:abbr">
113 <abbr title="{@title}"><xsl:apply-templates/></abbr>
117 <!-- Další povolené značky – ostatní odfiltrujeme (zbude z nich jen text) -->
118 <xsl:template match="*">
140 name() = 'blockquote'">
141 <xsl:element name="{name()}">
142 <xsl:apply-templates/>
146 <xsl:value-of select="."/>
153 Z neuzavřeného (nevalidně se vyskytujícího v body) textu uděláme odstavce.
155 <xsl:template name="zpracujTělo">
156 <xsl:param name="prvek"/>
157 <xsl:if test="$prvek">
161 <xsl:when test="$prvek/self::text()">
163 Textový uzel → budeme dělat odstavce
164 (rekurzivně se opět zavolá šablona zpracujTělo)
165 <xsl:call-template name="dělejOdstavce">
166 <xsl:with-param name="blokTextu" select="."/>
173 Jiný uzel → aplikujeme obecné šablony
174 a zpracujeme následující uzel.
175 <xsl:apply-templates select="."/>
180 [<xsl:value-of select="$prvek/name()"/>]
181 [<xsl:value-of select="$prvek/text()"/>]
182 [<xsl:value-of select="$prvek/self::text()"/>]
185 <xsl:call-template name="zpracujTělo">
186 <xsl:with-param name="prvek" select="$prvek/following-sibling::node()[1]"/>
192 <xsl:template name="dělejOdstavce">
193 <xsl:param name="blokTextu"/>
194 <xsl:variable name="oddělovač" select="'\n\s+\n\s+'"/>
195 <xsl:for-each select="fn:tokenize(., $oddělovač)">
196 <xsl:if test="normalize-space(.)">
198 <xsl:value-of select="."/>
200 Toto je poslední odstavec bloku textu
201 a blok nekončí dvěma konci řádku →
202 může za ním následovat značka (např. odkaz nebo tučné písmo)
203 vnořená do téhož odstavce
206 position() = last() and
207 not(fn:matches($blokTextu, concat('.*', $oddělovač ,'$')))
210 <xsl:variable name="n" select="$blokTextu/following-sibling::*[position() = 1]"/>
211 <xsl:variable name="nn" select="$n/name()"/>
213 Za blokem textu nenásleduje značka, která nemůže být uvnitř odstavce.
226 $nn = 'blockquote' or
229 <xsl:apply-templates select="$n"/>
230 <xsl:apply-templates select="$n/following-sibling::text()[position() = 1]"/>