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

Side by Side Diff: chrome/content/options.xul

Issue 29366643: Issue 4682 - Remove typo collection functionality from URL Fixer (Closed) Base URL: https://hg.adblockplus.org/urlfixer
Patch Set: Removed some leftovers Created Dec. 8, 2016, 12:47 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/options.js ('k') | chrome/content/typedItOptIn.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 the URL Fixer, 4 - This file is part of the URL Fixer,
5 - Copyright (C) 2006-2016 Eyeo GmbH 5 - Copyright (C) 2006-2016 Eyeo GmbH
6 - 6 -
7 - URL Fixer is free software: you can redistribute it and/or modify 7 - URL Fixer 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 -
11 - URL Fixer is distributed in the hope that it will be useful, 11 - URL Fixer is distributed in the hope that it will be useful,
12 - but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of
13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 - GNU General Public License for more details. 14 - GNU General Public License for more details.
15 - 15 -
16 - You should have received a copy of the GNU General Public License 16 - You should have received a copy of the GNU General Public License
17 - along with URL Fixer. If not, see <http://www.gnu.org/licenses/>. 17 - along with URL Fixer. If not, see <http://www.gnu.org/licenses/>.
18 --> 18 -->
19 19
20 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 20 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
21 <?xml-stylesheet href="chrome://url-fixer/skin/options.css" type="text/css"?> 21 <?xml-stylesheet href="chrome://url-fixer/skin/options.css" type="text/css"?>
22 <!DOCTYPE prefwindow SYSTEM "chrome://url-fixer/locale/options.dtd"> 22 <!DOCTYPE prefwindow SYSTEM "chrome://url-fixer/locale/options.dtd">
23 <dialog 23 <dialog
24 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 24 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
25 title="&urlfixer.options.title;" 25 title="&urlfixer.options.title;"
26 buttons="accept" 26 buttons="accept"
27 onload="initCheckboxes();updateList();" 27 onload="updateList();"
28 windowtype="urlfixer:options"> 28 windowtype="urlfixer:options">
29 <script type="text/javascript" src="common.js"/> 29 <script type="text/javascript" src="common.js"/>
30 <script type="text/javascript" src="options.js"/> 30 <script type="text/javascript" src="options.js"/>
31 <groupbox> 31 <groupbox>
32 <checkbox id="domainOptIn" label="&urlfixer.options.optIn;" oncommand="Prefs .domainOptIn = this.checked;"/>
33 <label class="text-link" href="http://urlfixer.org/data/">&urlfixer.options. optIn.learnMore;</label>
34 </groupbox>
35 <groupbox>
36 <tabbox> 32 <tabbox>
37 <tabs> 33 <tabs>
38 <tab label="&urlfixer.options.tabs.whitelistLabel;"/> 34 <tab label="&urlfixer.options.tabs.whitelistLabel;"/>
39 <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> 35 <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/>
40 </tabs> 36 </tabs>
41 <tabpanels> 37 <tabpanels>
42 <tabpanel orient="vertical"> 38 <tabpanel orient="vertical">
43 <listbox id="whitelist" flex="1" seltype="multiple" onselect="onItemSe lected(this);" _removeButton="whitelist_remove-button" _emptyLabel="&urlfixer.op tions.whitelistEmptyLabel;"> 39 <listbox id="whitelist" flex="1" seltype="multiple" onselect="onItemSe lected(this);" _removeButton="whitelist_remove-button" _emptyLabel="&urlfixer.op tions.whitelistEmptyLabel;">
44 <listhead> 40 <listhead>
45 <listheader label="&urlfixer.options.whitelistLabel;"/> 41 <listheader label="&urlfixer.options.whitelistLabel;"/>
(...skipping 26 matching lines...) Expand all
72 </listcols> 68 </listcols>
73 </listbox> 69 </listbox>
74 <hbox> 70 <hbox>
75 <button flex="1" label="&urlfixer.options.removeButtonLabel;" onclic k="removeRule(this,'custom_replace');" disabled="true" id="custom_corrections_re move-button" _list="custom_corrections" /> 71 <button flex="1" label="&urlfixer.options.removeButtonLabel;" onclic k="removeRule(this,'custom_replace');" disabled="true" id="custom_corrections_re move-button" _list="custom_corrections" />
76 </hbox> 72 </hbox>
77 </tabpanel> 73 </tabpanel>
78 </tabpanels> 74 </tabpanels>
79 </tabbox> 75 </tabbox>
80 </groupbox> 76 </groupbox>
81 </dialog> 77 </dialog>
OLDNEW
« no previous file with comments | « chrome/content/options.js ('k') | chrome/content/typedItOptIn.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld