summaryrefslogtreecommitdiff
path: root/sandbox/paultremblay/python_interface/docs/xsl/line_block.xsl
blob: 7fe6d7577e2e5b3e128983b924a6f4c3069dfe36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    version="1.1">

    <!-- $Id$ -->

    <xsl:template match= "xsl:attribute-set[@name='outer-line-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block</xsl:with-param> 
        </xsl:call-template>
        <block>
            The outer block containing the blocks of lines. Use the outer block to
            set space before or after the verse.
        </block>
    </xsl:template>

    <xsl:template match= "xsl:attribute-set[@name='level1-line-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block/line</xsl:with-param> 
        </xsl:call-template>
        <block>
            Attribute sets for the first level of lines.
        </block>
    </xsl:template>

    <xsl:template match= "xsl:attribute-set[@name='level2-line-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block/line_block/line</xsl:with-param> 
        </xsl:call-template>
        <block>
            Attribute sets for the second level of lines.
        </block>
    </xsl:template>

    <xsl:template match= "xsl:attribute-set[@name='level3-line-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block/line_block/line_block/line</xsl:with-param> 
        </xsl:call-template>
        <block>
            Attribute sets for the third level of lines.
        </block>
    </xsl:template>

    <xsl:template match= "xsl:attribute-set[@name='level4-line-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block/line_block/line_block/line_block/line</xsl:with-param> 
        </xsl:call-template>
        <block>
            Attribute sets for the fourth level of lines.
        </block>
    </xsl:template>

    <xsl:template match= "xsl:attribute-set[@name='level5-line-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block/line_block/line_block/line_block/line_block/line</xsl:with-param> 
        </xsl:call-template>
        <block>
            Attribute sets for the fifth level of lines.
        </block>
    </xsl:template>

    <xsl:template match= "xsl:attribute-set[@name='stanza-title-block']" priority="3">
        <xsl:call-template name="before-desc">
            <xsl:with-param name="fo">fo:block</xsl:with-param> 
            <xsl:with-param name="docutils">line_block/title_reference</xsl:with-param> 
        </xsl:call-template>
        <block>
            Formats the title of a stanza.
        </block>
    </xsl:template>


</xsl:stylesheet>