File: systemIntegrationDialog.xul

package info (click to toggle)
icedove 1%3A45.8.0-3~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,488,584 kB
  • ctags: 1,068,813
  • sloc: cpp: 4,801,496; ansic: 1,929,291; python: 379,296; java: 252,018; xml: 173,182; asm: 146,741; sh: 89,229; makefile: 23,462; perl: 16,380; objc: 4,088; yacc: 1,841; lex: 1,222; exp: 499; php: 437; lisp: 228; awk: 152; pascal: 116; sed: 51; ruby: 47; csh: 31; ada: 16
file content (65 lines) | stat: -rw-r--r-- 2,561 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0"?>
# -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

<?xml-stylesheet href="chrome://global/skin/"?>

<!DOCTYPE window [
  <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
  %brandDTD;
  <!ENTITY % systemIntegrationDTD SYSTEM
    "chrome://messenger/locale/systemIntegrationDialog.dtd">
  %systemIntegrationDTD;
#ifdef XP_WIN
  <!ENTITY % searchIntegrationWinDTD SYSTEM
    "chrome://messenger/locale/searchIntegrationWin.dtd">
  %searchIntegrationWinDTD;
#else
#ifdef XP_MACOSX
  <!ENTITY % searchIntegrationMacDTD SYSTEM
    "chrome://messenger/locale/searchIntegrationMac.dtd">
  %searchIntegrationMacDTD;
#else
  <!ENTITY % searchIntegrationDefaultDTD SYSTEM
    "chrome://messenger/locale/searchIntegrationDefault.dtd">
  %searchIntegrationDefaultDTD;
#endif
#endif
]>

<dialog xmlns:html="http://www.w3.org/1999/xhtml"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        id="systemIntegrationDialog"
        buttons="accept,cancel"
        buttonlabelaccept="&acceptIntegration.label;"
        buttonlabelcancel="&cancelIntegration.label;"
        buttonlabelcancel2="&cancelIntegration2.label;"
        onload="gSystemIntegrationDialog.onLoad();"
        ondialogaccept="return gSystemIntegrationDialog.onDialogClose(true);"
        ondialogcancel="return gSystemIntegrationDialog.onDialogClose(false);"
        title="&systemIntegration.title;">

  <script type="application/javascript"
          src="chrome://messenger/content/systemIntegrationDialog.js"/>

  <label control="defaultClientList">&defaultClient.intro;</label>
  <listbox rows="3" seltype="single" id="defaultClientList">
    <listitem id="checkMail" type="checkbox" label="&email.label;" tooltiptext="&unsetDefault.tooltip;"/>
    <listitem id="checkNews" type="checkbox" label="&newsgroups.label;" tooltiptext="&unsetDefault.tooltip;"/>
    <listitem id="checkRSS"  type="checkbox" label="&feeds.label;" tooltiptext="&unsetDefault.tooltip;"/>
  </listbox>

  <checkbox id="searchIntegration"
            hidden="true"
            label="&searchIntegration.label;"
            accesskey="&searchIntegration.accesskey;"/>

  <separator class="thin"/>

  <checkbox id="checkOnStartup"
            label="&checkOnStartup.label;"
            accesskey="&checkOnStartup.accesskey;"/>

</dialog>