Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
151 lines (128 sloc) 4.78 KB
{
"translatorID": "8451431a-895f-4732-8339-79eb6756d2f9",
"label": "Civilization.ca",
"creator": "Adam Crymble",
"target": "^https?://collections\\.civilization\\.ca",
"minVersion": "1.0.0b4.r5",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2012-07-13 07:33:49"
}
function detectWeb(doc, url) {
if (doc.evaluate('//tr/td[2]/a/font', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
return "multiple";
} else if (doc.location.href.match("Display.php")) {
return "artwork";
}
}
//Civilization.ca translator. Code by Adam Crymble.
function associateData (newItem, dataTags, field, zoteroField) {
if (dataTags[field]) {
newItem[zoteroField] = dataTags[field];
}
}
function scrape(doc, url) {
var dataTags = new Object();
var tagsContent = new Array();
var fieldTitle;
var newItem = new Zotero.Item("artwork");
var headers = doc.evaluate('//table[2]/tbody/tr/td[1]/span[@class="textb"]/b', doc, null, XPathResult.ANY_TYPE, null);
var contents = doc.evaluate('//tr[2]/td/table[2]/tbody/tr/td[2]', doc, null, XPathResult.ANY_TYPE, null);
var xPathCount = doc.evaluate('count (//table[2]/tbody/tr/td[1]/span[@class="textb"]/b)', doc, null, XPathResult.ANY_TYPE, null);
newItem.title = contents.iterateNext().textContent.replace(/^\s*|\s+$/g, '');
var dump = contents.iterateNext();
for (i=0; i<xPathCount.numberValue; i++) {
fieldTitle = headers.iterateNext().textContent.replace(/\s+/g, '');
if (fieldTitle == "Artist/Maker/Manufacturer") {
fieldTitle = " Artiste/Artisan/Fabricant";
} else if (fieldTitle == "Autreaffiliationculturelle") {
fieldTitle = "OtherCulturalAffiliation";
}
dataTags[fieldTitle] = Zotero.Utilities.cleanTags(contents.iterateNext().textContent.replace(/^\s*|\s*$/g, ''));
}
if (dataTags["Artist/Maker/Manufacturer"]) {
var author = dataTags["Artist/Maker/Manufacturer"];
if (author.match(" and ")) {
var authors = author.split(" and ");
for (var i in authors) {
newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[i], "author"));
}
} else {
newItem.creators.push({lastName: author, creatorType: "creator"});
}
}
if (dataTags["OtherCulturalAffiliation"]) {
tagsContent = dataTags["OtherCulturalAffiliation"].split(/\n/);
for (var i = 0; i < tagsContent.length; i++) {
newItem.tags[i] = tagsContent[i];
}
}
if (dataTags["Collection"]) {
newItem.extra = "Collection: " + dataTags['Collection'];
}
associateData (newItem, dataTags, "ArtifactNumber", "callNumber");
associateData (newItem, dataTags, "Museum", "repository");
associateData (newItem, dataTags, "Measurements", "artworkSize");
associateData (newItem, dataTags, "BeginDate", "date");
associateData (newItem, dataTags, "EndDate", "date");
associateData (newItem, dataTags, "AdditionalInformation", "abstractNote");
associateData (newItem, dataTags, "Numérod'artefact", "callNumber");
associateData (newItem, dataTags, "Musée", "repository");
associateData (newItem, dataTags, "Mesures", "artworkSize");
associateData (newItem, dataTags, "Datededébut", "date");
associateData (newItem, dataTags, "Datedefin", "date");
associateData (newItem, dataTags, "Informationsupplémentaire", "abstractNote");
newItem.url = doc.location.href;
newItem.complete();
}
function doWeb(doc, url) {
var articles = new Array();
if (detectWeb(doc, url) == "multiple") {
var items = new Object();
var titles = doc.evaluate('//tr/td[2]/a', doc, null, XPathResult.ANY_TYPE, null);
var next_title;
while (next_title = titles.iterateNext()) {
if (next_title.textContent.match(/\w/)) {
items[next_title.href] = next_title.textContent;
}
}
items = Zotero.selectItems(items);
for (var i in items) {
articles.push(i);
}
} else {
articles = [url];
}
Zotero.Utilities.processDocuments(articles, scrape, function() {Zotero.done();});
Zotero.wait();
}/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://collections.civilization.ca/public/pages/cmccpublic/emupublic/Display.php?irn=23462&QueryPage=%2Fpublic%2Fpages%2Fcmccpublic%2Femupublic%2FQuery.php&lang=0",
"items": [
{
"itemType": "artwork",
"creators": [],
"notes": [],
"tags": [
"Central Eskimo",
"Central Inuit"
],
"seeAlso": [],
"attachments": [],
"title": "dogsled flooring",
"extra": "Collection: CCOP Gateway Ethnographic",
"callNumber": "IV-C-1866",
"artworkSize": "Height 0.9 cm, Length 14.8 cm, Width 3.4 cm",
"url": "http://collections.civilization.ca/public/pages/cmccpublic/emupublic/Display.php?irn=23462&QueryPage=%2Fpublic%2Fpages%2Fcmccpublic%2Femupublic%2FQuery.php&lang=0",
"libraryCatalog": "CMC",
"accessDate": "CURRENT_TIMESTAMP"
}
]
}
]
/** END TEST CASES **/
You can’t perform that action at this time.