Skip to content

Commit

Permalink
Add books & chapter to Cambridge Core (#2181)
Browse files Browse the repository at this point in the history
  • Loading branch information
adam3smith committed May 18, 2020
1 parent 18e155d commit 855cb47
Showing 1 changed file with 243 additions and 27 deletions.
270 changes: 243 additions & 27 deletions Cambridge Core.js
Expand Up @@ -2,20 +2,20 @@
"translatorID": "850f4c5f-71fb-4669-b7da-7fb7a95500ef",
"label": "Cambridge Core",
"creator": "Sebastian Karcher",
"target": "^https?://www\\.cambridge\\.org/core/(search\\?|journals/)",
"target": "^https?://www\\.cambridge\\.org/core/(search\\?|journals/|books/|.+/listing?)",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2019-11-18 23:01:07"
"lastUpdated": "2020-05-17 15:09:25"
}

/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2016 Sebastian Karcher
Copyright © 2016-2020 Sebastian Karcher
This file is part of Zotero.
Expand All @@ -35,21 +35,30 @@
***** END LICENSE BLOCK *****
*/


function detectWeb(doc, url) {
let multiples = /\/search\?|\/listing\?|\/issue\//;
if (multiples.test(url) && getSearchResults(doc, true)) {
return "multiple";
}
if (url.includes('/article/')) {
return "journalArticle"; // we'll want to add book chapter and books eventually using /books/
return "journalArticle";
}
else if (getSearchResults(doc, true)) {
return "multiple";
if (url.includes('/books/')) {
if (doc.getElementsByClassName('chapter-wrapper').length > 0) {
return "bookSection";
}
else return "book";
}

return false;
}

function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = ZU.xpath(doc, '//li[@class="title"]//a[contains(@href, "/article/") or contains(@href, "/product/")]');
var rows = ZU.xpath(doc,
'//li[@class="title"]//a[contains(@href, "/article/") or contains(@href, "/product/") or contains(@href, "/books/")]'
);
for (var i = 0; i < rows.length; i++) {
var href = rows[i].href;
var title = ZU.trimInternal(rows[i].textContent);
Expand Down Expand Up @@ -81,24 +90,71 @@ function doWeb(doc, url) {
}

function scrape(doc, url) {
var translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setHandler('itemDone', function (obj, item) {
item.url = url;
var abstract = ZU.xpathText(doc, '//div[@class="abstract"]');
if (abstract) {
item.abstractNote = abstract;
}
item.title = ZU.unescapeHTML(item.title);
item.libraryCatalog = "Cambridge Core";
item.complete();
});
// Book metadata is much better using RIS
if (detectWeb(doc, url) == "book" || detectWeb(doc, url) == "bookSection") {
let productID = url.replace(/[#?].+/, "").match(/\/([^/]+)$/)[1];
let risURL
= "/core/services/aop-easybib/export?exportType=ris&productIds="
+ productID + "&citationStyle=apa";
// Z.debug(risURL);
// the attribute sometimes has a space in it, so testing for contains
var pdfURL = ZU.xpathText(doc,
'//meta[contains(@name, "citation_pdf_url")]/@content'
);
// Z.debug("pdfURL: " + pdfURL);
ZU.doGet(risURL, function (text) {
var translator = Zotero.loadTranslator(
"import");
translator.setTranslator(
"32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
translator.setString(text);
translator.setHandler("itemDone", function (obj,
item) {
if (pdfURL) {
item.attachments.push({
url: pdfURL,
title: "Full Text PDF",
mimeType: "application/pdf"
});
}
item.attachments.push({
title: "Snapshot",
document: doc
});
// don't save Cambridge Core to archive
item.archive = "";
item.complete();
});
translator.translate();
});
}
// Some elements of journal citations look better with EM
else {
var translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setHandler('itemDone', function (obj, item) {
item.url = url;
var abstract = ZU.xpathText(doc,
'//div[@class="abstract"]');
if (abstract) {
item.abstractNote = abstract;
}
item.title = ZU.unescapeHTML(item.title);
item.libraryCatalog = "Cambridge University Press";
item.complete();
});

translator.getTranslatorObject(function (trans) {
trans.itemType = "journalArticle";
trans.doWeb(doc, url);
});
translator.getTranslatorObject(function (trans) {
if (url.includes("/books")) {
trans.itemType = "book";
}
else {
trans.itemType = "journalArticle";
}
trans.doWeb(doc, url);
});
}
}

/** BEGIN TEST CASES **/
Expand All @@ -123,7 +179,7 @@ var testCases = [
"abstractNote": "Heir to the racist configuration of the American art exchange and the delimiting appraisals of blackness in the American mainstream media, Jean-Michel Basquiat appeared on the late 1970s New York City street art scene – then he called himself “SAMO.” Not long thereafter, Basquiat grew into one of the most influential artists of an international movement that began around 1980, marked by a return to figurative painting. Given its rough, seemingly untrained and extreme, conceptual nature, Basquiat's high-art oeuvre might not look so sophisticated to the uninformed viewer. However, Basquiat's work reveals a powerful poetic and visual gift, “heady enough to confound academics and hip enough to capture the attention span of the hip hop nation,” as Greg Tate has remarked. As noted by Richard Marshall, Basquiat's aesthetic strength actually comes from his striving “to achieve a balance between the visual and intellectual attributes” of his artwork. Like Marshall, Tate, and others, I will connect with Basquiat's unique, self-reflexively experimental visual practices of signifying and examine anew Basquiat's active contribution to his self-alienation, as Hebdige has called it. Basquiat's aesthetic makes of his paintings economies of accumulation, building a productive play of contingency from the mainstream's constructions of race. This aesthetic move speaks to a need for escape from the perceived epistemic necessities of blackness. Through these economies of accumulation we see, as Tate has pointed out, Basquiat's “intellectual obsession” with issues such as ancestry/modernity, personhood/property and originality/origins of knowledge, driven by his tireless need to problematize mainstream media's discourses surrounding race – in other words, a commodified American Africanism.",
"issue": "2",
"language": "en",
"libraryCatalog": "Cambridge Core",
"libraryCatalog": "Cambridge University Press",
"pages": "227-243",
"publicationTitle": "Journal of American Studies",
"shortTitle": "“SAMO© as an Escape Clause”",
Expand Down Expand Up @@ -173,7 +229,7 @@ var testCases = [
"ISSN": "1469-7645, 0022-1120",
"abstractNote": "Three-dimensional highly resolved simulations are presented for cylindrical density currents using the Boussinesq approximation for small density difference. Three Reynolds numbers (Re) are investigated (895, 3450 and 8950, which correspond to values of the Grashof number of 105, 1.5 × 106 and 107, respectively) in order to identify differences in the flow structure and dynamics. The simulations are performed using a fully de-aliased pseudospectral code that captures the complete range of time and length scales of the flow. The simulated flows present the main features observed in experiments at large Re. As the current develops, it transitions through different phases of spreading, namely acceleration, slumping, inertial and viscous Soon after release the interface between light and heavy fluids rolls up forming Kelvin–Helmholtz vortices. The formation of the first vortex sets the transition between acceleration and slumping phases. Vortex formation continues only during the slumping phase and the formation of the last Kelvin–Helmholtz vortex signals the departure from the slumping phase. The coherent Kelvin–Helmholtz vortices undergo azimuthal instabilities and eventually break up into small-scale turbulence. In the case of planar currents this turbulent region extends over the entire body of the current, while in the cylindrical case it only extends to the regions of Kelvin–Helmholtz vortex breakup. The flow develops three-dimensionality right from the beginning with incipient lobes and clefts forming at the lower frontal region. These instabilities grow in size and extend to the upper part of the front. Lobes and clefts continuously merge and split and result in a complex pattern that evolves very dynamically. The wavelength of the lobes grows as the flow spreads, while the local Re of the flow decreases. However, the number of lobes is maintained over time. Owing to the high resolution of the simulations, we have been able to link the lobe and cleft structure to local flow patterns and vortical structures. In the near-front region and body of the current several hairpin vortices populate the flow. Laboratory experiments have been performed at the higher Re and compared to the simulation results showing good agreement. Movies are available with the online version of the paper.",
"language": "en",
"libraryCatalog": "Cambridge Core",
"libraryCatalog": "Cambridge University Press",
"pages": "437-469",
"publicationTitle": "Journal of Fluid Mechanics",
"url": "https://www.cambridge.org/core/journals/journal-of-fluid-mechanics/article/high-resolution-simulations-of-cylindrical-density-currents/30D62864BDED84A6CC81F5823950767B",
Expand Down Expand Up @@ -209,6 +265,166 @@ var testCases = [
"type": "web",
"url": "https://www.cambridge.org/core/search?q=labor&sort=&aggs%5BonlyShowAvailable%5D%5Bfilters%5D=&aggs%5BopenAccess%5D%5Bfilters%5D=&aggs%5BproductTypes%5D%5Bfilters%5D=JOURNAL_ARTICLE&aggs%5BproductDate%5D%5Bfilters%5D=&aggs%5BproductSubject%5D%5Bfilters%5D=&aggs%5BproductJournal%5D%5Bfilters%5D=&aggs%5BproductPublisher%5D%5Bfilters%5D=&aggs%5BproductSociety%5D%5Bfilters%5D=&aggs%5BproductPublisherSeries%5D%5Bfilters%5D=&aggs%5BproductCollection%5D%5Bfilters%5D=&showJackets=&filters%5BauthorTerms%5D=&filters%5BdateYearRange%5D%5Bfrom%5D=&filters%5BdateYearRange%5D%5Bto%5D=&hideArticleGraphicalAbstracts=true",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.cambridge.org/core/books/conservation-research-policy-and-practice/making-a-difference-in-conservation-linking-science-and-policy/C8B7353BFDD77E0C1A16A61C07E44977",
"items": [
{
"itemType": "bookSection",
"title": "Making a difference in conservation: linking science and policy",
"creators": [
{
"lastName": "Vickery",
"firstName": "Juliet A.",
"creatorType": "editor"
},
{
"lastName": "Ockendon",
"firstName": "Nancy",
"creatorType": "editor"
},
{
"lastName": "Pettorelli",
"firstName": "Nathalie",
"creatorType": "editor"
},
{
"lastName": "Brotherton",
"firstName": "Peter N. M.",
"creatorType": "editor"
},
{
"lastName": "Sutherland",
"firstName": "William J.",
"creatorType": "editor"
},
{
"lastName": "Davies",
"firstName": "Zoe G.",
"creatorType": "editor"
},
{
"lastName": "Sutherland",
"firstName": "William J.",
"creatorType": "author"
},
{
"lastName": "Brotherton",
"firstName": "Peter N. M.",
"creatorType": "author"
},
{
"lastName": "Ockendon",
"firstName": "Nancy",
"creatorType": "author"
},
{
"lastName": "Pettorelli",
"firstName": "Nathalie",
"creatorType": "author"
},
{
"lastName": "Vickery",
"firstName": "Juliet A.",
"creatorType": "author"
},
{
"lastName": "Davies",
"firstName": "Zoe G.",
"creatorType": "author"
}
],
"date": "2020",
"ISBN": "9781108714587",
"abstractNote": "Jamie Gundry’s dramatic image of a white-tailed eagle (Haliaeetus albicilla) on the cover of this book reflects the twisting changes in fortune experienced by this species, with a revival that can be attributed to a successful interplay of science, policy and practice. White-tailed eagles were historically much more widely distributed than they are today (Yalden, 2007), once breeding across much of Europe, but by the early twentieth century the species was extinct across much of western and southern Europe. The main cause of its decline was persecution by farmers and shepherds, who considered the eagles a threat to their livestock, but, along with other raptors, white-tailed eagles were also seriously affected by DDT in the 1960s and 1970s, which had disastrous effects on the breeding success of remaining populations.",
"bookTitle": "Conservation Research, Policy and Practice",
"extra": "DOI: 10.1017/9781108638210.001",
"libraryCatalog": "Cambridge University Press",
"pages": "3-8",
"place": "Cambridge",
"publisher": "Cambridge University Press",
"series": "Ecological Reviews",
"shortTitle": "Making a difference in conservation",
"url": "https://www.cambridge.org/core/books/conservation-research-policy-and-practice/making-a-difference-in-conservation-linking-science-and-policy/C8B7353BFDD77E0C1A16A61C07E44977",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
},
{
"title": "Snapshot"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.cambridge.org/core/books/conservation-research-policy-and-practice/22AB241C45F182E40FC7F13637485D7E",
"items": [
{
"itemType": "book",
"title": "Conservation Research, Policy and Practice",
"creators": [
{
"lastName": "Sutherland",
"firstName": "William J.",
"creatorType": "editor"
},
{
"lastName": "Brotherton",
"firstName": "Peter N. M.",
"creatorType": "editor"
},
{
"lastName": "Davies",
"firstName": "Zoe G.",
"creatorType": "editor"
},
{
"lastName": "Ockendon",
"firstName": "Nancy",
"creatorType": "editor"
},
{
"lastName": "Pettorelli",
"firstName": "Nathalie",
"creatorType": "editor"
},
{
"lastName": "Vickery",
"firstName": "Juliet A.",
"creatorType": "editor"
}
],
"date": "2020",
"ISBN": "9781108714587",
"abstractNote": "Conservation research is essential for advancing knowledge but to make an impact scientific evidence must influence conservation policies, decision making and practice. This raises a multitude of challenges. How should evidence be collated and presented to policymakers to maximise its impact? How can effective collaboration between conservation scientists and decision-makers be established? How can the resulting messages be communicated to bring about change? Emerging from a successful international symposium organised by the British Ecological Society and the Cambridge Conservation Initiative, this is the first book to practically address these questions across a wide range of conservation topics. Well-renowned experts guide readers through global case studies and their own experiences. A must-read for practitioners, researchers, graduate students and policymakers wishing to enhance the prospect of their work 'making a difference'. This title is also available as Open Access on Cambridge Core.",
"extra": "DOI: 10.1017/9781108638210",
"libraryCatalog": "Cambridge University Press",
"place": "Cambridge",
"publisher": "Cambridge University Press",
"series": "Ecological Reviews",
"url": "https://www.cambridge.org/core/books/conservation-research-policy-and-practice/22AB241C45F182E40FC7F13637485D7E",
"attachments": [
{
"title": "Snapshot"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.cambridge.org/core/what-we-publish/books/listing?sort=canonical.date%3Adesc&aggs%5BonlyShowAvailable%5D%5Bfilters%5D=true&aggs%5BproductTypes%5D%5Bfilters%5D=BOOK%2CELEMENT&searchWithinIds=0C5182F27A492FDC81EDF8D3C53266B5",
"items": "multiple"
}
]
/** END TEST CASES **/

0 comments on commit 855cb47

Please sign in to comment.