Exemplo 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]
Exemplo 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])
Exemplo n.º 3
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Exemplo n.º 4
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
Exemplo 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)
Exemplo 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])
Exemplo 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)
Exemplo 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]
Exemplo 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]
Exemplo 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]