Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90389217
DataCite.xsl
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 05:30
Size
9 KB
Mime Type
text/xml
Expires
Sun, Nov 3, 05:30 (2 d)
Engine
blob
Format
Raw Data
Handle
22066578
Attached To
R3600 invenio-infoscience
DataCite.xsl
View Options
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$
This file is part of Invenio.
Copyright (C) 2013 CERN.
Invenio is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
Invenio is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with Invenio; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
-->
<!--
<name>DataCite</name>
<description>DataCite XML</description>
-->
<!--
This stylesheet transforms a MARCXML input into DataCite output.
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:marc="http://www.loc.gov/MARC21/slim"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:fn="http://cdsweb.cern.ch/bibformat/fn"
xmlns:invenio="http://invenio-software.org/elements/1.0"
exclude-result-prefixes="marc fn dc invenio">
<xsl:output method="xml" indent="yes" encoding="UTF-8" omit-xml-declaration="yes"/>
<xsl:template match="/">
<xsl:if test="collection">
</xsl:if>
<xsl:if test="record">
<resource xmlns="http://datacite.org/schema/kernel-2.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://datacite.org/schema/kernel-2.2 http://schema.datacite.org/meta/kernel-2.2/metadata.xsd">
<xsl:apply-templates />
</resource>
</xsl:if>
</xsl:template>
<xsl:template match="record" xmlns="http://datacite.org/schema/kernel-2.2">
<!-- 1. Identifier -->
<xsl:choose>
<xsl:when test="datafield[@tag=024 and @ind1=7]">
<xsl:for-each select="datafield[@tag=024 and @ind1=7]">
<identifier>
<xsl:attribute name="identifierType">
<xsl:value-of select="subfield[@code='2']"/>
</xsl:attribute>
<xsl:value-of select="subfield[@code='a']"/>
</identifier>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<identifier identifierType="URL"><xsl:value-of select="fn:eval_bibformat(controlfield[@tag=001],'<BFE_RECORD_URL absolute="yes" with_ln="no">')"/></identifier>
</xsl:otherwise>
</xsl:choose>
<!-- 2. Creators -->
<creators xmlns="http://datacite.org/schema/kernel-2.2">
<xsl:for-each select="datafield[@tag=100]">
<creator>
<creatorName>
<xsl:value-of select="subfield[@code='a']"/>
</creatorName>
</creator>
</xsl:for-each>
<xsl:for-each select="datafield[@tag=700]">
<creator>
<creatorName>
<xsl:value-of select="subfield[@code='a']"/>
</creatorName>
</creator>
</xsl:for-each>
</creators>
<!-- 3. Titles -->
<titles>
<xsl:for-each select="datafield[@tag=245]">
<title>
<xsl:value-of select="subfield[@code='a']"/>
<xsl:if test="subfield[@code='b']">
<xsl:text>: </xsl:text><xsl:value-of select="subfield[@code='b']"/>
</xsl:if>
</title>
</xsl:for-each>
</titles>
<!-- 4. Publisher -->
<publisher>
<xsl:choose>
<xsl:when test="datafield[@tag=260]/subfield[@code='b']">
<xsl:value-of select="datafield[@tag=260]/subfield[@code='b']"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="fn:eval_bibformat(controlfield[@tag=001],'<BFE_SERVER_INFO var="CFG_SITE_NAME" >')"/>
</xsl:otherwise>
</xsl:choose>
</publisher>
<!-- 5. PublicationYear -->
<publicationYear>
<xsl:value-of select="fn:eval_bibformat(controlfield[@tag=001],'<BFE_YEAR >')"/>
</publicationYear>
<!-- 6. Subject -->
<subjects>
<xsl:for-each select="datafield[@tag=653 and @ind1='1']">
<subject><xsl:value-of select="subfield[@code='a']"/></subject>
</xsl:for-each>
</subjects>
<!-- 7. Contributor -->
<!-- Export funder according to OpenAIRE Guidelines for Data Archive Managers v1.0-->
<!--
<contributors>
<xsl:for-each select="datafield[@tag=536]">
<contributor contributorType="Funder">
<contributorName>European Commission</contributorName>
<nameIdentifier nameIdentifierScheme="info">info:eu-repo/grantAgreement/EC/FP7/<xsl:value-of select="subfield[@code='c']"/></nameIdentifier>
</contributor>
</xsl:for-each>
</contributors>
-->
<!-- 8. Date -->
<dates>
<xsl:choose>
<xsl:when test="datafield[@tag=942]">
<!-- Export embargo date according to OpenAIRE Guidelines for Data Archive Managers -->
<xsl:for-each select="datafield[@tag=260]">
<date dateType="Accepted"><xsl:value-of select="subfield[@code='c']"/></date>
</xsl:for-each>
<xsl:for-each select="datafield[@tag=942]">
<date dateType="Available"><xsl:value-of select="subfield[@code='a']"/></date>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<!-- Export publication date according to OpenAIRE Guidelines for Data Archive Managers -->
<xsl:for-each select="datafield[@tag=260]">
<date dateType="Issued"><xsl:value-of select="subfield[@code='c']"/></date>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</dates>
<!-- 9. Language -->
<xsl:for-each select="datafield[@tag=041]">
<language>
<xsl:value-of select="subfield[@code='a']"/>
</language>
</xsl:for-each>
<!-- 10 ResourceType -->
<!-- Example:
<xsl:for-each select="datafield[@tag=980]">
<xsl:choose>
<xsl:when test="subfield[@code='a']='publication'">
<resourceType><xsl:attribute name="resourceTypeGeneral">Text</xsl:attribute><xsl:value-of select="subfield[@code='b']"/></resourceType>
</xsl:when>
<xsl:when test="subfield[@code='a']='poster'">
<resourceType><xsl:attribute name="resourceTypeGeneral">Text</xsl:attribute>Poster</resourceType>
</xsl:when>
<xsl:when test="subfield[@code='a']='presentation'">
<resourceType><xsl:attribute name="resourceTypeGeneral">Text</xsl:attribute>Presentation</resourceType>
</xsl:when>
<xsl:when test="subfield[@code='a']='dataset'">
<resourceType><xsl:attribute name="resourceTypeGeneral">Dataset</xsl:attribute></resourceType>
</xsl:when>
<xsl:when test="subfield[@code='a']='image'">
<resourceType><xsl:attribute name="resourceTypeGeneral">Image</xsl:attribute><xsl:value-of select="subfield[@code='b']"/></resourceType>
</xsl:when>
<xsl:when test="subfield[@code='a']='video'">
<resourceType>
<xsl:attribute name="resourceTypeGeneral">Film</xsl:attribute>
</resourceType>
</xsl:when>
</xsl:choose>
</xsl:for-each>
-->
<!-- 11 AlternateIdentifier -->
<alternateIdentifiers>
<alternateIdentifier alternateIdentifierType="URL"><xsl:value-of select="fn:eval_bibformat(controlfield[@tag=001],'<BFE_RECORD_URL absolute="yes" with_ln="no">')"/></alternateIdentifier>
<xsl:for-each select="datafield[@tag=020]">
<alternateIdentifier alternateIdentifierType="ISBN"><xsl:value-of select="subfield[@code='a']"/></alternateIdentifier>
</xsl:for-each>
</alternateIdentifiers>
<!-- 12 RelatedIdentifier -->
<!-- 13 Size -->
<xsl:if test="datafield[@tag=300]">
<sizes>
<xsl:for-each select="datafield[@tag=300]">
<size><xsl:value-of select="subfield[@code='a']"/> pages</size>
</xsl:for-each>
</sizes>
</xsl:if>
<!-- 14 Format -->
<!-- 15 Version -->
<!-- 16 Rights -->
<!-- Export access rights according to OpenAIRE Guidelines for Data Archive Managers v1.0 -->
<!--
<xsl:for-each select="datafield[@tag=542]">
<rights>info:eu-repo/semantics/<xsl:value-of select="subfield[@code='l']"/>Access</rights>
</xsl:for-each>
-->
<!-- 17 Description -->
<descriptions>
<xsl:for-each select="datafield[@tag=520]">
<description descriptionType="Abstract">
<xsl:value-of select="subfield[@code='a']"/>
</description>
</xsl:for-each>
<xsl:for-each select="datafield[@tag=500]">
<description descriptionType="Other">
<xsl:value-of select="subfield[@code='a']"/>
</description>
</xsl:for-each>
</descriptions>
</xsl:template>
</xsl:stylesheet>
Event Timeline
Log In to Comment