Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/crawler.xul

Issue 8402021: Crawler frontend (Closed)
Patch Set: Created Sept. 21, 2012, 1:16 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/content/crawler.xul
===================================================================
new file mode 100644
--- /dev/null
+++ b/chrome/content/crawler.xul
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+
+<!-- This Source Code is subject to the terms of the Mozilla Public License
+ - version 2.0 (the "License"). You can obtain a copy of the License at
+ - http://mozilla.org/MPL/2.0/. -->
+
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+
+<!DOCTYPE dialog SYSTEM "chrome://abpcrawler/locale/crawler.dtd">
+
+<dialog id="abpcrawler-crawler"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ title="&dialog.title;"
+ onunload="onUnload();"
+ onclose="return onClose();"
+ ondialogaccept="return onAccept();"
+ buttons="accept,cancel"
+ buttonlabelaccept="&crawl.label;"
+ buttonaccesskeyaccept="&crawl.accesskey;"
+ buttonlabelcancel="&close.label;"
+ buttonaccesskeycancel="&close.accesskey;"
+ width="500px"
+ height="200px"
+ windowtype="abpcrawler:crawl">
+
+ <script type="application/x-javascript;version=1.7" src="crawler.js"/>
+
+ <vbox>
+ <label control="backend-url" value="Backend URL:"/>
Wladimir Palant 2012/09/21 15:36:18 Indentation issues here: you are mixing 2 spaces a
+ <textbox id="backend-url" value="https://www.adblockplus.org" flex="1"
+ persist="value"/>
+ </vbox>
+
+ <vbox>
+ <label control="parallel-tabs" value="Parallel Tabs:"/>
+ <textbox id="parallel-tabs" type="number" min="1" value="5"
+ persist="value"/>
+ </vbox>
+</dialog>

Powered by Google App Engine
This is Rietveld