2006-06-22 02:43:40 +00:00
|
|
|
<?xml version="1.0"?>
|
2009-12-28 09:47:49 +00:00
|
|
|
<!--
|
|
|
|
***** 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
|
2011-05-18 18:34:22 +00:00
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
2009-12-28 09:47:49 +00:00
|
|
|
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
|
2011-05-18 18:34:22 +00:00
|
|
|
GNU Affero General Public License for more details.
|
2009-12-28 09:47:49 +00:00
|
|
|
|
2011-05-18 18:34:22 +00:00
|
|
|
You should have received a copy of the GNU Affero General Public License
|
2009-12-28 09:47:49 +00:00
|
|
|
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
***** END LICENSE BLOCK *****
|
|
|
|
-->
|
|
|
|
|
2006-06-22 02:43:40 +00:00
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
2022-06-08 17:16:50 -05:00
|
|
|
<?xml-stylesheet href="chrome://zotero/skin/zotero.css" type="text/css"?>
|
2024-01-17 19:10:11 +08:00
|
|
|
<?xml-stylesheet href="chrome://zotero-platform/content/zotero.css" type="text/css"?>
|
2024-10-19 12:33:14 +02:00
|
|
|
<?xml-stylesheet href="chrome://zotero/skin/scaffold.css" type="text/css"?>
|
2006-10-02 23:15:27 +00:00
|
|
|
<!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd">
|
2022-06-08 17:16:50 -05:00
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
2006-06-22 02:43:40 +00:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2023-07-21 16:43:52 +08:00
|
|
|
id="zotero-select-item-dialog"
|
2024-01-17 19:10:11 +08:00
|
|
|
class="zotero-dialog"
|
2024-10-19 12:33:14 +02:00
|
|
|
title="&zotero.selectitems.title;"
|
|
|
|
persist="width height"
|
2024-04-19 19:32:50 +08:00
|
|
|
drawintitlebar-platforms="mac"
|
2006-10-02 23:15:27 +00:00
|
|
|
onload="Zotero_Ingester_Interface_SelectItems.init()">
|
2022-06-08 17:16:50 -05:00
|
|
|
<dialog
|
|
|
|
buttons="cancel,accept"
|
|
|
|
id="zotero-selectitems">
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
Services.scriptloader.loadSubScript("chrome://zotero/content/include.js", this);
|
2024-04-19 19:32:50 +08:00
|
|
|
Services.scriptloader.loadSubScript("chrome://zotero/content/titlebar.js", this);
|
2024-10-19 12:33:14 +02:00
|
|
|
Services.scriptloader.loadSubScript("chrome://scaffold/content/select.js", this);
|
2023-04-12 23:09:40 -04:00
|
|
|
Services.scriptloader.loadSubScript("chrome://zotero/content/customElements.js", this);
|
2022-06-08 17:16:50 -05:00
|
|
|
</script>
|
2007-10-23 07:11:59 +00:00
|
|
|
|
2024-10-19 12:33:14 +02:00
|
|
|
<vbox id="zotero-select-items-container" flex="1">
|
2007-10-23 07:11:59 +00:00
|
|
|
<box flex="1">
|
2022-06-08 17:16:50 -05:00
|
|
|
<richlistbox id="zotero-selectitems-links" flex="1"></richlistbox>
|
2007-10-23 07:11:59 +00:00
|
|
|
</box>
|
2024-10-19 12:33:14 +02:00
|
|
|
<hbox id="zotero-select-items-buttons">
|
2007-10-23 07:11:59 +00:00
|
|
|
<button label="Select All" oncommand="Zotero_Ingester_Interface_SelectItems.selectAll()"/>
|
|
|
|
<button label="Deselect All" oncommand="Zotero_Ingester_Interface_SelectItems.selectAll(true)"/>
|
|
|
|
</hbox>
|
|
|
|
</vbox>
|
2022-06-08 17:16:50 -05:00
|
|
|
</dialog>
|
|
|
|
</window>
|