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