This is just some static backup of the original site, don't expect every link to work!

source: content/vI_rdfDataEditor.xul

ng_0.9 0.10.3
Last change on this file was 85fa10, checked in by rene <rene@…>, 4 years ago

removed everything related to smtp-storage

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<?xml version="1.0"?>
2<!-- ***** BEGIN LICENSE BLOCK *****
3   - This program is free software; you can redistribute it and/or modify
4   - it under the terms of the GNU General Public License as published by
5   - the Free Software Foundation; either version 2 of the License, or
6   - (at your option) any later version.
7
8   - This program is distributed in the hope that it will be useful,
9   - but WITHOUT ANY WARRANTY; without even the implied warranty of
10   - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11   - GNU General Public License for more details.
12
13   - You should have received a copy of the GNU General Public License
14   - along with this program; if not, write to the Free Software
15   - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
17   - The Original Code is the Virtual Identity Extension.
18
19   - The Initial Developer of the Original Code is Rene Ejury.
20   - Portions created by the Initial Developer are Copyright (C) 2007
21   - the Initial Developer. All Rights Reserved.
22
23   - Contributor(s):
24   - ***** END LICENSE BLOCK ***** -->
25   
26<?xml-stylesheet href="chrome://v_identity/skin/v_identity.css" type="text/css"?>
27<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
28
29
30<!DOCTYPE overlay SYSTEM "chrome://v_identity/locale/vI_rdfDataEditor.dtd">
31
32<dialog id="vI_rdfDataEditor"
33    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
34    onload="virtualIdentityExtension.rdfDataEditor.init();"
35    ondialogaccept="window.arguments[3].treeType = virtualIdentityExtension.rdfDataEditor.accept();"
36    title="&vI_rdfDataEditor.dlgTitle.label;" >
37
38<script type="application/x-javascript" src="chrome://v_identity/content/vI_rdfDataEditor.js" />
39
40<!-- FillIdentityList is required from MsgComposeCommands -->
41<script type="application/x-javascript" src="chrome://messenger/content/messengercompose/MsgComposeCommands.js"/>
42
43    <dialogheader title="&vI_rdfDataEditor.header.label;"/>
44    <vbox id="virtualIdentityExtension_rdfDataEditorContent">
45    <hbox>
46        <vbox><spacer flex="1"/>
47            <label value="&vI_rdfDataEditor.recipient.label;" accesskey="&vI_rdfDataEditor.recipient.accesskey;" control="recipient"/>
48        <spacer flex="1"/></vbox>
49        <textbox id="recipient" flex="1" />
50        <menulist id="type_menu">
51           <menupopup id="type_menu_popup" />
52        </menulist>
53    </hbox>
54    <groupbox>
55        <caption label="&vI_rdfDataEditor.caption.label;" />
56        <hbox>
57            <vbox><spacer flex="1"/>
58                <label value="&vI_rdfDataEditor.sender.label;" accesskey="&vI_rdfDataEditor.sender.accesskey;" control="sender"/>
59            <spacer flex="1"/></vbox>
60            <textbox id="sender" flex="1"  onblur="virtualIdentityExtension.rdfDataEditor.blurEvent('sender')" />
61        </hbox>
62        <hbox>
63            <vbox><spacer flex="1"/>
64                <label value="&vI_rdfDataEditor.identity.label;" accesskey="&vI_rdfDataEditor.identity.accesskey;" control="virtualIdentityExtension_IdentityList"/>
65            <spacer flex="1"/></vbox>
66            <menulist id="virtualIdentityExtension_IdentityList">
67                <menupopup id="virtualIdentityExtension_IdentityListPopup" />
68            </menulist>
69        </hbox>
70    </groupbox>
71    </vbox>
72    <textbox id="virtualIdentityExtension_debugBox" />
73</dialog>
Note: See TracBrowser for help on using the repository browser.