2000-01-03 23:07:14 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
The contents of this file are subject to the Netscape Public
|
|
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
|
|
except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at http://www.mozilla.org/NPL/
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
implied. See the License for the specific language governing
|
|
|
|
rights and limitations under the License.
|
|
|
|
|
|
|
|
The Original Code is Mozilla Communicator client code, released
|
|
|
|
March 31, 1998.
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
|
|
Communications Corporation. Portions created by Netscape are
|
|
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
Rights Reserved.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://messenger/locale/msgHdrViewOverlay.dtd">
|
|
|
|
|
2000-01-06 00:34:39 +00:00
|
|
|
<?xml-stylesheet href="chrome://messenger/skin/msgHdrViewOverlay.css" type="text/css"?>
|
2000-01-03 23:07:14 +00:00
|
|
|
|
|
|
|
<overlay xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
|
2000-05-07 07:33:28 +00:00
|
|
|
<script src="chrome://messenger/content/msgHdrViewAddresses.js"/>
|
|
|
|
<script src="chrome://messenger/content/msgHdrViewOverlay.js"/>
|
|
|
|
<script src="chrome://messenger/content/mime.js"/>
|
2000-01-03 23:07:14 +00:00
|
|
|
|
|
|
|
<toolbox id="msgHeaderView">
|
2000-05-17 06:28:46 +00:00
|
|
|
<toolbar id="viewAllHeadersToolbar" hide="true">
|
|
|
|
<box id="viewAllHeadersBox" class="header-part1" align="vertical" flex="1" collapsed="true">
|
|
|
|
</box>
|
|
|
|
</toolbar>
|
|
|
|
|
2000-05-12 06:57:02 +00:00
|
|
|
<toolbar id="headerPart1" hide="true">
|
2000-01-03 23:07:14 +00:00
|
|
|
<box class="header-splitter" align="horizontal" flex="1">
|
|
|
|
<box class="header-part1" align="vertical" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id="SubjectBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&subjectField.label;" popup="allHeadersPopup"/>
|
|
|
|
<html class="headerValue subjectvalue" id="SubjectValue" flex="1">*</html>
|
2000-01-03 23:07:14 +00:00
|
|
|
</box>
|
|
|
|
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id="FromBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&fromField.label;" popup="allHeadersPopup"/>
|
|
|
|
<html class="headerValue" id="FromValue" flex="1"></html>
|
2000-01-03 23:07:14 +00:00
|
|
|
</box>
|
|
|
|
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id = "DateBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&dateField.label;" popup="allHeadersPopup"/>
|
|
|
|
<html class="headerValue" id="DateValue" flex="1">*</html>
|
2000-01-03 23:07:14 +00:00
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id="attachmentBox" class="header-part1" align="horizontal" collapsed="true">
|
2000-01-03 23:07:14 +00:00
|
|
|
<spring class="buttonSpacer"/>
|
|
|
|
<box align="vertical">
|
|
|
|
<spring class="buttonTopSpacer"/>
|
|
|
|
<menu id="attachmentMenu" class="attachment-menu">
|
2000-05-07 07:33:28 +00:00
|
|
|
<button id="attachmentButton" value="1" align="right"/>
|
2000-01-06 00:34:39 +00:00
|
|
|
<menupopup id="attachmentPopup" popupanchor="bottomright" popupalign="topright">
|
2000-01-03 23:07:14 +00:00
|
|
|
</menupopup>
|
|
|
|
</menu>
|
|
|
|
<spring flex="1"/>
|
|
|
|
</box>
|
|
|
|
<spring class="buttonSpacer"/>
|
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</toolbar>
|
|
|
|
|
2000-05-12 06:57:02 +00:00
|
|
|
<toolbar id="headerPart2" hide="true">
|
2000-01-03 23:07:14 +00:00
|
|
|
<box class="header-part2" align="vertical" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id="ToBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&toField.label;" popup="allHeadersPopup"/>
|
2000-05-17 06:28:46 +00:00
|
|
|
<html class="headerValue" id="ToValueShort" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<button class="showMoreAddressesButton" id="ToValueToggleIcon"
|
|
|
|
oncommand="ToggleLongShortAddresses('ToValueShort', 'ToValueLong');"/>
|
2000-05-12 06:34:48 +00:00
|
|
|
</html>
|
2000-05-07 07:33:28 +00:00
|
|
|
|
2000-05-17 06:28:46 +00:00
|
|
|
<html class="headerValue" id="ToValueLong" collapsed="true" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<button class="showFewerAddressesButton"
|
|
|
|
oncommand="ToggleLongShortAddresses('ToValueShort', 'ToValueLong');"/>
|
2000-05-12 06:34:48 +00:00
|
|
|
</html>
|
2000-05-07 07:33:28 +00:00
|
|
|
</box>
|
2000-04-01 00:40:53 +00:00
|
|
|
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id="CcBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&ccField.label;" popup="allHeadersPopup"/>
|
2000-05-17 06:28:46 +00:00
|
|
|
<html class="headerValue" id="CcValueShort" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<button class="showMoreAddressesButton" id="CcValueToggleIcon"
|
|
|
|
oncommand="ToggleLongShortAddresses('CcValueShort', 'CcValueLong');"/>
|
2000-05-12 06:34:48 +00:00
|
|
|
</html>
|
2000-05-12 06:10:24 +00:00
|
|
|
|
2000-05-17 06:28:46 +00:00
|
|
|
<html class="headerValue" id="CcValueLong" collapsed="true" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<button class="showFewerAddressesButton"
|
|
|
|
oncommand="ToggleLongShortAddresses('CcValueShort', 'CcValueLong');"/>
|
2000-05-12 06:34:48 +00:00
|
|
|
</html>
|
2000-05-12 06:10:24 +00:00
|
|
|
</box>
|
|
|
|
|
|
|
|
<box id="NewsgroupBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&newsgroupsField.label;" popup="allHeadersPopup"/>
|
2000-05-17 06:28:46 +00:00
|
|
|
<html class="headerValue" id="NewsgroupValue" flex="1">*</html>
|
2000-05-12 06:10:24 +00:00
|
|
|
</box>
|
2000-01-03 23:07:14 +00:00
|
|
|
</box>
|
|
|
|
</toolbar>
|
2000-04-01 00:40:53 +00:00
|
|
|
|
2000-05-12 06:57:02 +00:00
|
|
|
<toolbar id="headerPart3" hide="true">
|
2000-04-01 00:40:53 +00:00
|
|
|
<box class="header-part3" align="vertical" flex="1">
|
2000-05-12 06:10:24 +00:00
|
|
|
<box id="UserAgentBox" class="headerBox" align="horizontal" collapsed="true">
|
2000-05-17 04:21:40 +00:00
|
|
|
<text class="headerdisplayname" value="&userAgentField.label;" popup="allHeadersPopup"/>
|
2000-05-17 06:28:46 +00:00
|
|
|
<html class="headerValue" id="UserAgentValue" flex="1">*</html>
|
2000-04-01 00:40:53 +00:00
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</toolbar>
|
|
|
|
|
2000-01-03 23:07:14 +00:00
|
|
|
</toolbox>
|
|
|
|
</overlay>
|