renamed to OldClientRepository

This commit is contained in:
Darren Ranalli 2006-11-22 01:26:48 +00:00
parent 6559f9b6f8
commit 5bf77064e3

View File

@ -1,8 +1,8 @@
"""ClientRepository module: contains the ClientRepository class""" """OldClientRepository module: contains the OldClientRepository class"""
from ClientRepository import * from ClientRepositoryBase import *
class CMUClientRepository(ClientRepository): class OldClientRepository(ClientRepositoryBase):
""" """
This is the open-source ClientRepository as provided by CMU. It This is the open-source ClientRepository as provided by CMU. It
communicates with the ServerRepository in this same directory. communicates with the ServerRepository in this same directory.
@ -13,7 +13,7 @@ class CMUClientRepository(ClientRepository):
notify = DirectNotifyGlobal.directNotify.newCategory("ClientRepository") notify = DirectNotifyGlobal.directNotify.newCategory("ClientRepository")
def __init__(self, dcFileNames = None): def __init__(self, dcFileNames = None):
ClientRepository.__init__(self, dcFileNames = dcFileNames) ClientRepositoryBase.__init__(self, dcFileNames = dcFileNames)
# The DOID allocator. The CMU LAN server may choose to # The DOID allocator. The CMU LAN server may choose to
# send us a block of DOIDs. If it chooses to do so, then we # send us a block of DOIDs. If it chooses to do so, then we