diff options
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hig.py')
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index d030beda22..c28fa64ad7 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
| @@ -381,22 +381,6 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | |||
| 381 | data += (key + ": " + self._get_sorted_value(self.configuration.extra_setting[key])) | 381 | data += (key + ": " + self._get_sorted_value(self.configuration.extra_setting[key])) |
| 382 | return hashlib.md5(data).hexdigest() | 382 | return hashlib.md5(data).hexdigest() |
| 383 | 383 | ||
| 384 | def details_cb(self, button, parent, protocol): | ||
| 385 | dialog = ProxyDetailsDialog(title = protocol.upper() + " Proxy Details", | ||
| 386 | user = self.configuration.proxies[protocol][1], | ||
| 387 | passwd = self.configuration.proxies[protocol][2], | ||
| 388 | parent = parent, | ||
| 389 | flags = gtk.DIALOG_MODAL | ||
| 390 | | gtk.DIALOG_DESTROY_WITH_PARENT | ||
| 391 | | gtk.DIALOG_NO_SEPARATOR) | ||
| 392 | dialog.add_button(gtk.STOCK_CLOSE, gtk.RESPONSE_OK) | ||
| 393 | response = dialog.run() | ||
| 394 | if response == gtk.RESPONSE_OK: | ||
| 395 | self.configuration.proxies[protocol][1] = dialog.user | ||
| 396 | self.configuration.proxies[protocol][2] = dialog.passwd | ||
| 397 | self.refresh_proxy_components() | ||
| 398 | dialog.destroy() | ||
| 399 | |||
| 400 | def gen_proxy_entry_widget(self, protocol, parent, need_button=True, line=0): | 384 | def gen_proxy_entry_widget(self, protocol, parent, need_button=True, line=0): |
| 401 | label = gtk.Label(protocol.upper() + " proxy") | 385 | label = gtk.Label(protocol.upper() + " proxy") |
| 402 | self.proxy_table.attach(label, 0, 1, line, line+1, xpadding=24) | 386 | self.proxy_table.attach(label, 0, 1, line, line+1, xpadding=24) |
| @@ -826,6 +810,7 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | |||
| 826 | self.nb.set_current_page(page_id) | 810 | self.nb.set_current_page(page_id) |
| 827 | 811 | ||
| 828 | def details_cb(self, button, parent, protocol): | 812 | def details_cb(self, button, parent, protocol): |
| 813 | self.save_proxy_data() | ||
| 829 | dialog = ProxyDetailsDialog(title = protocol.upper() + " Proxy Details", | 814 | dialog = ProxyDetailsDialog(title = protocol.upper() + " Proxy Details", |
| 830 | user = self.configuration.proxies[protocol][1], | 815 | user = self.configuration.proxies[protocol][1], |
| 831 | passwd = self.configuration.proxies[protocol][2], | 816 | passwd = self.configuration.proxies[protocol][2], |
