[Zope-CVS] CVS: Products/AdaptableStorage - Zope2FS.py:1.7
Shane Hathaway
shane@zope.com
Mon, 9 Dec 2002 10:57:54 -0500
Update of /cvs-repository/Products/AdaptableStorage
In directory cvs.zope.org:/tmp/cvs-serv29307
Modified Files:
Zope2FS.py
Log Message:
Tidying:
- Removed domain mapper, which has been folded into object mapper (as I had
always hoped to do--yay!)
- Removed makeKey from various places, since it now has a less meaningful
purpose
- Removed classifyObject() from serialization events since it now serves
no purpose I can think of
- Removed commented code
- Removed IObjectGateway since it now defines nothing more than IGateway
- Switched the order of the arguments for classifyObject() to match the
order of the other methods
- Corrected and added comments
=== Products/AdaptableStorage/Zope2FS.py 1.6 => 1.7 ===
--- Products/AdaptableStorage/Zope2FS.py:1.6 Sat Dec 7 00:59:12 2002
+++ Products/AdaptableStorage/Zope2FS.py Mon Dec 9 10:57:23 2002
@@ -111,4 +111,4 @@
class FSDatabase (ASDB):
def __init__(self, storage, **kw):
- ASDB.__init__(self, storage, storage._domain_resource, **kw)
+ ASDB.__init__(self, storage, storage._mapper_resource, **kw)