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

source: content/vI_Dialog.xul

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

tons of changes, mostly namespace-related

  • Property mode set to 100644
File size: 2.7 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://communicator/skin/" type="text/css"?>   
27<?xml-stylesheet href="chrome://v_identity/skin/vI_Dialog.css" type="text/css"?>
28
29<!DOCTYPE overlay SYSTEM "chrome://v_identity/locale/v_identity.dtd">
30
31<dialog id="virtualIdentityExtension_Dialog" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
32    buttons="accept,cancel,extra1,extra2"
33        buttonlabelextra1="&vident.virtualIdentityExtension_Dialog.extra1Button.label;"
34    buttoniconextra1="no"
35        buttonlabelextra2="&vident.virtualIdentityExtension_Dialog.extra2Button.label;"
36    buttoniconextra2="no"
37        title="Virtual Identity"
38    zlevel="6"
39    onload="virtualIdentityExtension.Dialog.init(window.arguments[0]);"
40    ondialogaccept="window.arguments[1].returnValue = 'accept';"
41    ondialogcancel="window.close(); window.arguments[1].returnValue = 'cancel';"
42    ondialogextra1="window.close(); window.arguments[1].returnValue = 'abort';"
43    ondialogextra2="window.close(); window.arguments[1].returnValue = 'takeover';"
44    persist="height width">
45
46    <script type="application/x-javascript" src="chrome://v_identity/content/vI_Dialog.js" />
47
48    <description id="virtualIdentityExtension_Dialog_title" />
49    <description id="virtualIdentityExtension_Dialog_recLabel" />
50    <description id="virtualIdentityExtension_Dialog_recipient" />
51    <browser id="virtualIdentityExtension_Dialog_browser" type="chrome" class="vI_htmlTextBox"
52         documentStyle="background-color: -moz-dialog; font: -moz-dialog;"
53         cssSource="vI_DialogBrowser.css" flex="1" disablehistory="true" />
54    <description id="virtualIdentityExtension_Dialog_query" />
55</dialog>
Note: See TracBrowser for help on using the repository browser.