VirtualBox

source: vbox/trunk/doc/manual/docbook-refentry-to-manpage.xsl

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1<?xml version="1.0"?>
2<!--
3 docbook-to-man.xsl:
4 XSLT stylesheet that renders a refentry into a troff manpage.
5-->
6<!--
7 Copyright (C) 2006-2023 Oracle and/or its affiliates.
8
9 This file is part of VirtualBox base platform packages, as
10 available from https://www.virtualbox.org.
11
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU General Public License
14 as published by the Free Software Foundation, in version 3 of the
15 License.
16
17 This program is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, see <https://www.gnu.org/licenses>.
24
25 SPDX-License-Identifier: GPL-3.0-only
26-->
27
28<xsl:stylesheet
29 version="1.0"
30 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
31
32 <xsl:import href="manpages/docbook.xsl"/>
33
34 <!--
35 <xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>
36 <xsl:strip-space elements="*"/>
37 -->
38
39 <!--
40 Extract manual's date from an *info/pubdate node (cf.
41 get.refentry.date). Detect RCS Date keyword.
42 -->
43 <xsl:template match="pubdate">
44 <xsl:choose>
45 <!-- careful with that keyword -->
46 <xsl:when test="starts-with(text(), concat('$', 'Date:'))">
47 <!-- Fetch the ISO 8601 date from inside -->
48 <xsl:value-of select="substring(text(), 8, 10)"/>
49 </xsl:when>
50 <xsl:otherwise>
51 <!-- Use as-is -->
52 <xsl:value-of select="text()"/>
53 </xsl:otherwise>
54 </xsl:choose>
55 </xsl:template>
56
57</xsl:stylesheet>
58
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use