Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions Sud Ouest.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-07-06 17:27:22"
"lastUpdated": "2021-09-27 11:40:20"
}

/*
Expand Down Expand Up @@ -81,7 +81,7 @@ function scrape(doc, url) {
var item = new Zotero.Item("newspaperArticle");
item.language = "fr-FR";
item.title = ZU.xpathText(doc, '//meta[@property="og:title"]/@content');
item.publication = "Sud Ouest";
item.publicationTitle = "Sud Ouest";
item.ISSN = "1760-6454";
item.url = url;
item.abstract = ZU.xpathText(doc, '//meta[@property="og:description"]/@content');
Expand All @@ -92,10 +92,11 @@ function scrape(doc, url) {
}

var author = ZU.xpathText(doc, "//div[@class='publishing']/text()");
author = author.replace("Par ", "");

if (author != "SudOuest.fr avec AFP") {
item.creators.push(ZU.cleanAuthor(author, "author", false));
if (author) {
author = author.replace("Par ", "");
if (author != "SudOuest.fr avec AFP") {
item.creators.push(ZU.cleanAuthor(author, "author", false));
}
}

item.attachments.push({
Expand Down Expand Up @@ -126,6 +127,7 @@ var testCases = [
"ISSN": "1760-6454",
"language": "fr-FR",
"libraryCatalog": "Sud Ouest",
"publicationTitle": "Sud Ouest",
"shortTitle": "Agglomération Rochefort Océan",
"url": "https://www.sudouest.fr/charente-maritime/echillais/agglomeration-rochefort-ocean-les-prets-de-livres-reprennent-1678268.php",
"attachments": [
Expand Down Expand Up @@ -158,6 +160,7 @@ var testCases = [
"ISSN": "1760-6454",
"language": "fr-FR",
"libraryCatalog": "Sud Ouest",
"publicationTitle": "Sud Ouest",
"shortTitle": "Estuaire de la Charente et Arsenal de Rochefort",
"url": "https://www.sudouest.fr/charente-maritime/breuil-magne/estuaire-de-la-charente-et-arsenal-de-rochefort-le-label-grand-site-devient-officiel-1707458.php",
"attachments": [
Expand Down