|
Lines 189-194
Link Here
|
| 189 |
</xsl:if> |
189 |
</xsl:if> |
| 190 |
</xsl:template> |
190 |
</xsl:template> |
| 191 |
|
191 |
|
|
|
192 |
<xsl:template name="tag_210-214"> |
| 193 |
<xsl:choose> |
| 194 |
<xsl:when test="marc:datafield[@tag=210] and marc:datafield[@tag=214]"> |
| 195 |
<xsl:call-template name="tag_214" /> |
| 196 |
</xsl:when> |
| 197 |
<xsl:when test="marc:datafield[@tag=214]"> |
| 198 |
<xsl:call-template name="tag_214" /> |
| 199 |
</xsl:when> |
| 200 |
<xsl:when test="marc:datafield[@tag=210]"> |
| 201 |
<xsl:call-template name="tag_210" /> |
| 202 |
</xsl:when> |
| 203 |
</xsl:choose> |
| 204 |
</xsl:template> |
| 205 |
|
| 192 |
<xsl:template name="tag_210"> |
206 |
<xsl:template name="tag_210"> |
| 193 |
<span class="results_summary publication"> |
207 |
<span class="results_summary publication"> |
| 194 |
<span class="label">Publication: </span> |
208 |
<span class="label">Publication: </span> |
|
Lines 311-316
Link Here
|
| 311 |
</span> |
325 |
</span> |
| 312 |
</span> |
326 |
</span> |
| 313 |
</xsl:for-each> |
327 |
</xsl:for-each> |
|
|
328 |
<xsl:call-template name="tag_214_r" /> |
| 329 |
<xsl:call-template name="tag_214_s" /> |
| 330 |
</xsl:template> |
| 331 |
|
| 332 |
<xsl:template name="tag_214_s"> |
| 333 |
<xsl:if test="marc:datafield[@tag=214]/marc:subfield[@code='s']"> |
| 334 |
<span class="results_summary tag_214_s"> |
| 335 |
<span class="label">Printing and/or Publishing Information Transcribed as Found in the Colophon: </span> |
| 336 |
<xsl:for-each select="marc:datafield[@tag=214]"> |
| 337 |
<xsl:value-of select="marc:subfield[@code='s']"/> |
| 338 |
<xsl:choose> |
| 339 |
<xsl:when test="position()=last()"> |
| 340 |
<xsl:text>.</xsl:text> |
| 341 |
</xsl:when> |
| 342 |
<xsl:otherwise><xsl:text>, </xsl:text> |
| 343 |
</xsl:otherwise> |
| 344 |
</xsl:choose> |
| 345 |
</xsl:for-each> |
| 346 |
</span> |
| 347 |
</xsl:if> |
| 348 |
</xsl:template> |
| 349 |
|
| 350 |
<xsl:template name="tag_214_r"> |
| 351 |
<xsl:if test="marc:datafield[@tag=214]/marc:subfield[@code='r']"> |
| 352 |
<span class="results_summary tag_214_r"> |
| 353 |
<span class="label">Printing and/or Publishing Information Transcribed as Found in the Main Source of |
| 354 |
formation: </span> |
| 355 |
<xsl:for-each select="marc:datafield[@tag=214]"> |
| 356 |
<xsl:value-of select="marc:subfield[@code='r']"/> |
| 357 |
<xsl:choose> |
| 358 |
<xsl:when test="position()=last()"> |
| 359 |
<xsl:text>.</xsl:text> |
| 360 |
</xsl:when> |
| 361 |
<xsl:otherwise><xsl:text>, </xsl:text> |
| 362 |
</xsl:otherwise> |
| 363 |
</xsl:choose> |
| 364 |
</xsl:for-each> |
| 365 |
</span> |
| 366 |
</xsl:if> |
| 314 |
</xsl:template> |
367 |
</xsl:template> |
| 315 |
|
368 |
|
| 316 |
<xsl:template name="tag_215"> |
369 |
<xsl:template name="tag_215"> |
| 317 |
- |
|
|