Title: [281806] trunk
Revision
281806
Author
jbed...@apple.com
Date
2021-08-31 09:11:37 -0700 (Tue, 31 Aug 2021)

Log Message

[contributors.json] Replace class=bot with status=bot
https://bugs.webkit.org/show_bug.cgi?id=229712
<rdar://problem/82579767>

Reviewed by Aakash Jain.

Tools:

* Scripts/webkitpy/common/config/committers.py:
(Contributor.as_dict): bot is now a status, not a class.
(CommitterList.load_json): Ditto.
* Scripts/webkitpy/common/config/contributors.json: Replace class=bot with status=bot.

Websites/webkit.org:

* wp-content/themes/webkit/team.php: "bot" is now a status, not a class.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (281805 => 281806)


--- trunk/Tools/ChangeLog	2021-08-31 15:43:07 UTC (rev 281805)
+++ trunk/Tools/ChangeLog	2021-08-31 16:11:37 UTC (rev 281806)
@@ -1,3 +1,16 @@
+2021-08-31  Jonathan Bedard  <jbed...@apple.com>
+
+        [contributors.json] Replace class=bot with status=bot
+        https://bugs.webkit.org/show_bug.cgi?id=229712
+        <rdar://problem/82579767>
+
+        Reviewed by Aakash Jain.
+
+        * Scripts/webkitpy/common/config/committers.py:
+        (Contributor.as_dict): bot is now a status, not a class.
+        (CommitterList.load_json): Ditto.
+        * Scripts/webkitpy/common/config/contributors.json: Replace class=bot with status=bot.
+
 2021-08-30  Megan Gardner  <megan_gard...@apple.com>
 
         Fix double-tap-on-editable-content-for-selection-then-drag-* tests.

Modified: trunk/Tools/Scripts/webkitpy/common/config/committers.py (281805 => 281806)


--- trunk/Tools/Scripts/webkitpy/common/config/committers.py	2021-08-31 15:43:07 UTC (rev 281805)
+++ trunk/Tools/Scripts/webkitpy/common/config/committers.py	2021-08-31 16:11:37 UTC (rev 281806)
@@ -189,7 +189,7 @@
             info["expertise"] = self.expertise
 
         if self.is_bot:
-            info["class"] = "bot"
+            info["status"] = "bot"
 
         return info
 
@@ -249,7 +249,7 @@
             elif status == "committer":
                 contributor = Committer(name, data.get('emails'), data.get('nicks'), data.get('aliases'), data.get('expertise'))
                 self._committers.append(contributor)
-            elif data.get('class') == 'bot':
+            elif status == 'bot':
                 contributor = Bot(name, data.get('emails'), data.get('nicks'), data.get('aliases'), data.get('expertise'))
             else:
                 contributor = Contributor(name, data.get('emails'), data.get('nicks'), data.get('aliases'), data.get('expertise'))

Modified: trunk/Tools/Scripts/webkitpy/common/config/contributors.json (281805 => 281806)


--- trunk/Tools/Scripts/webkitpy/common/config/contributors.json	2021-08-31 15:43:07 UTC (rev 281805)
+++ trunk/Tools/Scripts/webkitpy/common/config/contributors.json	2021-08-31 16:11:37 UTC (rev 281806)
@@ -154,10 +154,10 @@
       "status" : "committer"
    },
    "Adobe Bug Tracker" : {
-      "class" : "bot",
       "emails" : [
          "webkitbugtrac...@adobe.com"
-      ]
+      ],
+      "status" : "bot"
    },
    "Adrian Perez de Castro" : {
       "emails" : [
@@ -1388,10 +1388,10 @@
       ]
    },
    "Commit Queue" : {
-      "class" : "bot",
       "emails" : [
          "commit-qu...@webkit.org"
-      ]
+      ],
+      "status" : "bot"
    },
    "Conrad Shultz" : {
       "emails" : [
@@ -4801,10 +4801,10 @@
       ]
    },
    "Radar WebKit Bug Importer" : {
-      "class" : "bot",
       "emails" : [
          "webkit-bug-impor...@group.apple.com"
-      ]
+      ],
+      "status" : "bot"
    },
    "Radu Stavila" : {
       "emails" : [
@@ -5873,19 +5873,19 @@
       ]
    },
    "WebKit Review Bot" : {
-      "class" : "bot",
       "emails" : [
          "webkit.review....@gmail.com"
       ],
       "nicks" : [
          "sheriff-bot"
-      ]
+      ],
+      "status" : "bot"
    },
    "WebKitGTK Bugs" : {
-      "class" : "bot",
       "emails" : [
          "bugs-nore...@webkitgtk.org"
-      ]
+      ],
+      "status" : "bot"
    },
    "Wenson Hsieh" : {
       "emails" : [

Modified: trunk/Websites/webkit.org/ChangeLog (281805 => 281806)


--- trunk/Websites/webkit.org/ChangeLog	2021-08-31 15:43:07 UTC (rev 281805)
+++ trunk/Websites/webkit.org/ChangeLog	2021-08-31 16:11:37 UTC (rev 281806)
@@ -1,3 +1,13 @@
+2021-08-31  Jonathan Bedard  <jbed...@apple.com>
+
+        [contributors.json] Replace class=bot with status=bot
+        https://bugs.webkit.org/show_bug.cgi?id=229712
+        <rdar://problem/82579767>
+
+        Reviewed by Aakash Jain.
+
+        * wp-content/themes/webkit/team.php: "bot" is now a status, not a class.
+
 2021-02-17  Ling Ho  <lin...@apple.com>
 
         WebKit nighly archives page not working for Big Sur

Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/team.php (281805 => 281806)


--- trunk/Websites/webkit.org/wp-content/themes/webkit/team.php	2021-08-31 15:43:07 UTC (rev 281805)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/team.php	2021-08-31 16:11:37 UTC (rev 281806)
@@ -162,7 +162,7 @@
 
     for (var contributor in contributorsJSON) {
         var data = ""
-        if (data.class == "bot")
+        if (data.status == "bot")
             continue;
         contributors.push({
             name: contributor,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to