Home | History | Annotate | Download | only in Scripts

Lines Matching full:author

163         line_regexp = re.compile("^(?P<author>.+)@\S+ (?P<timestamp>\d+)$")
172 last_commit_dates[match_result.group('author')] = float(match_result.group('timestamp'))
175 authors_missing_email = filter(lambda author: author.find('@') == -1, self._last_commit_time_by_author_cache)
176 authors_with_email = filter(lambda author: author.find('@') != -1, self._last_commit_time_by_author_cache)
177 prefixes_of_authors_with_email = map(lambda author: author.split('@')[0], authors_with_email)
179 for author in authors_missing_email:
181 author_email = self.login_to_email_address.get(author)
184 if not author_email and author in prefixes_of_authors_with_email:
185 author_email_index = prefixes_of_authors_with_email.index(author)
192 # log("%s -> %s" % (author, author_email)) # For sanity checking.
193 no_email_commit_time = self._last_commit_time_by_author_cache.get(author)
198 del self._last_commit_time_by_author_cache[author]
204 del self._last_commit_time_by_author_cache['(no author)'] # The initial svn import isn't very useful.
219 for (author, last_commit) in authors_and_last_commits:
222 committer_record = committer_list.committer_by_email(author)
223 self._print_three_column_row(column_widths, (str(last_commit_date), author, committer_record))
228 for author in last_commit_time_by_author:
229 if not committer_list.committer_by_email(author):
230 missing_from_committers_py.append(author)