Skip to content

Instantly share code, notes, and snippets.

@Andrewpk
Created July 30, 2012 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Andrewpk/3210011 to your computer and use it in GitHub Desktop.
Save Andrewpk/3210011 to your computer and use it in GitHub Desktop.
addnvpair.xsl diff - what IBM gives you, and what you probably want.
diff addnvpair.xsl.bak addnvpair.xsl
19c19,26
< <xsl:value-of select="normalize-space($value)"/>
---
> <xsl:choose>
> <xsl:when test="@name = 'Identifier'">
> <xsl:value-of select="$value"/>
> </xsl:when>
> <xsl:otherwise>
> <xsl:value-of select="normalize-space($value)"/>
> </xsl:otherwise>
> </xsl:choose>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment