Esempio n. 1
0
 def __init__(self, url, rtc_obj, raw_data):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     self.id = self.url.split("/")[-1]
Esempio n. 2
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data=raw_data)
     # add a new attribute mainly for the un-recorded member use
     self.email = urlunquote(self.url.split("/")[-1])
Esempio n. 3
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Esempio n. 4
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Esempio n. 5
0
 def __init__(self, url, rtc_obj, raw_data=None):
     self.id = url.split("/")[-1]
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Esempio n. 6
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data=raw_data)
     # add a new attribute mainly for the un-recorded member use
     self.email = urlunquote(self.url.split("/")[-1])
Esempio n. 7
0
 def __init__(self, url, rtc_obj, raw_data=None):
     self.id = url.split("/")[-1]
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Esempio n. 8
0
 def __init__(self, url, rtc_obj, workitem_id=None, raw_data=None):
     self.identifier = workitem_id
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     if self.identifier is None:
         self.identifier = self.url.split("/")[-1]
Esempio n. 9
0
 def __init__(self, url, rtc_obj, workitem_id=None, raw_data=None):
     self.identifier = workitem_id
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     if self.identifier is None:
         self.identifier = self.url.split("/")[-1]
Esempio n. 10
0
 def __init__(self, url, rtc_obj, raw_data):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     self.id = self.url.split("/")[-1]