2007-05-14 22:55:20 -07:00
|
|
|
<?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil -*- -->
|
2012-06-25 16:11:16 -07:00
|
|
|
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2007-05-14 22:55:20 -07:00
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
|
|
|
|
<!DOCTYPE dialog SYSTEM "chrome://passwordmgr/locale/passwordManager.dtd" >
|
|
|
|
|
|
|
|
<prefwindow id="SignonViewerExceptionDialog"
|
|
|
|
windowtype="Toolkit:PasswordManagerExceptions"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
buttons="accept"
|
|
|
|
buttonlabelaccept="&closebutton.label;"
|
|
|
|
onload="Startup(); RejectsStartup();"
|
|
|
|
onunload="Shutdown();"
|
2008-03-07 16:27:27 -08:00
|
|
|
title="&savedPasswordsExceptions.title;"
|
2007-05-14 22:55:20 -07:00
|
|
|
persist="width height screenX screenY">
|
|
|
|
|
|
|
|
<prefpane id="SignonViewerDialogPane" flex="1">
|
2009-04-22 22:57:10 -07:00
|
|
|
<script type="application/javascript" src="chrome://passwordmgr/content/passwordManagerCommon.js"/>
|
|
|
|
<script type="application/javascript" src="chrome://passwordmgr/content/passwordManagerExceptions.js"/>
|
2007-05-14 22:55:20 -07:00
|
|
|
|
|
|
|
<vbox id="rejectedsites" flex="1">
|
2008-03-07 16:27:27 -08:00
|
|
|
<description control="rejectsTree">&loginsSpielExceptions.label;</description>
|
2007-05-14 22:55:20 -07:00
|
|
|
<separator class="thin"/>
|
|
|
|
<tree id="rejectsTree" flex="1" style="height: 10em;" hidecolumnpicker="true"
|
|
|
|
onkeypress="HandleRejectKeyPress(event)"
|
|
|
|
onselect="RejectSelected();">
|
|
|
|
<treecols>
|
|
|
|
<treecol id="rejectCol" label="&treehead.site.label;" flex="5"
|
2009-08-20 15:17:30 -07:00
|
|
|
onclick="RejectColumnSort('host');" sortDirection="ascending"/>
|
2007-05-14 22:55:20 -07:00
|
|
|
</treecols>
|
|
|
|
<treechildren/>
|
|
|
|
</tree>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<hbox>
|
|
|
|
<button id="removeReject" disabled="true" icon="remove"
|
|
|
|
accesskey="&remove.accesskey;"
|
|
|
|
label="&remove.label;" oncommand="DeleteReject();"/>
|
|
|
|
<button id="removeAllRejects"
|
|
|
|
accesskey="&removeall.accesskey;"
|
|
|
|
icon="clear" label="&removeall.label;"
|
|
|
|
oncommand="DeleteAllRejects();"/>
|
|
|
|
</hbox>
|
|
|
|
</vbox>
|
|
|
|
</prefpane>
|
|
|
|
</prefwindow>
|