Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: chrome/content/ui/sidebar.xul

Issue 29331911: Issue 3370 - Blockable items: Fix broken Disable filter context menu item (Closed)
Patch Set: Created Dec. 4, 2015, 11:23 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 <vbox id="tooltipFilterSource"/> 81 <vbox id="tooltipFilterSource"/>
82 </row> 82 </row>
83 </rows> 83 </rows>
84 </grid> 84 </grid>
85 </tooltip> 85 </tooltip>
86 86
87 <menupopup id="context" onpopupshowing="return fillInContext(event)"> 87 <menupopup id="context" onpopupshowing="return fillInContext(event)">
88 <menuitem id="contextBlock" label="&context.block.label;…" oncommand="doBl ock()" key="block-key"/> 88 <menuitem id="contextBlock" label="&context.block.label;…" oncommand="doBl ock()" key="block-key"/>
89 <menuitem id="contextWhitelist" label="&context.whitelist.label;…" oncomma nd="doBlock()" key="block-key"/> 89 <menuitem id="contextWhitelist" label="&context.whitelist.label;…" oncomma nd="doBlock()" key="block-key"/>
90 <menuitem id="contextEditFilter" label="&context.editfilter.label;…" oncom mand="editFilter()"/> 90 <menuitem id="contextEditFilter" label="&context.editfilter.label;…" oncom mand="editFilter()"/>
91 <menuitem id="contextDisableFilter" labeltempl="&context.disablefilter.lab el;" oncommand="enableFilter(treeView.getSelectedItem().filter, false)"/> 91 <menuitem id="contextDisableFilter" labeltempl="&context.disablefilter.lab el;" oncommand="enableFilter(getFilter(treeView.getSelectedItem()), false)"/>
92 <menuitem id="contextEnableFilter" labeltempl="&context.enablefilter.label ;" oncommand="enableFilter(treeView.getSelectedItem().filter, true)"/> 92 <menuitem id="contextEnableFilter" labeltempl="&context.enablefilter.label ;" oncommand="enableFilter(getFilter(treeView.getSelectedItem()), true)"/>
93 <menuitem id="contextDisableOnSite" labeltempl="&context.disablefilteronsi te.label;" oncommand="disableOnSite()"/> 93 <menuitem id="contextDisableOnSite" labeltempl="&context.disablefilteronsi te.label;" oncommand="disableOnSite()"/>
94 <menuseparator id="contextOpenSep"/> 94 <menuseparator id="contextOpenSep"/>
95 <menuitem id="contextOpen" label="&context.open.label;" oncommand="openInT ab(null, event)"/> 95 <menuitem id="contextOpen" label="&context.open.label;" oncommand="openInT ab(null, event)"/>
96 <menuitem id="contextFlash" label="&context.flash.label;" oncommand="onSel ectionChange()"/> 96 <menuitem id="contextFlash" label="&context.flash.label;" oncommand="onSel ectionChange()"/>
97 <menuitem id="contextCopy" label="&context.copy.label;" command="copy-comm and" key="copy-key"/> 97 <menuitem id="contextCopy" label="&context.copy.label;" command="copy-comm and" key="copy-key"/>
98 <menuitem id="contextCopyFilter" label="&context.copyFilter.label;" oncomm and="copyFilter()"/> 98 <menuitem id="contextCopyFilter" label="&context.copyFilter.label;" oncomm and="copyFilter()"/>
99 <menuseparator id="contextSelectSep"/> 99 <menuseparator id="contextSelectSep"/>
100 <menuitem id="contextSelectAll" label="&context.selectAll.label;" command= "selectAll-command" key="selectAll-key"/> 100 <menuitem id="contextSelectAll" label="&context.selectAll.label;" command= "selectAll-command" key="selectAll-key"/>
101 </menupopup> 101 </menupopup>
102 </popupset> 102 </popupset>
(...skipping 26 matching lines...) Expand all
129 <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"/>
130 </treecols> 130 </treecols>
131 <treechildren id="treechildren" 131 <treechildren id="treechildren"
132 tooltip="tooltip" 132 tooltip="tooltip"
133 onclick="handleClick(event)" 133 onclick="handleClick(event)"
134 ondblclick="handleDblClick(event)" 134 ondblclick="handleDblClick(event)"
135 noitemslabel="&noitems.label;" 135 noitemslabel="&noitems.label;"
136 whitelistedlabel="&whitelisted.label;"/> 136 whitelistedlabel="&whitelisted.label;"/>
137 </tree> 137 </tree>
138 </page> 138 </page>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld