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

« back to all changes in this revision

Viewing changes to chrome/content/firefoxOverlay.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-2008 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
-->
 
12
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
 
13
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
 
14
 
 
15
<overlay id="foxyproxy-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 
16
 
 
17
  <script src="overlay.js"/>
 
18
  <script src="common.js"/>
 
19
 
 
20
  <stringbundleset id="foxyproxy-strings">
 
21
    <stringbundle src="chrome://foxyproxy/locale/foxyproxy.properties"/>   
 
22
  </stringbundleset>
 
23
 
 
24
  <!-- menu -->
 
25
  <menupopup id="menu_ToolsPopup">
 
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="mainKeyset">
 
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="foxyproxy.onSBTBClick(event, foxyproxy.fp.statusbar);"
 
63
      mode="patterns" persist="mode hidden" hidden="true" mousethrough="never"/> <!--  mousethrough is for SB. See http://www.songbirdnest.com/node/2547 -->
 
64
    <statusbarpanel 
 
65
      id="foxyproxy-status-icon"
 
66
      onclick="foxyproxy.onSBTBClick(event, foxyproxy.fp.statusbar);"
 
67
      class="statusbarpanel-menu-iconic foxyproxybutton-small"
 
68
      mode="patterns" persist="mode hidden" hidden="true" mousethrough="never"/>  <!--  mousethrough is for SB. See http://www.songbirdnest.com/node/2547 -->      
 
69
  </statusbar>
 
70
 
 
71
  <toolbarpalette id="BrowserToolbarPalette">
 
72
          <toolbarbutton id="foxyproxy-button-1" type="menu" mode="patterns" persist="mode" label="&foxyproxy.label;"
 
73
            class="toolbarbutton-1 chromeclass-toolbar-additional foxyproxybutton"
 
74
            onclick="foxyproxy.onSBTBClick(event, foxyproxy.fp.toolbar);event.stopPropagation();event.preventDefault();return false;">
 
75
              <menupopup id="foxyproxy-toolbarbutton-popup"
 
76
              onpopuphiding="foxyproxy.onPopupHiding();"
 
77
              onpopupshowing="event.stopPropagation();event.preventDefault();return false;"/>  <!--  todo: do i really need all 3 of these? -->
 
78
          </toolbarbutton>    
 
79
  </toolbarpalette>
 
80
  
 
81
</overlay>