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