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

source: content/vI_rdfDataEditor.xul @ 184c6c

ng_0.9
Last change on this file since 184c6c was 184c6c, checked in by rene <rene@…>, 11 years ago

rearranged tree structure / added build-script

  • Property mode set to 100644
File size: 4.3 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/_overlayNameSpaceWrapper.js" />
39<script type="application/x-javascript" src="chrome://v_identity/content/vI_rdfDataEditor.js" />
40<script type="application/x-javascript" src="chrome://v_identity/content/modules/vI_identityData.js" />
41<script type="application/x-javascript" src="chrome://v_identity/content/vI_storageExtras.js" />
42<script type="application/x-javascript" src="chrome://v_identity/content/vI_storage.js" />
43<script type="application/x-javascript" src="chrome://v_identity/content/modules/vI_helper.js" />
44<script type="application/x-javascript" src="chrome://v_identity/content/notificationbar/vI_notificationBar.js"/>
45<script type="application/x-javascript" src="chrome://messenger/content/messengercompose/MsgComposeCommands.js"/>
46
47  <stringbundleset id="stringbundleset">
48    <stringbundle id="vI_rdfDataTreeBundle" src="chrome://v_identity/locale/vI_rdfDataEditor.properties" />
49    <stringbundle id="bundle_messenger" src="chrome://messenger/locale/messenger.properties" />
50  </stringbundleset>
51
52<!-- <stringbundle id="vI_rdfDataTreeBundle" src="chrome://v_identity/locale/vI_rdfDataEditor.properties" /> -->
53
54    <dialogheader title="&vI_rdfDataEditor.header.label;"/>
55    <vbox id="vI_rdfDataEditorContent">
56    <hbox>
57        <vbox><spacer flex="1"/>
58            <label value="&vI_rdfDataEditor.recipient.label;" accesskey="&vI_rdfDataEditor.recipient.accesskey;" control="recipient"/>
59        <spacer flex="1"/></vbox>
60        <textbox id="recipient" flex="1" />
61        <menulist id="type_menu">
62           <menupopup id="type_menu_popup" />
63        </menulist>
64    </hbox>
65    <groupbox>
66        <caption label="&vI_rdfDataEditor.caption.label;" />
67        <hbox>
68            <vbox><spacer flex="1"/>
69                <label value="&vI_rdfDataEditor.sender.label;" accesskey="&vI_rdfDataEditor.sender.accesskey;" control="sender"/>
70            <spacer flex="1"/></vbox>
71            <textbox id="sender" flex="1"  onblur="virtualIdentityExtension.rdfDataEditor.blurEvent('sender')" />
72        </hbox>
73        <hbox>
74            <vbox><spacer flex="1"/>
75                <label value="&vI_rdfDataEditor.smtp.label;" accesskey="&vI_rdfDataEditor.smtp.accesskey;" control="smtp_server_list"/>
76            <spacer flex="1"/></vbox>
77            <!-- structure to show SMTP server -->
78            <hbox id="smtpServerListHbox" class="smtpServerListHbox" />
79           
80            <vbox><spacer flex="1"/>
81                <label value="&vI_rdfDataEditor.identity.label;" accesskey="&vI_rdfDataEditor.identity.accesskey;" control="identity_list"/>
82            <spacer flex="1"/></vbox>
83            <menulist id="identity_list">
84                <menupopup id="identity_list_popup" />
85            </menulist>
86        </hbox>
87    </groupbox>
88    </vbox>
89    <splitter id="vIDebugBoxSplitter" hidden="true"/>
90    <textbox id="vIDebugBox" hidden="true" multiline="true" readonly="true"
91    DOMAttrModified="if(event.attrName == 'value') this.value = event.newValue; return true;"/>
92
93</dialog>
Note: See TracBrowser for help on using the repository browser.