333 Public slot to show some SSL information for the loaded page. |
333 Public slot to show some SSL information for the loaded page. |
334 """ |
334 """ |
335 if self.__sslInfo is not None and self.__sslInfo.isValid(): |
335 if self.__sslInfo is not None and self.__sslInfo.isValid(): |
336 dlg = SslInfoDialog(self.__sslInfo, self.view()) |
336 dlg = SslInfoDialog(self.__sslInfo, self.view()) |
337 dlg.exec_() |
337 dlg.exec_() |
|
338 else: |
|
339 E5MessageBox.warning(self.view(), |
|
340 self.trUtf8("SSL Certificate Info"), |
|
341 self.trUtf8("""There is no SSL Certificate Info available.""")) |
338 |
342 |
339 ########################################################################################## |
343 ########################################################################################## |
340 |
344 |
341 class HelpBrowser(QWebView): |
345 class HelpBrowser(QWebView): |
342 """ |
346 """ |