added MADS stylesheet
authorMarc Cromme <marc@indexdata.dk>
Thu, 8 Jun 2006 09:35:33 +0000 (09:35 +0000)
committerMarc Cromme <marc@indexdata.dk>
Thu, 8 Jun 2006 09:35:33 +0000 (09:35 +0000)
examples/marcxml/MARC21slim2MADS.xsl [new file with mode: 0644]
examples/marcxml/filter_alvis_conf.xml

diff --git a/examples/marcxml/MARC21slim2MADS.xsl b/examples/marcxml/MARC21slim2MADS.xsl
new file mode 100644 (file)
index 0000000..e89f586
--- /dev/null
@@ -0,0 +1,1048 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<xsl:stylesheet version="1.0" xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="marc">\r
+  \r
+  <xsl:include href="http://www.loc.gov/marcxml/xslt/MARC21slimUtils.xsl"/>\r
+  <xsl:output method="xml" indent="yes" encoding="UTF-8"/>\r
+\r
+  <!--\r
+      adapted from MARC21Slim2MODS3.xsl ntra 7/6/05\r
+      revised rsg/jer 11/29/05\r
+  -->\r
+\r
+  <!-- authority attribute defaults to 'naf' if not set using this authority parameter, for <authority> descriptors: name, titleInfo, geographic -->\r
+  <xsl:param name="authority"/>\r
+  <xsl:variable name="auth">\r
+    <xsl:choose>\r
+      <xsl:when test="$authority">\r
+       <xsl:value-of select="$authority"/>\r
+      </xsl:when>\r
+      <xsl:otherwise>naf</xsl:otherwise>\r
+    </xsl:choose>\r
+  </xsl:variable>\r
+  <xsl:variable name="controlField008-11" select="substring(descendant-or-self::marc:controlfield[@tag=008],12,1)"/>\r
+  <xsl:variable name="controlField008-14" select="substring(descendant-or-self::marc:controlfield[@tag=008],15,1)"/>\r
+  <xsl:template match="/">\r
+    <xsl:choose>\r
+      <xsl:when test="descendant-or-self::marc:collection">\r
+       <madsCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/mads http://www.loc.gov/standards/mads/mads.xsd">\r
+         <xsl:for-each select="descendant-or-self::marc:collection/marc:record">\r
+           <mads version="beta">\r
+             <xsl:call-template name="marcRecord"/>\r
+           </mads>\r
+         </xsl:for-each>\r
+       </madsCollection>\r
+      </xsl:when>\r
+      <xsl:otherwise>\r
+       <mads version="beta" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/mads http://www.loc.gov/standards/mads/mads.xsd">\r
+         <xsl:for-each select="descendant-or-self::marc:record">\r
+           <xsl:call-template name="marcRecord"/>\r
+         </xsl:for-each>\r
+       </mads>\r
+      </xsl:otherwise>\r
+    </xsl:choose>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="marcRecord">             \r
+    <xsl:if test="contains(marc:datafield[@tag='035'],'tea2003000479')">\r
+\r
+    </xsl:if>          \r
+    <authority>\r
+      <xsl:apply-templates select="marc:datafield[100 &lt;= @tag  and @tag &lt; 200]"/>\r
+    </authority>\r
+    <!-- related -->\r
+    <xsl:apply-templates select="marc:datafield[500 &lt;= @tag and @tag &lt;= 585]|marc:datafield[700 &lt;= @tag and @tag &lt;= 785]"/>\r
+\r
+    <!-- variant -->\r
+    <xsl:apply-templates select="marc:datafield[400 &lt;= @tag and @tag &lt;= 485]"/>\r
+    <!-- notes -->\r
+    <xsl:apply-templates select="marc:datafield[667 &lt;= @tag and @tag &lt;= 688]"/>\r
+    <!-- url -->\r
+    <xsl:apply-templates select="marc:datafield[@tag=856]"/>\r
+    <recordInfo>\r
+      <xsl:apply-templates select="marc:datafield[@tag=010]"/>\r
+      <xsl:apply-templates select="marc:datafield[@tag=024]"/>\r
+      <xsl:apply-templates select="marc:datafield[@tag=040]/marc:subfield[@code='a']"/>\r
+      <xsl:apply-templates select="marc:controlfield[@tag=008]"/>\r
+      <xsl:apply-templates select="marc:controlfield[@tag=005]"/>\r
+      <xsl:apply-templates select="marc:controlfield[@tag=001]"/>\r
+      <xsl:apply-templates select="marc:datafield[@tag=040]/marc:subfield[@code='b']"/>\r
+    </recordInfo>\r
+  </xsl:template>\r
+\r
+  <!-- start of secondary templates -->\r
+\r
+  <!-- ======== xlink ======== -->\r
+\r
+   <!-- <xsl:template name="uri"> \r
+    <xsl:for-each select="marc:subfield[@code='0']">\r
+      <xsl:attribute name="xlink:href">\r
+       <xsl:value-of select="."/>\r
+      </xsl:attribute>\r
+    </xsl:for-each>\r
+     </xsl:template> \r
+   -->\r
+  <xsl:template match="marc:subfield[@code='i']">\r
+    <xsl:attribute name="type">\r
+      <xsl:value-of select="."/>\r
+    </xsl:attribute>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="role">\r
+    <xsl:for-each select="marc:subfield[@code='e']">\r
+      <role>\r
+       <roleTerm type="text">\r
+         <xsl:value-of select="."/>\r
+       </roleTerm>\r
+      </role>\r
+    </xsl:for-each>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="part">\r
+    <xsl:variable name="partNumber">\r
+      <xsl:call-template name="specialSubfieldSelect">\r
+       <xsl:with-param name="axis">n</xsl:with-param>\r
+       <xsl:with-param name="anyCodes">n</xsl:with-param>\r
+       <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>\r
+      </xsl:call-template>\r
+    </xsl:variable>\r
+    <xsl:variable name="partName">\r
+      <xsl:call-template name="specialSubfieldSelect">\r
+       <xsl:with-param name="axis">p</xsl:with-param>\r
+       <xsl:with-param name="anyCodes">p</xsl:with-param>\r
+       <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>\r
+      </xsl:call-template>\r
+    </xsl:variable>\r
+    <xsl:if test="string-length(normalize-space($partNumber))">\r
+      <partNumber>\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString" select="$partNumber"/>\r
+       </xsl:call-template>\r
+      </partNumber>\r
+    </xsl:if>\r
+    <xsl:if test="string-length(normalize-space($partName))">\r
+      <partName>\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString" select="$partName"/>\r
+       </xsl:call-template>\r
+      </partName>\r
+    </xsl:if>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="nameABCDN">\r
+    <xsl:for-each select="marc:subfield[@code='a']">\r
+      <namePart>\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString" select="."/>\r
+       </xsl:call-template>\r
+      </namePart>\r
+    </xsl:for-each>\r
+    <xsl:for-each select="marc:subfield[@code='b']">\r
+      <namePart>\r
+       <xsl:value-of select="."/>\r
+      </namePart>\r
+    </xsl:for-each>\r
+    <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">\r
+      <namePart>\r
+       <xsl:call-template name="subfieldSelect">\r
+         <xsl:with-param name="codes">cdn</xsl:with-param>\r
+       </xsl:call-template>\r
+      </namePart>\r
+    </xsl:if>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="nameABCDQ">\r
+    <namePart>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:call-template name="subfieldSelect">\r
+           <xsl:with-param name="codes">aq</xsl:with-param>\r
+         </xsl:call-template>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </namePart>\r
+    <xsl:call-template name="termsOfAddress"/>\r
+    <xsl:call-template name="nameDate"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="nameACDENQ">\r
+    <namePart>\r
+      <xsl:call-template name="subfieldSelect">\r
+       <xsl:with-param name="codes">acdenq</xsl:with-param>\r
+      </xsl:call-template>\r
+    </namePart>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="nameDate">\r
+    <xsl:for-each select="marc:subfield[@code='d']">\r
+      <namePart type="date">\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString" select="."/>\r
+       </xsl:call-template>\r
+      </namePart>\r
+    </xsl:for-each>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="specialSubfieldSelect">\r
+    <xsl:param name="anyCodes"/>\r
+    <xsl:param name="axis"/>\r
+    <xsl:param name="beforeCodes"/>\r
+    <xsl:param name="afterCodes"/>\r
+    <xsl:variable name="str">\r
+      <xsl:for-each select="marc:subfield">\r
+       <xsl:if test="contains($anyCodes, @code)      or (contains($beforeCodes,@code) and following-sibling::marc:subfield[@code=$axis])      or (contains($afterCodes,@code) and preceding-sibling::marc:subfield[@code=$axis])">\r
+         <xsl:value-of select="text()"/>\r
+         <xsl:text> </xsl:text>\r
+       </xsl:if>\r
+      </xsl:for-each>\r
+    </xsl:variable>\r
+    <xsl:value-of select="substring($str,1,string-length($str)-1)"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="termsOfAddress">\r
+    <xsl:if test="marc:subfield[@code='b' or @code='c']">\r
+      <namePart type="termsOfAddress">\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString">\r
+           <xsl:call-template name="subfieldSelect">\r
+             <xsl:with-param name="codes">bc</xsl:with-param>\r
+           </xsl:call-template>\r
+         </xsl:with-param>\r
+       </xsl:call-template>\r
+      </namePart>\r
+    </xsl:if>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="displayLabel">\r
+    <xsl:if test="marc:subfield[@code='z']">\r
+      <xsl:attribute name="displayLabel">\r
+       <xsl:value-of select="marc:subfield[@code='z']"/>\r
+      </xsl:attribute>\r
+    </xsl:if>\r
+    <xsl:if test="marc:subfield[@code='3']">\r
+      <xsl:attribute name="displayLabel">\r
+       <xsl:value-of select="marc:subfield[@code='3']"/>\r
+      </xsl:attribute>\r
+    </xsl:if>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="isInvalid">\r
+    <xsl:if test="marc:subfield[@code='z']">\r
+      <xsl:attribute name="invalid">yes</xsl:attribute>\r
+    </xsl:if>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="sub2Attribute">\r
+    <!-- 024 -->\r
+    <xsl:if test="marc:subfield[@code='2']">\r
+      <xsl:attribute name="type">\r
+       <xsl:value-of select="marc:subfield[@code='2']"/>\r
+      </xsl:attribute>\r
+    </xsl:if>\r
+  </xsl:template>\r
+  <xsl:template match="marc:controlfield[@tag=001]">\r
+    <recordIdentifier>\r
+      <xsl:if test="../marc:controlfield[@tag=003]">\r
+       <xsl:attribute name="source">\r
+         <xsl:value-of select="../marc:controlfield[@tag=003]"/>\r
+       </xsl:attribute>\r
+      </xsl:if>\r
+      <xsl:value-of select="."/>\r
+    </recordIdentifier>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:controlfield[@tag=005]">\r
+    <recordChangeDate encoding="iso8601">\r
+      <xsl:value-of select="."/>\r
+    </recordChangeDate>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:controlfield[@tag=008]">\r
+    <recordCreationDate encoding="marc">\r
+      <xsl:value-of select="substring(.,1,6)"/>\r
+    </recordCreationDate>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=010]">\r
+    <identifier>\r
+      <xsl:call-template name="isInvalid"/>\r
+      <xsl:call-template name="sub2Attribute"/>\r
+      <xsl:value-of select="marc:subfield[@code='a']"/>\r
+    </identifier>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=024]">\r
+    <identifier>\r
+      <xsl:call-template name="isInvalid"/>\r
+      <xsl:call-template name="sub2Attribute"/>\r
+      <xsl:value-of select="marc:subfield[@code='a']"/>\r
+    </identifier>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=040]/marc:subfield[@code='a']">\r
+    <recordContentSource authority="marcorg">\r
+      <xsl:value-of select="."/>\r
+    </recordContentSource>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=040]/marc:subfield[@code='b']">\r
+    <languageOfCataloging>\r
+      <languageTerm authority="iso639-2b" type="code">\r
+       <xsl:value-of select="."/>\r
+      </languageTerm>\r
+    </languageOfCataloging>\r
+  </xsl:template>\r
+  \r
+  <!-- ========== names  ========== -->\r
+  <xsl:template match="marc:datafield[@tag=100]">\r
+    <name type="personal">                     \r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:call-template name="nameABCDQ"/>\r
+      <xsl:call-template name="role"/>         \r
+    </name>\r
+    <xsl:apply-templates select="*[marc:subfield[not(contains('abcdeq',@code))]]"/>\r
+    <xsl:call-template name="title"/>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=110]">\r
+    <name type="corporate">\r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:call-template name="nameABCDN"/>\r
+      <xsl:call-template name="role"/>\r
+    </name>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=111]">\r
+    <name type="conference">\r
+      <xsl:call-template name="setAuthority"/>                 \r
+      <xsl:call-template name="nameACDENQ"/>\r
+    </name>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=400]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <name type="personal">\r
+       <xsl:call-template name="nameABCDQ"/>\r
+       <xsl:call-template name="role"/>\r
+      </name>\r
+      <xsl:apply-templates/>\r
+      <xsl:call-template name="title"/>\r
+    </variant>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=410]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <name type="corporate">\r
+       <xsl:call-template name="nameABCDN"/>\r
+       <xsl:call-template name="role"/>                                \r
+      </name>\r
+      <xsl:apply-templates/>\r
+    </variant>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=411]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <name type="conference">\r
+       <xsl:call-template name="nameACDENQ"/>\r
+      </name>\r
+      <xsl:apply-templates/>\r
+    </variant>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=500]|marc:datafield[@tag=700]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->         \r
+      <name type="personal">\r
+       <xsl:call-template name="setAuthority"/>                                                                \r
+       <xsl:call-template name="nameABCDQ"/>\r
+       <xsl:call-template name="role"/>                                \r
+      </name>\r
+      <xsl:call-template name="title"/>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=510]|marc:datafield[@tag=710]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+      <name type="corporate">\r
+       <xsl:call-template name="setAuthority"/>\r
+       <xsl:call-template name="nameABCDN"/>\r
+       <xsl:call-template name="role"/>\r
+      </name>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=511]|marc:datafield[@tag=711]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+      <name type="conference">\r
+       <xsl:call-template name="setAuthority"/>\r
+       <xsl:call-template name="nameACDENQ"/>\r
+      </name>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <!-- ========== titles  ========== -->\r
+  <xsl:template match="marc:datafield[@tag=130]">\r
+    <xsl:call-template name="uniform-title"/>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=430]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <xsl:call-template name="uniform-title"/>\r
+      <xsl:apply-templates/>\r
+    </variant>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=530]|marc:datafield[@tag=730]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>                 \r
+      <xsl:call-template name="uniform-title"/>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="title">\r
+    <titleInfo>\r
+      <xsl:call-template name="setAuthority"/>\r
+      <title>\r
+       <xsl:variable name="str">\r
+         <xsl:for-each select="marc:subfield">\r
+           <xsl:if test="(contains('tfghklmors',@code) )">\r
+             <xsl:value-of select="text()"/>\r
+             <xsl:text> </xsl:text>\r
+           </xsl:if>\r
+         </xsl:for-each>\r
+       </xsl:variable>\r
+\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString">\r
+           <xsl:value-of select="substring($str,1,string-length($str)-1)"/>\r
+         </xsl:with-param>\r
+       </xsl:call-template>\r
+      </title>\r
+      <xsl:call-template name="part"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+    </titleInfo>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="uniform-title">\r
+    <titleInfo>\r
+      <xsl:call-template name="setAuthority"/>\r
+      <title>\r
+       <xsl:variable name="str">\r
+         <xsl:for-each select="marc:subfield">\r
+           <xsl:if test="(contains('adfghklmors',@code) )">\r
+             <xsl:value-of select="text()"/>\r
+             <xsl:text> </xsl:text>\r
+           </xsl:if>\r
+         </xsl:for-each>\r
+       </xsl:variable>\r
+\r
+       <xsl:call-template name="chopPunctuation">\r
+         <xsl:with-param name="chopString">\r
+           <xsl:value-of select="substring($str,1,string-length($str)-1)"/>\r
+         </xsl:with-param>\r
+       </xsl:call-template>\r
+      </title>\r
+      <xsl:call-template name="part"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+    </titleInfo>\r
+  </xsl:template>\r
+\r
+\r
+  <!-- ========== topics  ========== -->\r
+  <xsl:template match="marc:subfield[@code='x']">              \r
+    <topic>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:value-of select="."/>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </topic>\r
+  </xsl:template>\r
+  \r
+  <xsl:template match="marc:datafield[@tag=150][marc:subfield[@code='a' or @code='b']]|marc:datafield[@tag=180][marc:subfield[@code='x']]">\r
+    <xsl:call-template name="topic"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=450][marc:subfield[@code='a' or @code='b']]|marc:datafield[@tag=480][marc:subfield[@code='x']]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <xsl:call-template name="topic"/>\r
+    </variant>\r
+  </xsl:template>\r
+  \r
+  <xsl:template match="marc:datafield[@tag=550 or @tag=750][marc:subfield[@code='a' or @code='b']]">\r
+    <related>                  \r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+      <xsl:call-template name="topic"/>\r
+    </related>\r
+  </xsl:template> \r
+\r
+  <xsl:template name="topic">\r
+    <topic>                            \r
+      <xsl:if test="@tag=550 or @tag=750">\r
+       <xsl:call-template name="subfieldSelect">\r
+         <xsl:with-param name="codes">ab</xsl:with-param>\r
+       </xsl:call-template>\r
+      </xsl:if>\r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:choose>\r
+           <xsl:when test="@tag=180 or @tag=480 or @tag=580 or @tag=780">\r
+             <xsl:apply-templates select="marc:subfield[@code='x']"/>\r
+           </xsl:when>\r
+           <xsl:otherwise>\r
+             <xsl:call-template name="subfieldSelect">\r
+               <xsl:with-param name="codes">ab</xsl:with-param>\r
+             </xsl:call-template>\r
+           </xsl:otherwise>\r
+         </xsl:choose>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </topic>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <!-- ========= temporals  ========== -->\r
+\r
+  <xsl:template match="marc:subfield[@code='y']">\r
+    <temporal>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:value-of select="."/>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </temporal>\r
+  </xsl:template>\r
+  \r
+  <xsl:template match="marc:datafield[@tag=148][marc:subfield[@code='a']]|marc:datafield[@tag=182 ][marc:subfield[@code='y']]">\r
+    <xsl:call-template name="temporal"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=448][marc:subfield[@code='a']]|marc:datafield[@tag=482][marc:subfield[@code='y']]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <xsl:call-template name="temporal"/>\r
+    </variant>\r
+  </xsl:template>\r
+  \r
+  <xsl:template match="marc:datafield[@tag=548 or @tag=748][marc:subfield[@code='a']]|marc:datafield[@tag=582 or @tag=782][marc:subfield[@code='y']]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+      <xsl:call-template name="temporal"/>\r
+    </related>\r
+  </xsl:template>\r
+  \r
+  <xsl:template name="temporal">\r
+    <temporal>\r
+      <xsl:if test="@tag=548 or @tag=748">\r
+       <xsl:value-of select="marc:subfield[@code='a']"/>\r
+      </xsl:if>\r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:choose>\r
+           <xsl:when test="@tag=182 or @tag=482 or @tag=582 or @tag=782">\r
+             <xsl:apply-templates select="marc:subfield[@code='y']"/>\r
+           </xsl:when>\r
+           <xsl:otherwise>\r
+             <xsl:value-of select="marc:subfield[@code='a']"/>\r
+           </xsl:otherwise>\r
+         </xsl:choose> \r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </temporal>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <!-- ========== genre  ========== -->\r
+  <xsl:template match="marc:subfield[@code='v']">\r
+    <genre>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:value-of select="."/>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </genre>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=155][marc:subfield[@code='a']]|marc:datafield[@tag=185][marc:subfield[@code='v']]">\r
+    <xsl:call-template name="genre"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=455][marc:subfield[@code='a']]|marc:datafield[@tag=485 ][marc:subfield[@code='v']]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <xsl:call-template name="genre"/>\r
+    </variant>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=555]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+      <xsl:call-template name="genre"/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=555 or @tag=755][marc:subfield[@code='a']]|marc:datafield[@tag=585][marc:subfield[@code='v']]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <xsl:call-template name="genre"/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="genre">\r
+    <genre>\r
+      <xsl:if test="@tag=555">\r
+       <xsl:value-of select="marc:subfield[@code='a']"/>\r
+      </xsl:if>\r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:choose>\r
+           <xsl:when test="@tag=185 or @tag=485 or @tag=585">\r
+             <xsl:apply-templates select="marc:subfield[@code='v']"/>\r
+           </xsl:when>\r
+           <xsl:otherwise>\r
+             <xsl:value-of select="marc:subfield[@code='a']"/>\r
+           </xsl:otherwise>\r
+         </xsl:choose>\r
+       </xsl:with-param>\r
+      </xsl:call-template>                                     \r
+    </genre>\r
+    <xsl:apply-templates/>\r
+  </xsl:template> \r
+  \r
+  <!-- ========= geographic  ========== -->\r
+  <xsl:template match="marc:subfield[@code='z']">\r
+    <geographic>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:value-of select="."/>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </geographic>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="geographic">             \r
+    <geographic>                                       \r
+      <xsl:if test="@tag=551">\r
+       <xsl:value-of select="marc:subfield[@code='a']"/>\r
+      </xsl:if> \r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:choose>\r
+           <xsl:when test="@tag=181 or @tag=481 or @tag=581">\r
+             <xsl:apply-templates select="marc:subfield[@code='z']"/>\r
+           </xsl:when>\r
+           <xsl:otherwise>\r
+             <xsl:value-of select="marc:subfield[@code='a']"/>\r
+           </xsl:otherwise>\r
+         </xsl:choose>\r
+       </xsl:with-param>\r
+      </xsl:call-template>                                             \r
+    </geographic>\r
+    <xsl:apply-templates/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=151][marc:subfield[@code='a']]|marc:datafield[@tag=181][marc:subfield[@code='z']]">\r
+    <xsl:call-template name="geographic"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=451][marc:subfield[@code='a']]|marc:datafield[@tag=481][marc:subfield[@code='z']]">\r
+    <variant>\r
+      <xsl:call-template name="variantTypeAttribute"/>\r
+      <xsl:call-template name="geographic"/>                   \r
+    </variant>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=551]|marc:datafield[@tag=581][marc:subfield[@code='z']]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <!-- <xsl:call-template name="uri"/> -->\r
+      <xsl:call-template name="geographic"/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=580]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=751][marc:subfield[@code='z']]|marc:datafield[@tag=781][marc:subfield[@code='z']]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <xsl:call-template name="geographic"/>   \r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=755]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <xsl:call-template name="genre"/>        \r
+      <xsl:call-template name="setAuthority"/>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template> \r
+\r
+  <xsl:template match="marc:datafield[@tag=780]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <xsl:template match="marc:datafield[@tag=785]">\r
+    <related>\r
+      <xsl:call-template name="relatedTypeAttribute"/>\r
+      <xsl:apply-templates/>\r
+    </related>\r
+  </xsl:template>\r
+\r
+  <!-- ========== notes  ========== -->\r
+  <xsl:template match="marc:datafield[667 &lt;= @tag and @tag &lt;= 688]">\r
+    <note>\r
+      <xsl:choose>\r
+       <xsl:when test="@tag=667">\r
+         <xsl:attribute name="type">nonpublic</xsl:attribute>\r
+       </xsl:when>\r
+       <xsl:when test="@tag=670">\r
+         <xsl:attribute name="type">source</xsl:attribute>\r
+       </xsl:when>\r
+       <xsl:when test="@tag=675">\r
+         <xsl:attribute name="type">notFound</xsl:attribute>\r
+       </xsl:when>\r
+       <xsl:when test="@tag=678">\r
+         <xsl:attribute name="type">history</xsl:attribute>\r
+       </xsl:when>\r
+       <xsl:when test="@tag=681">\r
+         <xsl:attribute name="type">subject example</xsl:attribute>\r
+       </xsl:when>\r
+       <xsl:when test="@tag=682">\r
+         <xsl:attribute name="type">deleted heading information</xsl:attribute>\r
+       </xsl:when>\r
+       <xsl:when test="@tag=688">\r
+         <xsl:attribute name="type">application history</xsl:attribute>\r
+       </xsl:when>\r
+      </xsl:choose>\r
+      <xsl:call-template name="chopPunctuation">\r
+       <xsl:with-param name="chopString">\r
+         <xsl:choose>\r
+           <xsl:when test="@tag=667 or @tag=675">\r
+             <xsl:value-of select="marc:subfield[@code='a']"/>\r
+           </xsl:when>\r
+           <xsl:when test="@tag=670 or @tag=678">\r
+             <xsl:call-template name="subfieldSelect">\r
+               <xsl:with-param name="codes">ab</xsl:with-param>\r
+             </xsl:call-template>\r
+           </xsl:when>\r
+           <xsl:when test="680 &lt;= @tag and @tag &lt;=688">\r
+             <xsl:call-template name="subfieldSelect">\r
+               <xsl:with-param name="codes">ai</xsl:with-param>\r
+             </xsl:call-template>\r
+           </xsl:when>\r
+         </xsl:choose>\r
+       </xsl:with-param>\r
+      </xsl:call-template>\r
+    </note>\r
+  </xsl:template>\r
+  <!-- ========== url  ========== -->\r
+  <xsl:template match="marc:datafield[@tag=856][marc:subfield[@code='u']]">\r
+    <url>\r
+      <xsl:if test="marc:subfield[@code='z' or @code='3']">\r
+       <xsl:attribute name="displayLabel">\r
+         <xsl:call-template name="subfieldSelect">\r
+           <xsl:with-param name="codes">z3</xsl:with-param>\r
+         </xsl:call-template>\r
+       </xsl:attribute>\r
+      </xsl:if>\r
+      <xsl:value-of select="marc:subfield[@code='u']"/>\r
+    </url>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="relatedTypeAttribute">\r
+    <xsl:choose>\r
+      <xsl:when test="@tag=500 or @tag=510 or @tag=511 or @tag=548 or @tag=550 or @tag=551 or @tag=555 or @tag=580 or @tag=581 or @tag=582 or @tag=585">\r
+       <xsl:if test="substring(marc:subfield[@code='w'],1,1)='a'">\r
+         <xsl:attribute name="type">earlier</xsl:attribute>\r
+       </xsl:if>\r
+       <xsl:if test="substring(marc:subfield[@code='w'],1,1)='b'">\r
+         <xsl:attribute name="type">later</xsl:attribute>\r
+       </xsl:if>\r
+       <xsl:if test="substring(marc:subfield[@code='w'],1,1)='t'">\r
+         <xsl:attribute name="type">parentOrg</xsl:attribute>\r
+       </xsl:if>\r
+       <xsl:if test="substring(marc:subfield[@code='w'],1,1)='g'">\r
+         <xsl:attribute name="type">broader</xsl:attribute>\r
+       </xsl:if>\r
+       <xsl:if test="substring(marc:subfield[@code='w'],1,1)='h'">\r
+         <xsl:attribute name="type">narrower</xsl:attribute>\r
+       </xsl:if>\r
+       <xsl:if test="contains('fin|', substring(marc:subfield[@code='w'],1,1))">\r
+         <xsl:attribute name="type">other</xsl:attribute>\r
+       </xsl:if>\r
+      </xsl:when>\r
+      <xsl:when test="@tag=530 or @tag=730">\r
+       <xsl:attribute name="type">other</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:otherwise>\r
+       <!-- 7xx -->\r
+       <xsl:attribute name="type">equivalent</xsl:attribute>\r
+      </xsl:otherwise>\r
+    </xsl:choose>\r
+    <xsl:apply-templates select="marc:subfield[@code='i']"/>\r
+  </xsl:template>\r
+\r
+  <xsl:template name="variantTypeAttribute">\r
+    <xsl:choose>\r
+      <xsl:when test="@tag=400 or @tag=410 or @tag=411 or @tag=451 or @tag=455 or @tag=480 or @tag=481 or @tag=482 or @tag=485">\r
+       <xsl:if test="substring(marc:subfield[@code='w'],1,1)='d'">\r
+         <xsl:attribute name="type">acronym</xsl:attribute>\r
+       </xsl:if>\r
+       <xsl:if test="contains('fit', substring(marc:subfield[@code='w'],1,1))">\r
+         <xsl:attribute name="type">other</xsl:attribute>\r
+       </xsl:if>\r
+      </xsl:when>\r
+      <xsl:otherwise>\r
+       <!-- 430  -->\r
+       <xsl:attribute name="type">other</xsl:attribute>\r
+      </xsl:otherwise>\r
+    </xsl:choose>\r
+    <xsl:apply-templates select="marc:subfield[@code='i']"/>\r
+  </xsl:template>\r
+  <xsl:template name="setAuthority">\r
+    <xsl:choose>\r
+      <!-- can be called from the datafield or subfield level, so "..//@tag" means\r
+          the tag can be at the subfield's parent level or at the datafields own level -->\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=100 and (@ind1=0 or @ind1=1) and $controlField008-11='a' and $controlField008-14='a'">   \r
+       <xsl:attribute name="authority"><xsl:text>naf</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=100 and (@ind1=0 or @ind1=1) and $controlField008-11='a' and $controlField008-14='b'">   \r
+       <xsl:attribute name="authority"><xsl:text>lcsh</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=100 and (@ind1=0 or @ind1=1) and $controlField008-11='k'">   \r
+       <xsl:attribute name="authority"><xsl:text>lacnaf</xsl:text></xsl:attribute>\r
+      </xsl:when>   \r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=100 and @ind1=3 and $controlField008-11='a' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority"><xsl:text>lcsh</xsl:text></xsl:attribute>\r
+      </xsl:when>   \r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=100 and @ind1=3 and $controlField008-11='k' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority">cash</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=110 and $controlField008-11='a' and $controlField008-14='a'">\r
+       <xsl:attribute name="authority">naf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=110 and $controlField008-11='a' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority">lcsh</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=110 and $controlField008-11='k' and $controlField008-14='a'">\r
+       <xsl:attribute name="authority"><xsl:text>lacnaf</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=110 and $controlField008-11='k' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority"><xsl:text>cash</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="100 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 155 and $controlField008-11='b'">\r
+       <xsl:attribute name="authority"><xsl:text>lcshcl</xsl:text></xsl:attribute>\r
+      </xsl:when>   \r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=100 or ancestor-or-self::marc:datafield/@tag=110 or ancestor-or-self::marc:datafield/@tag=111 or ancestor-or-self::marc:datafield/@tag=130 or ancestor-or-self::marc:datafield/@tag=151) and $controlField008-11='c'">\r
+       <xsl:attribute name="authority"><xsl:text>nlmnaf</xsl:text></xsl:attribute>\r
+      </xsl:when>   \r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=100 or ancestor-or-self::marc:datafield/@tag=110 or ancestor-or-self::marc:datafield/@tag=111 or ancestor-or-self::marc:datafield/@tag=130 or ancestor-or-self::marc:datafield/@tag=151) and $controlField008-11='d'">   \r
+       <xsl:attribute name="authority"><xsl:text>nalnaf</xsl:text></xsl:attribute>\r
+      </xsl:when>   \r
+      <xsl:when test="100 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 155 and $controlField008-11='r'">\r
+       <xsl:attribute name="authority"><xsl:text>aat</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="100 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 155 and $controlField008-11='s'">\r
+       <xsl:attribute name="authority">sears</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="100 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 155 and $controlField008-11='v'">\r
+       <xsl:attribute name="authority">rvm</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="100 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 155 and $controlField008-11='z'">\r
+       <xsl:attribute name="authority"><xsl:value-of select="../marc:datafield[ancestor-or-self::marc:datafield/@tag=040]/marc:subfield[@code='f']"/></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=111 or ancestor-or-self::marc:datafield/@tag=130) and $controlField008-11='a' and $controlField008-14='a'">\r
+       <xsl:attribute name="authority"><xsl:text>naf</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=111 or ancestor-or-self::marc:datafield/@tag=130) and $controlField008-11='a' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority"><xsl:text>lcsh</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=111 or ancestor-or-self::marc:datafield/@tag=130) and $controlField008-11='k' ">\r
+       <xsl:attribute name="authority"><xsl:text>lacnaf</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=148 or ancestor-or-self::marc:datafield/@tag=150  or ancestor-or-self::marc:datafield/@tag=155) and $controlField008-11='a' ">\r
+       <xsl:attribute name="authority"><xsl:text>lcsh</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=148 or ancestor-or-self::marc:datafield/@tag=150  or ancestor-or-self::marc:datafield/@tag=155) and $controlField008-11='a' ">\r
+       <xsl:attribute name="authority"><xsl:text>lcsh</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=148 or ancestor-or-self::marc:datafield/@tag=150  or ancestor-or-self::marc:datafield/@tag=155) and $controlField008-11='c' ">\r
+       <xsl:attribute name="authority"><xsl:text>mesh</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=148 or ancestor-or-self::marc:datafield/@tag=150  or ancestor-or-self::marc:datafield/@tag=155) and $controlField008-11='d' ">\r
+       <xsl:attribute name="authority"><xsl:text>nal</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=148 or ancestor-or-self::marc:datafield/@tag=150  or ancestor-or-self::marc:datafield/@tag=155) and $controlField008-11='k' ">\r
+       <xsl:attribute name="authority"><xsl:text>cash</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=151 and $controlField008-11='a' and $controlField008-14='a'">\r
+       <xsl:attribute name="authority"><xsl:text>naf</xsl:text></xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=151 and $controlField008-11='a' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority">lcsh</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=151 and $controlField008-11='k' and $controlField008-14='a'">\r
+       <xsl:attribute name="authority">lacnaf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=151 and $controlField008-11='k' and $controlField008-14='b'">\r
+       <xsl:attribute name="authority">cash</xsl:attribute>\r
+      </xsl:when>\r
+      \r
+      <xsl:when test="(..//ancestor-or-self::marc:datafield/@tag=180 or ..//ancestor-or-self::marc:datafield/@tag=181 or ..//ancestor-or-self::marc:datafield/@tag=182 or ..//ancestor-or-self::marc:datafield/@tag=185) and $controlField008-11='a'">\r
+       <xsl:attribute name="authority">lcsh</xsl:attribute>\r
+      </xsl:when>\r
+      \r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=700 and (@ind1='0' or @ind1='1') and @ind2='0'">   \r
+       <xsl:attribute name="authority">naf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=700 and (@ind1='0' or @ind1='1') and @ind2='5'">   \r
+       <xsl:attribute name="authority">lacnaf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=700 and @ind1='3' and @ind2='0'">   \r
+       <xsl:attribute name="authority">lcsh</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="ancestor-or-self::marc:datafield/@tag=700 and @ind1='3' and @ind2='5'">   \r
+       <xsl:attribute name="authority">cash</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(700 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 755 ) and @ind2='1'">   \r
+       <xsl:attribute name="authority">lcshcl</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=700 or ancestor-or-self::marc:datafield/@tag=710 or ancestor-or-self::marc:datafield/@tag=711 or ancestor-or-self::marc:datafield/@tag=730 or ancestor-or-self::marc:datafield/@tag=751)  and @ind2='2'">   \r
+       <xsl:attribute name="authority">nlmnaf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=700 or ancestor-or-self::marc:datafield/@tag=710 or ancestor-or-self::marc:datafield/@tag=711 or ancestor-or-self::marc:datafield/@tag=730 or ancestor-or-self::marc:datafield/@tag=751)  and @ind2='3'">   \r
+       <xsl:attribute name="authority">nalnaf</xsl:attribute>\r
+      </xsl:when>   \r
+      <xsl:when test="(700 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 755 ) and @ind2='6'">\r
+       <xsl:attribute name="authority">rvm</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(700 &lt;= ancestor-or-self::marc:datafield/@tag and ancestor-or-self::marc:datafield/@tag &lt;= 755 ) and @ind2='7'">   \r
+       <xsl:attribute name="authority">\r
+         <xsl:value-of select="marc:subfield[@code='2']"/>\r
+       </xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=710 or ancestor-or-self::marc:datafield/@tag=711 or ancestor-or-self::marc:datafield/@tag=730 or ancestor-or-self::marc:datafield/@tag=751)  and @ind2='5'">   \r
+       <xsl:attribute name="authority">lacnaf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=710 or ancestor-or-self::marc:datafield/@tag=711 or ancestor-or-self::marc:datafield/@tag=730 or ancestor-or-self::marc:datafield/@tag=751)  and @ind2='0'">   \r
+       <xsl:attribute name="authority">naf</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=748 or ancestor-or-self::marc:datafield/@tag=750 or ancestor-or-self::marc:datafield/@tag=755)  and @ind2='0'">  \r
+       <xsl:attribute name="authority">lcsh</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=748 or ancestor-or-self::marc:datafield/@tag=750 or ancestor-or-self::marc:datafield/@tag=755)  and @ind2='2'">  \r
+       <xsl:attribute name="authority">mesh</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=748 or ancestor-or-self::marc:datafield/@tag=750 or ancestor-or-self::marc:datafield/@tag=755)  and @ind2='3'">      \r
+       <xsl:attribute name="authority">nal</xsl:attribute>\r
+      </xsl:when>\r
+      <xsl:when test="(ancestor-or-self::marc:datafield/@tag=748 or ancestor-or-self::marc:datafield/@tag=750 or ancestor-or-self::marc:datafield/@tag=755)  and @ind2='5'">      \r
+       <xsl:attribute name="authority">cash</xsl:attribute>\r
+      </xsl:when>\r
+    </xsl:choose>\r
+  </xsl:template>\r
+\r
+  <!--<xsl:template name="oldsetAuth">\r
+      <xsl:param name="ind2"/>\r
+      <xsl:if test="100 &lt;= @tag and @tag &lt; 200">\r
+      <xsl:attribute name="authority">\r
+      <xsl:value-of select="$auth"/>\r
+      </xsl:attribute>\r
+      </xsl:if>\r
+      <xsl:if test="(700 &lt;= @tag and @tag &lt; 800) or /marc:datafield[700 &lt;=@tag and @tag &lt; 800]">\r
+      <xsl:attribute name="authority">\r
+      <xsl:choose>\r
+      <xsl:when test="$ind2='0'">naf</xsl:when>                                        \r
+      <xsl:when test="$ind2='2'">nlm</xsl:when>\r
+      <xsl:when test="$ind2='3'">nal</xsl:when>\r
+      <xsl:when test="$ind2='5'">lac</xsl:when>\r
+      <xsl:when test="$ind2='6'">rvm</xsl:when>                                        \r
+      <xsl:when test="$ind2='7'"><xsl:value-of select="../marc:subfield[@code='2']"/></xsl:when>                                                                       \r
+      </xsl:choose>\r
+      </xsl:attribute>\r
+      </xsl:if>\r
+      </xsl:template>\r
+  -->\r
+  <!--<xsl:template name="oldsetAuth2">\r
+      <xsl:param name="ind2"/>\r
+      <xsl:if test="(100 &lt;= @tag and @tag &lt; 200) or ../marc:datafield[100 &lt;=@tag and @tag &lt; 200]">\r
+      <xsl:attribute name="authority">\r
+      <xsl:choose>\r
+      <xsl:when test="$controlField008-11='a'">lcsh</xsl:when>\r
+      <xsl:when test="$controlField008-11='b'">lcac</xsl:when>\r
+      <xsl:when test="$controlField008-11='c'">mesh</xsl:when>\r
+      <xsl:when test="$controlField008-11='d'">nal</xsl:when>\r
+      <xsl:when test="$controlField008-11='k'">cash</xsl:when>\r
+      <xsl:when test="$controlField008-11='r'">aat</xsl:when>\r
+      <xsl:when test="$controlField008-11='s'">sears</xsl:when>\r
+      <xsl:when test="$controlField008-11='v'">rvm</xsl:when>\r
+      <xsl:when test="$controlField008-11='z'"><xsl:value-of select="../marc:datafield[@tag=040]/marc:subfield[@code='f']"/></xsl:when>                                \r
+      </xsl:choose>\r
+      </xsl:attribute>\r
+      </xsl:if>\r
+      <xsl:if test="(500 &lt;= @tag and @tag &lt; 800) or /marc:datafield[500 &lt;=@tag and @tag &lt; 800]">\r
+      <xsl:attribute name="authority">\r
+      <xsl:choose>\r
+      <xsl:when test="$ind2='0'">lcsh</xsl:when>\r
+      <xsl:when test="$ind2='1'">lcac</xsl:when>\r
+      <xsl:when test="$ind2='2'">mesh</xsl:when>\r
+      <xsl:when test="$ind2='3'">nal</xsl:when>\r
+      <xsl:when test="$ind2='5'">cash</xsl:when>\r
+      <xsl:when test="$ind2='6'">rvm</xsl:when>                                        \r
+      <xsl:when test="$ind2='7'"><xsl:value-of select="../marc:subfield[@code='2']"/></xsl:when>                                                                       \r
+      </xsl:choose>\r
+      </xsl:attribute>\r
+      </xsl:if>\r
+      </xsl:template>-->\r
+  <!--<xsl:template match="marc:subfield[@code='0']">\r
+      <xsl:attribute name="xlink:href">\r
+      <xsl:value-of select="."/>\r
+      </xsl:attribute>\r
+      </xsl:template>\r
+  -->\r
+  <xsl:template match="*"/>\r
+  <!--<xsl:template match="*">\r
+      <n><xsl:attribute name="tag"><xsl:value-of select="@tag"/></xsl:attribute>\r
+      <xsl:attribute name="code"><xsl:value-of select="@code"/></xsl:attribute>\r
+      <xsl:value-of select="name()"/>\r
+      \r
+      <v><xsl:value-of select="."/></v></n>\r
+      </xsl:template>-->\r
+</xsl:stylesheet><!-- Stylus Studio meta-information - (c)1998-2003 Copyright Sonic Software Corporation. All rights reserved.\r
+                     <metaInformation>\r
+                     <scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="..\..\documents\mads_short.xml" htmlbaseurl="" outputurl="" processortype="internal" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperInfo srcSchemaPath="" srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>\r
+                     </metaInformation>\r
+                -->
\ No newline at end of file
index dcc9233..8363363 100644 (file)
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>\r
   <schemaInfo>\r
-    <schema name="mods" stylesheet="MARC21slim2MODS3-1.xs" />\r
+    <schema name="dc" default="1" stylesheet="MARC21slim2SRWDC.xsl" />\r
     <schema name="index" identifier="http://indexdata.dk/zebra/xslt/1"\r
             stylesheet="MARC21slim2INDEX.xsl" />\r
-    <schema name="dc" default="1" stylesheet="MARC21slim2SRWDC.xsl" />\r
+    <schema name="mads" stylesheet="MARC21slim2MADS.xs" />\r
+    <schema name="mods" stylesheet="MARC21slim2MODS3-1.xs" />\r
     <split level="1"/> \r
   </schemaInfo>\r
 \r