[Zope-CVS] CVS: Products/AdaptableStorage/tests - testZope2FS.py:1.17

Shane Hathaway shane@zope.com
Wed, 5 Feb 2003 13:50:04 -0500


Update of /cvs-repository/Products/AdaptableStorage/tests
In directory cvs.zope.org:/tmp/cvs-serv11771/tests

Modified Files:
	testZope2FS.py 
Log Message:
- Added a 'hidden_filenames' option to FSConnection.  hidden_filenames
is a regular expression that determines whether a filename should be
visible or not.  By default, it makes all items that start with an
underscore invisible, since Zope won't be able to access them anyway.

- Changed the name of the 'hidden_filename_prefix' option
to 'metadata_prefix'.


=== Products/AdaptableStorage/tests/testZope2FS.py 1.16 => 1.17 ===
--- Products/AdaptableStorage/tests/testZope2FS.py:1.16	Tue Feb  4 23:59:19 2003
+++ Products/AdaptableStorage/tests/testZope2FS.py	Wed Feb  5 13:50:01 2003
@@ -372,7 +372,7 @@
 class Zope2FSUnderscoreTests (Zope2FSTests):
     
     def _createMapper(self, path):
-        return createMapper(path, hidden_filename_prefix='_')
+        return createMapper(path, metadata_prefix='_')
 
 
 if __name__ == '__main__':