Skip to content
Snippets Groups Projects
Commit 0d8f00b2 authored by SamuelOPH's avatar SamuelOPH
Browse files

Catches description using DC

This should make VuFind stores description of everything harvested using ojs.xsl.

Altough It looks like using nlm is better with OJS, I think it would be nice to improve this method too.
parent c6ebed9d
No related merge requests found
...@@ -94,6 +94,13 @@ ...@@ -94,6 +94,13 @@
<xsl:value-of select="php:function('VuFind::stripArticles', string(//dc:title[normalize-space()]))"/> <xsl:value-of select="php:function('VuFind::stripArticles', string(//dc:title[normalize-space()]))"/>
</field> </field>
</xsl:if> </xsl:if>
<!-- DESCRIPTION -->
<xsl:if test="//dc:description">
<field name="description">
<xsl:value-of select="//dc:description" />
</field>
</xsl:if>
<!-- PUBLISHER --> <!-- PUBLISHER -->
<xsl:if test="//dc:publisher[normalize-space()]"> <xsl:if test="//dc:publisher[normalize-space()]">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment