Title: [97776] trunk/Tools
Revision
97776
Author
[email protected]
Date
2011-10-18 10:56:33 -0700 (Tue, 18 Oct 2011)

Log Message

Subscribe myself to WebIDL changes
https://bugs.webkit.org/show_bug.cgi?id=70341

Reviewed by David Levin.

I've also added some documentation and refactored my previous
subscriptions to make it eaiser for others to subscribe as well.

* Scripts/webkitpy/common/config/watchlist:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (97775 => 97776)


--- trunk/Tools/ChangeLog	2011-10-18 17:39:50 UTC (rev 97775)
+++ trunk/Tools/ChangeLog	2011-10-18 17:56:33 UTC (rev 97776)
@@ -1,3 +1,15 @@
+2011-10-18  Adam Barth  <[email protected]>
+
+        Subscribe myself to WebIDL changes
+        https://bugs.webkit.org/show_bug.cgi?id=70341
+
+        Reviewed by David Levin.
+
+        I've also added some documentation and refactored my previous
+        subscriptions to make it eaiser for others to subscribe as well.
+
+        * Scripts/webkitpy/common/config/watchlist:
+
 2011-10-18  Dimitri Glazkov  <[email protected]>
 
         Add myself to the newfangled watchlist plumbing.

Modified: trunk/Tools/Scripts/webkitpy/common/config/watchlist (97775 => 97776)


--- trunk/Tools/Scripts/webkitpy/common/config/watchlist	2011-10-18 17:39:50 UTC (rev 97775)
+++ trunk/Tools/Scripts/webkitpy/common/config/watchlist	2011-10-18 17:56:33 UTC (rev 97776)
@@ -1,4 +1,15 @@
 #  -*- mode: Python;-*-
+#
+# When editing this file, please run the following command to make sure you
+# haven't introduced any syntax errors:
+#
+# ./Tools/Scripts/test-webkitpy webkitpy.common.watchlist
+#
+# If you want to test your regular expressions, you can edit various files and
+# then try following command:
+#
+# ./Tools/Scripts/webkit-patch apply-watchlist-local
+#
 {
     "DEFINITIONS": {
         "ChromiumGraphics": {
@@ -7,6 +18,9 @@
         "ChromiumPublicApi": {
             "filename": r"Source/WebKit/chromium/public/.*"
         },
+        "WebIDL": {
+            "filename": r"Source/WebCore/(?!inspector).*\.idl"
+        },
         "ThreadingFiles": {
             "filename": r"Source/_javascript_Core/wtf/ThreadSpecific\..*"
                         r"|Source/_javascript_Core/wtf/ThreadSafeRefCounted\..*"
@@ -58,14 +72,16 @@
         # two different accounts as far as bugzilla is concerned.
         "ChromiumGraphics": [ "[email protected]", ],
         "ChromiumPublicApi": [ "[email protected]", ],
+        "WebIDL": [ "[email protected]" ],
         "StyleChecker": [ "[email protected]", ],
         "ThreadingFiles|ThreadingUsage": [ "[email protected]", ],
         "WatchListScript": [ "[email protected]", ],
         "V8Bindings|BindingsScripts": [ "[email protected]", "[email protected]" ],
         "FrameLoader": [ "[email protected]", "[email protected]" ],
         "Loader": [ "[email protected]" ],
-        "webkitpy|TestFailures|SecurityCritical": [ "[email protected]" ],
-        "TestFailures": [ "[email protected]" ],
+        "SecurityCritical": [ "[email protected]" ],
+        "webkitpy": [ "[email protected]" ],
+        "TestFailures": [ "[email protected]", "[email protected]" ],
     },
     "MESSAGE_RULES": {
         "ChromiumPublicApi": [ "Please wait for approval from [email protected] before submitting "
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to