 Issue 29366643:
  Issue 4682 - Remove typo collection functionality from URL Fixer  (Closed) 
  Base URL: https://hg.adblockplus.org/urlfixer
    
  
    Issue 29366643:
  Issue 4682 - Remove typo collection functionality from URL Fixer  (Closed) 
  Base URL: https://hg.adblockplus.org/urlfixer| Index: chrome/content/options.xul | 
| =================================================================== | 
| --- a/chrome/content/options.xul | 
| +++ b/chrome/content/options.xul | 
| @@ -19,25 +19,21 @@ | 
| <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 
| <?xml-stylesheet href="chrome://url-fixer/skin/options.css" type="text/css"?> | 
| <!DOCTYPE prefwindow SYSTEM "chrome://url-fixer/locale/options.dtd"> | 
| <dialog | 
| xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 
| title="&urlfixer.options.title;" | 
| buttons="accept" | 
| - onload="initCheckboxes();updateList();" | 
| + onload="updateList();" | 
| 
Wladimir Palant
2016/12/01 13:54:37
Missed that - initCheckboxes() was being called of
 | 
| windowtype="urlfixer:options"> | 
| <script type="text/javascript" src="common.js"/> | 
| <script type="text/javascript" src="options.js"/> | 
| <groupbox> | 
| - <checkbox id="domainOptIn" label="&urlfixer.options.optIn;" oncommand="Prefs.domainOptIn = this.checked;"/> | 
| 
Thomas Greiner
2016/12/07 15:43:34
What about chrome/locale/*/typedItOptIn.dtd?
 
Wladimir Palant
2016/12/08 12:48:14
Done.
 | 
| - <label class="text-link" href="http://urlfixer.org/data/">&urlfixer.options.optIn.learnMore;</label> | 
| - </groupbox> | 
| - <groupbox> | 
| <tabbox> | 
| <tabs> | 
| <tab label="&urlfixer.options.tabs.whitelistLabel;"/> | 
| <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> | 
| </tabs> | 
| <tabpanels> | 
| <tabpanel orient="vertical"> | 
| <listbox id="whitelist" flex="1" seltype="multiple" onselect="onItemSelected(this);" _removeButton="whitelist_remove-button" _emptyLabel="&urlfixer.options.whitelistEmptyLabel;"> |