--- /dev/null
+<refentry xmlns="http://docbook.org/ns/docbook"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:xi="http://www.w3.org/2001/XInclude"
+ xmlns:src="http://nwalsh.com/xmlns/litprog/fragment"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version="5.0" xml:id="profile.outputformat">
+<refmeta>
+<refentrytitle>profile.outputformat</refentrytitle>
+<refmiscinfo class="other" otherclass="datatype">string</refmiscinfo>
+</refmeta>
+<refnamediv>
+ <refname>profile.outputformat</refname>
+ <refpurpose>Target profile for <tag class="attribute"
+ >outputformat</tag> attribute</refpurpose>
+ </refnamediv>
+
+<refsynopsisdiv>
+<src:fragment xml:id="profile.outputformat.frag">
+<xsl:param name="profile.outputformat"></xsl:param>
+</src:fragment>
+</refsynopsisdiv>
+
+<refsection><info><title>Description</title></info>
+
+<para>The value of this parameter specifies profiles which should be
+included in the output. You can specify multiple profiles by
+separating them by semicolon. You can change separator character by
+<parameter>profile.separator</parameter>
+parameter.</para>
+
+<para>This parameter has effect only when you are using profiling
+stylesheets (<filename>profile-docbook.xsl</filename>,
+<filename>profile-chunk.xsl</filename>, …) instead of normal
+ones (<filename>docbook.xsl</filename>,
+<filename>chunk.xsl</filename>, …).</para>
+
+</refsection>
+</refentry>
<xsl:variable name="os.ok" select="not(@os) or not($profile.os) or
$os.content != '' or @os = ''"/>
+ <xsl:variable name="outputformat.content">
+ <xsl:if test="@outputformat">
+ <xsl:call-template name="cross.compare">
+ <xsl:with-param name="a" select="$profile.outputformat"/>
+ <xsl:with-param name="b" select="@outputformat"/>
+ </xsl:call-template>
+ </xsl:if>
+ </xsl:variable>
+ <xsl:variable name="outputformat.ok" select="not(@outputformat) or not($profile.outputformat) or
+ $outputformat.content != '' or @outputformat = ''"/>
+
<xsl:variable name="revision.content">
<xsl:if test="@revision">
<xsl:call-template name="cross.compare">
$conformance.ok and
$lang.ok and
$os.ok and
+ $outputformat.ok and
$revision.ok and
$revisionflag.ok and
$role.ok and