annotate data/docbook-update-source-data.xsl @ 5:1508a4c35c47

Rewrite the man page in DocBook 5 XML
author Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
date Thu, 08 Aug 2013 16:17:03 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
1 <?xml version="1.0"?>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
2 <xsl:stylesheet
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
3 version="1.0"
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
5 xmlns:db="http://docbook.org/ns/docbook"
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
6 xmlns="http://docbook.org/ns/docbook"
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
7 exclude-result-prefixes="xsl db">
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
8
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
9 <xsl:param name="package" select="''" />
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
10 <xsl:param name="version" select="''" />
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
11
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
12 <xsl:template match="db:refmeta/db:refmiscinfo[@class = 'source' or
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
13 @class = 'version']"/>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
14
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
15 <xsl:template match="db:refmeta">
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
16 <xsl:copy>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
17 <xsl:apply-templates/>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
18 <refmiscinfo class="source"><xsl:value-of select="$package"/></refmiscinfo>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
19 <refmiscinfo class="version"><xsl:value-of select="$version"/></refmiscinfo>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
20 </xsl:copy>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
21 </xsl:template>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
22
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
23 <xsl:template match="@*|node()">
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
24 <xsl:copy>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
25 <xsl:apply-templates select="@*|node()"/>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
26 </xsl:copy>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
27 </xsl:template>
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
28
1508a4c35c47 Rewrite the man page in DocBook 5 XML
Guido Berhoerster <guido+xinhibit-applet@berhoerster.name>
parents:
diff changeset
29 </xsl:stylesheet>