100 # ignore silently |
100 # ignore silently |
101 pass |
101 pass |
102 |
102 |
103 self.__loaded = True |
103 self.__loaded = True |
104 |
104 |
|
105 def shutdown(self): |
|
106 """ |
|
107 Public method to shut down the network manager. |
|
108 """ |
|
109 self.__saveTimer.saveIfNeccessary() |
|
110 self.__loaded = False |
|
111 self.__temporarilyIgnoredSslErrors = {} |
|
112 self.__permanentlyIgnoredSslErrors = {} |
|
113 |
105 def showSslErrorExceptionsDialog(self): |
114 def showSslErrorExceptionsDialog(self): |
106 """ |
115 """ |
107 Public method to show the SSL error exceptions dialog. |
116 Public method to show the SSL error exceptions dialog. |
108 """ |
117 """ |
109 self.__load() |
118 self.__load() |