[Zope-Checkins] CVS: Products/AdaptableStorage/mapper/interfaces - IConfigurableObjectMapper.py:1.2

Shane Hathaway shane@zope.com
Mon, 6 Jan 2003 18:18:20 -0500


Update of /cvs-repository/Products/AdaptableStorage/mapper/interfaces
In directory cvs.zope.org:/tmp/cvs-serv1755/mapper/interfaces

Modified Files:
	IConfigurableObjectMapper.py 
Log Message:
- Added a user folder mapper for the filesystem.  SQL version coming
  soon.  (SQL tests fail at the moment.)

- Added unwriteData() to FSConnection.  I may remove it later, since it turned
  out I didn't need it.

- Made configuration errors easier to read.

- Added null implementations of certain interfaces.

- Added a default for FixedClassifier.


=== Products/AdaptableStorage/mapper/interfaces/IConfigurableObjectMapper.py 1.1 => 1.2 ===
--- Products/AdaptableStorage/mapper/interfaces/IConfigurableObjectMapper.py:1.1	Tue Dec 31 16:47:46 2002
+++ Products/AdaptableStorage/mapper/interfaces/IConfigurableObjectMapper.py	Mon Jan  6 18:17:46 2003
@@ -46,12 +46,12 @@
         the implemenation prevents overriding an existing mapper.
         """
 
-    def checkConfiguration(names=(), recursive=1):
+    def checkConfiguration(path='root', recursive=1):
         """Verifies the mapper configuration is sane.
 
         Raises an exception if there are errors.
 
-        'names' gives the path to the mapper, for debugging purposes.
+        'path' gives the path to the mapper, for debugging purposes.
         'recursive' can be turned off to not descend into sub-mappers.
         """