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 id="abpcrawler-crawler" |
| 12 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
| 13 title="&dialog.title;" |
| 14 onunload="onUnload();" |
| 15 onclose="return onClose();" |
| 16 ondialogaccept="return onAccept();" |
| 17 buttons="accept,cancel" |
| 18 buttonlabelaccept="&crawl.label;" |
| 19 buttonaccesskeyaccept="&crawl.accesskey;" |
| 20 buttonlabelcancel="&close.label;" |
| 21 buttonaccesskeycancel="&close.accesskey;" |
| 22 width="500px" |
| 23 height="200px" |
| 24 windowtype="abpcrawler:crawl"> |
| 25 |
| 26 <script type="application/x-javascript;version=1.7" src="crawler.js"/> |
| 27 |
| 28 <vbox> |
| 29 <label control="backend-url" value="Backend URL:"/> |
| 30 <textbox id="backend-url" value="https://www.adblockplus.org" flex="1" |
| 31 persist="value"/> |
| 32 </vbox> |
| 33 |
| 34 <vbox> |
| 35 <label control="parallel-tabs" value="Parallel Tabs:"/> |
| 36 <textbox id="parallel-tabs" type="number" min="1" value="5" |
| 37 persist="value"/> |
| 38 </vbox> |
| 39 </dialog> |
OLD | NEW |