Mercurial > projects > xwrited
comparison docbook-update-source-data.xsl @ 19:f0accfc74f7b
Port to GLib version 2.48 or later
Use GApplication instead of the custom XWritedUnique object for uniqueness.
Use GNotification from GIO instead of libnotify.
Remove help and debug options from documentation.
Replace intltool with GNU gettext (version 0.19 or later required).
author | Guido Berhoerster <guido+xwrited@berhoerster.name> |
---|---|
date | Sat, 28 Jul 2018 22:02:24 +0200 |
parents | data/docbook-update-source-data.xsl@f0c7f45022c0 |
children |
comparison
equal
deleted
inserted
replaced
18:4a5330979433 | 19:f0accfc74f7b |
---|---|
1 <?xml version="1.0"?> | |
2 <xsl:stylesheet | |
3 version="1.0" | |
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
5 xmlns:db="http://docbook.org/ns/docbook" | |
6 xmlns="http://docbook.org/ns/docbook" | |
7 exclude-result-prefixes="xsl db"> | |
8 | |
9 <xsl:param name="package" select="''" /> | |
10 <xsl:param name="version" select="''" /> | |
11 | |
12 <xsl:template match="db:refmeta/db:refmiscinfo[@class = 'source' or | |
13 @class = 'version']"/> | |
14 | |
15 <xsl:template match="db:refmeta"> | |
16 <xsl:copy> | |
17 <xsl:apply-templates/> | |
18 <refmiscinfo class="source"><xsl:value-of select="$package"/></refmiscinfo> | |
19 <refmiscinfo class="version"><xsl:value-of select="$version"/></refmiscinfo> | |
20 </xsl:copy> | |
21 </xsl:template> | |
22 | |
23 <xsl:template match="@*|node()"> | |
24 <xsl:copy> | |
25 <xsl:apply-templates select="@*|node()"/> | |
26 </xsl:copy> | |
27 </xsl:template> | |
28 | |
29 </xsl:stylesheet> |