~qbalazs/installation-guide/lp1030336

« back to all changes in this revision

Viewing changes to build/stylesheets/style-profile.xsl

  • Committer: joeyh
  • Date: 2005-10-07 19:51:38 UTC
  • Revision ID: vcs-imports@canonical.com-20051007195138-c3d57b2617a79a4f
move manual to top-level directory, split out of debian-installer package

Show diffs side-by-side

added added

removed removed

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