LEFT | RIGHT |
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 <tabbox> | 32 <tabbox> |
33 <tabs> | 33 <tabs> |
34 <tab label="&urlfixer.options.tabs.whitelistLabel;"/> | 34 <tab label="&urlfixer.options.tabs.whitelistLabel;"/> |
35 <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> | 35 <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> |
36 </tabs> | 36 </tabs> |
37 <tabpanels> | 37 <tabpanels> |
(...skipping 30 matching lines...) Expand all Loading... |
68 </listcols> | 68 </listcols> |
69 </listbox> | 69 </listbox> |
70 <hbox> | 70 <hbox> |
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" /> | 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" /> |
72 </hbox> | 72 </hbox> |
73 </tabpanel> | 73 </tabpanel> |
74 </tabpanels> | 74 </tabpanels> |
75 </tabbox> | 75 </tabbox> |
76 </groupbox> | 76 </groupbox> |
77 </dialog> | 77 </dialog> |
LEFT | RIGHT |