~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to letter/report/letter.xsl

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
 
3
 
 
4
        <xsl:import href="custom_default.xsl"/>
 
5
        <xsl:import href="custom_rml.xsl"/>
 
6
        
 
7
        <xsl:template match="/">
 
8
                <xsl:call-template name="rml"/>
 
9
        </xsl:template>
 
10
 
 
11
        <xsl:template name="stylesheet">
 
12
        </xsl:template>
 
13
 
 
14
        <xsl:template name="story">
 
15
                <xsl:apply-templates select="letter"/>
 
16
        </xsl:template>
 
17
 
 
18
        <xsl:template match="letter">
 
19
                <xsl:apply-templates select="paragraphes"/>
 
20
        </xsl:template>
 
21
 
 
22
        <xsl:template match="paragraphes">
 
23
                <xsl:apply-templates select="paragraphe"/>
 
24
        </xsl:template>
 
25
        
 
26
        <xsl:template match="paragraphe">
 
27
                        <xsl:value-of select="." disable-output-escaping="yes"/>
 
28
                        <spacer width="4mm" length="4mm"/>
 
29
        </xsl:template>
 
30
</xsl:stylesheet>