Mercurial > hg > CommitWatcher
comparison commitwatcher/agent.py @ 1:4e24f3c6610c
agent
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Sep 2013 05:11:57 -0700 |
parents | |
children | 4cb3971d9d9d |
comparison
equal
deleted
inserted
replaced
0:bdc039cb1f2e | 1:4e24f3c6610c |
---|---|
1 """ | |
2 agents to gather commits | |
3 """ | |
4 | |
5 class Agent(object): | |
6 """abstract base class""" | |
7 | |
8 class LocalCheckoutAgent(object): | |
9 """agent based on local checkouts""" | |
10 | |
11 class FeedAgent(Agent): | |
12 """gathers changesets by reading RSS/Atom""" |