2006-05-30 19:24:57 +00:00
|
|
|
<?xml version="1.0"?>
|
2006-08-02 16:49:19 +00:00
|
|
|
<!--
|
|
|
|
Scholar
|
|
|
|
Copyright (C) 2006 Center for History and New Media, George Mason University, Fairfax, VA
|
|
|
|
http://chnm.gmu.edu/
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
-->
|
2006-06-05 17:47:36 +00:00
|
|
|
<!DOCTYPE window SYSTEM "chrome://scholar/locale/scholar.dtd">
|
2006-05-30 19:24:57 +00:00
|
|
|
|
|
|
|
<overlay
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
|
2006-06-09 15:54:44 +00:00
|
|
|
<script src="itemPane.js"/>
|
2006-07-26 14:03:54 +00:00
|
|
|
<deck id="scholar-view-item" flex="1" onselect="ScholarItemPane.loadPane(this.selectedIndex);">
|
2006-06-21 23:22:37 +00:00
|
|
|
<vbox id="scholar-info" flex="1">
|
2006-06-09 15:52:40 +00:00
|
|
|
<popupset>
|
|
|
|
<popup id="creatorTypeMenu" position="after_start" oncommand="ScholarItemPane.modifyCreator(document.popupNode.getAttribute('fieldname').split('-')[1],'typeID',event.explicitOriginalTarget.getAttribute('typeid'));"/>
|
|
|
|
</popupset>
|
2006-08-09 15:44:11 +00:00
|
|
|
<hbox align="center">
|
|
|
|
<menulist id="editpane-type-menu" oncommand="ScholarItemPane.changeTypeTo(this.value)" flex="1">
|
|
|
|
<menupopup/>
|
|
|
|
</menulist>
|
|
|
|
<toolbarbutton id="tb-openurl" tooltiptext="&toolbar.openurl.label;" oncommand="ScholarItemPane.onOpenURLClick();"/>
|
|
|
|
</hbox>
|
2006-06-14 17:43:02 +00:00
|
|
|
<grid flex="1">
|
2006-06-09 15:52:40 +00:00
|
|
|
<columns>
|
|
|
|
<column/>
|
|
|
|
<column flex="1"/>
|
|
|
|
</columns>
|
2006-06-26 14:46:21 +00:00
|
|
|
<rows id="editpane-dynamic-fields" flex="1"/>
|
2006-06-09 15:52:40 +00:00
|
|
|
</grid>
|
|
|
|
</vbox>
|
2006-06-26 14:46:21 +00:00
|
|
|
<vbox flex="1">
|
|
|
|
<hbox align="center">
|
|
|
|
<label id="editpane-notes-label"/>
|
2006-08-02 17:57:16 +00:00
|
|
|
<button label="&item.add;" oncommand="ScholarItemPane.addNote();"/>
|
2006-06-26 14:46:21 +00:00
|
|
|
</hbox>
|
2006-06-26 12:58:22 +00:00
|
|
|
<grid flex="1">
|
|
|
|
<columns>
|
|
|
|
<column flex="1"/>
|
2006-06-26 13:54:05 +00:00
|
|
|
<column/>
|
2006-06-26 12:58:22 +00:00
|
|
|
</columns>
|
|
|
|
<rows id="editpane-dynamic-notes" flex="1"/>
|
|
|
|
</grid>
|
2006-06-25 04:57:52 +00:00
|
|
|
</vbox>
|
2006-07-27 18:08:09 +00:00
|
|
|
<vbox flex="1">
|
|
|
|
<hbox align="center">
|
2006-08-12 00:18:20 +00:00
|
|
|
<label id="editpane-attachments-label"/>
|
|
|
|
<button id="tb-item-attachments-add" type="menu" label="&item.add;">
|
2006-07-31 17:05:41 +00:00
|
|
|
<menupopup>
|
2006-08-12 00:18:20 +00:00
|
|
|
<menuitem class="menuitem-iconic" id="tb-item-attachments-link" label="&toolbar.attachment.linked;" oncommand="ScholarItemPane.addAttachmentFromDialog(true);"/>
|
|
|
|
<menuitem class="menuitem-iconic" id="tb-item-attachments-file" label="&toolbar.attachment.add;" oncommand="ScholarItemPane.addAttachmentFromDialog();"/>
|
|
|
|
<menuitem class="menuitem-iconic" id="tb-item-attachments-web-link" label="&toolbar.attachment.weblink;" oncommand="ScholarItemPane.addAttachmentFromPage(true);"/>
|
|
|
|
<menuitem class="menuitem-iconic" id="tb-item-attachments-snapshot" label="&toolbar.attachment.snapshot;" oncommand="ScholarItemPane.addAttachmentFromPage();"/>
|
2006-07-31 17:05:41 +00:00
|
|
|
</menupopup>
|
|
|
|
</button>
|
2006-07-27 18:08:09 +00:00
|
|
|
</hbox>
|
|
|
|
<grid flex="1">
|
|
|
|
<columns>
|
|
|
|
<column flex="1"/>
|
|
|
|
<column/>
|
|
|
|
</columns>
|
2006-08-12 00:18:20 +00:00
|
|
|
<rows id="editpane-dynamic-attachments" flex="1"/>
|
2006-07-27 18:08:09 +00:00
|
|
|
</grid>
|
2006-06-21 22:23:42 +00:00
|
|
|
</vbox>
|
2006-07-26 14:03:54 +00:00
|
|
|
<tagsbox id="editpane-tags" flex="1"/>
|
|
|
|
<seealsobox id="editpane-related" flex="1"/>
|
|
|
|
</deck>
|
2006-05-30 19:24:57 +00:00
|
|
|
</overlay>
|