def on_txt_description_changed(self, widget):
     """Check the service description field"""
     check_invalid_input(widget, False, True, False)
Exemple #2
0
 def on_txt_description_changed(self, widget):
     """Check the service description field"""
     check_invalid_input(widget, False, True, False)
     self.ui.txt_numeric_oid.set_text(
         snmp.snmp.translate(widget.get_text().strip()) or
         _('Unkown OID'))
 def on_txt_name_changed(self, widget):
     """Check the service name field"""
     check_invalid_input(widget, False, False, False)
Exemple #4
0
 def on_txt_community_changed(self, widget):
     """Check the community string field"""
     check_invalid_input(widget, False, True, True)
Exemple #5
0
 def on_txt_name_changed(self, widget):
     """Check the service name field"""
     check_invalid_input(widget, False, False, False)
Exemple #6
0
 def on_txt_address_changed(self, widget):
     """Check the host address field"""
     check_invalid_input(widget, False, False, False)
Exemple #7
0
 def on_txt_description_changed(self, widget):
     """Check the host description field"""
     check_invalid_input(widget, False, True, True)
Exemple #8
0
 def on_txt_community_changed(self, widget):
     """Check the community string field"""
     check_invalid_input(widget, False, True, True)
Exemple #9
0
 def on_txt_address_changed(self, widget):
     """Check the host address field"""
     check_invalid_input(widget, False, False, False)
Exemple #10
0
 def on_txt_description_changed(self, widget):
     """Check the service description field"""
     check_invalid_input(widget, False, True, False)
     self.ui.txt_numeric_oid.set_text(
         snmp.snmp.translate(widget.get_text().strip()) or _('Unkown OID'))