Updated translators from GitHub

This commit is contained in:
Dan Stillman 2011-08-21 05:27:23 +00:00
parent 947190b29a
commit 44225aa4d1
3 changed files with 18 additions and 6 deletions

View File

@ -1 +1 @@
2011-08-03 01:05:00
2011-08-21 05:25:00

View File

@ -14,7 +14,7 @@
"inRepository": true,
"translatorType": 3,
"browserSupport": "gcs",
"lastUpdated": "2011-07-29 03:35:07"
"lastUpdated": "2011-08-16 15:07:38"
}
function detectImport() {
@ -2109,11 +2109,20 @@ function doExport() {
if(Zotero.getOption("exportFileData")) {
if(item.attachments) {
var attachmentString = "";
for(var i in item.attachments) {
var attachment = item.attachments[i];
attachmentString += ";" + attachment.title + ":" + attachment.path + ":" + attachment.mimeType;
if(attachment.defaultPath) { // For Zotero 3.0
attachment.saveFile(attachment.defaultPath, true);
attachmentString += ";" + attachment.title + ":" + attachment.defaultPath + ":" + attachment.mimeType;
} else if(attachment.path) { // For Zotero 2.1
attachmentString += ";" + attachment.title + ":" + attachment.path + ":" + attachment.mimeType;
}
}
if(attachmentString) {
writeField("file", attachmentString.substr(1));
}
writeField("file", attachmentString.substr(1));
}
}

View File

@ -10,7 +10,7 @@
"configOptions":{"getCollections":"true", "dataMode":"rdf/xml"},
"displayOptions":{"exportNotes":true, "exportFileData":false},
"inRepository":true,
"lastUpdated":"2011-07-08 04:51:41"
"lastUpdated":"2011-08-16 15:07:21"
}
var item;
@ -323,7 +323,10 @@ function generateItem(item, zoteroType, resource) {
}
// relative file path for attachment items
if(item.path) {
if(item.defaultPath) { // For Zotero 3.0
item.saveFile(item.defaultPath, true);
Zotero.RDF.addStatement(resource, rdf+"resource", item.defaultPath, false);
} else if(item.path) { // For Zotero 2.1
Zotero.RDF.addStatement(resource, rdf+"resource", item.path, false);
}