SyncDlg: do not include last modification column
[TortoiseGit.git] / doc / xsl / profile.xsl
blob07e8bd5a6677ff08a88f0a3ed4916c9cbddc6a64
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2 version="1.0">
4 <!-- Include common profiling stylesheet -->
5 <xsl:include href="profile-mode.xsl"/>
7 <!-- Generate DocBook instance with correct DOCTYPE -->
8 <xsl:output method="xml"
9 encoding="utf-8"
10 doctype-system="./dtd/dblite.dtd"/>
12 <!-- Profiling parameters -->
13 <xsl:param name="profile.arch" select="''"/>
14 <xsl:param name="profile.condition" select="''"/>
15 <xsl:param name="profile.conformance" select="''"/>
16 <xsl:param name="profile.lang" select="''"/>
17 <xsl:param name="profile.os" select="''"/>
18 <xsl:param name="profile.revision" select="''"/>
19 <xsl:param name="profile.revisionflag" select="''"/>
20 <xsl:param name="profile.role" select="''"/>
21 <xsl:param name="profile.security" select="''"/>
22 <xsl:param name="profile.userlevel" select="''"/>
23 <xsl:param name="profile.vendor" select="''"/>
24 <xsl:param name="profile.attribute" select="''"/>
25 <xsl:param name="profile.value" select="''"/>
26 <xsl:param name="profile.separator" select="';'"/>
28 <!-- Call common profiling mode -->
29 <xsl:template match="/">
30 <xsl:apply-templates select="." mode="profile"/>
31 </xsl:template>
33 </xsl:stylesheet>