aboutsummaryrefslogtreecommitdiff
path: root/chrome/content/redirectList.xul
diff options
context:
space:
mode:
authorEinar Egilsson2007-05-21 22:03:05 +0000
committerEinar Egilsson2007-05-21 22:03:05 +0000
commit502c24f18cdfa0f808d9383313bb4f965c7fb11f (patch)
treec9f2523995b6fc59e3bf6cc3bcc9200bbedd5e95 /chrome/content/redirectList.xul
Redirector
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@53 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome/content/redirectList.xul')
-rw-r--r--chrome/content/redirectList.xul37
1 files changed, 37 insertions, 0 deletions
diff --git a/chrome/content/redirectList.xul b/chrome/content/redirectList.xul
new file mode 100644
index 0000000..163703e
--- /dev/null
+++ b/chrome/content/redirectList.xul
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<!DOCTYPE dialog SYSTEM "chrome://redirector/locale/redirectList.dtd">
+<dialog title="&window.title;"
+ orient="vertical"
+ autostretch="always"
+ onload="RedirectList.onLoad();"
+ buttons="accept"
+ ondialogaccept="return RedirectList.onAccept();"
+ xmlns:nc="http://home.netscape.com/NC-rdf#"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+ <script type="application/x-javascript" src="common.js"/>
+ <script type="application/x-javascript" src="redirlib.js"/>
+ <script type="application/x-javascript" src="redirectList.js"/>
+
+ <dialogheader title="&header;" description="&header.description;"/>
+
+ <listbox id="foo">
+
+ <listhead>
+ <listheader label="&colPattern.label;"/>
+ <listheader label="&colRedirectTo.label;"/>
+ <listheader label="&colOnlyIfLinkExits.label;"/>
+ <listheader label="&colPatternType.label;"/>
+ </listhead>
+
+ <listcols>
+ <listcol flex="1"/>
+ <listcol flex="1"/>
+ <listcol flex="1"/>
+ <listcol flex="1"/>
+
+ </listcols>
+
+ </listbox>
+</dialog>