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

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

Issue 29338626: Issue 3835 - Update dependency on adblockpluscore to revision 2d4888611240 (Closed)
Patch Set: Fixed updateRequired replacement Created March 19, 2016, 6:57 p.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 | « chrome/content/ui/filters.js ('k') | chrome/content/ui/filters-backup.js » ('j') | 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-2016 Eyeo GmbH 5 - Copyright (C) 2006-2016 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 oncontextmenu="SubscriptionActions.openMenu(event, this);"> 180 oncontextmenu="SubscriptionActions.openMenu(event, this);">
181 <vbox class="{subscription.disabled ? 'disabled' : ''}"> 181 <vbox class="{subscription.disabled ? 'disabled' : ''}">
182 <hbox align="center"> 182 <hbox align="center">
183 <checkbox label="&subscription.enabled.label;" class="enabledCheck box tabable" tabindex="-1" 183 <checkbox label="&subscription.enabled.label;" class="enabledCheck box tabable" tabindex="-1"
184 checked="{subscription.disabled ? 'false' : 'true'}" oncommand=" SubscriptionActions.setDisabled(this, !this.checked);"/> 184 checked="{subscription.disabled ? 'false' : 'true'}" oncommand=" SubscriptionActions.setDisabled(this, !this.checked);"/>
185 185
186 <vbox flex="1"> 186 <vbox flex="1">
187 <hbox align="center"> 187 <hbox align="center">
188 <deck class="titleBox" flex="1" selectedIndex="0" onselect="ev ent.stopPropagation();"> 188 <deck class="titleBox" flex="1" selectedIndex="0" onselect="ev ent.stopPropagation();">
189 <description ondblclick="if (event.button == 0) TitleEditor. start(this, true);"> 189 <description ondblclick="if (event.button == 0) TitleEditor. start(this, true);">
190 <description class="title" value="{subscription.title}" fl ex="1" crop="end"/> 190 <description class="title" value="{getSubscriptionTitle(su bscription)}" flex="1" crop="end"/>
191 (<if condition="{isExternal}"> 191 (<if condition="{isExternal}">
192 <description value="&subscription.external.label;"/> 192 <description value="&subscription.external.label;"/>
193 <else/> 193 <else/>
194 <if condition="{subscription.homepage}"> 194 <if condition="{subscription.homepage}">
195 <description class="link" value="&subscription.homepag e.label;" 195 <description class="link" value="&subscription.homepag e.label;"
196 _url="{subscription.homepage}" tooltiptext="{subscri ption.homepage}" 196 _url="{subscription.homepage}" tooltiptext="{subscri ption.homepage}"
197 onclick="if (event.button == 0) { event.stopPropagat ion();UI.loadInBrowser(this.getAttribute('_url')); }"/>,&#160; 197 onclick="if (event.button == 0) { event.stopPropagat ion();UI.loadInBrowser(this.getAttribute('_url')); }"/>,&#160;
198 </if> 198 </if>
199 <description class="link" value="&subscription.source.la bel;" 199 <description class="link" value="&subscription.source.la bel;"
200 _url="{subscription.url}" tooltiptext="{subscription.u rl}" 200 _url="{subscription.url}" tooltiptext="{subscription.u rl}"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 <menuitem label="&subscription.update.label;" key="subscriptio n-update-key" command="subscription-update-command"/> 239 <menuitem label="&subscription.update.label;" key="subscriptio n-update-key" command="subscription-update-command"/>
240 <menuitem label="&subscription.showHideFilters.label;" key="su bscription-showHideFilters-key" command="subscription-showHideFilters-command"/> 240 <menuitem label="&subscription.showHideFilters.label;" key="su bscription-showHideFilters-key" command="subscription-showHideFilters-command"/>
241 <menuitem label="&subscription.delete.label;…" key="delete-key " command="subscription-delete-command"/> 241 <menuitem label="&subscription.delete.label;…" key="delete-key " command="subscription-delete-command"/>
242 <menuseparator/> 242 <menuseparator/>
243 <menuitem label="&subscription.moveUp.label;" key="moveUp-key" command="subscription-moveUp-command"/> 243 <menuitem label="&subscription.moveUp.label;" key="moveUp-key" command="subscription-moveUp-command"/>
244 <menuitem label="&subscription.moveDown.label;" key="moveDown- key" command="subscription-moveDown-command"/> 244 <menuitem label="&subscription.moveDown.label;" key="moveDown- key" command="subscription-moveDown-command"/>
245 </menupopup> 245 </menupopup>
246 </button> 246 </button>
247 </hbox> 247 </hbox>
248 248
249 <description class="warning" hidden="{!subscription.upgradeRequired} ">&subscription.minVersion.warning;</description> 249 <description class="warning" hidden="{!upgradeRequired}">&subscripti on.minVersion.warning;</description>
250 <description class="warning" hidden="{!disabledFilters}"> 250 <description class="warning" hidden="{!disabledFilters}">
251 &subscription.disabledFilters.warning; 251 &subscription.disabledFilters.warning;
252 <description class="link" value="&subscription.disabledFilters.ena ble;" onclick="SubscriptionActions.enableFilters(this);"/> 252 <description class="link" value="&subscription.disabledFilters.ena ble;" onclick="SubscriptionActions.enableFilters(this);"/>
253 </description> 253 </description>
254 </vbox> 254 </vbox>
255 </richlistitem> 255 </richlistitem>
256 256
257 <deck id="noSubscriptionsDeck" flex="1"> 257 <deck id="noSubscriptionsDeck" flex="1">
258 <description flex="1">&noSubscriptions.text;</description> 258 <description flex="1">&noSubscriptions.text;</description>
259 <richlistbox id="subscriptions" class="initialFocus" flex="1" 259 <richlistbox id="subscriptions" class="initialFocus" flex="1"
(...skipping 20 matching lines...) Expand all
280 ondragstart="SubscriptionActions.startDrag(event, this);" 280 ondragstart="SubscriptionActions.startDrag(event, this);"
281 ondragend="SubscriptionActions.endDrag();" 281 ondragend="SubscriptionActions.endDrag();"
282 ondragover="SubscriptionActions.dragOver(event);" 282 ondragover="SubscriptionActions.dragOver(event);"
283 ondrop="SubscriptionActions.drop(event, this);" 283 ondrop="SubscriptionActions.drop(event, this);"
284 oncontextmenu="SubscriptionActions.openMenu(event, this);"> 284 oncontextmenu="SubscriptionActions.openMenu(event, this);">
285 <hbox class="{subscription.disabled ? 'disabled' : ''}" align="center" > 285 <hbox class="{subscription.disabled ? 'disabled' : ''}" align="center" >
286 <checkbox label="&subscription.enabled.label;" class="enabledCheckbo x tabable" tabindex="-1" 286 <checkbox label="&subscription.enabled.label;" class="enabledCheckbo x tabable" tabindex="-1"
287 checked="{subscription.disabled ? 'false' : 'true'}" oncommand="Su bscriptionActions.setDisabled(this, !this.checked);"/> 287 checked="{subscription.disabled ? 'false' : 'true'}" oncommand="Su bscriptionActions.setDisabled(this, !this.checked);"/>
288 <hbox align="center" flex="1"> 288 <hbox align="center" flex="1">
289 <deck class="titleBox" flex="1" selectedIndex="0" onselect="event. stopPropagation();"> 289 <deck class="titleBox" flex="1" selectedIndex="0" onselect="event. stopPropagation();">
290 <description class="title" value="{subscription.title}" crop="en d" ondblclick="if (event.button == 0) TitleEditor.start(this, true);"/> 290 <description class="title" value="{getSubscriptionTitle(subscrip tion)}" crop="end" ondblclick="if (event.button == 0) TitleEditor.start(this, tr ue);"/>
291 <textbox oncontextmenu="event.stopPropagation();" class="titleEd itor" onkeypress="TitleEditor.keyPress(event);" onblur="TitleEditor.end(true);"/ > 291 <textbox oncontextmenu="event.stopPropagation();" class="titleEd itor" onkeypress="TitleEditor.keyPress(event);" onblur="TitleEditor.end(true);"/ >
292 </deck> 292 </deck>
293 </hbox> 293 </hbox>
294 <button class="actionButton tabable" type="menu" label="&subscriptio n.actions.label;" tabindex="-1"> 294 <button class="actionButton tabable" type="menu" label="&subscriptio n.actions.label;" tabindex="-1">
295 <menupopup class="actionMenu"> 295 <menupopup class="actionMenu">
296 <menuitem label="&subscription.editTitle.label;" key="edit-key" command="subscription-editTitle-command"/> 296 <menuitem label="&subscription.editTitle.label;" key="edit-key" command="subscription-editTitle-command"/>
297 <menuitem label="&subscription.showHideFilters.label;" key="subs cription-showHideFilters-key" command="subscription-showHideFilters-command"/> 297 <menuitem label="&subscription.showHideFilters.label;" key="subs cription-showHideFilters-key" command="subscription-showHideFilters-command"/>
298 <menuitem label="&subscription.delete.label;…" key="delete-key" command="subscription-delete-command"/> 298 <menuitem label="&subscription.delete.label;…" key="delete-key" command="subscription-delete-command"/>
299 <menuseparator/> 299 <menuseparator/>
300 <menuitem label="&subscription.moveUp.label;" key="moveUp-key" c ommand="subscription-moveUp-command"/> 300 <menuitem label="&subscription.moveUp.label;" key="moveUp-key" c ommand="subscription-moveUp-command"/>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 <menuitem id="restoreOwnBackup" key="restore-key" label="&restore.own.labe l;…" oncommand="Backup.restoreFromFile();"/> 391 <menuitem id="restoreOwnBackup" key="restore-key" label="&restore.own.labe l;…" oncommand="Backup.restoreFromFile();"/>
392 </menupopup> 392 </menupopup>
393 </button> 393 </button>
394 394
395 <spacer flex="1"/> 395 <spacer flex="1"/>
396 396
397 <button id="close" dlgtype="accept" label="&close.label;"/> 397 <button id="close" dlgtype="accept" label="&close.label;"/>
398 </hbox> 398 </hbox>
399 399
400 </dialog> 400 </dialog>
OLDNEW
« no previous file with comments | « chrome/content/ui/filters.js ('k') | chrome/content/ui/filters-backup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld