View | Details | Raw Unified | Return to bug 40618
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (+25 lines)
Lines 359-364 Link Here
359
        </span>
359
        </span>
360
        </xsl:if>
360
        </xsl:if>
361
361
362
        <!-- Cartographic data Statement: Alternate Graphic Representation (MARC 880) -->
363
        <xsl:if test="$display880">
364
            <xsl:call-template name="m880Select">
365
                <xsl:with-param name="basetags">255</xsl:with-param>
366
                <xsl:with-param name="codes">abcdefg</xsl:with-param>
367
                <xsl:with-param name="class">results_summary cartographic_data</xsl:with-param>
368
                <xsl:with-param name="label">Cartographic data: </xsl:with-param>
369
            </xsl:call-template>
370
        </xsl:if>
371
372
        <xsl:if test="marc:datafield[@tag=255]">
373
        <span class="results_summary cartographic_data"><span class="label">Cartographic data: </span>
374
            <xsl:for-each select="marc:datafield[@tag=255]">
375
                <xsl:call-template name="chopPunctuation">
376
                  <xsl:with-param name="chopString">
377
                    <xsl:call-template name="subfieldSelect">
378
                        <xsl:with-param name="codes">abcdefg</xsl:with-param>
379
                    </xsl:call-template>
380
                  </xsl:with-param>
381
                </xsl:call-template>
382
                <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
383
            </xsl:for-each>
384
        </span>
385
        </xsl:if>
386
362
        <!-- Description: Alternate Graphic Representation (MARC 880) -->
387
        <!-- Description: Alternate Graphic Representation (MARC 880) -->
363
        <xsl:if test="$display880">
388
        <xsl:if test="$display880">
364
            <xsl:call-template name="m880Select">
389
            <xsl:call-template name="m880Select">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl (-1 / +27 lines)
Lines 412-417 Link Here
412
        </span>
412
        </span>
413
        </xsl:if>
413
        </xsl:if>
414
414
415
        <!-- Cartographic data Statement: Alternate Graphic Representation (MARC 880) -->
416
        <xsl:if test="$display880">
417
            <xsl:call-template name="m880Select">
418
                <xsl:with-param name="basetags">255</xsl:with-param>
419
                <xsl:with-param name="codes">abcdefg</xsl:with-param>
420
                <xsl:with-param name="class">results_summary cartographic_data</xsl:with-param>
421
                <xsl:with-param name="label">Cartographic data: </xsl:with-param>
422
            </xsl:call-template>
423
        </xsl:if>
424
425
        <xsl:if test="marc:datafield[@tag=255]">
426
        <span class="results_summary cartographic_data"><span class="label">Cartographic data: </span>
427
            <xsl:for-each select="marc:datafield[@tag=255]">
428
                <span property="cartographicData">
429
                <xsl:call-template name="chopPunctuation">
430
                  <xsl:with-param name="chopString">
431
                    <xsl:call-template name="subfieldSelect">
432
                        <xsl:with-param name="codes">abcdefg</xsl:with-param>
433
                    </xsl:call-template>
434
                  </xsl:with-param>
435
                </xsl:call-template>
436
                </span>
437
                <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
438
            </xsl:for-each>
439
        </span>
440
        </xsl:if>
441
415
        <!-- Description: Alternate Graphic Representation (MARC 880) -->
442
        <!-- Description: Alternate Graphic Representation (MARC 880) -->
416
        <xsl:if test="$display880">
443
        <xsl:if test="$display880">
417
            <xsl:call-template name="m880Select">
444
            <xsl:call-template name="m880Select">
418
- 

Return to bug 40618