[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Support "Reviewed by" in addition to "Review by" in log messages

From: Daniel Rall <dlr_at_collab.net>
Date: 2006-02-09 23:21:59 CET

On Thu, 09 Feb 2006, Peter N. Lundblad wrote:

> On Wed, 8 Feb 2006, Daniel Rall wrote:
>
> > On Wed, 08 Feb 2006, Peter N. Lundblad wrote:
> >
> > > On Tue, 7 Feb 2006, Justin Erenkrantz wrote:
> > I wouldn't mind both being supported. Peter's nitpick is important
> > because the tools/dev/contribulyze.py script that Karl wrote depends
> > upon an exact match:
> >
> > field_re = re.compile('^(Patch|Review|Suggested|Found) by:\s+(.*)')
> >
> +1. Here, consistency isn't worth the noise. And, well, how many scripts
> depend on this? :-)

I've attached a patch which allows for both "Reviewed by" and "Review
by", effectively making the former an alias for the latter.

This implementation has the side-effect of generating HTML with log
messages which don't exactly match what's in the repository, because
canonical names (e.g. "Review by") are used in place of provided names
(e.g. "Reviewed by").

[[[
Accept "Reviewed by" as an alias for "Review by".

* tools/dev/contribulyze.py
  (Field.__init__): Accept an optional ALIAS argument which creates an
   instance field of the same name.

  (field_aliases): A dict of alias names to field names
   (e.g. "Reviewed" to "Review").

  (graze): When instantiating and using Field objects, take field
   aliases into account.
]]]

Index: tools/dev/contribulyze.py
===================================================================
--- tools/dev/contribulyze.py (revision 18403)
+++ tools/dev/contribulyze.py (working copy)
@@ -385,9 +385,11 @@
 
 class Field:
   """One field in one log message."""
- def __init__(self, name):
+ def __init__(self, name, alias = None):
     # The name of this field (e.g., "Patch", "Review", etc).
     self.name = name
+ # An alias for the name of this field (e.g., "Reviewed").
+ self.alias = alias
     # A list of contributor objects, in the order in which they were
     # encountered in the field.
     self.contributors = [ ]
@@ -477,7 +479,8 @@
 log_separator = '-' * 72 + '\n'
 log_header_re = re.compile\
                 ('^(r[0-9]+) \| ([^|]+) \| ([^|]+) \| ([0-9]+)[^0-9]')
-field_re = re.compile('^(Patch|Review|Suggested|Found) by:\s+(.*)')
+field_re = re.compile('^(Patch|Review(ed)?|Suggested|Found) by:\s*(.*)')
+field_aliases = { 'Reviewed' : 'Review' }
 parenthetical_aside_re = re.compile('^\(.*\)\s*$')
 
 def graze(input):
@@ -520,10 +523,14 @@
               # We're on the first line of a field. Parse the field.
               while m:
                 if not field:
- field = Field(m.group(1))
+ ident = m.group(1)
+ if field_aliases.has_key(ident):
+ field = Field(field_aliases[ident], ident)
+ else:
+ field = Field(ident)
                 # Each line begins either with "WORD by:", or with whitespace.
                 in_field_re = re.compile('^('
- + field.name
+ + (field.alias or field.name)
                                          + ' by:\s+|\s+)(\S.*)+')
                 m = in_field_re.match(line)
                 user, real, email = Contributor.parse(m.group(2))

  • application/pgp-signature attachment: stored
Received on Thu Feb 9 23:22:35 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.