]> git.draconx.ca Git - homepage.git/blob - layouts/default.xsl
Let's start a blog!
[homepage.git] / layouts / default.xsl
1 <?xml version='1.0' encoding='UTF-8' ?>
2 <!--
3   Nick's web site: XHTML output stage
4
5   Copyright © 2018-2020 Nick Bowler
6
7   This program is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   This program is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <https://www.gnu.org/licenses/>
19 -->
20 <xsl:stylesheet version='1.0'
21   xmlns='http://www.w3.org/1999/xhtml'
22   xmlns:xhtml='http://www.w3.org/1999/xhtml'
23   xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
24   xmlns:func='http://exslt.org/functions'
25   xmlns:f='http://draconx.ca/my-functions'
26   extension-element-prefixes='func f'
27   exclude-result-prefixes='xhtml'>
28
29 <xsl:import href='layouts/functions.xsl' />
30
31 <xsl:output method='xml' encoding='UTF-8' indent='yes'
32   doctype-public='-//W3C//DTD XHTML 1.1//EN'
33   doctype-system='http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'
34   cdata-section-elements='style' />
35
36 <xsl:param name='source-uri'
37   select='"//git.draconx.ca/gitweb/homepage.git/blob/"' />
38 <xsl:param name='site-title' select='"The Citrine Citadel"' />
39 <xsl:param name='section-links' select='//document/section-links' />
40
41 <func:function name='f:ends-with'>
42   <xsl:param name='a' />
43   <xsl:param name='b' />
44   <func:result
45     select='substring($a, string-length($a)-string-length($b)+1)=$b' />
46 </func:function>
47
48 <xsl:template match='node()|@*'>
49   <xsl:copy><xsl:apply-templates select='node()|@*' /></xsl:copy>
50 </xsl:template>
51
52 <!--
53   Nokogiri's pretty-printer is a bit weird.  Regardless of the indentation
54   setting, if an element has no child text nodes then it will be pretty-
55   printed.  This works by adding arbitrary whitespace to that element, and
56   then all of its children are eligible to be pretty-printed.
57
58   If an element has any text nodes at all, then it is not pretty-printed and
59   neither are any of its descendents.
60
61   Adding arbitrary whitespace to <pre> is bad, so we inject zero-width non-
62   breaking spaces to prevent this.  This will render fine but the spaces
63   should be removed before final output to avoid problems with copy+paste.
64 -->
65 <xsl:template match='xhtml:pre'>
66   <xsl:copy>
67     <xsl:apply-templates select='node()|@*' />
68     <xsl:text>&#x2060;</xsl:text>
69   </xsl:copy>
70 </xsl:template>
71
72 <!--
73   Likewise, adding spaces between consecutive span-level elements where
74   none existed before won't go over well.
75 -->
76 <xsl:template name='glue-preceding-span'>
77   <xsl:if test='f:element-is-span(preceding-sibling::node()[1])'>
78     <xsl:text>&#x2060;</xsl:text>
79   </xsl:if>
80 </xsl:template>
81
82 <xsl:template match='*[f:element-is-span()]'>
83   <xsl:call-template name='glue-preceding-span' />
84   <xsl:copy>
85     <xsl:apply-templates select='node()|@*' />
86     <xsl:if test='*'>
87       <!-- avoid breaking within a span element -->
88       <xsl:text>&#x2060;</xsl:text>
89     </xsl:if>
90   </xsl:copy>
91 </xsl:template>
92
93 <!--
94   Manually strip whitespace-only text nodes so the pretty printer can do its
95   thing on remaining elements.
96 -->
97 <xsl:template match='text()[normalize-space(.) = ""]'>
98   <xsl:choose>
99     <!-- preserve anything according to xml:space -->
100     <xsl:when test='ancestor::*[@xml:space][1][@xml:space="preserve"]'>
101       <xsl:copy />
102     </xsl:when>
103     <!-- preserve anything under <pre> -->
104     <xsl:when test='ancestor::xhtml:pre'><xsl:copy /></xsl:when>
105     <!-- preserve whitespace which is the only child node of an element -->
106     <xsl:when test='count(../node()) = 1'><xsl:copy /></xsl:when>
107     <!-- preserve whitespace between consecutive span-level elements
108          which have at least one non-whitespace sibling text element -->
109     <xsl:when test='f:element-is-span(preceding-sibling::node()[1])
110                     and f:element-is-span(following-sibling::node()[1])
111                     and ../text()[normalize-space(.) != ""]'>
112       <xsl:copy />
113     </xsl:when>
114   </xsl:choose>
115 </xsl:template>
116
117 <!-- Clean up whitespace where harmless to do so -->
118 <xsl:template match='xhtml:p/node()[1][self::text()]'>
119   <xsl:value-of select='f:strip-leading()' />
120 </xsl:template>
121 <xsl:template match='xhtml:p/node()[position()=last()][self::text()]'>
122   <xsl:value-of select='f:strip-trailing()' />
123 </xsl:template>
124
125 <!-- Add rel attributes to external links -->
126 <xsl:template match='xhtml:a[starts-with(@href,"http://")
127                           or starts-with(@href,"https://")
128                           or starts-with(@href,"//")]'>
129   <xsl:variable name='domain'
130     select='substring-before(
131               concat(translate(substring-after(@href, "//"), ":", "/"), "/"),
132               "/")' />
133
134   <xsl:copy>
135     <xsl:apply-templates select='@*' />
136     <xsl:if test='not($domain="draconx.ca"
137                       or f:ends-with($domain, ".draconx.ca"))'>
138       <xsl:attribute name='rel'>
139         <xsl:if test='@rel'>
140           <xsl:value-of select='@rel' />
141           <xsl:text> </xsl:text>
142         </xsl:if>
143         <xsl:text>external noopener noreferrer</xsl:text>
144       </xsl:attribute>
145     </xsl:if>
146     <xsl:apply-templates select='node()' />
147   </xsl:copy>
148 </xsl:template>
149
150 <xsl:template match='xhtml:h2[@id]'>
151   <xsl:variable name='fragment' select='concat("#", @id)' />
152   <xsl:copy>
153     <xsl:apply-templates select='node()|@*' />
154     <xsl:if test='$section-links = "yes"'>
155       <xsl:text> </xsl:text>
156       <small class='permalink'>
157         (<a href='{$fragment}'><xsl:value-of select='$fragment' /></a>)
158       </small>
159     </xsl:if>
160   </xsl:copy>
161 </xsl:template>
162
163 <!--
164   Convert caption attribute on tables into proper caption elements, to allow
165   a simple way to add captions to kramdown tables.
166 -->
167 <xsl:template match='@caption[parent::xhtml:table]' />
168 <xsl:template match='xhtml:table[@caption]'>
169   <xsl:copy>
170     <xsl:apply-templates select='@*' />
171     <caption><xsl:value-of select='normalize-space(@caption)' /></caption>
172     <xsl:apply-templates select='node()' />
173   </xsl:copy>
174 </xsl:template>
175
176 <!--
177   Delete style elements, as they will get hoisted occur under <head> below.
178   If the generate-listing attribute was specified, produce a code listing
179   where the style attribute was found.
180 -->
181 <xsl:template match='xhtml:style|@generate-listing[parent::xhtml:style]' />
182 <xsl:template match='xhtml:style[@generate-listing]'>
183   <pre>&#x2060;<code><xsl:value-of select='f:strip-leading(.)' /></code></pre>
184 </xsl:template>
185
186 <!--
187   Add a simple way to reference a document node by ID and include the XHTML
188   code listing directly in the document.
189 -->
190 <xsl:template match='xhtml:generate-xhtml-listing'>
191   <xsl:variable name='target' select='@target' />
192   <pre>&#x2060;<code>
193     <xsl:value-of select='f:xhtml-listing(//xhtml:*[@id=$target])' />
194   </code></pre>
195 </xsl:template>
196
197 <xsl:template match='copyright'>
198   <p>
199     <xsl:text>Copyright © </xsl:text>
200     <xsl:value-of select='text()' />
201     <xsl:text>.</xsl:text>
202   </p>
203 </xsl:template>
204
205 <xsl:template match='license'>
206   <p>
207     <xsl:text>Copying and distribution of this material</xsl:text>
208     <xsl:if test='normalize-space(modification-allowed)="yes"'>
209       <xsl:text>, with or without modification,</xsl:text>
210     </xsl:if>
211     <xsl:text> is permitted under the terms of the </xsl:text>
212     <a rel='license'>
213       <xsl:attribute name='href'>
214         <xsl:value-of select='normalize-space(uri)' />
215       </xsl:attribute>
216       <xsl:value-of select='name' />
217     </a>
218     <xsl:text>.</xsl:text>
219   </p>
220 </xsl:template>
221
222 <xsl:template match='source'>
223   <p>
224     <xsl:text>This document was compiled from </xsl:text>
225     <a href='{concat($source-uri, revision, ":", file)}'>
226       <xsl:value-of select='file' />
227     </a>
228     <xsl:text> on </xsl:text>
229     <xsl:value-of select='compiletime' />
230     <xsl:text>.</xsl:text>
231   </p>
232 </xsl:template>
233
234 <xsl:template match='xhtml:h1[not(preceding::xhtml:h1)]'>
235   <xsl:copy><xsl:apply-templates select='node()|@*' /></xsl:copy>
236   <xsl:if test='/document/article/published'>
237     <div id='article-info'>
238       <p>
239         <xsl:text>Posted </xsl:text>
240         <xsl:value-of select='/document/article/published' />
241       </p>
242     </div>
243   </xsl:if>
244 </xsl:template>
245
246 <xsl:template match='/'>
247   <html>
248     <head>
249       <meta name='viewport' content='width=device-width, initial-scale=1' />
250       <link rel='stylesheet' type='text/css' href='/style.css' />
251       <link rel="icon" href="data:," />
252       <title>
253         <xsl:variable name='page-title' select='string(/document/title)' />
254         <xsl:if test='$page-title and $site-title != $page-title'>
255           <xsl:value-of select='concat($page-title, " – ")' />
256         </xsl:if>
257         <xsl:value-of select='$site-title' />
258       </title>
259       <!-- Hoist all style elements to <head> as required by the doctype. -->
260       <xsl:for-each select='//xhtml:style'>
261         <xsl:copy><xsl:apply-templates select='node()|@*' /></xsl:copy>
262       </xsl:for-each>
263     </head>
264     <body>
265       <xsl:apply-templates select='/document/xhtml:html/@*' />
266
267       <xsl:if test='/document/hierarchy/parent'>
268         <p id='sitetitle'>
269           <small><xsl:value-of select='$site-title' /></small>
270         </p>
271         <div id='breadcrumbs'>
272           <strong>Return to: </strong>
273           <ul>
274             <xsl:for-each select='/document/hierarchy/parent'>
275               <li><a href='{uri}'><xsl:value-of select='name'/></a></li>
276             </xsl:for-each>
277           </ul>
278         </div>
279         <hr />
280       </xsl:if>
281
282       <xsl:apply-templates select='/document/xhtml:html/node()' />
283
284       <hr />
285       <div id='footer'>
286         <xsl:apply-templates select='/document/copyright' />
287         <xsl:apply-templates select='/document/license' />
288         <xsl:apply-templates select='/document/source' />
289       </div>
290     </body>
291   </html>
292 </xsl:template>
293
294 </xsl:stylesheet>