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

Re: Language-specific output

Subject: Re: Language-specific output
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 1 Feb 2006 14:50:36 GMT
xml lang x default
                   <xsl:choose>
                        <xsl:when test="rdf:Description/dc:rights/rdf:Alt/rdf:li/@xml:lang = $lang">
                            <xsl:value-of select="rdf:Description/dc:rights/rdf:Alt/rdf:li[@xml:lang = $lang]"/>
                        </xsl:when>
                        <xsl:otherwise>
                            <xsl:value-of select="rdf:Description/dc:rights/rdf:Alt/rdf:li[@xml:lang 
                                = 'x-default']"/>
                            </xsl:otherwise>
                    </xsl:choose>
 

could be writen

 <xsl:value-of select="rdf:Description/dc:rights/rdf:Alt/(rdf:li[@xml:lang= $lang],rdf:li[@xml:lang= 'x-default'])[1]

or if you know x-default always comes first in the input (if it is
there) you can simplify further to


<xsl:value-of select="rdf:Description/dc:rights/rdf:Alt/rdf:li[@xml:lang=($lang,'x-default')][last()]

I can't really answer your earlier points as it depends what you are
doing. If you have stylesheet that references a variable that isn't
defined, but you only use that stylesheet in combination with another
stylesheet that does declare the variable that shoudl work.

However it might be that your IDE to aid xslt debugging or whatever is
compiling each stylesheet separtately, and this would fail of course.

I wouldn't use lots of variables for this I'd just use one _document_
(or equivaently one variable) something like
<xsl:variable name="stuff>
<a name="TFilename lang="de">Datei:</a>
<a name="TFilename" lang="en">File:</a>
<a name="TTitle">lang="de">XMP Steckbrief der Datei </a>
...




accessed as $stuff/a[@name=$name and @lang=@lang]

(if this list is big, access could be considerably quickened if you also
defiend an xsl:key for these elements.


If you want your sub-stylesheets to be able to be compiled without error
you only need to add

<xsl:variable name="stuff" select="()"/>

to them, this makes the variable declared as an empty list so it will
type check when used in path expressions. It doesn't matter that it's
not the value you want as when you run it this global variable will have
the value from your top most importing stylesheet which is your lookup
table.


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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.