Skip to content

Commit

Permalink
fix genre2genre mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
kkrebs committed Jul 19, 2022
1 parent 8715a27 commit 006000e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
<xsl:when test="$genre='article'">article</xsl:when>
<xsl:when test="$genre='article in press'">article</xsl:when>
<xsl:when test="$genre='business article'">article</xsl:when>
<xsl:when test="$genre='book' and ancestor::mods:relatedItem/@type='host'">collection</xsl:when>
<xsl:when test="$genre='book'">book</xsl:when>
<xsl:when test="$genre='book review'">review</xsl:when>
<xsl:when test="$genre='monograph'">book</xsl:when>
Expand Down Expand Up @@ -129,7 +128,10 @@
<xsl:when test="$child_genre='edited-book'">collection</xsl:when>
<xsl:when test="$child_genre='article'">journal</xsl:when>
<xsl:when test="$child_genre='journal-article'">journal</xsl:when>
<xsl:when test="$child_genre='chapter'">collection</xsl:when>
<xsl:when test="$child_genre='book chapter'">collection</xsl:when>
<xsl:when test="$child_genre='book-chapter'">collection</xsl:when>
<xsl:when test="$child_genre='book-part'">collection</xsl:when>
<xsl:when test="$child_genre='techreport'">collection</xsl:when>
<xsl:when test="$child_genre='misc'">collection</xsl:when>
<xsl:when test="$child_genre='unpublished'">collection</xsl:when>
Expand Down

0 comments on commit 006000e

Please sign in to comment.