add separate "expired cert" alert (bug 150731)

This commit is contained in:
pinkerton%netscape.com 2002-06-21 03:25:35 +00:00
Родитель 786f96e0b0
Коммит 12b326955f
30 изменённых файлов: 66 добавлений и 16 удалений

1
camino/English.lproj/alert.nib/classes.nib сгенерированный
Просмотреть файл

@ -23,6 +23,7 @@
confirmPanelButton2 = id;
confirmPanelButton3 = id;
confirmPanelText = id;
expiredCertPanel = id;
owner = id;
passwordPanel = id;
passwordPanelCheck = id;

4
camino/English.lproj/alert.nib/info.nib сгенерированный
Просмотреть файл

@ -3,10 +3,10 @@
<plist version="0.9">
<dict>
<key>IBDocumentLocation</key>
<string>44 234 356 301 0 0 1024 746 </string>
<string>285 97 356 301 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>248.0</string>
<key>IBSystem Version</key>
<string>5S60</string>
<string>5Q125</string>
</dict>
</plist>

Двоичные данные
camino/English.lproj/alert.nib/objects.nib сгенерированный

Двоичный файл не отображается.

1
camino/alert.nib/classes.nib сгенерированный
Просмотреть файл

@ -23,6 +23,7 @@
confirmPanelButton2 = id;
confirmPanelButton3 = id;
confirmPanelText = id;
expiredCertPanel = id;
owner = id;
passwordPanel = id;
passwordPanelCheck = id;

4
camino/alert.nib/info.nib сгенерированный
Просмотреть файл

@ -3,10 +3,10 @@
<plist version="0.9">
<dict>
<key>IBDocumentLocation</key>
<string>44 234 356 301 0 0 1024 746 </string>
<string>285 97 356 301 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>248.0</string>
<key>IBSystem Version</key>
<string>5S60</string>
<string>5Q125</string>
</dict>
</plist>

Двоичные данные
camino/alert.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -64,6 +64,7 @@
IBOutlet id passwordPanelText;
IBOutlet id passwordPanelInput;
IBOutlet id securityMismatchPanel;
IBOutlet id expiredCertPanel;
IBOutlet id securityUnknownPanel;
IBOutlet id usernamePanel;
IBOutlet id usernamePanelCheck;
@ -94,6 +95,7 @@
- (BOOL)promptPassword:(NSWindow*)parent title:(NSString*)title text:(NSString*)text passwordText:(NSMutableString*)passwordText checkMsg:(NSString*)checkMsg checkValue:(BOOL*)checkValue doCheck:(BOOL)doCheck;
- (BOOL)badCert:(NSWindow*)parent;
- (BOOL)expiredCert:(NSWindow*)parent;
- (int)unknownCert:(NSWindow*)parent;
@end

Просмотреть файл

@ -276,6 +276,15 @@
return (result == 1);
}
- (BOOL)expiredCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:expiredCertPanel relativeToWindow:parent];
[expiredCertPanel close];
return (result == 1);
}
- (int)unknownCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:securityUnknownPanel relativeToWindow:parent];

Просмотреть файл

@ -650,7 +650,7 @@ nsCocoaBrowserService::CertExpired(nsITransportSecurityInfo *socketInfo,
// HACK: there is no way to get which window this is for from the API. The
// security team in mozilla just cheats and assumes the frontmost window so
// that's what we'll do. Yes, it's wrong. Yes, it's skanky. Oh well.
*_retval = (PRBool)[controller badCert:[NSApp mainWindow]];
*_retval = (PRBool)[controller certExpired:[NSApp mainWindow]];
return NS_OK;
}

Просмотреть файл

@ -23,6 +23,7 @@
confirmPanelButton2 = id;
confirmPanelButton3 = id;
confirmPanelText = id;
expiredCertPanel = id;
owner = id;
passwordPanel = id;
passwordPanelCheck = id;

Просмотреть файл

@ -3,10 +3,10 @@
<plist version="0.9">
<dict>
<key>IBDocumentLocation</key>
<string>44 234 356 301 0 0 1024 746 </string>
<string>285 97 356 301 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>248.0</string>
<key>IBSystem Version</key>
<string>5S60</string>
<string>5Q125</string>
</dict>
</plist>

Двоичные данные
camino/resources/localized/English.lproj/alert.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -64,6 +64,7 @@
IBOutlet id passwordPanelText;
IBOutlet id passwordPanelInput;
IBOutlet id securityMismatchPanel;
IBOutlet id expiredCertPanel;
IBOutlet id securityUnknownPanel;
IBOutlet id usernamePanel;
IBOutlet id usernamePanelCheck;
@ -94,6 +95,7 @@
- (BOOL)promptPassword:(NSWindow*)parent title:(NSString*)title text:(NSString*)text passwordText:(NSMutableString*)passwordText checkMsg:(NSString*)checkMsg checkValue:(BOOL*)checkValue doCheck:(BOOL)doCheck;
- (BOOL)badCert:(NSWindow*)parent;
- (BOOL)expiredCert:(NSWindow*)parent;
- (int)unknownCert:(NSWindow*)parent;
@end

Просмотреть файл

@ -276,6 +276,15 @@
return (result == 1);
}
- (BOOL)expiredCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:expiredCertPanel relativeToWindow:parent];
[expiredCertPanel close];
return (result == 1);
}
- (int)unknownCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:securityUnknownPanel relativeToWindow:parent];

Просмотреть файл

@ -650,7 +650,7 @@ nsCocoaBrowserService::CertExpired(nsITransportSecurityInfo *socketInfo,
// HACK: there is no way to get which window this is for from the API. The
// security team in mozilla just cheats and assumes the frontmost window so
// that's what we'll do. Yes, it's wrong. Yes, it's skanky. Oh well.
*_retval = (PRBool)[controller badCert:[NSApp mainWindow]];
*_retval = (PRBool)[controller certExpired:[NSApp mainWindow]];
return NS_OK;
}

1
chimera/English.lproj/alert.nib/classes.nib сгенерированный
Просмотреть файл

@ -23,6 +23,7 @@
confirmPanelButton2 = id;
confirmPanelButton3 = id;
confirmPanelText = id;
expiredCertPanel = id;
owner = id;
passwordPanel = id;
passwordPanelCheck = id;

4
chimera/English.lproj/alert.nib/info.nib сгенерированный
Просмотреть файл

@ -3,10 +3,10 @@
<plist version="0.9">
<dict>
<key>IBDocumentLocation</key>
<string>44 234 356 301 0 0 1024 746 </string>
<string>285 97 356 301 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>248.0</string>
<key>IBSystem Version</key>
<string>5S60</string>
<string>5Q125</string>
</dict>
</plist>

Двоичные данные
chimera/English.lproj/alert.nib/objects.nib сгенерированный

Двоичный файл не отображается.

1
chimera/alert.nib/classes.nib сгенерированный
Просмотреть файл

@ -23,6 +23,7 @@
confirmPanelButton2 = id;
confirmPanelButton3 = id;
confirmPanelText = id;
expiredCertPanel = id;
owner = id;
passwordPanel = id;
passwordPanelCheck = id;

4
chimera/alert.nib/info.nib сгенерированный
Просмотреть файл

@ -3,10 +3,10 @@
<plist version="0.9">
<dict>
<key>IBDocumentLocation</key>
<string>44 234 356 301 0 0 1024 746 </string>
<string>285 97 356 301 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>248.0</string>
<key>IBSystem Version</key>
<string>5S60</string>
<string>5Q125</string>
</dict>
</plist>

Двоичные данные
chimera/alert.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -64,6 +64,7 @@
IBOutlet id passwordPanelText;
IBOutlet id passwordPanelInput;
IBOutlet id securityMismatchPanel;
IBOutlet id expiredCertPanel;
IBOutlet id securityUnknownPanel;
IBOutlet id usernamePanel;
IBOutlet id usernamePanelCheck;
@ -94,6 +95,7 @@
- (BOOL)promptPassword:(NSWindow*)parent title:(NSString*)title text:(NSString*)text passwordText:(NSMutableString*)passwordText checkMsg:(NSString*)checkMsg checkValue:(BOOL*)checkValue doCheck:(BOOL)doCheck;
- (BOOL)badCert:(NSWindow*)parent;
- (BOOL)expiredCert:(NSWindow*)parent;
- (int)unknownCert:(NSWindow*)parent;
@end

Просмотреть файл

@ -276,6 +276,15 @@
return (result == 1);
}
- (BOOL)expiredCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:expiredCertPanel relativeToWindow:parent];
[expiredCertPanel close];
return (result == 1);
}
- (int)unknownCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:securityUnknownPanel relativeToWindow:parent];

Просмотреть файл

@ -650,7 +650,7 @@ nsCocoaBrowserService::CertExpired(nsITransportSecurityInfo *socketInfo,
// HACK: there is no way to get which window this is for from the API. The
// security team in mozilla just cheats and assumes the frontmost window so
// that's what we'll do. Yes, it's wrong. Yes, it's skanky. Oh well.
*_retval = (PRBool)[controller badCert:[NSApp mainWindow]];
*_retval = (PRBool)[controller certExpired:[NSApp mainWindow]];
return NS_OK;
}

Просмотреть файл

@ -23,6 +23,7 @@
confirmPanelButton2 = id;
confirmPanelButton3 = id;
confirmPanelText = id;
expiredCertPanel = id;
owner = id;
passwordPanel = id;
passwordPanelCheck = id;

Просмотреть файл

@ -3,10 +3,10 @@
<plist version="0.9">
<dict>
<key>IBDocumentLocation</key>
<string>44 234 356 301 0 0 1024 746 </string>
<string>285 97 356 301 0 0 1024 746 </string>
<key>IBFramework Version</key>
<string>248.0</string>
<key>IBSystem Version</key>
<string>5S60</string>
<string>5Q125</string>
</dict>
</plist>

Двоичные данные
chimera/resources/localized/English.lproj/alert.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -64,6 +64,7 @@
IBOutlet id passwordPanelText;
IBOutlet id passwordPanelInput;
IBOutlet id securityMismatchPanel;
IBOutlet id expiredCertPanel;
IBOutlet id securityUnknownPanel;
IBOutlet id usernamePanel;
IBOutlet id usernamePanelCheck;
@ -94,6 +95,7 @@
- (BOOL)promptPassword:(NSWindow*)parent title:(NSString*)title text:(NSString*)text passwordText:(NSMutableString*)passwordText checkMsg:(NSString*)checkMsg checkValue:(BOOL*)checkValue doCheck:(BOOL)doCheck;
- (BOOL)badCert:(NSWindow*)parent;
- (BOOL)expiredCert:(NSWindow*)parent;
- (int)unknownCert:(NSWindow*)parent;
@end

Просмотреть файл

@ -276,6 +276,15 @@
return (result == 1);
}
- (BOOL)expiredCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:expiredCertPanel relativeToWindow:parent];
[expiredCertPanel close];
return (result == 1);
}
- (int)unknownCert:(NSWindow*)parent
{
int result = [NSApp runModalForWindow:securityUnknownPanel relativeToWindow:parent];

Просмотреть файл

@ -650,7 +650,7 @@ nsCocoaBrowserService::CertExpired(nsITransportSecurityInfo *socketInfo,
// HACK: there is no way to get which window this is for from the API. The
// security team in mozilla just cheats and assumes the frontmost window so
// that's what we'll do. Yes, it's wrong. Yes, it's skanky. Oh well.
*_retval = (PRBool)[controller badCert:[NSApp mainWindow]];
*_retval = (PRBool)[controller certExpired:[NSApp mainWindow]];
return NS_OK;
}