Created
July 30, 2012 20:43
-
-
Save Andrewpk/3210011 to your computer and use it in GitHub Desktop.
addnvpair.xsl diff - what IBM gives you, and what you probably want.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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