Changeset d91b575 for stylesheets


Ignore:
Timestamp:
02/27/2005 11:29:16 AM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Children:
f00ddae
Parents:
8d73a06
Message:

Fixing a bug in the original stylesheets.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/lfs-profile.xsl

    r8d73a06 rd91b575  
    22
    33<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    4                 xmlns:fo="http://www.w3.org/1999/XSL/Format"
    54                version="1.0">
    65
    7   <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.67.2/profiling/profile.xsl"/>
     6  <!-- Include common profiling stylesheet -->
     7  <xsl:include href="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>
    834
    935</xsl:stylesheet>
Note: See TracChangeset for help on using the changeset viewer.