/[collab-qa]/udd/udd/src_and_pkg_gatherer.py
ViewVC logotype

Contents of /udd/udd/src_and_pkg_gatherer.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1220 - (show annotations) (download) (as text)
Sun Sep 7 18:59:22 2008 UTC (4 years, 8 months ago) by lucas
File MIME type: text/x-python
File size: 546 byte(s)
drop schemas, code for drop/setup/schema
1 import gatherer
2 import sources_gatherer
3 import packages_gatherer
4
5
6 def get_gatherer(connection, config, source):
7 return src_and_pkg_gatherer(connection, config, source)
8
9 class src_and_pkg_gatherer(gatherer.gatherer):
10 def __init__(self, connection, config, source):
11 gatherer.gatherer.__init__(self, connection, config, source)
12 self.src = sources_gatherer.sources_gatherer(connection, config, source)
13 self.pkg = packages_gatherer.packages_gatherer(connection, config, source)
14
15 def run(self):
16 self.src.run()
17 self.pkg.run()

  ViewVC Help
Powered by ViewVC 1.1.5