source: trunk/Distribution/XSL/profiling/profile.xsl

Last change on this file was 2, checked in by jkacer, 18 years ago

Added all DocBook Framework stuff:

  • DocBook DTD
  • Transformation software FOP 0.20.5 and Saxon 6
  • XSL styles
  • Rexx scripts

Also added some WarpIN-related stuff for creation of WarpIN installation packages.
This state corresponds to version 1.0.0 from November 2005, just slightly modified to carry versioning information (Rexx scripts).

File size: 1.2 KB
Line 
1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2 version="1.0">
3
4<!-- Include common profiling stylesheet -->
5<xsl:include href="profile-mode.xsl"/>
6
7<!-- Generate DocBook instance with correct DOCTYPE -->
8<xsl:output method="xml"
9 doctype-public="-//OASIS//DTD DocBook XML V4.2//EN"
10 doctype-system="http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"/>
11
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="';'"/>
27
28<!-- Call common profiling mode -->
29<xsl:template match="/">
30 <xsl:apply-templates select="." mode="profile"/>
31</xsl:template>
32
33</xsl:stylesheet>
34
Note: See TracBrowser for help on using the repository browser.