43 """ |
43 """ |
44 super(E5SslCertificatesDialog, self).__init__(parent) |
44 super(E5SslCertificatesDialog, self).__init__(parent) |
45 self.setupUi(self) |
45 self.setupUi(self) |
46 |
46 |
47 self.serversViewButton.setIcon( |
47 self.serversViewButton.setIcon( |
48 UI.PixmapCache.getIcon("certificates.png")) |
48 UI.PixmapCache.getIcon("certificates")) |
49 self.serversDeleteButton.setIcon( |
49 self.serversDeleteButton.setIcon( |
50 UI.PixmapCache.getIcon("certificateDelete.png")) |
50 UI.PixmapCache.getIcon("certificateDelete")) |
51 self.serversExportButton.setIcon( |
51 self.serversExportButton.setIcon( |
52 UI.PixmapCache.getIcon("certificateExport.png")) |
52 UI.PixmapCache.getIcon("certificateExport")) |
53 self.serversImportButton.setIcon( |
53 self.serversImportButton.setIcon( |
54 UI.PixmapCache.getIcon("certificateImport.png")) |
54 UI.PixmapCache.getIcon("certificateImport")) |
55 |
55 |
56 self.caViewButton.setIcon( |
56 self.caViewButton.setIcon( |
57 UI.PixmapCache.getIcon("certificates.png")) |
57 UI.PixmapCache.getIcon("certificates")) |
58 self.caDeleteButton.setIcon( |
58 self.caDeleteButton.setIcon( |
59 UI.PixmapCache.getIcon("certificateDelete.png")) |
59 UI.PixmapCache.getIcon("certificateDelete")) |
60 self.caExportButton.setIcon( |
60 self.caExportButton.setIcon( |
61 UI.PixmapCache.getIcon("certificateExport.png")) |
61 UI.PixmapCache.getIcon("certificateExport")) |
62 self.caImportButton.setIcon( |
62 self.caImportButton.setIcon( |
63 UI.PixmapCache.getIcon("certificateImport.png")) |
63 UI.PixmapCache.getIcon("certificateImport")) |
64 |
64 |
65 self.__populateServerCertificatesTree() |
65 self.__populateServerCertificatesTree() |
66 self.__populateCaCertificatesTree() |
66 self.__populateCaCertificatesTree() |
67 |
67 |
68 def __populateServerCertificatesTree(self): |
68 def __populateServerCertificatesTree(self): |