Permalink
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
translators/L'Annee Philologique.js
Find file
Copy path
Fetching contributors…
Cannot retrieve contributors at this time
{ | |
"translatorID": "e04e4bab-64c2-4b9a-b6c2-7fb186281969", | |
"label": "L'Annee Philologique", | |
"creator": "Sebastian Karcher", | |
"target": "^https?://www\\.annee-philologique\\.com/(aph)?/?index\\.php", | |
"minVersion": "3.0", | |
"maxVersion": "", | |
"priority": 100, | |
"inRepository": true, | |
"translatorType": 4, | |
"browserSupport": "gcsib", | |
"lastUpdated": "2013-04-17 03:09:28" | |
} | |
/* | |
***** BEGIN LICENSE BLOCK ***** | |
LAP translator Copyright © 2012 Sebastian Karcher | |
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 ***** | |
*/ | |
/* | |
TODO: LAP provides book chapters as to separate RIS files - the chapter and the book | |
the former doesn't have the editors or the book title. Ideally we should merge those, | |
but that requires a rather elaborate hack, so it'll have to wait for another day | |
*/ | |
function detectWeb(doc, url) { | |
if (url.match(/index\.php\?do=liste/)) { | |
return "multiple"; | |
} else if (url.match(/index\.php\?do=notice/)) { | |
//nothing on the page indicates item type, so we go with the generic book | |
return "book"; | |
} | |
} | |
function doWeb(doc, url) { | |
var arts = new Array(); | |
if (detectWeb(doc, url) == "multiple") { | |
var items = new Object(); | |
var titles = doc.evaluate('//tbody/tr/td[@class="td3"]/a', doc, null, XPathResult.ANY_TYPE, null); | |
var title; | |
while (title = titles.iterateNext()) { | |
items[title.href] = title.textContent; | |
} | |
Zotero.selectItems(items, function (items) { | |
if (!items) { | |
return true; | |
} | |
for (var i in items) { | |
arts.push(i); | |
} | |
Zotero.Utilities.processDocuments(arts, scrape); | |
}); | |
} else { | |
scrape(doc, url); | |
} | |
} | |
function scrape(doc, url) { | |
var num = url.match(/&num=\d+/)[0].replace(/^&/, ""); | |
var critere = encodeURIComponent(ZU.xpathText(doc, '//input[@id="critere"]/@value')); | |
var get = 'http://www.annee-philologique.com/index.php?do=export_ris&' + num; | |
Z.debug(get) | |
var post = num + '&js_actif=1&critere=' + critere + '¬icesformat=noticesformat3&mailExport=&inputnbselect=0&inputnbnotselect=4&inputumcourant=1'; | |
Z.debug(post); | |
Zotero.Utilities.HTTP.doPost(get, post, function (text) { | |
//Z.debug(text) | |
text=text.trim() | |
var translator = Zotero.loadTranslator("import"); | |
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7"); | |
translator.setString(text); | |
translator.setHandler("itemDone", function (obj, item) { | |
// Author names are in the form "lastName firstName" - this is the best I could do | |
// suggestions to do this better are welcome | |
for (i in item.creators) { | |
//sometimes there _is_ a comma delimiter | |
if (!item.creators[i].firstName) { | |
var author; | |
//Assume the first word is the last Name - that's the best we can do here | |
var author = item.creators[i].lastName.match(/(\S+)\s+(.+)/) | |
if (author) { | |
item.creators[i].firstName = author[2]; | |
item.creators[i].lastName = author[1]; | |
delete item.creators[i].fieldMode; | |
} | |
} | |
} | |
item.title = item.title.replace(/\.$/, ''); | |
item.attachments = [{ | |
url: url, | |
title: "L'Année Philologique Snapshot", | |
mimeType: "text/html" | |
}]; | |
item.complete(); | |
}); | |
translator.translate(); | |
}); | |
} | |
//no permalinks --> no test | |
/** BEGIN TEST CASES **/ | |
var testCases = [ | |
{ | |
"type": "web", | |
"url": "http://www.annee-philologique.com/aph/index.php?do=uneNotice&id=31-02979", | |
"items": [ | |
{ | |
"itemType": "book", | |
"creators": [ | |
{ | |
"lastName": "Shedd", | |
"creatorType": "author", | |
"firstName": " R. P." | |
} | |
], | |
"notes": [], | |
"tags": [], | |
"seeAlso": [], | |
"attachments": [ | |
{ | |
"title": "L'Année Philologique Snapshot", | |
"mimeType": "text/html" | |
} | |
], | |
"title": "Man in community. A study of St. Paul's application of Old Testament and early Jewish conceptions of human solidarity", | |
"date": "1958", | |
"publisher": "Epworth Pr.", | |
"place": "London", | |
"libraryCatalog": "L'Annee Philologique" | |
} | |
] | |
} | |
] | |
/** END TEST CASES **/ |