[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: i18n and l10n question

Subject: Re: i18n and l10n question
From: Nico Van Cleemput <Nicolas.VanCleemput@xxxxxxxx>
Date: Mon, 13 Nov 2006 15:09:46 +0100
nico van cleemput
Disregard that: I just had to change version="1.0" to version="2.0"
to solve this. Now I get the following error:

ERROR:  'Namespace prefix 'my' is undeclared.'
FATAL ERROR:  'Could not compile stylesheet'

How do I solve this? I'm not that familiar with the whole namespace-
thing.

Nico


On 13 Nov 2006, at 14:48, Nico Van Cleemput wrote:


I get the following error:

Compiler warnings:
  line 13: Illegal attribute 'as'.
ERROR:  'line 12: Unsupported XSL element 'function'.'
FATAL ERROR:  'Could not compile stylesheet'
Exception in thread "main"
javax.xml.transform.TransformerConfigurationException: Could not
compile stylesheet
        at
com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.ne
wTemplates(TransformerFactoryImpl.java:824)
        at
com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.ne
wTransformer(TransformerFactoryImpl.java:619)
        at org.grinvin.help.html.XSLTTest.main(XSLTTest.java:43)

Any idea of a solution or alternative for this?


On 13 Nov 2006, at 13:49, Florent Georges wrote:


Nico Van Cleemput wrote:

Dag,

    <tr><td>nr</td><td>description 1description 2</td></tr>
    <tr><td>nr</td><td>description 1description 2</td></tr>

key() looks in the whole document. So it returns each time all the matching elements. Because you just need to access child elements, you don't need keys, just use something like:

    <xsl:function name="my:i18n-get-properties"
                  as="element(properties)">
      <xsl:param name="i18n" as="element(i18n)"/>
      <xsl:sequence select="$i18n/(
                                node[@name eq $locale],
                                node[@name eq $locale2],
                                .
                              )[1]/properties"/>
    </xsl:function>

to select the right, more specific locale, then:

    <xsl:for-each select="parameter">
      <tr>
        <td>
          <xsl:value-of select="
              my:i18n-get-properties(i18n)
                / entry[@key eq 'parameter.caption']"/>
        </td>
        <td>
          <xsl:value-of select="
              my:i18n-get-properties(i18n)
                / entry[@key eq 'parameter.description']"/>
        </td>
      </tr>
    </xsl:for-each>

Not tested.

Regards,

--drkm



























_____________________________________________________________________
______
Dicouvrez une nouvelle fagon d'obtenir des riponses ` toutes vos
questions !
Profitez des connaissances, des opinions et des expiriences des
internautes sur Yahoo! Questions/Riponses
http://fr.answers.yahoo.com

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.