| OLD | NEW | 
|---|
| 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   - | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
| 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="initCheckboxes();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  Loading... | 
| 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> | 
| OLD | NEW | 
|---|