~ubuntu-branches/ubuntu/wily/libjboss-remoting-java/wily

« back to all changes in this revision

Viewing changes to docs/guide/support/styles/en/html.xsl

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
 
 
3
<!--
 
4
 
 
5
    This is the XSL HTML configuration file for the Hibernate
 
6
    Reference Documentation.
 
7
 
 
8
    It took me days to figure out this stuff and fix most of
 
9
    the obvious bugs in the DocBook XSL distribution. Some of
 
10
    the workarounds might not be appropriate with a newer version
 
11
    of DocBook XSL. This file is released as part of Hibernate,
 
12
    hence LGPL licensed.
 
13
 
 
14
    christian@hibernate.org
 
15
-->
 
16
 
 
17
<!DOCTYPE xsl:stylesheet [
 
18
    <!ENTITY db_xsl_path        "../../support/docbook-xsl/">
 
19
]>
 
20
 
 
21
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 
22
                version="1.0"
 
23
                xmlns="http://www.w3.org/TR/xhtml1/transitional"
 
24
                exclude-result-prefixes="#default">
 
25
                
 
26
<xsl:import href="&db_xsl_path;/html/docbook.xsl"/>
 
27
 
 
28
<!--###################################################
 
29
                     HTML Settings
 
30
    ################################################### -->   
 
31
 
 
32
    <xsl:param name="html.stylesheet">css/html.css</xsl:param>
 
33
 
 
34
    <!-- These extensions are required for table printing and other stuff -->
 
35
    <xsl:param name="use.extensions">1</xsl:param>
 
36
    <xsl:param name="tablecolumns.extension">0</xsl:param>
 
37
    <xsl:param name="callout.extensions">1</xsl:param>
 
38
    <xsl:param name="graphicsize.extension">0</xsl:param>
 
39
 
 
40
<!--###################################################
 
41
                      Table Of Contents
 
42
    ################################################### -->   
 
43
 
 
44
    <!-- Generate the TOCs for named components only -->
 
45
    <xsl:param name="generate.toc">
 
46
        book   toc
 
47
    </xsl:param>
 
48
    
 
49
    <!-- Show only Sections up to level 3 in the TOCs -->
 
50
    <xsl:param name="toc.section.depth">3</xsl:param>
 
51
    
 
52
<!--###################################################
 
53
                         Labels
 
54
    ################################################### -->   
 
55
 
 
56
    <!-- Label Chapters and Sections (numbering) -->
 
57
    <xsl:param name="chapter.autolabel">1</xsl:param>
 
58
    <xsl:param name="section.autolabel" select="1"/>
 
59
    <xsl:param name="section.label.includes.component.label" select="1"/>
 
60
 
 
61
<!--###################################################
 
62
                         Callouts
 
63
    ################################################### -->
 
64
 
 
65
    <!-- Don't use graphics, use a simple number style -->
 
66
    <xsl:param name="callout.graphics">0</xsl:param>
 
67
 
 
68
    <!-- Place callout marks at this column in annotated areas -->
 
69
    <xsl:param name="callout.defaultcolumn">90</xsl:param>
 
70
 
 
71
<!--###################################################
 
72
                          Misc
 
73
    ################################################### -->   
 
74
 
 
75
    <!-- Placement of titles -->
 
76
    <xsl:param name="formal.title.placement">
 
77
        figure after
 
78
        example before
 
79
        equation before
 
80
        table before
 
81
        procedure before
 
82
    </xsl:param>    
 
83
    
 
84
</xsl:stylesheet>