Good afternoon,

I'd like to check my understanding on MARC frameworks.  In my frameworks, I've 
changed the "Text for OPAC" of various fields, and they display as desired in 
the "MARC view", but not in the "Normal view".  I am sure this is occurring 
because these are local 9xx fields; I had to customize the Detail XSLT to get 
them to show up at all in the OPAC.

My question is... how can I get the XSLT to use the text that is defined in the 
Framework for this record?  For instance, I have several frameworks that 
contain a 926 field, but each framework has a different "Text for OPAC".  Is it 
possible to add a test below?  Just now I tried deleting the label text 
entirely to see what would happen, but Ctrl+f5 and/or trying in a new browser 
doesn't reflect my results (a different mystery I am sometimes flummoxed by).  
As always, if this is too complex a question, even a pointer would help.  
Thanks in advance.

Here is my XSLT (sometimes, "Original Release Date" is correct-other times, 
"Date of Basic" is needed-it all depends on the framework):

<xsl:if test="marc:datafield[@tag=926]">
        <span class="results_summary description"><span class="label">Original 
Release Date: </span>
            <xsl:for-each select="marc:datafield[@tag=926]">
                <span property="description">
                <xsl:call-template name="chopPunctuation">
                  <xsl:with-param name="chopString">
                    <xsl:call-template name="subfieldSelect">
                        <xsl:with-param name="codes">a</xsl:with-param>
                    </xsl:call-template>
                   </xsl:with-param>
               </xsl:call-template>
                </span>
                    <xsl:choose><xsl:when 
test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>;
 </xsl:text></xsl:otherwise></xsl:choose>
            </xsl:for-each>
        </span>
       </xsl:if>


Tasha Bales
Enterprise Services
http://isesi.web.boeing.com/

_______________________________________________

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to