Drupal: textová část zpráv (text/plain), základní funkční verze (XSLT+Java).
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="2.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:fn="http://www.w3.org/2005/xpath-functions"
5 xmlns:h="http://www.w3.org/1999/xhtml">
6 <xsl:output method="text" encoding="UTF-8"/>
7 <xsl:strip-space elements="*"/>
9 <xsl:output method="text" encoding="UTF-8"/>
10 <xsl:strip-space elements="*"/>
12 <xsl:variable name="urlBase" select="/h:html/h:head/h:base/@href"/>
14 <!-- Celý dokument -->
15 <xsl:template match="/">
16 <xsl:apply-templates select="h:html/h:body"/>
19 <xsl:template match="h:h1">
20 <xsl:value-of select="text()"/>
21 <xsl:text> </xsl:text>
22 <xsl:for-each select="1 to string-length(.)">#</xsl:for-each>
23 <xsl:text> </xsl:text>
24 <xsl:text> </xsl:text>
27 <xsl:template match="h:h2">
28 <xsl:value-of select="text()"/>
29 <xsl:text> </xsl:text>
30 <xsl:for-each select="1 to string-length(.)">-</xsl:for-each>
31 <xsl:text> </xsl:text>
32 <xsl:text> </xsl:text>
35 <xsl:template match="h:h3">
36 <xsl:for-each select="1 to 3">#</xsl:for-each>
37 <xsl:text> </xsl:text>
38 <xsl:value-of select="text()"/>
39 <xsl:text> </xsl:text>
40 <xsl:text> </xsl:text>
44 <xsl:template match="h:h4">
45 <xsl:for-each select="1 to 4">#</xsl:for-each>
46 <xsl:text> </xsl:text>
47 <xsl:value-of select="text()"/>
48 <xsl:text> </xsl:text>
49 <xsl:text> </xsl:text>
53 <xsl:template match="h:h5">
54 <xsl:for-each select="1 to 5">#</xsl:for-each>
55 <xsl:text> </xsl:text>
56 <xsl:value-of select="text()"/>
57 <xsl:text> </xsl:text>
58 <xsl:text> </xsl:text>
61 <xsl:template match="h:h6">
62 <xsl:for-each select="1 to 6">#</xsl:for-each>
63 <xsl:text> </xsl:text>
64 <xsl:value-of select="text()"/>
65 <xsl:text> </xsl:text>
66 <xsl:text> </xsl:text>
70 <xsl:template match="h:p">
71 <xsl:apply-templates/>
72 <xsl:text> </xsl:text>
73 <xsl:text> </xsl:text>
76 <xsl:template match="h:a">
77 <xsl:text>"</xsl:text>
78 <xsl:value-of select="text()"/>
79 <xsl:text>" <</xsl:text>
81 <xsl:when test="matches(@href, '^(http:|https:|ftp:)')">
82 <xsl:value-of select="@href"/>
84 <xsl:when test="matches(@href, '^mailto:')">
85 <xsl:value-of select="substring-after(@href, 'mailto:')"/>
89 <xsl:when test="ends-with($urlBase, '/') or starts-with(@href, '/')">
90 <xsl:value-of select="concat($urlBase, @href)"/>
93 <xsl:value-of select="concat($urlBase, '/', @href)"/>
98 <xsl:text>></xsl:text>
99 <xsl:if test="@title and not(matches(@title, '^\s*$'))">
100 <xsl:text> (</xsl:text>
101 <xsl:value-of select="@title"/>
102 <xsl:text>)</xsl:text>
106 <xsl:template match="h:img">
107 <xsl:variable name="obrázek">
108 <h:a href="{@src}" title="{@title}">Obrázek: <xsl:value-of select="@alt"/></h:a>
110 <xsl:apply-templates select="$obrázek/node()"/>
113 <xsl:template match="h:strong|h:b">
114 <xsl:text>**</xsl:text>
115 <xsl:apply-templates/>
116 <xsl:text>**</xsl:text>
119 <xsl:template match="h:em|h:i">
120 <xsl:text>*</xsl:text>
121 <xsl:apply-templates/>
122 <xsl:text>*</xsl:text>
125 <xsl:template match="h:abbr[@title]">
126 <xsl:apply-templates/>
127 <xsl:text> (</xsl:text>
128 <xsl:value-of select="@title"/>
129 <xsl:text>)</xsl:text>
132 <xsl:template match="h:pre">
133 <xsl:text>--------------------------------</xsl:text>
134 <xsl:text> </xsl:text>
135 <xsl:apply-templates/>
136 <xsl:text> </xsl:text>
137 <xsl:text>--------------------------------</xsl:text>
138 <xsl:text> </xsl:text>
139 <xsl:text> </xsl:text>
142 <xsl:template match="h:code">
143 <xsl:text>`</xsl:text>
144 <xsl:apply-templates/>
145 <xsl:text>`</xsl:text>
148 <xsl:template match="h:hr">
149 <xsl:text>----------------------------------------------------------------</xsl:text>
150 <xsl:text> </xsl:text>
151 <xsl:text> </xsl:text>
154 <xsl:template match="h:ul">
155 <xsl:apply-templates/>
156 <xsl:text> </xsl:text>
159 <xsl:template match="h:ul/h:li">
160 <xsl:text> - </xsl:text>
161 <xsl:apply-templates/>
162 <xsl:text> </xsl:text>
165 <xsl:template match="h:ol">
166 <xsl:for-each select="h:li">
167 <xsl:value-of select="concat(' ', position(), ') ')"/>
168 <xsl:apply-templates/>
169 <xsl:text> </xsl:text>
171 <xsl:text> </xsl:text>
176 <xsl:template match="h:blockquote[matches(p/text(), '^(\"|„)')]">
181 <xsl:template match="text()[not(parent::h:pre)]">
182 <xsl:if test="matches(., '^\s')">
183 <xsl:text> </xsl:text>
185 <xsl:value-of select="normalize-space(.)"/>
186 <xsl:if test="matches(., '\s$')">
187 <xsl:text> </xsl:text>
192 <xsl:template match="h:div[@class='wwwLinks']">
193 <xsl:text>-- </xsl:text>
194 <xsl:text> </xsl:text>
195 <xsl:apply-templates/>