SEESenv/scripts/html-single.xsl
author amit@thunder
Mon, 12 Apr 2010 15:12:41 +0530
changeset 49 3b5f1341d6c6
parent 2 52d12eb31c30
permissions -rwxr-xr-x
Some small changes ... bug fixes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     1
<?xml version="1.0"?>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     3
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     4
  <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     5
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     6
  <xsl:param name="draft.mode" select="no"/>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     7
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     8
  <!-- xsltproc can't support these extensions
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     9
  <xsl:param name="use.extensions">1</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    10
  <xsl:param name="callouts.extension">1</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    11
  <xsl:param name="linenumbering.extension">1</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    12
  <xsl:param name="tablecolumns.extension">1</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    13
  <xsl:param name="textinsert.extension">1</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    14
  -->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    15
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    16
  <xsl:param name="admon.graphics" select="1" />
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    17
  <xsl:param name="admon.graphics.extension">.png</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    18
  <xsl:param name="admon.graphics.path">figs/</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    19
  <xsl:param name="callout.graphics" select="1" />
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    20
  <xsl:param name="callout.graphics.extension">.png</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    21
  <xsl:param name="callout.graphics.path">images/callouts/</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    22
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    23
  <xsl:param name="section.autolabel" select="1" />
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    24
  <xsl:param name="section.label.includes.component.label">1</xsl:param>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    25
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    26
  <xsl:output method="html" encoding="utf-8" indent="yes"/>     <!-- html only -->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    27
  <xsl:param name="use.id.as.filename">0</xsl:param>            <!-- html only -->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    28
  <xsl:param name="chunk.section.depth">0</xsl:param>           <!-- html only -->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    29
  <xsl:param name="chunker.output.indent">yes</xsl:param>       <!-- html only -->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    30
  <xsl:param name="html.stylesheet">hgbook.css</xsl:param>      <!-- html only -->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    31
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    32
</xsl:stylesheet>