コード例 #1
0
ファイル: project_area.py プロジェクト: zhujh-dc/rtcclient
 def __init__(self, url, rtc_obj, raw_data):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     self.id = self.url.split("/")[-1]
コード例 #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])
コード例 #3
0
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
コード例 #4
0
ファイル: models.py プロジェクト: branecu79/rtcclient
 def __init__(self, url, rtc_obj, raw_data=None):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
コード例 #5
0
 def __init__(self, url, rtc_obj, raw_data=None):
     self.id = url.split("/")[-1]
     FieldBase.__init__(self, url, rtc_obj, raw_data)
コード例 #6
0
ファイル: models.py プロジェクト: branecu79/rtcclient
 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])
コード例 #7
0
ファイル: models.py プロジェクト: branecu79/rtcclient
 def __init__(self, url, rtc_obj, raw_data=None):
     self.id = url.split("/")[-1]
     FieldBase.__init__(self, url, rtc_obj, raw_data)
コード例 #8
0
ファイル: workitem.py プロジェクト: branecu79/rtcclient
 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]
コード例 #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]
コード例 #10
0
ファイル: project_area.py プロジェクト: branecu79/rtcclient
 def __init__(self, url, rtc_obj, raw_data):
     FieldBase.__init__(self, url, rtc_obj, raw_data)
     self.id = self.url.split("/")[-1]