3272 if dlg.exec_() == QDialog.Accepted: |
3272 if dlg.exec_() == QDialog.Accepted: |
3273 # browsing history, search history, favicons, disk cache, cookies, |
3273 # browsing history, search history, favicons, disk cache, cookies, |
3274 # passwords, web databases, downloads, Flash cookies |
3274 # passwords, web databases, downloads, Flash cookies |
3275 (history, searches, favicons, cache, cookies, |
3275 (history, searches, favicons, cache, cookies, |
3276 passwords, databases, downloads, flashCookies, zoomValues, |
3276 passwords, databases, downloads, flashCookies, zoomValues, |
3277 historyPeriod) = dlg.getData() |
3277 sslExceptions, historyPeriod) = dlg.getData() |
3278 if history: |
3278 if history: |
3279 self.historyManager().clear(historyPeriod) |
3279 self.historyManager().clear(historyPeriod) |
3280 self.__tabWidget.clearClosedTabsList() |
3280 self.__tabWidget.clearClosedTabsList() |
3281 self.webProfile().clearAllVisitedLinks() |
3281 self.webProfile().clearAllVisitedLinks() |
3282 if searches: |
3282 if searches: |
3305 ## QWebDatabase.removeDatabase(database) |
3305 ## QWebDatabase.removeDatabase(database) |
3306 if flashCookies: |
3306 if flashCookies: |
3307 self.flashCookieManager().removeAllCookies() |
3307 self.flashCookieManager().removeAllCookies() |
3308 if zoomValues: |
3308 if zoomValues: |
3309 ZoomManager.instance().clear() |
3309 ZoomManager.instance().clear() |
|
3310 if sslExceptions: |
|
3311 self.networkManager().clearSslExceptions() |
3310 |
3312 |
3311 def __showEnginesConfigurationDialog(self): |
3313 def __showEnginesConfigurationDialog(self): |
3312 """ |
3314 """ |
3313 Private slot to show the search engines configuration dialog. |
3315 Private slot to show the search engines configuration dialog. |
3314 """ |
3316 """ |