Move translate_generic.js back to translate_inject.js, since it is no longer used in zotero-node (and should properly only be used for injected scripts)

This commit is contained in:
Simon Kornblith 2011-07-12 02:00:13 +00:00
parent ec6f894e1a
commit 4d307c1865

View file

@ -1,93 +0,0 @@
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2009 Center for History and New Media
George Mason University, Fairfax, Virginia, USA
http://zotero.org
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 *****
*/
/**
* @class Manages the translator sandbox
* @param {Zotero.Translate} translate
* @param {String|window} sandboxLocation
*/
Zotero.Translate.SandboxManager = function(sandboxLocation) {
this.sandbox = {"Zotero":{}};
}
Zotero.Translate.SandboxManager.prototype = {
/**
* Evaluates code in the sandbox
* @param {String} code Code to evaluate
* @param {String[]} functions Functions to import into the sandbox (rather than leaving
* as inner functions)
*/
"eval":function(code, functions) {
// delete functions to import
for(var i in functions) {
delete this.sandbox[functions[i]];
}
// eval in sandbox scope
with(this.sandbox) {
eval(code);
}
// import inner functions (what a mess)
for(var i in functions) {
try {
this.sandbox[functions[i]] = eval(functions[i]);
} catch(e) {}
}
},
/**
* Imports an object into the sandbox
*
* @param {Object} object Object to be imported (under Zotero)
* @param {Boolean} passTranslateAsFirstArgument Whether the translate instance should be passed
* as the first argument to the function.
*/
"importObject":function(object, passAsFirstArgument, attachTo) {
if(!attachTo) attachTo = this.sandbox.Zotero;
for(var key in (object.__exposedProps__ ? object.__exposedProps__ : object)) {
if(Function.prototype[key]) continue;
if(typeof object[key] === "function" || typeof object[key] === "object") {
// magic closures
attachTo[key] = new function() {
var fn = object[key];
return function() {
var args = (passAsFirstArgument ? [passAsFirstArgument] : []);
for(var i=0; i<arguments.length; i++) {
args.push(arguments[i]);
}
return fn.apply(object, args);
};
}
// attach members
this.importObject(object[key], passAsFirstArgument ? passAsFirstArgument : null, attachTo[key]);
} else {
attachTo[key] = object[key];
}
}
}
}