Example #1
0
 def __init__(self, url, rtc_obj, raw_data):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     self.id = self.url.split("/")[-1]
Example #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])
Example #3
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Example #4
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Example #5
0
 def __init__(self, url, rtc_obj, raw_data=None):
     self.id = url.split("/")[-1]
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Example #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])
Example #7
0
 def __init__(self, url, rtc_obj, raw_data=None):
     self.id = url.split("/")[-1]
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Example #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]
Example #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]
Example #10
0
 def __init__(self, url, rtc_obj, raw_data):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     self.id = self.url.split("/")[-1]