blob: 16a7a6b480f981515de39fe3efa9a12f5563f080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<!-- Include common profiling stylesheet -->
<xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/profiling/profile.xsl"/>
<!-- Generate DocBook instance with correct DOCTYPE -->
<xsl:output method="xml"
encoding="UTF-8"
doctype-public="-//OASIS//DTD DocBook XML V4.2//EN"
doctype-system="http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"/>
</xsl:stylesheet>
|