Title: [122076] trunk/Tools
Revision
122076
Author
[email protected]
Date
2012-07-08 20:38:48 -0700 (Sun, 08 Jul 2012)

Log Message

Improve the template generated by prepare-ChangeLog
https://bugs.webkit.org/show_bug.cgi?id=89560

Reviewed by Ryosuke Niwa.

Produce the following template:

> 2012-06-20  Kent Tamura  <[email protected]>
>
>         Need a short description (Oops!).
>         Need the bug URL (Oops!).
>
>         Reviewed by Ryosuke Niwa.
>
>         Additional information of the change such as approach, rationale. Please add per-function descriptions below. (Oops!).
>
>         No new tests (Oops!).

* Scripts/prepare-ChangeLog:
(generateNewChangeLogs):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (122075 => 122076)


--- trunk/Tools/ChangeLog	2012-07-09 03:26:26 UTC (rev 122075)
+++ trunk/Tools/ChangeLog	2012-07-09 03:38:48 UTC (rev 122076)
@@ -1,3 +1,26 @@
+2012-07-08  Kent Tamura  <[email protected]>
+
+        Improve the template generated by prepare-ChangeLog
+        https://bugs.webkit.org/show_bug.cgi?id=89560
+
+        Reviewed by Ryosuke Niwa.
+
+        Produce the following template:
+
+        > 2012-06-20  Kent Tamura  <[email protected]>
+        >
+        >         Need a short description (Oops!).
+        >         Need the bug URL (Oops!).
+        >
+        >         Reviewed by Ryosuke Niwa.
+        >
+        >         Additional information of the change such as approach, rationale. Please add per-function descriptions below. (Oops!).
+        >
+        >         No new tests (Oops!).
+
+        * Scripts/prepare-ChangeLog:
+        (generateNewChangeLogs):
+
 2012-07-08  Gyuyoung Kim  <[email protected]>
 
         [wx] Unreviewed. Fix notificaitons directory path after notifications move.

Modified: trunk/Tools/Scripts/prepare-ChangeLog (122075 => 122076)


--- trunk/Tools/Scripts/prepare-ChangeLog	2012-07-09 03:26:26 UTC (rev 122075)
+++ trunk/Tools/Scripts/prepare-ChangeLog	2012-07-09 03:38:48 UTC (rev 122076)
@@ -493,18 +493,19 @@
 
         print CHANGE_LOG normalizeLineEndings($description . "\n", $endl) if $description;
 
-        $bugDescription = "Need a short description and bug URL (OOPS!)" unless $bugDescription;
+        $bugDescription = "Need a short description (OOPS!).\n        Need the bug URL (OOPS!)." unless $bugDescription;
         print CHANGE_LOG normalizeLineEndings("        $bugDescription\n", $endl) if $bugDescription;
         print CHANGE_LOG normalizeLineEndings("        $bugURL\n", $endl) if $bugURL;
         print CHANGE_LOG normalizeLineEndings("\n", $endl);
 
         print CHANGE_LOG normalizeLineEndings("        Reviewed by $reviewer.\n\n", $endl);
+        print CHANGE_LOG normalizeLineEndings("        Additional information of the change such as approach, rationale. Please add per-function descriptions below. (OOPS!).\n\n", $endl);
 
         if ($prefix =~ m/WebCore/ || `pwd` =~ m/WebCore/) {
             if (@$addedRegressionTests) {
                 print CHANGE_LOG normalizeLineEndings(testListForChangeLog(sort @$addedRegressionTests), $endl);
             } else {
-                print CHANGE_LOG normalizeLineEndings("        No new tests. (OOPS!)\n\n", $endl);
+                print CHANGE_LOG normalizeLineEndings("        No new tests (OOPS!).\n\n", $endl);
             }
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to