LEFT | RIGHT |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- This Source Code is subject to the terms of the Mozilla Public License | 3 <!-- This Source Code is subject to the terms of the Mozilla Public License |
4 - version 2.0 (the "License"). You can obtain a copy of the License at | 4 - version 2.0 (the "License"). You can obtain a copy of the License at |
5 - http://mozilla.org/MPL/2.0/. --> | 5 - http://mozilla.org/MPL/2.0/. --> |
6 | 6 |
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
8 | 8 |
9 <!DOCTYPE dialog SYSTEM "chrome://abpcrawler/locale/crawler.dtd"> | 9 <!DOCTYPE dialog SYSTEM "chrome://abpcrawler/locale/crawler.dtd"> |
10 | 10 |
11 <dialog id="abpcrawler-crawler" | 11 <dialog |
12 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 12 id="abpcrawler-crawler" |
13 title="&dialog.title;" | 13 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
14 onunload="onUnload();" | 14 title="&dialog.title;" |
15 onclose="return onClose();" | 15 onunload="onUnload();" |
16 ondialogaccept="return onAccept();" | 16 ondialogaccept="return onAccept();" |
17 buttons="accept,cancel" | 17 ondialogcancel="return onCancel();" |
18 buttonlabelaccept="&crawl.label;" | 18 buttons="accept,cancel" |
19 buttonaccesskeyaccept="&crawl.accesskey;" | 19 buttonlabelaccept="&crawl.label;" |
20 buttonlabelcancel="&close.label;" | 20 buttonaccesskeyaccept="&crawl.accesskey;" |
21 buttonaccesskeycancel="&close.accesskey;" | 21 buttonlabelcancel="&close.label;" |
22 width="500px" | 22 buttonaccesskeycancel="&close.accesskey;" |
23 height="200px" | 23 width="500px" |
24 windowtype="abpcrawler:crawl"> | 24 height="200px" |
| 25 windowtype="abpcrawler:crawl"> |
25 | 26 |
26 <script type="application/x-javascript;version=1.7" src="crawler.js"/> | 27 <script type="application/x-javascript;version=1.7" src="crawler.js"/> |
27 | 28 |
28 <vbox> | 29 <vbox> |
29 <label control="backend-url" value="Backend URL:"/> | 30 <label control="backend-url" value="Backend URL:"/> |
30 <textbox id="backend-url" value="https://www.adblockplus.org" flex="1" | 31 <textbox |
31 persist="value"/> | 32 id="backend-url" value="https://www.adblockplus.org" flex="1" |
| 33 persist="value"/> |
32 </vbox> | 34 </vbox> |
33 | 35 |
34 <vbox> | 36 <vbox> |
35 <label control="parallel-tabs" value="Parallel Tabs:"/> | 37 <label control="parallel-tabs" value="Parallel Tabs:"/> |
36 <textbox id="parallel-tabs" type="number" min="1" value="5" | 38 <textbox |
37 persist="value"/> | 39 id="parallel-tabs" type="number" min="1" value="5" |
| 40 persist="value"/> |
38 </vbox> | 41 </vbox> |
39 </dialog> | 42 </dialog> |
LEFT | RIGHT |