Hi all,

This is my XML input :

<?xml version="1.0"?>
<topic>
        <a>Hello</a>
        <b code="123"/>
        <c/>
        <d code="123">
                <e>777</e>
                <f/>
        </d>
</topic>


and here is my XSL file :

<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">

<xsl:output method="xml" indent="yes" omit-xml-declaration="no"/>
<xsl:strip-space elements="*"/>

<xsl:template match="@*|node()">
        <xsl:if test="not(self::* and not(node()))">
                <xsl:copy>
                        <xsl:apply-templates select="@*|node()"/>
                </xsl:copy>
        </xsl:if>
</xsl:template>

</xsl:transform>

If I run the SimpleTransform under \xalan-j_2_1_0\samples\SimpleTransform\
using those files, the output is :
<?xml version="1.0" encoding="UTF-8"?>
<topic>
<a>Hello</a>
<d code="123">
<e>777</e>
</d>
</topic>


Why they remove the indentation ?
With Saxon, it produce really neat output :
<topic>
   <a>Hello</a>
   <d code="123">
      <e>777</e>
   </d>
</topic>

Any idea ?

Thanks,
Benoit Aumars.





************************************************************
JLT Management Services Limited
6 Crutched Friars, London EC3N 2PH. Co Reg No 1536540
Tel: (44) (0)20 7528 4000   Fax: (44) (0)20 7528 4500
http://www.jltgroup.com
------------------------------------------------------------
The content of this e-mail (including any attachments) as 
received may not be the same as sent. If you consider that 
the content is material to the formation or performance of 
a contract or you are otherwise relying upon its accuracy, 
you should consider requesting a copy be sent by facsimile 
or normal mail.  The information in this e-mail is 
confidential and may be legally privileged. If you are not 
the intended recipient, please notify the sender immediately 
and then delete this e-mail entirely - you must not retain, 
copy, distribute or use this e-mail for any purpose or 
disclose any of its content to others.

Opinions, conclusions and other information in this e-mail 
that do not relate to the official business of JLT 
Management Services Limited shall be understood as neither 
given nor endorsed by it.  Please note we intercept and 
monitor incoming / outgoing e-mail and therefore you should 
neither expect nor intend any e-mail to be private in nature.

We have checked this e-mail for viruses and other harmful 
components and believe but not guarantee it virus-free prior 
to leaving our computer system.  However, you should satisfy 
yourself that it is free from harmful components, as we do 
not accept responsibility for any loss or damage it may 
cause to your computer systems.
************************************************************

Reply via email to