Chrome/Safari compatibility

This commit is contained in:
Simon Kornblith 2011-07-01 17:30:48 +00:00
parent 63e07763d7
commit f6c56b6b1f

View file

@ -1,14 +1,15 @@
{
"translatorID":"3e684d82-73a3-9a34-095f-19b112d88bbf",
"label":"Google Books",
"creator":"Simon Kornblith, Michael Berkowitz and Rintze Zelle",
"target":"^http://(books|www)\\.google\\.[a-z]+(\\.[a-z]+)?/books\\?(.*id=.*|.*q=.*)",
"minVersion":"2.0b7",
"maxVersion":"",
"priority":100,
"inRepository":"1",
"translatorType":4,
"lastUpdated":"2010-05-27 17:20:00"
"translatorID": "3e684d82-73a3-9a34-095f-19b112d88bbf",
"label": "Google Books",
"creator": "Simon Kornblith, Michael Berkowitz and Rintze Zelle",
"target": "^http://(books|www)\\.google\\.[a-z]+(\\.[a-z]+)?/books(?:\\/.*)?\\?(.*id=.*|.*q=.*)",
"minVersion": "2.1.9",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcs",
"lastUpdated": "2011-07-01 13:31:22"
}
/*
@ -29,14 +30,17 @@ http://books.google.com/books?printsec=frontcover&vid=ISBN0684181355&vid=ISBN068
*/
var singleRe = /^http:\/\/(?:books|www)\.google\.[a-z]+(?:\.[a-z]+)?\/books(?:\/.*)?\?(?:.*&)?(id|vid)=([^&]+)/i;
function detectWeb(doc, url) {
var re = new RegExp('^http://(books|www)\\.google\\.[a-z]+(\.[a-z]+)?/books\\?(.*&)?(id|vid)=([^&]+)', 'i');
if(re.test(doc.location.href)) {
if(singleRe.test(url)) {
return "book";
} else {
return "multiple";
}
}
var itemUrlBase;
function doWeb(doc, url) {
var namespace = doc.documentElement.namespaceURI;
var nsResolver = namespace ? function(prefix) {
@ -48,17 +52,15 @@ function doWeb(doc, url) {
var psMatch = psRe.exec(url);
var suffix = psMatch[2];
var prefix = psMatch[1];
var uri = doc.location.href;
var newUris = new Array();
itemUrlBase = "http://"+prefix+".google."+suffix+"/books?id=";
var re = new RegExp('^http://(?:books|www)\\.google\\.[a-z]+(?:\.[a-z]+)?/books\\?(?:.*&)?(id|vid)=([^&]+)', 'i');
var m = re.exec(uri);
var m = singleRe.exec(url);
if(m && m[1] == "id") {
newUris.push("http://books.google.com/books/feeds/volumes/"+m[2]);
ZU.doGet("http://books.google.com/books/feeds/volumes/"+m[2], parseXML, function() { Z.done() });
} else if (m && m[1] == "vid") {
var itemLinkWithID = doc.evaluate("/html/head/link", doc, nsResolver, XPathResult.ANY_TYPE, null).iterateNext().href;
var m = re.exec(itemLinkWithID);
newUris.push("http://books.google.com/books/feeds/volumes/"+m[2]);
var itemLinkWithID = ZU.xpath(doc, '/html/head/link[@rel="canonical"]')[0].href;
var m = singleRe.exec(itemLinkWithID);
ZU.doGet("http://books.google.com/books/feeds/volumes/"+m[2], parseXML, function() { Z.done() });
} else {
var items = getItemArrayGB(doc, doc, 'google\\.' + suffix + '/books\\?id=([^&]+)', '^(?:All matching pages|About this Book|Table of Contents|Index)');
// Drop " - Page" thing
@ -66,46 +68,38 @@ function doWeb(doc, url) {
for(var i in items) {
items[i] = items[i].replace(/- Page [0-9]+\s*$/, "");
}
items = Zotero.selectItems(items);
if(!items) {
return true;
}
for(var i in items) {
var m = re.exec(i);
newUris.push("http://books.google.com/books/feeds/volumes/"+m[2]);
}
Zotero.selectItems(items, function(items) {
if(!items) Z.done();
var newUris = [];
for(var i in items) {
var m = singleRe.exec(i);
newUris.push("http://books.google.com/books/feeds/volumes/"+m[2]);
}
ZU.doGet(newUris, parseXML, function() { Z.done() });
});
}
var itemUrlBase = "http://"+prefix+".google."+suffix+"/books?id=";
for (var i in newUris) {
var d = Zotero.Utilities.retrieveSource(newUris[i]);
//Zotero.debug(d);
parseXML(d, itemUrlBase);
}
Z.wait();
}
function parseXML(text, itemUrlBase) {
function parseXML(text) {
// Remove xml parse instruction and doctype
text = text.replace(/<!DOCTYPE[^>]*>/, "").replace(/<\?xml[^>]*\?>/, "");
var xml = new XML(text);
var parser = new DOMParser();
var xml = parser.parseFromString(text, "text/xml").documentElement;
default xml namespace = "http://purl.org/dc/terms"; with ({});
var ns = {"dc":"http://purl.org/dc/terms",
"atom":"http://www.w3.org/2005/Atom"};
var newItem = new Zotero.Item("book");
var authors = xml.creator;
var authors = ZU.xpath(xml, "dc:creator", ns);
for (var i in authors) {
newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[i].toString(), "author"));
newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[i].textContent, "author"));
}
newItem.date = xml.date.toString();
var pages = xml.format.toString();
var pagesRe = new RegExp(/(\d+)( pages)/);
var pages = ZU.xpathText(xml, "dc:format", ns);
const pagesRe = /(\d+)( pages)/;
var pagesMatch = pagesRe.exec(pages);
if (pagesMatch!=null) {
newItem.numPages = pagesMatch[1];
@ -114,12 +108,12 @@ function parseXML(text, itemUrlBase) {
}
var ISBN;
var ISBN10Re = new RegExp(/(ISBN:)(\w{10})$/);
var ISBN13Re = new RegExp(/(ISBN:)(\w{13})$/);
var identifiers = xml.identifier;
const ISBN10Re = /(ISBN:)(\w{10})$/;
const ISBN13Re = /(ISBN:)(\w{13})$/;
var identifiers = ZU.xpath(xml, "dc:identifier", ns);
for (var i in identifiers) {
var ISBN10Match = ISBN10Re.exec(identifiers[i].toString());
var ISBN13Match = ISBN13Re.exec(identifiers[i].toString());
var ISBN10Match = ISBN10Re.exec(identifiers[i].textContent);
var ISBN13Match = ISBN13Re.exec(identifiers[i].textContent);
if (ISBN10Match != null) {
ISBN = ISBN10Match[2];
}
@ -129,21 +123,20 @@ function parseXML(text, itemUrlBase) {
}
newItem.ISBN = ISBN;
if (xml.publisher[0]) {
newItem.publisher = xml.publisher[0].toString();
}
var titleparts = xml.title;
var title = [];
for (var i in titleparts) {
title.push(titleparts[i].toString());
}
newItem.title = title.join(': ');
var url = itemUrlBase + xml.identifier[0];
newItem.publisher = ZU.xpathText(xml, "dc:publisher", ns);
newItem.title = ZU.xpathText(xml, "dc:title", ns, ": ");
newItem.language = ZU.xpathText(xml, 'dc:language', ns);
newItem.abstractNote = ZU.xpathText(xml, 'dc:description', ns);
newItem.date = ZU.xpathText(xml, "dc:date", ns);
var url = itemUrlBase + identifiers[0].textContent;
newItem.attachments = [{title:"Google Books Link", snapshot:false, mimeType:"text/html", url:url}];
var subjects = ZU.xpath(xml, 'dc:subject', ns);
for(var i in subjects) {
newItem.tags.push(subjects[i].textContent);
}
newItem.complete();
}
@ -236,4 +229,219 @@ function getItemArrayGB (doc, inHere, urlRe, rejectRe) {
}
return availableItems;
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://books.google.com/books?q=asimov&btnG=Search+Books",
"items": "multiple"
},
{
"type": "web",
"url": "http://books.google.com/books?q=asimov&btnG=Search%20Books&rview=1",
"items": "multiple"
},
{
"type": "web",
"url": "http://books.google.com/books?id=skf3LSyV_kEC&source=gbs_navlinks_s",
"items": [
{
"itemType": "book",
"creators": [
{
"firstName": "Rubén",
"lastName": "Pelayo",
"creatorType": "author"
}
],
"notes": [],
"tags": [
"Garcia Marquez, Gabriel - Criticism and interpretation",
"Literary Criticism / Caribbean & Latin American",
"Literary Criticism / European / Spanish & Portuguese",
"Literary Criticism / Caribbean & Latin American"
],
"seeAlso": [],
"attachments": [
{
"title": "Google Books Link",
"snapshot": false,
"mimeType": "text/html",
"url": false
}
],
"numPages": "208",
"ISBN": "9780313312601",
"publisher": "Greenwood Publishing Group",
"title": "Gabriel García Márquez: a critical companion",
"language": "en",
"abstractNote": "Winner of the Nobel Prize for Literature in 1982 for his masterpiece One Hundred Years of Solitude, Gabriel Garcia Marquez had already earned tremendous respect and popularity in the years leading up to that honor, and remains, to date, an active and prolific writer. Readers are introduced to Garcia Marquez with a vivid account of his fascinating life; from his friendships with poets and presidents, to his distinguished career as a journalist, novelist, and chronicler of the quintessential Latin American experience. This companion also helps students situate Garcia Marquez within the canon of Western literature, exploring his contributions to the modern novel in general, and his forging of literary techniques, particularly magic realism, that have come to distinguish Latin American fiction. Full literary analysis is given for One Hundred Years of Solitude, as well as Chronicle of a Death Foretold (1981), Love in the Time of Cholera (1985), two additional novels, and five of Garcia Marquez's best short stories. Students are given guidance in understanding the historical contexts, as well as the characters and themes that recur in these interrelated works. Narrative technique and alternative critical perspectives are also explored for each work, helping readers fully appreciate the literary accomplishments of Gabriel Garcia Marquez.",
"date": "2001",
"libraryCatalog": "Google Books",
"shortTitle": "Gabriel García Márquez"
}
]
},
{
"type": "web",
"url": "http://books.google.com/books?hl=en&lr=&id=Ct6FKwHhBSQC&oi=fnd&pg=PP9&dq=%22Peggy+Eaton%22&ots=KN-Z0-HAcv&sig=snBNf7bilHi9GFH4-6-3s1ySI9Q#v=onepage&q=%22Peggy%20Eaton%22&f=false",
"items": [
{
"itemType": "book",
"creators": [
{
"firstName": "Meade",
"lastName": "Minnigerode",
"creatorType": "author"
}
],
"notes": [],
"tags": [
"Adams, Abigail",
"Adams, Louisa Catherine",
"Eaton, Peggy",
"Jackson, Rachel",
"Madison, Dolley",
"Monroe, Elizabeth",
"Washington, Martha",
"Women",
"Biography & Autobiography / General",
"Biography & Autobiography / Women",
"Biography & Autobiography / Women"
],
"seeAlso": [],
"attachments": [
{
"title": "Google Books Link",
"snapshot": false,
"mimeType": "text/html",
"url": false
}
],
"numPages": "332",
"ISBN": "9780836913620",
"publisher": "Ayer Publishing",
"title": "Some American ladies: seven informal biographies ...",
"language": "en",
"date": "1926-06",
"libraryCatalog": "Google Books",
"shortTitle": "Some American ladies"
}
]
},
{
"type": "web",
"url": "http://books.google.com/books?printsec=frontcover&vid=ISBN0684181355&vid=ISBN0684183951&vid=LCCN84026715#v=onepage&q&f=false",
"items": [
{
"itemType": "book",
"creators": [
{
"firstName": "Thom",
"lastName": "Holmes",
"creatorType": "author"
},
{
"firstName": "Thomas B.",
"lastName": "Holmes",
"creatorType": "author"
}
],
"notes": [],
"tags": [
"Avant-garde (Music)",
"Electronic music History and criticism",
"Electronic music",
"Music / General",
"Music / History & Criticism",
"Music / Genres & Styles / New Age"
],
"seeAlso": [],
"attachments": [
{
"title": "Google Books Link",
"snapshot": false,
"mimeType": "text/html",
"url": false
}
],
"numPages": "340",
"ISBN": "9780415936446",
"publisher": "Routledge",
"title": "Electronic and experimental music: pioneers in technology and composition",
"language": "en",
"abstractNote": "\"Electronic and Experimental Music\" details the history of electronic music throughout the world, and the people who created it. From the theory of sound production to key composers and instrument designers, this is a complete introduction to the genre from its early roots to the present technological explosion. Every major figure is covered including: Thaddeus Cahill, Peire Henry, Gorden Mumma, Pauline Oliveros, Brian Eno, and D.J. Spooky. The vast array of forms and instruments that these innovators introduced and expanded are also included--tape composition, the synthesizer, \"live\" electronic performance, the ONCE festivals, ambient music, and turntablism.This new edition, includes a thoroughly updated and enlarged theoretical and historical sections and includes new material on using home computers (PCs) and the many resources now available in software and the Internet.",
"date": "2002-07-05",
"libraryCatalog": "Google Books",
"shortTitle": "Electronic and experimental music"
}
]
},
{
"type": "web",
"url": "http://books.google.com/books/about/The_Cambridge_companion_to_electronic_mu.html?id=AJbdPZv1DjgC",
"items": [
{
"itemType": "book",
"creators": [
{
"firstName": "Nicholas",
"lastName": "Collins",
"creatorType": "author"
},
{
"firstName": "Nick",
"lastName": "Collins",
"creatorType": "author"
},
{
"firstName": "Julio",
"lastName": "d'Escriván",
"creatorType": "author"
},
{
"firstName": "Julio d' Escrivan",
"lastName": "Rincón",
"creatorType": "author"
}
],
"notes": [],
"tags": [
"Electronic music",
"Electronic music/ History and criticism",
"Electronic music - History and criticism",
"Music / Genres & Styles / Electronic",
"Music / History & Criticism",
"Music / General",
"Music / General",
"Music / Genres & Styles / Electronic",
"Music / History & Criticism",
"Music / Instruction & Study / General",
"Music / Musical Instruments / General",
"Music / Recording & Reproduction",
"Music / Songbooks"
],
"seeAlso": [],
"attachments": [
{
"title": "Google Books Link",
"snapshot": false,
"mimeType": "text/html",
"url": false
}
],
"numPages": "313",
"ISBN": "9780521868617",
"publisher": "Cambridge University Press",
"title": "The Cambridge companion to electronic music",
"language": "en",
"abstractNote": "Musicians are always quick to adopt and explore new technologies. The fast-paced changes wrought by electrification, from the microphone via the analogue synthesiser to the laptop computer, have led to a wide diversity of new musical styles and techniques. Electronic music has grown to a broad field of investigation, taking in historical movements such as musique concrète and elektronische musik, and contemporary trends such as electronic dance music and electronica. A fascinating array of composers and inventors have contributed to a diverse set of technologies, practices and music. This book brings together some novel threads through this scene, from the viewpoint of researchers at the forefront of the sonic explorations empowered by electronic technology. The chapters provide accessible and insightful overviews of core topic areas and uncover some hitherto less publicised corners of worldwide movements. Recent areas of intense activity such as audiovisuals, live electronic music, interactivity and network music are actively promoted.",
"date": "2007",
"libraryCatalog": "Google Books"
}
]
}
]
/** END TEST CASES **/