| [02095ae] | 1 | <?xml version='1.0' encoding='ISO-8859-1'?> | 
|---|
|  | 2 |  | 
|---|
|  | 3 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | 
|---|
|  | 4 | version="1.0"> | 
|---|
|  | 5 |  | 
|---|
|  | 6 | <!-- Include common profiling stylesheet --> | 
|---|
|  | 7 | <xsl:include href="http://docbook.sourceforge.net/release/xsl/1.69.1/profiling/profile-mode.xsl"/> | 
|---|
|  | 8 |  | 
|---|
|  | 9 | <!-- Generate DocBook instance with correct DOCTYPE --> | 
|---|
|  | 10 | <xsl:output method="xml" | 
|---|
|  | 11 | doctype-public="-//OASIS//DTD DocBook XML V4.4//EN" | 
|---|
|  | 12 | doctype-system="http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"/> | 
|---|
|  | 13 |  | 
|---|
|  | 14 | <!-- Profiling parameters --> | 
|---|
|  | 15 | <xsl:param name="profile.arch" select="''"/> | 
|---|
|  | 16 | <xsl:param name="profile.condition" select="''"/> | 
|---|
|  | 17 | <xsl:param name="profile.conformance" select="''"/> | 
|---|
|  | 18 | <xsl:param name="profile.lang" select="''"/> | 
|---|
|  | 19 | <xsl:param name="profile.os" select="''"/> | 
|---|
|  | 20 | <xsl:param name="profile.revision" select="''"/> | 
|---|
|  | 21 | <xsl:param name="profile.revisionflag" select="''"/> | 
|---|
|  | 22 | <xsl:param name="profile.role" select="''"/> | 
|---|
|  | 23 | <xsl:param name="profile.security" select="''"/> | 
|---|
|  | 24 | <xsl:param name="profile.userlevel" select="''"/> | 
|---|
|  | 25 | <xsl:param name="profile.vendor" select="''"/> | 
|---|
|  | 26 | <xsl:param name="profile.attribute" select="''"/> | 
|---|
|  | 27 | <xsl:param name="profile.value" select="''"/> | 
|---|
|  | 28 | <xsl:param name="profile.separator" select="';'"/> | 
|---|
|  | 29 |  | 
|---|
|  | 30 | <!-- Call common profiling mode --> | 
|---|
|  | 31 | <xsl:template match="/"> | 
|---|
|  | 32 | <xsl:apply-templates select="." mode="profile"/> | 
|---|
|  | 33 | </xsl:template> | 
|---|
|  | 34 |  | 
|---|
|  | 35 | </xsl:stylesheet> | 
|---|