Changeset 269887 in webkit


Ignore:
Timestamp:
Nov 16, 2020 5:09:46 PM (3 years ago)
Author:
lingho@apple.com
Message:

Updated contributors.json to remove inactive committers and reviewers.
Removed irc user "Adam Barth" from IRCCommand in webkitpy unittest.
https://bugs.webkit.org/show_bug.cgi?id=219006

Reviewed by Alexey Proskuryakov.

  • Scripts/webkitpy/tool/bot/irc_command_unittest.py:

(IRCCommandTest.test_whois):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r269886 r269887  
     12020-11-16  Ling Ho  <lingho@apple.com>
     2
     3        Updated contributors.json to remove inactive committers and reviewers.
     4        Removed irc user "Adam Barth" from IRCCommand in webkitpy unittest.
     5        https://bugs.webkit.org/show_bug.cgi?id=219006
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
     10        (IRCCommandTest.test_whois):
     11
    1122020-11-16  John Wilander  <wilander@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/common/config/contributors.json

    r269767 r269887  
    2323      "nicks" : [
    2424         "aaron_chu"
    25       ],
    26       "status" : "committer"
     25      ]
    2726   },
    2827   "Aaron Colwell" : {
     
    5958      "nicks" : [
    6059         "abarth"
    61       ],
    62       "status" : "reviewer"
     60      ]
    6361   },
    6462   "Adam Bergkvist" : {
     
    608606         "andy@vanwagoner.family"
    609607      ],
    610       "expertise" : "JavaScriptCore Intl APIs",
    611       "status" : "committer"
     608      "expertise" : "JavaScriptCore Intl APIs"
    612609   },
    613610   "Andy Wingo" : {
     
    714711      "nicks" : [
    715712         "tonikitoo"
    716       ],
    717       "status" : "reviewer"
     713      ]
    718714   },
    719715   "Antti Koivisto" : {
     
    904900      "nicks" : [
    905901         "benjaminp"
    906       ],
    907       "status" : "reviewer"
     902      ]
    908903   },
    909904   "Beth Dakin" : {
     
    16171612      "nicks" : [
    16181613         "deanj"
    1619       ],
    1620       "status" : "committer"
     1614      ]
    16211615   },
    16221616   "Denis Nomiyama" : {
     
    17141708      "nicks" : [
    17151709         "krit"
    1716       ],
    1717       "status" : "committer"
     1710      ]
    17181711   },
    17191712   "Dmitry Gorbik" : {
     
    17681761      "nicks" : [
    17691762         "dinfuehr"
    1770       ],
    1771       "status" : "committer"
     1763      ]
    17721764   },
    17731765   "Dominik R\u00f6ttsches" : {
     
    23512343      "nicks" : [
    23522344         "gyuyoung"
    2353       ],
    2354       "status" : "reviewer"
     2345      ]
    23552346   },
    23562347   "Hajime Morrita" : {
     
    25592550         "jfb_",
    25602551         "jfbastien"
    2561       ],
    2562       "status" : "reviewer"
     2552      ]
    25632553   },
    25642554   "Jack Lee" : {
     
    28202810      "nicks" : [
    28212811         "jeremyj"
    2822       ],
    2823       "status" : "committer"
     2812      ]
    28242813   },
    28252814   "Jeremy Moskovich" : {
     
    28502839      "nicks" : [
    28512840         "jessieberlin"
    2852       ],
    2853       "status" : "reviewer"
     2841      ]
    28542842   },
    28552843   "Jesus Sanchez-Palencia" : {
     
    37343722      "nicks" : [
    37353723         "lforschler"
    3736       ],
    3737       "status" : "reviewer"
     3724      ]
    37383725   },
    37393726   "Luciano Wolf" : {
     
    38403827      "nicks" : [
    38413828         "msanchez"
    3842       ],
    3843       "status" : "reviewer"
     3829      ]
    38443830   },
    38453831   "Mark Hahnenberg" : {
     
    39253911      "nicks" : [
    39263912         "mattbaker"
    3927       ],
    3928       "status" : "reviewer"
     3913      ]
    39293914   },
    39303915   "Matt Daiter" : {
     
    39893974      "nicks" : [
    39903975         "mrajca"
    3991       ],
    3992       "status" : "committer"
     3976      ]
    39933977   },
    39943978   "Matthew Mirman" : {
     
    58275811      "emails" : [
    58285812         "yoav@yoav.ws"
    5829       ],
    5830       "status" : "committer"
     5813      ]
    58315814   },
    58325815   "Yong Li" : {
     
    58445827         "yongjun_zhang@apple.com",
    58455828         "yongjun.zhang@nokia.com"
    5846       ],
    5847       "status" : "committer"
     5829      ]
    58485830   },
    58495831   "Yoshiaki Jitsukawa" : {
  • trunk/Tools/Scripts/webkitpy/tool/bot/irc_command_unittest.py

    r265883 r269887  
    4646        self.assertEqual("tom: Usage: whois SEARCH_STRING",
    4747                          whois.execute("tom", [], None, None))
    48         self.assertEqual('tom: Adam Barth is "Adam Barth" <abarth@webkit.org> (:abarth) (r). Why do you ask?',
    49                           whois.execute("tom", ["Adam", "Barth"], None, None))
    5048        self.assertEqual("tom: Sorry, I don't know any contributors matching 'unknown@example.com'.",
    5149                          whois.execute("tom", ["unknown@example.com"], None, None))
Note: See TracChangeset for help on using the changeset viewer.