[Zope-CVS] CVS: CVSROOT - traffic_table.py:1.6
Jens Vagelpohl
jens@zope.com
Tue, 11 Jun 2002 09:29:53 -0400
Update of /cvs-zopeorg/CVSROOT
In directory cvs.zope.org:/tmp/cvs-serv1624
Modified Files:
traffic_table.py
Log Message:
- small cleanup
- i want to be notified separately without joining a list
=== CVSROOT/traffic_table.py 1.5 => 1.6 ===
"""
-zopeorgaddr = ["zopeorg-checkins@zope.org"]
+zopeorgaddr = ('zopeorg-checkins@zope.org',)
+cvscheckins = ('zope-cvs@zope.org',)
+others = ('jens@zope.com',)
_TABLE = []
@@ -44,17 +46,14 @@
def init_table():
add_to_table([
{'path': "CVSROOT",
- 'addrs': ["zope-cvs@zope.org"],
+ 'addrs': cvscheckins + others,
'specials': [("repolinks", "adjustlinks.py")],
'verbose': 1},
- {'path': "test",
- 'addrs': "klm@zope.com"},
-
# Catchall for when *no other entry* matches:
{'path': None,
'verbose': 1,
- 'addrs': zopeorgaddr},
+ 'addrs': zopeorgaddr + others},
])
init_table()