Searched refs:safe_attr (Results 1 – 1 of 1) sorted by relevance
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
D | web_services.py | 235 id = self.safe_attr(jcontact, 'i') 247 if (self.safe_attr(jcontact, 'd') == True): 253 contact.firstname = self.safe_attr(jcontact, 'f') 254 contact.lastname = self.safe_attr(jcontact, 'l') 255 contact.phone_home = self.safe_attr(jcontact, 'h') 256 contact.phone_office = self.safe_attr(jcontact, 'o') 257 contact.phone_mobile = self.safe_attr(jcontact, 'm') 258 contact.email = self.safe_attr(jcontact, 'e') 259 contact.deleted = (self.safe_attr(jcontact, 'd') == 'true') 272 client_id = self.safe_attr(jcontact, 'c') [all …]
|