Skip to content

Commit

Permalink
eml2tonbii stylesheet is now valid
Browse files Browse the repository at this point in the history
  • Loading branch information
mobb committed Apr 9, 2015
1 parent 2cf7da5 commit d803c56
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/eml2tonbii/eml2tonbii.xsl
Expand Up @@ -283,7 +283,7 @@ version="1.0">
<xsl:value-of select="/*[local-name() = 'eml']/dataset/pubPlace" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'N/A'">
<xsl:value-of select="'N/A'"/>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
Expand All @@ -297,9 +297,9 @@ version="1.0">
<xsl:value-of select="/*[local-name() = 'eml']/dataset/publisher/organizationName" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'N/A'">
<xsl:value-of select="'N/A'"/>
</xsl:otherwise>
<xsl:choose>
</xsl:choose>
</xsl:element>
</xsl:element>
</xsl:if>
Expand Down Expand Up @@ -2049,15 +2049,15 @@ version="1.0">
<xsl:value-of select="xalan:nodeset($cc)//individualName[1]/surName"/>
</xsl:element>
<xsl:if test="$show_optional">
<xsl:if test"xalan:nodeset($cc)//organizationName != ''">
<xsl:if test="xalan:nodeset($cc)//organizationName != ''">
<xsl:element name="cntorg">
<xsl:value-of select="xalan:nodeset($cc)//organizationName"/>
</xsl:element>
</xsl:if>
</xsl:if>
</xsl:element>
</xsl:when>
<xsl:when test="xalan:nodeset($cc)//organizationName! = ''">
<xsl:when test="xalan:nodeset($cc)//organizationName != ''">
<xsl:element name="cntorgp">
<xsl:element name="cntorg">
<xsl:value-of select="xalan:nodeset($cc)//organizationName"/>
Expand Down

0 comments on commit d803c56

Please sign in to comment.