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": "22dd8e35-02da-4968-b306-6efe0779a48d", | |
"label": "newspapers.com", | |
"creator": "Peter Binkley", | |
"target": "^https?://www\\.newspapers\\.com/clip/", | |
"minVersion": "3.0", | |
"maxVersion": "", | |
"priority": 100, | |
"inRepository": true, | |
"translatorType": 4, | |
"browserSupport": "gcsibv", | |
"lastUpdated": "2018-10-12 23:03:20" | |
} | |
/* | |
***** BEGIN LICENSE BLOCK ***** | |
Copyright © 2017 Peter Binkley | |
This file is part of Zotero. | |
Zotero is free software: you can redistribute it and/or modify | |
it under the terms of the GNU Affero General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
Zotero 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 Affero General Public License for more details. | |
You should have received a copy of the GNU Affero General Public License | |
along with Zotero. If not, see <http://www.gnu.org/licenses/>. | |
***** END LICENSE BLOCK ***** | |
*/ | |
// attr()/text() v2 | |
function attr(docOrElem,selector,attr,index){var elem=index?docOrElem.querySelectorAll(selector).item(index):docOrElem.querySelector(selector);return elem?elem.getAttribute(attr):null;}function text(docOrElem,selector,index){var elem=index?docOrElem.querySelectorAll(selector).item(index):docOrElem.querySelector(selector);return elem?elem.textContent:null;} | |
function detectWeb(doc, url) { | |
return "newspaperArticle"; | |
} | |
function doWeb(doc, url) { | |
var newItem = new Zotero.Item("newspaperArticle"); | |
var metaArr = {}; | |
var metaTags = doc.getElementsByTagName("meta"); | |
for (var i = 0 ; i < metaTags.length ; i++) { | |
if (metaTags[i].getAttribute("property")) { | |
metaArr[metaTags[i].getAttribute("property")] = metaTags[i].getAttribute("content"); | |
} | |
} | |
newItem.title = doc.getElementById("spotTitle").textContent; | |
newItem.url = metaArr["og:url"]; | |
/* | |
The user can append the author to the title with a forward slash | |
e.g. "My Day / Eleanor Roosevelt" | |
*/ | |
if (newItem.title.includes('/')) { | |
var tokens = newItem.title.split("/"); | |
var author = tokens[1]; | |
newItem.title = tokens[0].trim(); | |
// multiple authors are separated with semicolons | |
var authors = author.split("; "); | |
for (i=0; i<authors.length; i++) { | |
newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[i], "author")); | |
} | |
} | |
/* | |
<span id="spotBody" class="disc-body">This is the abstract</span> | |
*/ | |
newItem.abstractNote = doc.getElementById("spotBody").innerHTML; | |
/* | |
<meta property="og:image" content="https://img0.newspapers.com/img/img?id=97710064&width=557&height=4616&crop=1150_215_589_4971&rotation=0&brightness=0&contrast=0&invert=0&ts=1467779959&h=e478152fd53dd7afc4e72a18c1dad4ea"> | |
*/ | |
newItem.attachments = [{ | |
url: metaArr["og:image"], | |
title: "Image", | |
mimeType: "image/jpeg" | |
}]; | |
newItem.publicationTitle = text(doc, '.location span[class="paper-title"]'); | |
// .location gives a string like "Star Tribune\n(Minneapolis, Minnesota)\n\n17 Jan 1937, Sun\n • Page 4" | |
// or The Sunday Leader\n(Wilkes-Barre, Pennsylvania)\n\n17 Jul 1887, Sun\n • Main Edition\n • Page 5 | |
editiontokens = text(doc, '.location').split('•'); | |
if (editiontokens.length == 3) { // there's an edition label | |
newItem.edition = editiontokens[1]; | |
} | |
newItem.pages = editiontokens.slice(-1)[0].replace("Page", ''); | |
newItem.date = text(doc, '.source-info ol li:nth-child(2) a span', 'datetime').replace(/\, [A-Za-z]*$/, ''); | |
if (newItem.date) { | |
newItem.date = ZU.strToISO(newItem.date) | |
} | |
newItem.place = text(doc, '.location').split(/\n/)[3].replace(/[\(\)]/g, ''); | |
newItem.complete(); | |
} | |
/** BEGIN TEST CASES **/ | |
var testCases = [ | |
{ | |
"type": "web", | |
"url": "https://www.newspapers.com/clip/7960447/my_day_eleanor_roosevelt/", | |
"items": [ | |
{ | |
"itemType": "newspaperArticle", | |
"title": "My Day", | |
"creators": [ | |
{ | |
"firstName": "Eleanor", | |
"lastName": "Roosevelt", | |
"creatorType": "author" | |
} | |
], | |
"date": "1939-10-30", | |
"libraryCatalog": "newspapers.com", | |
"pages": "15", | |
"place": "Akron, Ohio", | |
"publicationTitle": "The Akron Beacon Journal", | |
"url": "https://www.newspapers.com/clip/7960447/my_day_eleanor_roosevelt/", | |
"attachments": [ | |
{ | |
"title": "Image", | |
"mimeType": "image/jpeg" | |
} | |
], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
}, | |
{ | |
"type": "web", | |
"url": "https://www.newspapers.com/clip/18535448/the_sunday_leader/", | |
"items": [ | |
{ | |
"itemType": "newspaperArticle", | |
"title": "Clipped From The Sunday Leader", | |
"creators": [], | |
"date": "1887-07-17", | |
"edition": "Main Edition", | |
"libraryCatalog": "newspapers.com", | |
"pages": "5", | |
"place": "Wilkes-Barre, Pennsylvania", | |
"publicationTitle": "The Sunday Leader", | |
"url": "https://www.newspapers.com/clip/18535448/the_sunday_leader/", | |
"attachments": [ | |
{ | |
"title": "Image", | |
"mimeType": "image/jpeg" | |
} | |
], | |
"tags": [], | |
"notes": [], | |
"seeAlso": [] | |
} | |
] | |
} | |
] | |
/** END TEST CASES **/ |