projects
/
hamn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c8c647
)
Support author filter for things like wordpress blogs - simpler
author
Magnus Hagander
<magnus@hagander.net>
Mon, 3 Aug 2009 17:37:46 +0000
(19:37 +0200)
committer
Magnus Hagander
<magnus@hagander.net>
Mon, 3 Aug 2009 17:37:46 +0000
(19:37 +0200)
filtering than what google uses.
aggregator.py
patch
|
blob
|
blame
|
history
diff --git
a/aggregator.py
b/aggregator.py
index 20de7f7590ecf6bc2540f83d9a85aeae18acdb6e..e1bf9da6703332514b847f7b27e73943168c3dff 100755
(executable)
--- a/
aggregator.py
+++ b/
aggregator.py
@@
-100,6
+100,8
@@
class Aggregator:
if entry.has_key('author_detail'):
return entry.author_detail.name == self.authorfilter
+ elif entry.has_key('author'):
+ return entry.author == self.authorfilter
else:
return False