On Wed, Apr 18, 2012 at 16:49, Blanco, Jose <blan...@umich.edu> wrote:
> <xsl:variable name='requestcopy'><xsl:value-of 
> select="available"/></xsl:variable>

This is probably not what you expect. Here you're testing whether the
current DRI node is available, i.e. whether you have an <available/>
element in DRI.

Since in the xsl:if code you're testing whether $requestcopy contains
the 'available' string, I assume you wanted to assign that string to
$requestcopy, i.e. one of these notation (notice the single quotes
around 'available'):
<xsl:variable name='requestcopy'>available</xsl:variable>
<xsl:variable name='requestcopy' select=" 'available' " />

If you meant something else by the variable assignment, please explain
under what conditions you want that link to be added.

Regards,
~~helix84

------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to