This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Handling non-Ascii values??


I have tried your code, it works fine. only thing I changed is the line:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
that's all.



-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of
crazy_legs@us.sina.com
Sent: Monday, May 07, 2001 12:10 AM
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] Handling non-Ascii values??


I have a strange question.  I am trying to search an XML file with non-ascii
values.  I am using an XSL file to do the searching.  I only want to display
ONE entry from the XML file, the entry containing the "Character" value
&#1032;.  However, I get ALL the entries not just the one I want.  Any ideas
on how to correct this problem?  I have attached both the XSL and XML file.




XSL file

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";
xmlns:HTML="http://www.w3.org/Profiles/XHTML-transitional";>
    <xsl:template match="/">
                <table>
                    <xsl:for-each
select="Database/Entry[Character='&#1032;']">
                        <tr>
                                <td><xsl:value-of select="Character"/></td>
                                <td><xsl:value-of select="Score"/></td>
                        </tr>
                    </xsl:for-each>
                </table>
    </xsl:template>
</xsl:stylesheet>


XML file

<Database>
        <Entry>
                <Character>&#1026;</Character>
                <Score>2</Score>
        </Entry>

        <Entry>
                <Character>&#1029;</Character>
                <Score>8</Score>
        </Entry>


        <Entry>
                <Character>&#1032;</Character>
                <Score>8</Score>
        </Entry>

        <Entry>
                <Character>&#1033;</Character>
                <Score>8</Score>
        </Entry>

</Database>


_______________________________________________________________
http://www.SINA.com - #1 Destination Site for Chinese Worldwide

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]