source: stylesheets/lfs-profile.xsl@ a2d4711a

Last change on this file since a2d4711a was a2d4711a, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Updated the stylesheets to use DocBook-XSL 168.1

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4990 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.4 KB
Line 
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.68.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>
Note: See TracBrowser for help on using the repository browser.