예제 #1
0
파일: airport.py 프로젝트: Turbo87/skylines
 def __repr__(self):
     return unicode_to_str('<Airport: id=%s name=\'%s\'>' % (self.id, self.name))
예제 #2
0
 def __repr__(self):
     return unicode_to_str(
         "<GroupflightComment: id=%d user_id=%d groupflight_id=%d>"
         % (self.id, self.user_id, self.groupflight_id)
     )
예제 #3
0
파일: event.py 프로젝트: Turbo87/skylines
 def __repr__(self):
     return unicode_to_str('<Event: id={} type={}>'.format(self.id, self.type))
예제 #4
0
파일: user.py 프로젝트: yataOrg/skylines
 def __repr__(self):
     return unicode_to_str("<User: email=%s, display=%s>" %
                           (self.email_address, self.name))
예제 #5
0
 def __repr__(self):
     return unicode_to_str('<TrackingSession: id={}>'.format(self.id))
예제 #6
0
파일: user.py 프로젝트: Turbo87/skylines
 def __repr__(self):
     return unicode_to_str(
         '<User: email=%s, display=%s>' % (self.email_address, self.name)
     )
예제 #7
0
 def __repr__(self):
     return unicode_to_str('<MountainWaveProject: id=%d name=\'%s\'>' % (self.id, self.name))
예제 #8
0
 def __repr__(self):
     return unicode_to_str(
         "<IGCFile: id=%d filename='%s'>" % (self.id, self.filename)
     )
예제 #9
0
 def __repr__(self):
     return unicode_to_str('<TimeZone: tzid=\'%s\'>' % (self.tzid))
예제 #10
0
 def __repr__(self):
     return unicode_to_str(
         "<TrackingFix: id={} time='{}'>".format(self.id, self.time)
     )
예제 #11
0
 def __repr__(self):
     return unicode_to_str("<Airport: id=%s name='%s'>" % (self.id, self.name))
예제 #12
0
 def __repr__(self):
     return unicode_to_str("<TrackingSession: id={}>".format(self.id))
예제 #13
0
 def __repr__(self):
     return unicode_to_str('<AircraftModel: id=%d name=\'%s\' kind=\'%s\'>' % (self.id, self.name, self.kind))
예제 #14
0
 def __repr__(self):
     return unicode_to_str(
         "<Flight: id=%s, modified=%s>" % (self.id, self.time_modified)
     )
예제 #15
0
 def __repr__(self):
     return unicode_to_str(
         "<AircraftModel: id=%d name='%s' kind='%s'>"
         % (self.id, self.name, self.kind)
     )
예제 #16
0
 def __repr__(self):
     return unicode_to_str("<Club: id=%d name='%s'>" % (self.id, self.name))
예제 #17
0
파일: club.py 프로젝트: Turbo87/skylines
 def __repr__(self):
     return unicode_to_str('<Club: id=%d name=\'%s\'>' % (self.id, self.name))
예제 #18
0
 def __repr__(self):
     return unicode_to_str("<TimeZone: tzid='%s'>" % (self.tzid))
예제 #19
0
 def __repr__(self):
     return unicode_to_str("<AircraftModel: id=%d name='%s' kind='%s'>" %
                           (self.id, self.name, self.kind))
 def __repr__(self):
     return unicode_to_str(
         "<MountainWaveProject: id=%d name='%s'>" % (self.id, self.name)
     )
예제 #21
0
 def __repr__(self):
     return unicode_to_str("<Notification: id={}>".format(self.id))
예제 #22
0
 def __repr__(self):
     return unicode_to_str("<MountainWaveProject: id=%d name='%s'>" %
                           (self.id, self.name))
예제 #23
0
 def __repr__(self):
     return unicode_to_str('<FlightComment: id=%d user_id=%d flight_id=%d>' % (self.id, self.user_id, self.flight_id))
예제 #24
0
파일: event.py 프로젝트: yataOrg/skylines
 def __repr__(self):
     return unicode_to_str("<Event: id={} type={}>".format(
         self.id, self.type))
예제 #25
0
 def __repr__(self):
     return unicode_to_str('<TrackingFix: id={} time=\'{}\'>'.format(self.id, self.time))
예제 #26
0
 def __repr__(self):
     return unicode_to_str("<Notification: id={}>".format(self.id))
예제 #27
0
 def __repr__(self):
     return unicode_to_str("<Airspace: id=%d name='%s'>" %
                           (self.id, self.name))
예제 #28
0
파일: airport.py 프로젝트: yataOrg/skylines
 def __repr__(self):
     return unicode_to_str("<Airport: id=%s name='%s'>" %
                           (self.id, self.name))
예제 #29
0
파일: igcfile.py 프로젝트: xxqhh/skylines
 def __repr__(self):
     return unicode_to_str("<IGCFile: id=%d filename='%s'>" %
                           (self.id, self.filename))
예제 #30
0
 def __repr__(self):
     return unicode_to_str(
         "<Flight: id=%s, modified=%s>" % (self.id, self.time_modified)
     )
예제 #31
0
 def __repr__(self):
     return unicode_to_str("<TimeZone: tzid='%s'>" % (self.tzid))
예제 #32
0
파일: igcfile.py 프로젝트: Turbo87/skylines
 def __repr__(self):
     return unicode_to_str('<IGCFile: id=%d filename=\'%s\'>' % (self.id, self.filename))