HomeSort by relevance Sort by last modified time
    Searched refs:attachment_id (Results 1 - 12 of 12) sorted by null

  /external/webkit/Tools/QueueStatusServer/model/
workitems.py 47 def display_position_for_attachment(self, attachment_id):
49 of the attachment_id in the queue. If the attachment is
51 if attachment_id in self.item_ids:
52 return self.item_ids.index(attachment_id) + 1
56 def _unguarded_add(key, attachment_id):
58 if attachment_id in work_items.item_ids:
60 work_items.item_ids.append(attachment_id)
64 def add_work_item(self, attachment_id):
65 db.run_in_transaction(self._unguarded_add, self.key(), attachment_id)
68 def _unguarded_remove(key, attachment_id)
    [all...]
attachment.py 40 def dirty(cls, attachment_id):
41 memcache.delete(str(attachment_id), namespace="attachment-summary")
50 attachment_id = status.active_patch_id
51 if not attachment_id:
53 if attachment_id in visited_ids:
55 visited_ids.add(attachment_id)
56 ids.append(attachment_id)
61 def __init__(self, attachment_id):
62 self.id = attachment_id
116 summary = { "attachment_id" : self.id
    [all...]
  /external/webkit/Tools/QueueStatusServer/handlers/
releasepatch.py 49 attachment_id = self._int_from_request("attachment_id")
50 attachment = Attachment(attachment_id)
59 queue.work_items().remove_work_item(attachment_id)
62 queue.active_work_items().expire_item(attachment_id)
patchstatus.py 35 def get(self, queue_name, attachment_id):
36 statuses = QueueStatus.all().filter('queue_name =', queue_name).filter('active_patch_id =', int(attachment_id)).order('-date').fetch(1)
patch.py 37 attachment_id = int(attachment_id_string)
38 statuses = QueueStatus.all().filter("active_patch_id =", attachment_id).order("-date")
49 "attachment_id" : attachment_id,
statusbubble.py 46 "attachment_id": attachment.id,
53 def get(self, attachment_id):
54 attachment = Attachment(int(attachment_id))
submittoews.py 62 attachment_id = self._int_from_request("attachment_id")
63 attachment = Attachment(attachment_id)
  /external/webkit/Tools/Scripts/webkitpy/common/config/
committervalidator.py 97 attachment_id,
99 comment_text = "Rejecting attachment %s from commit-queue." % attachment_id
100 self._bugzilla.set_flag_on_attachment(attachment_id,
107 attachment_id,
109 comment_text = "Rejecting attachment %s from review queue." % attachment_id
110 self._bugzilla.set_flag_on_attachment(attachment_id,
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
feeders.py 93 for attachment_id in new_ids: # Order doesn't really matter for the EWS.
94 self._tool.status_server.submit_to_ews(attachment_id)
95 self._ids_sent_to_server.add(attachment_id)
  /external/webkit/Tools/Scripts/webkitpy/common/net/
statusserver.py 115 def _post_work_item_to_ews(self, attachment_id):
119 self._browser["attachment_id"] = unicode(attachment_id)
122 def submit_to_ews(self, attachment_id):
123 _log.info("Submitting attachment %s to EWS queues" % attachment_id)
124 return NetworkTransaction().run(lambda: self._post_work_item_to_ews(attachment_id))
136 self._browser["attachment_id"] = unicode(patch.id())
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla.py 252 def attachment_url_for_id(self, attachment_id, action="view"):
253 if not attachment_id:
259 attachment_id,
359 def fetch_attachment_contents(self, attachment_id):
360 attachment_url = self.attachment_url_for_id(attachment_id)
375 def bug_id_for_attachment_id(self, attachment_id):
378 attachment_url = self.attachment_url_for_id(attachment_id, 'edit')
386 def fetch_attachment(self, attachment_id):
390 bug_id = self.bug_id_for_attachment_id(attachment_id)
395 if attachment.id() == int(attachment_id)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 307 def fetch_attachment(self, attachment_id):
311 attachment_dictionary = self.attachment_cache.get(attachment_id)
313 print "MOCK: fetch_attachment: %s is not a known attachment id" % attachment_id
317 if attachment.id() == int(attachment_id):
326 def attachment_url_for_id(self, attachment_id, action="view"):
330 return "%s/%s%s" % (self.bug_server_url, attachment_id, action_param)
333 attachment_id,
339 flag_name, flag_value, attachment_id, comment_text, additional_comment_text))

Completed in 135 milliseconds