[Zope-Checkins] CVS: Zope2 - ObjectManager.py:1.137.4.3
andreas@serenade.digicool.com
andreas@serenade.digicool.com
Tue, 3 Jul 2001 11:36:44 -0400
Update of /cvs-repository/Zope2/lib/python/OFS
In directory serenade:/tmp/cvs-serv20572/lib/python/OFS
Modified Files:
Tag: Zope-2_4-branch
ObjectManager.py
Log Message:
added '$' to allowed characters of object IDs.
Webdrive uses temporary filenames containing tilde and dollar sign.
This should not break existing Zope functionality
--- Updated File ObjectManager.py in package Zope2 --
--- ObjectManager.py 2001/06/29 14:42:00 1.137.4.2
+++ ObjectManager.py 2001/07/03 15:36:44 1.137.4.3
@@ -109,7 +109,7 @@
XMLExportImport.magic: XMLExportImport.importXML,
}
-bad_id=re.compile(r'[^a-zA-Z0-9-_~,. ]').search #TS
+bad_id=re.compile(r'[^a-zA-Z0-9-_~,.$ ]').search #TS
# Global constants: __replaceable__ flags:
NOT_REPLACEABLE = 0