[Digicool-CVS] CVS: CVSROOT - traffic_table.py:1.73
jeremy@digicool.com
jeremy@digicool.com
Tue, 27 Mar 2001 15:28:00 -0500 (EST)
Update of /cvs-repository/CVSROOT
In directory korak:/tmp/cvs-serv15502
Modified Files:
traffic_table.py
Log Message:
Support for StandaloneZODB module
--- Updated File traffic_table.py in package CVSROOT --
--- traffic_table.py 2001/03/24 22:51:04 1.72
+++ traffic_table.py 2001/03/27 20:27:58 1.73
@@ -66,6 +66,13 @@
else:
_TABLE = _TABLE + entries
+def add_multipath(paths, addrs, remote):
+ """Add entries with different paths but the same addrs and remote"""
+ for path in paths:
+ add_to_table({'path': path,
+ 'addrs': addrs,
+ 'remote': remote})
+
def get_table():
return _TABLE[:]
@@ -144,5 +151,22 @@
'addrs': ["zpt@mail.zope.org"],
'remote': None},
])
+
+# Support for the StandaloneZODB module (defined in CVSROOT/modules)
+
+add_to_table({'path': "Releases/StandaloneZODB",
+ 'addrs': ("zodb-checkins@zope.org",),
+ 'remote': public_remote})
+
+add_multipath(("Zope2/lib/Components/ExtensionClass",
+ "Packages/ZEO",
+ "Zope2/lib/python/ZODB",
+ "Zope2/lib/python/Persistence.py",
+ "Zope2/lib/python/ThreadedAsync.py",
+ "Zope2/lib/python/zLOG.py",
+ "Zope2/lib/python/zdaemon.py",
+ ),
+ ("zodb-checkins@zope.org"),
+ None)
init_table()