Permalink
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time
{ | |
"translatorID": "6e372642-ed9d-4934-b5d1-c11ac758ebb7", | |
"translatorType": 2, | |
"label": "Unqualified Dublin Core RDF", | |
"creator": "Simon Kornblith", | |
"target": "rdf", | |
"minVersion": "1.0.0b3.r1", | |
"maxVersion": "", | |
"priority": 100, | |
"configOptions": { | |
"dataMode": "rdf/xml" | |
}, | |
"inRepository": true, | |
"lastUpdated": "2018-12-17 03:16:21" | |
} | |
function doExport() { | |
var dc = "http://purl.org/dc/elements/1.1/"; | |
Zotero.RDF.addNamespace("dc", dc); | |
var item; | |
while (item = Zotero.nextItem()) { | |
if (item.itemType == "note" || item.itemType == "attachment") { | |
continue; | |
} | |
var resource; | |
if (item.ISBN) { | |
resource = "urn:isbn:"+item.ISBN; | |
} else if (item.url) { | |
resource = item.url; | |
} else { | |
// just specify a node ID | |
resource = Zotero.RDF.newResource(); | |
} | |
/** CORE FIELDS **/ | |
// title | |
if (item.title) { | |
Zotero.RDF.addStatement(resource, dc+"title", item.title, true); | |
} | |
// type | |
Zotero.RDF.addStatement(resource, dc+"type", item.itemType, true); | |
// creators | |
for (var j in item.creators) { | |
// put creators in lastName, firstName format (although DC doesn't specify) | |
var creator = item.creators[j].lastName; | |
if (item.creators[j].firstName) { | |
creator += ", "+item.creators[j].firstName; | |
} | |
if (item.creators[j].creatorType == "author") { | |
Zotero.RDF.addStatement(resource, dc+"creator", creator, true); | |
} else { | |
Zotero.RDF.addStatement(resource, dc+"contributor", creator, true); | |
} | |
} | |
/** FIELDS ON NEARLY EVERYTHING BUT NOT A PART OF THE CORE **/ | |
// source | |
if (item.source) { | |
Zotero.RDF.addStatement(resource, dc+"source", item.source, true); | |
} | |
// accessionNumber as generic ID | |
if (item.accessionNumber) { | |
Zotero.RDF.addStatement(resource, dc+"identifier", item.accessionNumber, true); | |
} | |
// rights | |
if (item.rights) { | |
Zotero.RDF.addStatement(resource, dc+"rights", item.rights, true); | |
} | |
/** SUPPLEMENTAL FIELDS **/ | |
// TODO - create text citation and OpenURL citation to handle volume, number, pages, issue, place | |
// publisher/distributor | |
if (item.publisher) { | |
Zotero.RDF.addStatement(resource, dc+"publisher", item.publisher, true); | |
} else if (item.distributor) { | |
Zotero.RDF.addStatement(resource, dc+"publisher", item.distributor, true); | |
} else if (item.institution) { | |
Zotero.RDF.addStatement(resource, dc+"publisher", item.institution, true); | |
} | |
// date/year | |
if (item.date) { | |
Zotero.RDF.addStatement(resource, dc+"date", item.date, true); | |
} | |
// ISBN/ISSN/DOI | |
if (item.ISBN) { | |
Zotero.RDF.addStatement(resource, dc+"identifier", "ISBN "+item.ISBN, true); | |
} | |
if (item.ISSN) { | |
Zotero.RDF.addStatement(resource, dc+"identifier", "ISSN "+item.ISSN, true); | |
} | |
if (item.DOI) { | |
Zotero.RDF.addStatement(resource, dc+"identifier", "DOI "+item.DOI, true); | |
} | |
// callNumber | |
if (item.callNumber) { | |
Zotero.RDF.addStatement(resource, dc+"identifier", item.callNumber, true); | |
} | |
// archiveLocation | |
if (item.archiveLocation) { | |
Zotero.RDF.addStatement(resource, dc+"coverage", item.archiveLocation, true); | |
} | |
// medium | |
if (item.medium) { | |
Zotero.RDF.addStatement(resource, dcterms+"medium", item.medium, true); | |
} | |
} | |
} |