Lines Matching refs:self
45 def __str__(self):
46 return "Bug %s does not exist" % (Exception.__str__(self))
49 def __str__(self):
50 return "Unknown bug database: %s" % (Exception.__str__(self))
66 def __init__(self, priority = ("bugster",), forceBoo=False):
73 self.__validBugDB = ["bugster"]
74 self.__onSWAN = not forceBoo and onSWAN()
76 if database not in self.__validBugDB:
78 self.__priority = priority
81 def __boobug(self, cr):
124 def __monaco(self, crs):
205 def lookup(self, crs):
219 for database in self.__priority:
221 if self.__onSWAN:
222 results.update(self.__monaco(crs))
229 results[cr] = self.__boobug(cr)
243 def __str__(self):
244 return "Error retrieving ARC data: %s" % (Exception.__str__(self))
290 def __str__(self):
291 return "Unable to call webrti: %s" % (RtiException.__str__(self))
294 def __str__(self):
295 return "RTI status cannot be determined for CR: %s" % (RtiException.__str__(self))
298 def __str__(self):
299 return "Incorrect CR number specified: %s" % (RtiException.__str__(self))
302 def __str__(self):
303 return "RTI not found for CR: %s" % (RtiException.__str__(self))
306 def __str__(self):
307 return "More than one consolidation has this CR: %s" % (RtiException.__str__(self))
310 def __str__(self):
311 return "Incorrect gate name specified: %s" % (RtiException.__str__(self))
314 def __str__(self):
315 return "Unknown webrti return code: %s" % (RtiException.__str__(self))
318 def __str__(self):
319 return "RTI status checks need SWAN access: %s" % (RtiException.__str__(self))
344 def __init__(self, cr, gate=None, consolidation=None):
361 self.__queryCr = cr
362 self.__queryGate = gate
363 self.__queryConsolidation = consolidation
365 self.__webRtiOutput = []
366 self.__mainCR = []
367 self.__rtiNumber = []
368 self.__consolidation = []
369 self.__project = []
370 self.__status = []
371 self.__rtiType = []
445 self.__webRtiOutput.append(line)
447 self.__mainCR.append(fields[0])
448 self.__rtiNumber.append(fields[1])
449 self.__consolidation.append(fields[2])
450 self.__project.append(fields[3])
451 self.__status.append(fields[4])
452 self.__rtiType.append(fields[5])
455 def mainCR(self):
456 return self.__mainCR
457 def rtiNumber(self):
458 return self.__rtiNumber
459 def consolidation(self):
460 return self.__consolidation
461 def project(self):
462 return self.__project
463 def status(self):
464 return self.__status
465 def rtiType(self):
466 return self.__rtiType
467 def queryCr(self):
468 return self.__queryCr
469 def queryGate(self):
470 return self.__queryGate
471 def queryConsolidation(self):
472 return self.__queryConsolidation
475 def accepted(self):
476 for status in self.__status:
482 def webRtiOutput(self):
483 return self.__webRtiOutput