~ubuntu-branches/ubuntu/hardy/foxyproxy/hardy-updates

« back to all changes in this revision

Viewing changes to content/tbirdOverlay.xul

  • Committer: Bazaar Package Importer
  • Author(s): Sasa Bodiroza
  • Date: 2008-04-09 13:55:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080409135500-x7u28czocbidxpmg
Tags: 2.7.2-0ubuntu1
* New upstream release. (LP: #212875)
* Improved packaging to make use of xpi.mk
* debian/control: 
  - Updated Maintainer field according to DebianMaintainerField spec
  - s/IceWeasel/Firefox/ in description
* debian/copyright: 
  - Updated copyright years
  - Updated packaging copyright
  - Added notice about xpi.mk packaging
  - Getting the source differs for this upload, added notice
* install.rdf: Bumped maxVersion to 3.0.*

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
 
<!--
3
 
  FoxyProxy
4
 
  Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
5
 
  http://foxyproxy.mozdev.org/
6
 
  eric.jung@yahoo.com
7
 
 
8
 
  This source code is released under the GPL license,
9
 
  available in the LICENSE file at the root of this installation
10
 
  and also online at http://www.gnu.org/licenses/gpl.txt
11
 
All Rights Reserved. U.S. PATENT PENDING.
12
 
-->
13
 
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
14
 
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
15
 
 
16
 
<overlay id="foxyproxy-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
17
 
 
18
 
  <script src="chrome://foxyproxy/content/overlay.js"/>
19
 
 
20
 
  <stringbundleset id="foxyproxy-strings">
21
 
    <stringbundle src="chrome://foxyproxy/locale/foxyproxy.properties"/>   
22
 
  </stringbundleset>
23
 
 
24
 
  <!-- menu -->
25
 
  <menupopup id="taskPopup">
26
 
        <menu id="foxyproxy-tools-menu-1" label="&foxyproxy.label;" insertbefore="devToolsSeparator" position="9"
27
 
      accesskey="&foxyproxy.accesskey;" class="menu-iconic foxyproxybutton-small"
28
 
      mode="patterns" persist="mode">
29
 
      <menupopup id="foxyproxy-toolsmenu-popup"
30
 
          onpopupshowing="foxyproxy.onPopupShowing(this, event);"
31
 
          onpopuphiding="foxyproxy.onPopupHiding();"/>
32
 
    </menu>
33
 
  </menupopup>
34
 
 
35
 
  <keyset id="taskKeys">
36
 
                <!-- accel is ctrl on windows, cmd on mac -->  
37
 
    <key id="key_foxyproxyfocus" keycode="VK_F2" modifiers="accel" oncommand="foxyproxy.onOptionsDialog();"/>
38
 
                <!-- <key id="key_foxyproxyfocus" keycode="VK_F2" modifiers="alt" oncommand="foxyproxy.onQuickAddDialog(event);"/> -->
39
 
  </keyset>
40
 
  
41
 
  <popup id="contentAreaContextMenu">
42
 
        <menu id="foxyproxy-context-menu-1" label="&foxyproxy.label;" 
43
 
      accesskey="&foxyproxy.accesskey;" class="menu-iconic foxyproxybutton-small"
44
 
      mode="patterns" persist="mode hidden" hidden="false"> 
45
 
      <menupopup id="foxyproxy-contextmenu-popup"
46
 
          onpopupshowing="foxyproxy.onPopupShowing(this, event);"
47
 
          onpopuphiding="foxyproxy.onPopupHiding();"/>
48
 
    </menu>
49
 
  </popup>
50
 
  
51
 
  <statusbar id="status-bar">
52
 
    <hbox>
53
 
      <popupset style="overflow: auto;">
54
 
        <tooltip id="foxyproxy-popup" style="max-height: none; max-width: none;" onclick="this.hidePopup();"/>
55
 
      </popupset>
56
 
    </hbox>
57
 
    <menupopup id="foxyproxy-statusbar-popup"
58
 
      onpopupshowing="foxyproxy.onPopupShowing(this, event);"
59
 
      onpopuphiding="foxyproxy.onPopupHiding();"/>
60
 
    <statusbarpanel 
61
 
      id="foxyproxy-status-text"
62
 
      onclick="if(event.button==0) {foxyproxy.onOptionsDialog();event.stopPropagation();} else document.getElementById('foxyproxy-statusbar-popup').showPopup(this, -1, -1, 'popup', 'bottomleft', 'topleft');"
63
 
      mode="patterns" persist="mode hidden" hidden="true"/>
64
 
    <statusbarpanel 
65
 
      id="foxyproxy-status-icon"
66
 
      onclick="if(event.button==0) {foxyproxy.onOptionsDialog();event.stopPropagation();} else document.getElementById('foxyproxy-statusbar-popup').showPopup(this, -1, -1, 'popup', 'bottomleft', 'topleft');"
67
 
      class="statusbarpanel-menu-iconic foxyproxybutton-small"
68
 
      mode="patterns" persist="mode hidden" hidden="true"/>      
69
 
  </statusbar>
70
 
 
71
 
        <toolbarpalette id="MailToolbarPalette">   
72
 
          <toolbarbutton id="foxyproxy-button-1" type="menu" label="&foxyproxy.label;"
73
 
            accesskey="&foxyproxy.accesskey;"
74
 
            class="toolbarbutton-1 chromeclass-toolbar-additional foxyproxybutton">
75
 
              <menupopup id="foxyproxy-toolbarbutton-popup"
76
 
              onpopupshowing="foxyproxy.onPopupShowing(this, event);"
77
 
              onpopuphiding="foxyproxy.onPopupHiding();"/>  
78
 
          </toolbarbutton>
79
 
        </toolbarpalette>  
80
 
</overlay>