diff options
author | Einar Egilsson | 2011-09-04 22:53:16 +0200 |
---|---|---|
committer | Einar Egilsson | 2011-09-04 22:53:16 +0200 |
commit | 4b612baf4f29178214edec130856d83a40bf473d (patch) | |
tree | 20e36e3fcf7a24e829640c2fd605622f14af0edc /chrome/ui/settings.xul | |
parent | 8fb65cf8aeaaf66636698310c0168929fc1a2ce0 (diff) |
Total restructuring of files and deletion of old files
Diffstat (limited to 'chrome/ui/settings.xul')
-rw-r--r-- | chrome/ui/settings.xul | 119 |
1 files changed, 0 insertions, 119 deletions
diff --git a/chrome/ui/settings.xul b/chrome/ui/settings.xul deleted file mode 100644 index 14d9de5..0000000 --- a/chrome/ui/settings.xul +++ /dev/null @@ -1,119 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- $Id$ --> -<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> -<?xml-stylesheet href="chrome://redirector/skin/redirector.css" type="text/css"?> - -<!DOCTYPE dialog SYSTEM "chrome://redirector/locale/settings.xul.dtd"> -<window title="&window.title;" - orient="vertical" - onload="Settings.onLoad();" - onunload="Settings.onUnload();" - buttons="accept" - width="650px" - height="500px" - id="redirectorSettings" - 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="../code/redirectorprefs.js"/> - <script type="application/x-javascript" src="../code/redirect.js"/> - <script type="application/x-javascript" src="../code/settings.xul.js"/> - <stringbundleset id="stringbundleset"> - <stringbundle id="redirector-strings" src="chrome://redirector/locale/redirector.properties"/> - </stringbundleset> - <tabbox flex="1" > - <tabs> - <tab label="&tabRedirects.label;" accesskey="&tabRedirects.accesskey;" /> - <tab label="&tabPreferences.label;" accesskey="&tabPreferences.accesskey;" /> - <tab label="&tabImportExport.label;" accesskey="&tabImportExport.accesskey;" /> - <tab label="&tabHelp.label;" accesskey="&tabHelp.accesskey;" /> - </tabs> - <tabpanels flex="1"> - <tabpanel flex="1"> - <vbox flex="1"> - <richlistbox seltype="single" id="lstRedirects" flex="1" onkeypress="Settings.listKeypress(event);" ondblclick="Settings.editRedirect();" onselect="Settings.selectionChange();"> - <richlistitem class="SettingsItem" selected="false"> - <grid> - <cols /> - <rows class="redirectRows"> - <row> - <label value="&colIncludePattern.label;:" /> - <description name="dscrIncludePattern" /> - </row> - <row> - <label value="&colExcludePattern.label;:" /> - <description name="dscrExcludePattern" /> - </row> - <row> - <label value="&colRedirectTo.label;:" /> - <description name="dscrRedirectTo" /> - </row> - <row> - <label value="&colEnabled.label;:" /> - <hbox><checkbox checked="false" name="chkEnabled" label="" /> <spacer flex="1"/></hbox> - </row> - </rows> - </grid> - </richlistitem> - </richlistbox> - <hbox> - <button id="btnAdd" oncommand="Settings.addRedirect();" accesskey="&btnAdd.accesskey;" label="&btnAdd.label;" tooltiptext="&btnAdd.tooltip;" disabled="false" /> - <button id="btnEdit" oncommand="Settings.editRedirect();" accesskey="&btnEdit.accesskey;" label="&btnEdit.label;" tooltiptext="&btnEdit.tooltip;" disabled="true" /> - <button id="btnDelete" oncommand="Settings.deleteRedirect();" accesskey="&btnDelete.accesskey;" label="&btnDelete.label;" tooltiptext="&btnDelete.tooltip;" disabled="true" /> - <button id="btnUp" oncommand="Settings.moveUp();" tooltiptext="&btnUp.tooltip;" disabled="true" /> - <button id="btnDown" oncommand="Settings.moveDown();" tooltiptext="&btnDown.tooltip;" disabled="true" /> - <button id="btnClose" oncommand="close();" tooltiptext="&btnClose.tooltip;" label="&btnClose.label;" accesskey="&btnClose.accesskey;" /> - </hbox> - </vbox> - </tabpanel> - <tabpanel> - <vbox flex="1"> - <groupbox> - <caption label="&grpGeneralPreferences.label;" /> - <hbox> - <checkbox id="chkEnableRedirector" label="&chkEnableRedirector.label;" oncommand="Settings.preferenceChange(event);" accesskey="&chkEnableRedirector.accesskey;" preference="enabled" /> - <spacer flex="1" /> - </hbox> - <hbox> - <checkbox id="chkShowStatusBarIcon" label="&chkShowStatusBarIcon.label;" oncommand="Settings.preferenceChange(event);" accesskey="&chkShowStatusBarIcon.accesskey;" preference="showStatusBarIcon" /> - <spacer flex="1" /> - </hbox> - <hbox> - <checkbox id="chkShowContextMenu" label="&chkShowContextMenu.label;" oncommand="Settings.preferenceChange(event);" accesskey="&chkShowContextMenu.accesskey;" preference="showContextMenu" /> - <spacer flex="1" /> - </hbox> - </groupbox> - <groupbox> - <caption label="&grpDebuggingPreferences.label;" /> - <hbox> - <checkbox id="chkEnableDebugOutput" label="&chkEnableDebugOutput.label;" oncommand="Settings.preferenceChange(event);" accesskey="&chkEnableDebugOutput.accesskey;" preference="debugEnabled" /> - <spacer flex="1" /> - </hbox> - </groupbox> - <spacer flex="1" /> - </vbox> - </tabpanel> - <tabpanel> - <groupbox flex="1" id="grpImportExport"> - <vbox> - <hbox align="middle"> - <button id="btnImport" accesskey="&btnImport.accesskey;" oncommand="Settings.import();" label="&btnImport.label;"/> - <label id="lblImport" value="&lblImport.label;" /> - <spacer flex="1" /> - </hbox> - <hbox> - <button id="btnExport" accesskey="&btnExport.accesskey;" oncommand="Settings.export();" label="&btnExport.label;"/> - <label id="lblExport" value="&lblExport.label;" /> - <spacer flex="1" /> - </hbox> - <spacer flex="1" /> - </vbox> - </groupbox> - </tabpanel> - <tabpanel> - <browser type="content" src="chrome://redirector/content/ui/help.html" flex="1" /> - </tabpanel> - </tabpanels> - </tabbox> -</window> |