mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-11 01:57:00 +00:00
Adding Window|Privacy Tools|Display Site Info
This commit is contained in:
parent
54e2354df7
commit
73e9e18968
@ -2293,6 +2293,9 @@ Show security information for this page
|
|||||||
*menuBar*viewSignons.labelString: Display Signons
|
*menuBar*viewSignons.labelString: Display Signons
|
||||||
*menuBar*viewSignons.mnemonic: S
|
*menuBar*viewSignons.mnemonic: S
|
||||||
|
|
||||||
|
*menuBar*viewSiteInfo.labelString: Display Site Info
|
||||||
|
*menuBar*viewSiteInfo.mnemonic: I
|
||||||
|
|
||||||
*menuBar*viewReceipts.labelString: Display Receipts
|
*menuBar*viewReceipts.labelString: Display Receipts
|
||||||
*menuBar*viewReceipts.mnemonic: R
|
*menuBar*viewReceipts.mnemonic: R
|
||||||
|
|
||||||
|
@ -197,6 +197,7 @@ MenuSpec XFE_Frame::privacytools_submenu_spec[] = {
|
|||||||
#ifdef SingleSignon
|
#ifdef SingleSignon
|
||||||
{ xfeCmdViewSignons, PUSHBUTTON },
|
{ xfeCmdViewSignons, PUSHBUTTON },
|
||||||
#endif
|
#endif
|
||||||
|
{ xfeCmdViewSiteInfo, PUSHBUTTON },
|
||||||
#ifdef TRANSACTION_RECEIPTS
|
#ifdef TRANSACTION_RECEIPTS
|
||||||
{ xfeCmdViewReceipts, PUSHBUTTON },
|
{ xfeCmdViewReceipts, PUSHBUTTON },
|
||||||
#endif
|
#endif
|
||||||
@ -3282,6 +3283,7 @@ XFE_Frame::isCommandEnabled(CommandType cmd,
|
|||||||
#ifdef SingleSignon
|
#ifdef SingleSignon
|
||||||
(cmd == xfeCmdViewSignons) ||
|
(cmd == xfeCmdViewSignons) ||
|
||||||
#endif
|
#endif
|
||||||
|
(cmd == xfeCmdViewSiteInfo) ||
|
||||||
(cmd == xfeCmdPrivacyTutorial))
|
(cmd == xfeCmdPrivacyTutorial))
|
||||||
{
|
{
|
||||||
return TRUE;
|
return TRUE;
|
||||||
@ -3704,6 +3706,10 @@ XFE_Frame::doCommand(CommandType cmd, void *calldata, XFE_CommandInfo* info)
|
|||||||
SI_DisplaySignonInfoAsHTML(m_context);
|
SI_DisplaySignonInfoAsHTML(m_context);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
else if (cmd == xfeCmdViewSiteInfo)
|
||||||
|
{
|
||||||
|
PRVCY_SiteInfo(m_context);
|
||||||
|
}
|
||||||
else if (cmd == xfeCmdAnonymousMode)
|
else if (cmd == xfeCmdAnonymousMode)
|
||||||
{
|
{
|
||||||
PRVCY_ToggleAnonymous();
|
PRVCY_ToggleAnonymous();
|
||||||
@ -3767,6 +3773,7 @@ XFE_Frame::handlesCommand(CommandType cmd,
|
|||||||
#ifdef SingleSignon
|
#ifdef SingleSignon
|
||||||
|| cmd == xfeCmdViewSignons
|
|| cmd == xfeCmdViewSignons
|
||||||
#endif
|
#endif
|
||||||
|
|| cmd == xfeCmdViewSiteInfo
|
||||||
|| cmd == xfeCmdViewReceipts
|
|| cmd == xfeCmdViewReceipts
|
||||||
|| cmd == xfeCmdPrivacyTutorial
|
|| cmd == xfeCmdPrivacyTutorial
|
||||||
#ifdef MOZ_TASKBAR
|
#ifdef MOZ_TASKBAR
|
||||||
|
@ -527,6 +527,7 @@ xfeCmdAnonymousMode anonymousMode
|
|||||||
xfeCmdToggleReceipt toggleReceipt
|
xfeCmdToggleReceipt toggleReceipt
|
||||||
xfeCmdViewCookies viewCookies
|
xfeCmdViewCookies viewCookies
|
||||||
xfeCmdViewSignons viewSignons
|
xfeCmdViewSignons viewSignons
|
||||||
|
xfeCmdViewSiteInfo viewSiteInfo
|
||||||
xfeCmdViewReceipts viewReceipts
|
xfeCmdViewReceipts viewReceipts
|
||||||
xfeCmdPrivacyTutorial privacyTutorial
|
xfeCmdPrivacyTutorial privacyTutorial
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user