Changeset 89196 in webkit


Ignore:
Timestamp:
Jun 18, 2011, 12:33:28 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-18 Berend-Jan Wever <skylined@chromium.org>

Reviewed by Eric Seidel.

Some names with spaces are incorrectly reported as not containing spaces
while running prepare-ChangeLog
https://bugs.webkit.org/show_bug.cgi?id=55572

  • Scripts/VCSUtils.pm: Updated CHANGE_LOG_NAME check for spaces to allow non-alphanumeric characters in names.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r89195 r89196  
     12011-06-18  Berend-Jan Wever  <skylined@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Some names with spaces are incorrectly reported as not containing spaces
     6        while running prepare-ChangeLog
     7        https://bugs.webkit.org/show_bug.cgi?id=55572
     8
     9        * Scripts/VCSUtils.pm: Updated CHANGE_LOG_NAME check for spaces to allow
     10          non-alphanumeric characters in names.
     11
    1122011-06-18  Michael Saboff  <msaboff@apple.com>
    213
  • trunk/Tools/Scripts/VCSUtils.pm

    r87641 r89196  
    17661766    changeLogNameError("Failed to determine ChangeLog name.") unless $name;
    17671767    # getpwuid seems to always succeed on windows, returning the username instead of the full name.  This check will catch that case.
    1768     changeLogNameError("'$name' does not contain a space!  ChangeLogs should contain your full name.") unless ($name =~ /\w \w/);
     1768    changeLogNameError("'$name' does not contain a space!  ChangeLogs should contain your full name.") unless ($name =~ /\S\s\S/);
    17691769
    17701770    return $name;
Note: See TracChangeset for help on using the changeset viewer.