Handles scenario of no OPAC from target
authorNiels Erik G. Nielsen <nielserik@indexdata.com>
Sat, 15 May 2010 02:15:44 +0000 (19:15 -0700)
committerNiels Erik G. Nielsen <nielserik@indexdata.com>
Sat, 15 May 2010 02:15:44 +0000 (19:15 -0700)
Falls back to straight MARC21 transformation when a target does
not return a given record embedded in an opacRecord as ususally
expected when using OPAC request syntax

etc/opac.xsl

index aa1eabe..e4c5457 100644 (file)
   </xsl:template>
 
   <xsl:template match="/">
-    <xsl:apply-templates select="opacRecord/bibliographicRecord"/>
+    <xsl:choose>
+      <xsl:when test="opacRecord">
+        <xsl:apply-templates select="opacRecord/bibliographicRecord"/>
+      </xsl:when>
+      <xsl:otherwise>
+        <xsl:apply-templates/>
+      </xsl:otherwise>
+    </xsl:choose>
   </xsl:template>
 
 </xsl:stylesheet>