/* ***** BEGIN LICENSE BLOCK ***** Copyright © 2011 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 . ***** END LICENSE BLOCK ***** */ var Scaffold_Load = new function() { this.onLoad = Zotero.Promise.coroutine(function* () { var listitem, translator, listcell, set; var listbox = document.getElementById("listbox"); listbox.addEventListener('dblclick', () => { var translatorID = document.getElementById("listbox").selectedItem.getUserData("zotero-id"); if (!translatorID) return; this.accept(); window.close(); }); var translators = {}; // Get the matching translators var translatorProvider = window.arguments[0].translatorProvider; var url = window.arguments[0].url; var rootUrl = window.arguments[0].rootUrl url = Zotero.Proxies.proxyToProper(url); translators["Matching Translators"] = (yield translatorProvider.getWebTranslatorsForLocation(url, rootUrl))[0]; translators["Web Translators"] = (yield translatorProvider.getAllForType("web")) .sort((a, b) => a.label.localeCompare(b.label)); translators["Import Translators"] = (yield translatorProvider.getAllForType("import")) .sort((a, b) => a.label.localeCompare(b.label)); translators["Export Translators"] = (yield translatorProvider.getAllForType("export")) .sort((a, b) => a.label.localeCompare(b.label)); translators["Search Translators"] = (yield translatorProvider.getAllForType("search")) .sort((a, b) => a.label.localeCompare(b.label)); for (set in translators) { // Make a separator listitem = document.createElement("listitem"); listitem.setAttribute("disabled", true); listitem.setAttribute("label", set); listbox.appendChild(listitem); for (var j=0; j