summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2006-01-22 20:26:09 +0000
committerPaul W. Frields <stickster@gmail.com>2006-01-22 20:26:09 +0000
commitceeba98b1f4666495aab654b8305d829d82d4b8a (patch)
tree6f9b7ad33dab8f93a49a592eb2077a273a0932f6 /packaging
parent0d0a9381853e63838c4c2b6d89efb927309b35b7 (diff)
downloadfedora-doc-utils-ceeba98b1f4666495aab654b8305d829d82d4b8a.tar.gz
fedora-doc-utils-ceeba98b1f4666495aab654b8305d829d82d4b8a.tar.xz
fedora-doc-utils-ceeba98b1f4666495aab654b8305d829d82d4b8a.zip
Make sure we output our XML declaration and DOCTYPE when rewriting rpm-info
Diffstat (limited to 'packaging')
-rw-r--r--packaging/insert-changelog.xsl4
-rw-r--r--packaging/insert-colophon.xsl4
2 files changed, 6 insertions, 2 deletions
diff --git a/packaging/insert-changelog.xsl b/packaging/insert-changelog.xsl
index 7058f54..0ab069d 100644
--- a/packaging/insert-changelog.xsl
+++ b/packaging/insert-changelog.xsl
@@ -16,7 +16,9 @@ The following stringparam values are expected in this file:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output encoding="UTF-8" indent="yes" method="xml" omit-xml-declaration="yes" standalone="no" version="1.0"/>
+ <xsl:output encoding="UTF-8" indent="yes" method="xml"
+ omit-xml-declaration="no" standalone="no" version="1.0"
+ doctype-system="../docs-common/packaging/rpm-info.dtd"/>
<xsl:template match="/">
<xsl:apply-templates/>
diff --git a/packaging/insert-colophon.xsl b/packaging/insert-colophon.xsl
index 99e00ed..7691ff2 100644
--- a/packaging/insert-colophon.xsl
+++ b/packaging/insert-colophon.xsl
@@ -18,7 +18,9 @@ The following stringparam values will be set in this stylesheet:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output encoding="UTF-8" indent="yes" method="xml" omit-xml-declaration="yes" standalone="no" version="1.0"/>
+ <xsl:output encoding="UTF-8" indent="yes" method="xml"
+ omit-xml-declaration="no" standalone="no" version="1.0"
+ doctype-system="../docs-common/packaging/rpm-info.dtd"/>
<!-- Cope if no othername is provided -->
<xsl:param name="othername" select="''"/>