1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/passwordmgr/content/passwordManagerExceptions.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,49 @@ 1.4 +<?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil -*- --> 1.5 + 1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.7 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.9 + 1.10 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 1.11 + 1.12 +<!DOCTYPE dialog SYSTEM "chrome://passwordmgr/locale/passwordManager.dtd" > 1.13 + 1.14 +<prefwindow id="SignonViewerExceptionDialog" 1.15 + windowtype="Toolkit:PasswordManagerExceptions" 1.16 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.17 + buttons="accept" 1.18 + buttonlabelaccept="&closebutton.label;" 1.19 + onload="Startup(); RejectsStartup();" 1.20 + onunload="Shutdown();" 1.21 + title="&savedPasswordsExceptions.title;" 1.22 + persist="width height screenX screenY"> 1.23 + 1.24 + <prefpane id="SignonViewerDialogPane" flex="1"> 1.25 + <script type="application/javascript" src="chrome://passwordmgr/content/passwordManagerCommon.js"/> 1.26 + <script type="application/javascript" src="chrome://passwordmgr/content/passwordManagerExceptions.js"/> 1.27 + 1.28 + <vbox id="rejectedsites" flex="1"> 1.29 + <description control="rejectsTree">&loginsSpielExceptions.label;</description> 1.30 + <separator class="thin"/> 1.31 + <tree id="rejectsTree" flex="1" style="height: 10em;" hidecolumnpicker="true" 1.32 + onkeypress="HandleRejectKeyPress(event)" 1.33 + onselect="RejectSelected();"> 1.34 + <treecols> 1.35 + <treecol id="rejectCol" label="&treehead.site.label;" flex="5" 1.36 + onclick="RejectColumnSort('host');" sortDirection="ascending"/> 1.37 + </treecols> 1.38 + <treechildren/> 1.39 + </tree> 1.40 + <separator class="thin"/> 1.41 + <hbox> 1.42 + <button id="removeReject" disabled="true" icon="remove" 1.43 + accesskey="&remove.accesskey;" 1.44 + label="&remove.label;" oncommand="DeleteReject();"/> 1.45 + <button id="removeAllRejects" 1.46 + accesskey="&removeall.accesskey;" 1.47 + icon="clear" label="&removeall.label;" 1.48 + oncommand="DeleteAllRejects();"/> 1.49 + </hbox> 1.50 + </vbox> 1.51 + </prefpane> 1.52 +</prefwindow>