~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpfe/components/prefwindow/resources/content/pref-winhooks.xul

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?> 
 
2
<!--
 
3
   The contents of this file are subject to the Netscape Public
 
4
   License Version 1.1 (the "License"); you may not use this file
 
5
   except in compliance with the License. You may obtain a copy of
 
6
   the License at http://www.mozilla.org/NPL/
 
7
    
 
8
   Software distributed under the License is distributed on an "AS
 
9
   IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
   implied. See the License for the specific language governing
 
11
   rights and limitations under the License.
 
12
    
 
13
   The Original Code is Mozilla Communicator client code, released
 
14
   March 31, 1998.
 
15
   
 
16
   The Initial Developer of the Original Code is Netscape
 
17
   Communications Corporation. Portions created by Netscape are
 
18
   Copyright (C) 1998-1999 Netscape Communications Corporation. All
 
19
   Rights Reserved.
 
20
   
 
21
   Contributor(s): 
 
22
    Bill Law       <law@netscape.com>
 
23
    Aaron Kaluszka <ask@swva.net>
 
24
  -->
 
25
 
 
26
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
 
27
 
 
28
<!DOCTYPE page [
 
29
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
 
30
%brandDTD;
 
31
<!ENTITY % platformDTD SYSTEM "chrome://global-platform/locale/platformDialogOverlay.dtd" >
 
32
%platformDTD;
 
33
<!ENTITY % prefWinhooksDTD SYSTEM "chrome://communicator/locale/pref/pref-winhooks.dtd" >
 
34
%prefWinhooksDTD;
 
35
]>
 
36
 
 
37
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
 
38
      onload="parent.initPanel('chrome://communicator/content/pref/pref-winhooks.xul');"
 
39
      headertitle="&title.label;">
 
40
 
 
41
    <script type="application/x-javascript" src="chrome://communicator/content/pref/pref-winhooks.js"/>
 
42
 
 
43
    <!-- File types -->
 
44
    <label value="&files.text;"/>
 
45
    <listbox class="indent" style="width: 0px; height: 0px;" flex="2">
 
46
      <listitem type="checkbox" id="isHandlingHTML" label="&html.label;" accesskey="&html.accesskey;"/>
 
47
      <listitem type="checkbox" id="isHandlingJPEG" label="&jpeg.label;" accesskey="&jpeg.accesskey;"/>
 
48
      <listitem type="checkbox" id="isHandlingGIF"  label="&gif.label;" accesskey="&gif.accesskey;"/>
 
49
      <listitem type="checkbox" id="isHandlingPNG"  label="&png.label;" accesskey="&png.accesskey;"/>
 
50
      <listitem type="checkbox" id="isHandlingMNG"  label="&mng.label;" accesskey="&mng.accesskey;"/>
 
51
      <listitem type="checkbox" id="isHandlingXBM"  label="&xbm.label;" accesskey="&xbm.accesskey;"/>
 
52
      <listitem type="checkbox" id="isHandlingBMP"  label="&bmp.label;" accesskey="&bmp.accesskey;"/>
 
53
      <listitem type="checkbox" id="isHandlingICO"  label="&ico.label;" accesskey="&ico.accesskey;"/>
 
54
      <listitem type="checkbox" id="isHandlingXML"  label="&xml.label;" accesskey="&xml.accesskey;"/>
 
55
      <listitem type="checkbox" id="isHandlingXHTML" label="&xhtml.label;" accesskey="&xhtml.accesskey;"/>
 
56
      <listitem type="checkbox" id="isHandlingXUL"  label="&xul.label;" accesskey="&xul.accesskey;"/>
 
57
    </listbox>
 
58
 
 
59
    <separator/>
 
60
 
 
61
    <!-- Internet Shortcuts -->
 
62
    <label value="&shortcuts.text;"/>
 
63
    <listbox class="indent" style="width: 0px; height: 0px;" flex="2">
 
64
      <listitem type="checkbox" id="isHandlingHTTP"   label="&http.label;" accesskey="&http.accesskey;"/>
 
65
      <listitem type="checkbox" id="isHandlingHTTPS"  label="&https.label;" accesskey="&https.accesskey;"/>
 
66
      <listitem type="checkbox" id="isHandlingFTP"    label="&ftp.label;" accesskey="&ftp.accesskey;"/>
 
67
      <listitem type="checkbox" id="isHandlingCHROME" label="&chrome.label;" accesskey="&chrome.accesskey;"/>
 
68
      <listitem type="checkbox" id="isHandlingGOPHER" label="&gopher.label;" accesskey="&gopher.accesskey;"/>
 
69
    </listbox>
 
70
 
 
71
    <separator/>
 
72
 
 
73
    <!-- Misc -->
 
74
    <hbox align="center">
 
75
        <checkbox id="showDialog" label="&showDialog.label;" accesskey="&showDialog.accesskey;"/>     
 
76
    </hbox>
 
77
    <spacer flex="1"/>   
 
78
</page>
 
79