Skip to content

Commit

Permalink
address normalization added, #144
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelligent2013 committed Apr 29, 2024
1 parent 7dc67de commit c0f6a03
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/main/resources/stepmod.base_xsl/common.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -4877,7 +4877,7 @@ is case sensitive.')"/>

<xsl:template match="firstname | lastname">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/>
<xsl:text>&#xa;</xsl:text>
</xsl:template>

Expand Down Expand Up @@ -4912,51 +4912,51 @@ is case sensitive.')"/>

<xsl:template match="affiliation">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="street">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="pobox">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="city">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="state">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="postcode">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="country">
<xsl:param name="document_attribute_prefix"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/><!-- <br/> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/><!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>

<xsl:template match="phone">
<xsl:param name="document_attribute_prefix"/>
<!-- <b>Telephone: </b> -->
<!-- <xsl:text> *Telephone:* </xsl:text> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/>
<!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>
Expand All @@ -4965,7 +4965,7 @@ is case sensitive.')"/>
<xsl:param name="document_attribute_prefix"/>
<!-- <b>Telefacsimile: </b> -->
<!-- <xsl:text> *Telefacsimile:* </xsl:text> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/>
<!-- <br/> -->
<xsl:text>&#xa;</xsl:text>
</xsl:template>
Expand All @@ -4981,7 +4981,7 @@ is case sensitive.')"/>

<!-- <xsl:text> *Electronic mail:* </xsl:text> -->
<!--<xsl:value-of select="$mailto"/> <xsl:text>[]</xsl:text> -->
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', .)"/>
<xsl:value-of select="concat($document_attribute_prefix, local-name(), ': ', normalize-space())"/>
<xsl:text>&#xa;</xsl:text>
</xsl:template>

Expand Down

0 comments on commit c0f6a03

Please sign in to comment.