282 Private slot to edit the referer whitelist. |
282 Private slot to edit the referer whitelist. |
283 """ |
283 """ |
284 from Helpviewer.Network.SendRefererWhitelistDialog import \ |
284 from Helpviewer.Network.SendRefererWhitelistDialog import \ |
285 SendRefererWhitelistDialog |
285 SendRefererWhitelistDialog |
286 SendRefererWhitelistDialog(self).exec_() |
286 SendRefererWhitelistDialog(self).exec_() |
|
287 |
|
288 @pyqtSlot() |
|
289 def on_noCacheHostsButton_clicked(self): |
|
290 """ |
|
291 Private slot to edit the list of hosts exempted from caching. |
|
292 """ |
|
293 from Helpviewer.Network.NoCacheHostsDialog import \ |
|
294 NoCacheHostsDialog |
|
295 NoCacheHostsDialog(self).exec_() |
287 |
296 |
288 |
297 |
289 def create(dlg): |
298 def create(dlg): |
290 """ |
299 """ |
291 Module function to create the configuration page. |
300 Module function to create the configuration page. |