WebKit Bugzilla
Attachment 361721 Details for
Bug 194518
: [ews-app] Add method to fetch patch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
ews-app-get-patch.patch (text/plain), 1.30 KB, created by
Aakash Jain
on 2019-02-11 15:38:47 PST
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-02-11 15:38:47 PST
Size:
1.30 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 241282) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,13 @@ >+2019-02-11 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-app] Add method to fetch patch >+ https://bugs.webkit.org/show_bug.cgi?id=194518 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-app/ews/models/patch.py: >+ (Patch.get_patch): >+ > 2019-02-11 Daniel Bates <dabates@apple.com> > > [iOS] Mouse/Touch/Pointer events are missing modifier keys >Index: Tools/BuildSlaveSupport/ews-app/ews/models/patch.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-app/ews/models/patch.py (revision 241282) >+++ Tools/BuildSlaveSupport/ews-app/ews/models/patch.py (working copy) >@@ -75,6 +75,13 @@ class Patch(models.Model): > return Patch.is_existing_patch_id(patch_id) and Patch.objects.get(pk=patch_id).sent_to_buildbot > > @classmethod >+ def get_patch(cls, patch_id): >+ try: >+ return Patch.objects.get(patch_id=patch_id) >+ except: >+ return None >+ >+ @classmethod > def set_sent_to_buildbot(cls, patch_id): > if not Patch.is_existing_patch_id(patch_id): > return ERR_NON_EXISTING_PATCH
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 194518
: 361721