custom-html.xsl revision a8eaaee72a2f06e0fb64fb71de3b71ecba31dafb
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik This file is part of systemd.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik Copyright 2011 Lennart Poettering
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik systemd is free software; you can redistribute it and/or modify it
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik under the terms of the GNU Lesser General Public License as published by
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik the Free Software Foundation; either version 2.1 of the License, or
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik (at your option) any later version.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik systemd is distributed in the hope that it will be useful, but
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik WITHOUT ANY WARRANTY; without even the implied warranty of
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik Lesser General Public License for more details.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik You should have received a copy of the GNU Lesser General Public License
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik along with systemd; If not, see <http://www.gnu.org/licenses/>.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik - The docbook stylesheet injects empty anchor tags into generated HTML, identified by an auto-generated ID.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik - Ask the docbook stylesheet to generate reproducible output when generating (these) ID values.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik - This makes the output of this stylesheet reproducible across identical invocations on the same input,
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik - which is an easy and significant win for achieving reproducible builds.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik - It may be even better to strip the empty anchors from the document output in addition to turning on consistent IDs,
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik - for this stylesheet contains its own custom ID logic (for generating permalinks) already.
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik<xsl:param name="generate.consistent.ids" select="1"/>
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik<!-- translate man page references to links to html pages -->
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik<xsl:template match="citerefentry[not(@project)]">
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik <xsl:value-of select="refentrytitle"/><xsl:text>.html</xsl:text>
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik<xsl:template match="citerefentry[@project='man-pages'] | citerefentry[manvolnum='2'] | citerefentry[manvolnum='4']">
b24e4bec819b29f1ec8e77083d4e7610c5dd9c77Lukas Slebodnik <xsl:text>http://man7.org/linux/man-pages/man</xsl:text>
- helper template to do conflict resolution between various headings with the same inferred ID attribute/tag from the headerlink template
- this conflict resolution is necessary to prevent malformed HTML output (multiple ID attributes with the same value)
- A simple top-to-bottom numbering scheme is implemented for nodes with the same ID value to derive unique ID values for HTML output.
- Conflicts are detected solely based on keyNode, templateID is not taken into account for that purpose.
<xsl:variable name="conflictSource" select="preceding::refsect1/title|preceding::refsect1/info/title|
preceding::varlistentry/term[1]"/>
<!-- special case conflictCount = 0 to preserve compatibility with URLs generated by previous versions of this XSL stylesheet where possible -->
- It helps reduce tedious repetition and groups all actual markup output (as opposed to URL/ID logic) in a single location.
<xsl:param name="nodeType"/> <!-- local name of the element node to generate, e.g. 'h2' for <h2></h2> -->
<xsl:param name="nodeContent"/> <!-- nodeset to apply further templates to obtain the content of the subheading/term -->
<xsl:param name="linkTitle"/> <!-- value for title attribute of generated permalink, e.g. 'this is a permalink' -->
- generatedID could simply take the value of generate-id(), and various other helper templates may be dropped entirely.
- Alternatively, if xsltproc is patched to generate reproducible generate-id() output, the same simplifications can be
- applied at the cost of breaking compatibility with URLs generated from output of previous versions of this stylesheet.
<!-- simple wrapper around permalink to avoid repeating common info for each level of subheading covered by the permalink logic (h2, h3) -->
- To retain compatibility with IDs generated by previous versions of the template, inline.charseq must be called.
- The purpose of that template is to generate markup (according to docbook documentation its purpose is to mark/format something as plain text).
- The only reason to call this template is to get the auto-generated text such as brackets ([]) before flattening it.
<!-- the ID is output in the block.object call for refsect1 -->
- To retain compatibility with IDs generated by previous versions of the template, inline.charseq must be called.
- The purpose of that template is to generate markup (according to docbook documentation its purpose is to mark/format something as plain text).
- The only reason to call this template is to get the auto-generated text such as brackets ([]) before flattening it.
a.headerlink:hover {
h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, dt:hover > a.headerlink {