aboutsummaryrefslogtreecommitdiff
path: root/chrome/content/redirectList.xul
diff options
context:
space:
mode:
authorEinar Egilsson2008-01-01 21:40:32 +0000
committerEinar Egilsson2008-01-01 21:40:32 +0000
commit0ee5f981f3e708246674d26f8a26fc9b6d8f5fc9 (patch)
treecec3968640052197f028f4701f94ac7689f3e06a /chrome/content/redirectList.xul
parentd30ede45e7ff0624ca4a1bcc565c344a6df23ee2 (diff)
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@101 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome/content/redirectList.xul')
-rw-r--r--chrome/content/redirectList.xul51
1 files changed, 27 insertions, 24 deletions
diff --git a/chrome/content/redirectList.xul b/chrome/content/redirectList.xul
index 975497b..ed0a130 100644
--- a/chrome/content/redirectList.xul
+++ b/chrome/content/redirectList.xul
@@ -3,12 +3,12 @@
<!DOCTYPE dialog SYSTEM "chrome://redirector/locale/redirectList.dtd">
<window title="&window.title;"
orient="vertical"
- autostretch="always"
onload="RedirectList.onLoad();"
buttons="accept"
- width="600px;"
- height="400px;"
- xmlns:nc="http://home.netscape.com/NC-rdf#"
+ width="600px"
+ height="400px"
+ windowtype="redirectorSettings"
+ 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="redirlib.js"/>
@@ -16,31 +16,34 @@
<script type="application/x-javascript" src="redirectList.js"/>
<vbox>
- <listbox id="lstRedirects" style="margin-bottom:5px;" height="330px" ondblclick="RedirectList.editRedirect();" onselect="RedirectList.selectionChange();">
-
- <listhead>
- <listheader label="&colPattern.label;"/>
- <listheader label="&colExample.label;"/>
- <listheader label="&colRedirectTo.label;"/>
- <listheader label="&colOnlyIfLinkExits.label;"/>
- <listheader label="&colPatternType.label;"/>
- </listhead>
-
- <listcols>
- <listcol/>
- <listcol/>
- <listcol/>
- <listcol/>
- <listcol/>
-
- </listcols>
-
- </listbox>
+ <richlistbox id="lstRedirects" style="margin-bottom:5px; border:solid 1px grey;" height="330px" ondblclick="RedirectList.editRedirect();" onselect="RedirectList.selectionChange();">
+ <richlistitem style="border-bottom:dotted 1px grey;">
+ <grid>
+ <cols>
+ </cols>
+ <rows>
+ <row>
+ <label style="font-weight:bold;" value="&colIncludePattern.label;:" />
+ <description name="dscrIncludePattern" />
+ </row>
+ <row>
+ <label style="font-weight:bold;" value="&colExcludePattern.label;:" />
+ <description name="dscrExcludePattern" />
+ </row>
+ <row>
+ <label style="font-weight:bold;" value="&colRedirectTo.label;:" />
+ <description name="dscrRedirectTo" />
+ </row>
+ </rows>
+ </grid>
+ </richlistitem>
+ </richlistbox>
<hbox style="align:right;">
<button id="btnAdd" onclick="RedirectList.addRedirect();" label="&btnAdd.label;" disabled="false" />
<button id="btnEdit" onclick="RedirectList.editRedirect();" label="&btnEdit.label;" disabled="true" />
<button id="btnDelete" onclick="RedirectList.deleteRedirect();" label="&btnDelete.label;" disabled="true" />
<button id="btnClose" onclick="RedirectList.close();" label="&btnClose.label;"/>
+ <button id="btnHelp" onclick="Redirector.openHelp();" label="&btnHelp.label;"/>
</hbox>
</vbox>
</window>