Changeset 47393 in webkit


Ignore:
Timestamp:
Aug 17, 2009 3:17:50 PM (15 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/26920> bugzilla-tool dumps too much junk the the commit comment from git

Reviewed by Adam Roben.

New commit message:

Committed r12345: <http://trac.webkit.org/changeset/12345>

  • Scripts/bugzilla-tool: (bug_comment_from_commit_text): Print out a compact, standardized commit message for both git and svn.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r47392 r47393  
     12009-08-17  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/26920> bugzilla-tool dumps too much junk the the commit comment from git
     4
     5        Reviewed by Adam Roben.
     6
     7        New commit message:
     8            Committed r12345: <http://trac.webkit.org/changeset/12345>
     9
     10        * Scripts/bugzilla-tool:
     11        (bug_comment_from_commit_text): Print out a compact,
     12        standardized commit message for both git and svn.
     13
    1142009-08-17  Peter Kasting  <pkasting@google.com>
    215
  • trunk/WebKitTools/Scripts/bugzilla-tool

    r47345 r47393  
    219219    match = re.search(scm.commit_success_regexp(), commit_text, re.MULTILINE)
    220220    svn_revision = match.group('svn_revision')
    221     commit_text += ("\n%s" % view_source_url(svn_revision))
    222     return commit_text
     221    return "Committed r%s: <%s>" % (svn_revision, view_source_url(svn_revision))
    223222
    224223
Note: See TracChangeset for help on using the changeset viewer.