OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- | 3 <!-- |
4 - This file is part of Adblock Plus <https://adblockplus.org/>, | 4 - This file is part of Adblock Plus <https://adblockplus.org/>, |
5 - Copyright (C) 2006-2015 Eyeo GmbH | 5 - Copyright (C) 2006-2015 Eyeo GmbH |
6 - | 6 - |
7 - Adblock Plus is free software: you can redistribute it and/or modify | 7 - Adblock Plus is free software: you can redistribute it and/or modify |
8 - it under the terms of the GNU General Public License version 3 as | 8 - it under the terms of the GNU General Public License version 3 as |
9 - published by the Free Software Foundation. | 9 - published by the Free Software Foundation. |
10 - | 10 - |
(...skipping 14 matching lines...) Expand all Loading... |
25 <page | 25 <page |
26 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 26 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
27 id="abp-sidebar" | 27 id="abp-sidebar" |
28 onload="init()" | 28 onload="init()" |
29 onunload="cleanUp()" | 29 onunload="cleanUp()" |
30 docDomainThirdParty="&docDomain.thirdParty;" | 30 docDomainThirdParty="&docDomain.thirdParty;" |
31 docDomainFirstParty="&docDomain.firstParty;"> | 31 docDomainFirstParty="&docDomain.firstParty;"> |
32 | 32 |
33 <script type="application/x-javascript;version=1.7" src="utils.js"/> | 33 <script type="application/x-javascript;version=1.7" src="utils.js"/> |
34 <script type="application/x-javascript;version=1.7" src="sidebar.js"/> | 34 <script type="application/x-javascript;version=1.7" src="sidebar.js"/> |
35 <script type="application/x-javascript;version=1.7" src="flasher.js"/> | |
36 | 35 |
37 <keyset id="sidebarKeys"> | 36 <keyset id="sidebarKeys"> |
38 <key id="block-key" keycode="VK_ENTER"/> | 37 <key id="block-key" keycode="VK_ENTER"/> |
39 <key id="copy-key" modifiers="accel" key="C" command="copy-command"/> | 38 <key id="copy-key" modifiers="accel" key="C" command="copy-command"/> |
40 <key id="selectAll-key" modifiers="accel" key="A" command="selectAll-command
"/> | 39 <key id="selectAll-key" modifiers="accel" key="A" command="selectAll-command
"/> |
41 </keyset> | 40 </keyset> |
42 | 41 |
43 <commandset id="sidebarCommands"> | 42 <commandset id="sidebarCommands"> |
44 <command id="copy-command" oncommand="copyToClipboard()" disabled="true"/> | 43 <command id="copy-command" oncommand="copyToClipboard()" disabled="true"/> |
45 <command id="selectAll-command" oncommand="selectAll()"/> | 44 <command id="selectAll-command" oncommand="selectAll()"/> |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 <treecol id="filterSource" label="&filterSource.label;" width="100" hidden
="true" persist="width ordinal sortDirection hidden"/> | 129 <treecol id="filterSource" label="&filterSource.label;" width="100" hidden
="true" persist="width ordinal sortDirection hidden"/> |
131 </treecols> | 130 </treecols> |
132 <treechildren id="treechildren" | 131 <treechildren id="treechildren" |
133 tooltip="tooltip" | 132 tooltip="tooltip" |
134 onclick="handleClick(event)" | 133 onclick="handleClick(event)" |
135 ondblclick="handleDblClick(event)" | 134 ondblclick="handleDblClick(event)" |
136 noitemslabel="&noitems.label;" | 135 noitemslabel="&noitems.label;" |
137 whitelistedlabel="&whitelisted.label;"/> | 136 whitelistedlabel="&whitelisted.label;"/> |
138 </tree> | 137 </tree> |
139 </page> | 138 </page> |
OLD | NEW |