ev_20000324.py :  » XML » 4Suite » 4Suite-XML-1.0.2 » test » Xml » Xslt » Borrowed » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » XML » 4Suite 
4Suite » 4Suite XML 1.0.2 » test » Xml » Xslt » Borrowed » ev_20000324.py
#Eric van der Vlist's oddball formatting example, 24 Mar 2000
#Note: heavily recursive (chokes 4XSLT 0.10.0 on a PII 450 with 128M RAM)
#Luckily most of it is tail recursion so optimization should help

from Xml.Xslt import test_harness

sheet_1 = """<?xml version="1.0" encoding='iso-8859-1'?>
<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  >

<xsl:output indent="yes" encoding="iso-8859-1" method="text"/>

<xsl:template name="next">
    <xsl:param name="pos"/>
    <xsl:param name="hpos"/>
    <xsl:apply-templates select="/descendant-or-self::*[position()=($pos+1)]">
        <xsl:with-param name="pos" select="$pos+1"/>
        <xsl:with-param name="hpos" select="$hpos"/>
    </xsl:apply-templates>
</xsl:template>

<xsl:template name="spaces">
    <xsl:param name="number"/>
    <xsl:value-of select="' '"/>
    <xsl:if test="$number &gt; 1">
        <xsl:call-template name="spaces">
            <xsl:with-param name="number" select="$number - 1"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

<xsl:template name="line-break">
    <xsl:param name="pos"/>
    <xsl:param name="word"/>
    <xsl:param name="depth"/>
    <xsl:value-of select="'&#10;'"/>
    <xsl:if test="$depth &gt; 0">
        <xsl:call-template name="spaces">
            <xsl:with-param name="number" select="$depth"/>
        </xsl:call-template>
    </xsl:if>
    <xsl:choose>
        <xsl:when test="$word!=''">
            <xsl:value-of select="concat($word, ' ')"/>
            <xsl:call-template name="next">
                <xsl:with-param name="pos" select="$pos"/>
                <xsl:with-param name="hpos" select="$depth + string-length($word)+1"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:call-template name="next">
                <xsl:with-param name="pos" select="$pos"/>
                <xsl:with-param name="hpos" select="$depth"/>
            </xsl:call-template>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

<xsl:template match="*">
    <xsl:param name="pos" select="1"/>
    <xsl:param name="hpos" select="1"/>
    <xsl:param name="depth" select="sum(ancestor-or-self::b/@ident)"/>
    <xsl:choose>
        <xsl:when test="@cr=1">
            <xsl:call-template name="line-break">
                <xsl:with-param name="pos" select="$pos"/>
                <xsl:with-param name="depth" select="$depth"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:when test="@value!=''">
            <xsl:choose>
                <xsl:when test="($depth + $hpos + string-length(@value) +1) &lt; 75">
                    <xsl:value-of select="concat(@value, ' ')"/>
                    <xsl:call-template name="next">
                        <xsl:with-param name="pos" select="$pos"/>
                        <xsl:with-param name="hpos" select="$hpos + string-length(@value)+1"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:call-template name="line-break">
                        <xsl:with-param name="pos" select="$pos"/>
                        <xsl:with-param name="depth" select="$depth"/>
                        <xsl:with-param name="word" select="@value"/>
                    </xsl:call-template>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:when>
        <xsl:otherwise>
            <xsl:call-template name="next">
                <xsl:with-param name="pos" select="$pos"/>
                <xsl:with-param name="hpos" select="$hpos"/>
            </xsl:call-template>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>


</xsl:stylesheet>"""


source_1="""<?xml version="1.0" encoding="utf-8"?>
<b ident="0" cr="1">
    <w value="this"/>
    <w value="is"/>
    <w value="a"/>
    <w value="list"/>
    <w value=":"/>
    <b ident="0" cr="1">
        <w value="."/>
        <b ident="1" cr="0">
            <w value="itemmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm"/>
            <w value="1"/>
        </b>
    </b>
    <b ident="0" cr="1">
        <w value="."/>
        <b ident="1" cr="0">
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="item"/>
            <w value="2"/>
        </b>
    </b>
    <w value="end"/>
    <w value="of"/>
    <w value="the"/>
    <w value="list"/>
    <b ident="1" cr="1">
        <w value="indentation"/>
    </b>
</b>
"""

expected_1="""
this is a list : 
. 
 itemmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm 
 1 
. item item item item item item item item item item item item item item 
 item item item item item item item item item item item item item item 
 item item item item item item item item item item item 2 end of the list 
 indentation """


def Test(tester):
    source = test_harness.FileInfo(string=source_1)
    sheet = test_harness.FileInfo(string=sheet_1)
    test_harness.XsltTest(tester, source, [sheet], expected_1)
    return
    
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.