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

RE: variable question

Subject: RE: variable question
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Tue, 31 Aug 2004 11:18:51 +0100
RE:  variable question
Using the trace() function can be useful to determine what the actual value
of an expression is. Alternatively, temporarily remove the type check and
add some logic to the called function to display details such as
count($relatedItem).

If you're really stuck, send me the full source and stylesheet and I'll try
and diagnose it for you.

Michael Kay

> -----Original Message-----
> From: Bruce D'Arcus [mailto:bdarcus@xxxxxxxxxxxxx]
> Sent: 31 August 2004 10:55
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re:  variable question
>
> On Aug 31, 2004, at 3:59 AM, Michael Kay wrote:
>
> > If the relevant function call is the one shown, it means that the
> > parent of
> > the mods:titleInfo context item is not a mods:relatedItem element,
> > therefore
> > the function has been called with an empty sequence as the
> argument,
> > which
> > is not allowed given the way you have declared the parameter.
>
> Here's source fragment.
>
>      <relatedItem type="host">
>        <titleInfo>
> 	<title>Newsweek</title>
>        </titleInfo>
>
> No matter how I adjust the argument on the template below, I get the
> same error. So I don't understand what's going on.
>
> <xsl:function name="mods:reftype" as="xs:string">
>    <xsl:param name="relatedItem" as="element(mods:relatedItem)" />
>    <xsl:choose>
>      <xsl:when test="$relatedItem/@type = 'host'">
>        <xsl:variable name="issuance" as="xs:string"
>          select="$relatedItem/mods:originInfo/mods:issuance" />
>        <xsl:choose>
>          <xsl:when test="$issuance = 'continuing'">article</xsl:when>
>          <xsl:when test="$issuance = 'monographic'">chapter</xsl:when>
>        </xsl:choose>
>      </xsl:when>
>      <xsl:otherwise>book</xsl:otherwise>
>    </xsl:choose>
> </xsl:function>
>
> <xsl:template match="mods:titleInfo" mode="title-before">
>    <xsl:if test="mods:reftype(parent::mods:relatedItem) = 'chapter'">
>      <xsl:text>"</xsl:text>
>    </xsl:if>
> </xsl:template>

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.