Lines 160-173
Link Here
|
160 |
|
160 |
|
161 |
<!-- Author Statement: Alternate Graphic Representation (MARC 880) --> |
161 |
<!-- Author Statement: Alternate Graphic Representation (MARC 880) --> |
162 |
<xsl:if test="$display880"> |
162 |
<xsl:if test="$display880"> |
163 |
<h5 class="author"> |
163 |
<span class="results_summary author h3"> |
164 |
<xsl:call-template name="m880Select"> |
164 |
<xsl:call-template name="m880Select"> |
165 |
<xsl:with-param name="basetags">100,110,111,700,710,711</xsl:with-param> |
165 |
<xsl:with-param name="basetags">100,110,111,700,710,711</xsl:with-param> |
166 |
<xsl:with-param name="codes">abc</xsl:with-param> |
166 |
<xsl:with-param name="codes">abc</xsl:with-param> |
167 |
<xsl:with-param name="index">au</xsl:with-param> |
167 |
<xsl:with-param name="index">au</xsl:with-param> |
168 |
<!-- do not use label 'by ' here, it would be repeated for every occurrence of 100,110,111,700,710,711 --> |
168 |
<!-- do not use label 'by ' here, it would be repeated for every occurrence of 100,110,111,700,710,711 --> |
169 |
</xsl:call-template> |
169 |
</xsl:call-template> |
170 |
</h5> |
170 |
</span> |
171 |
</xsl:if> |
171 |
</xsl:if> |
172 |
|
172 |
|
173 |
<!--#13382 Added Author Statement to separate Authors and Contributors --> |
173 |
<!--#13382 Added Author Statement to separate Authors and Contributors --> |
Lines 1566-1572
Link Here
|
1566 |
<xsl:param name="materialTypeLabel" /> |
1566 |
<xsl:param name="materialTypeLabel" /> |
1567 |
<xsl:param name="theme" /> |
1567 |
<xsl:param name="theme" /> |
1568 |
<xsl:if test="count($authorfield)>0"> |
1568 |
<xsl:if test="count($authorfield)>0"> |
1569 |
<h5 class="author"> |
1569 |
<span class="results_summary author h3"> |
1570 |
<xsl:for-each select="$authorfield"> |
1570 |
<xsl:for-each select="$authorfield"> |
1571 |
<xsl:choose> |
1571 |
<xsl:choose> |
1572 |
<xsl:when test="position()>1"/> |
1572 |
<xsl:when test="position()>1"/> |
Lines 1832-1838
Link Here
|
1832 |
<xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise> |
1832 |
<xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise> |
1833 |
</xsl:choose> |
1833 |
</xsl:choose> |
1834 |
</xsl:for-each> |
1834 |
</xsl:for-each> |
1835 |
</h5> |
1835 |
</span> |
1836 |
</xsl:if> |
1836 |
</xsl:if> |
1837 |
</xsl:template> |
1837 |
</xsl:template> |
1838 |
|
1838 |
|
1839 |
- |
|
|