WebKitTools/ChangeLog

112009-08-17 David Kilzer <ddkilzer@apple.com>
22
 3 <http://webkit.org/b/26920> bugzilla-tool dumps too much junk the the commit comment from git
 4
 5 Reviewed by NOBODY (OOPS!).
 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
 142009-08-17 David Kilzer <ddkilzer@apple.com>
 15
316 <http://webkit.org/b/28393> check-webkit-style: add check for use of std::max()/std::min() instead of MAX()/MIN()
417
518 Reviewed by David Levin.

WebKitTools/Scripts/bugzilla-tool

@@class ApplyPatchesFromBug(Command):
218218def bug_comment_from_commit_text(scm, commit_text):
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
225224class WebKitLandingScripts: