Mercurial > hg > CommitWatcher
changeset 43:ef90a853afd1
stubbing
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 06 Nov 2013 22:58:07 -0800 |
parents | cd590e1722d6 |
children | 4f8fe143b977 |
files | commitwatcher/commit.py commitwatcher/store.py |
diffstat | 2 files changed, 12 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/commitwatcher/commit.py Tue Nov 05 03:03:06 2013 -0800 +++ b/commitwatcher/commit.py Wed Nov 06 22:58:07 2013 -0800 @@ -4,9 +4,19 @@ class Commit(object): - def __init__(self, message, datetime, author, paths, revision): + def __init__(self, message, datetime, author, files, revision): self.message = message self.datetime = datetime self.author= author self.paths = paths self.revision = revision + + def ancestry(self, ): + sep = '/' # unix/url-style separators + path = path.split('/') + paths = [] + while path: + paths.append(sep.join(path)) + path.pop() + return paths +
--- a/commitwatcher/store.py Tue Nov 05 03:03:06 2013 -0800 +++ b/commitwatcher/store.py Wed Nov 06 22:58:07 2013 -0800 @@ -29,16 +29,7 @@ return self.store(commit) - def ancestry(self, path): - sep = '/' # unix/url-style separators - path = path.split('/') - paths = [] - while path: - paths.append(sep.join(path)) - path.pop() - return paths - - def paths(self, *commits): + def paths(self): """ return paths touched by commits """