[Zope-CVS] CVS: Products/AdaptableStorage/serial_ofs - ZSQLMethodSerializer.py:1.1.2.2 public.py:1.4.2.2
Christian Zagrodnick
cz@gocept.com
Tue, 21 Jan 2003 03:11:53 -0500
Update of /cvs-repository/Products/AdaptableStorage/serial_ofs
In directory cvs.zope.org:/tmp/cvs-serv25960/serial_ofs
Modified Files:
Tag: zagy-patches
ZSQLMethodSerializer.py public.py
Log Message:
merging HEAD into zagy-patches branch
=== Products/AdaptableStorage/serial_ofs/ZSQLMethodSerializer.py 1.1.2.1 => 1.1.2.2 ===
--- Products/AdaptableStorage/serial_ofs/ZSQLMethodSerializer.py:1.1.2.1 Mon Jan 13 17:10:50 2003
+++ Products/AdaptableStorage/serial_ofs/ZSQLMethodSerializer.py Tue Jan 21 03:11:21 2003
@@ -66,7 +66,7 @@
object.arguments_src = m.group(1)
body = body[m.end():]
else:
- object.argument_src = ''
+ object.arguments_src = ''
object._arg = parse(object.arguments_src)
object.src = body
object.template = object.template_class(body)
@@ -74,9 +74,9 @@
object._v_cache = {}, Bucket()
for attr in self.attributes:
event.notifyDeserialized(attr, getattr(object, attr))
-
+
class ZSQLMethodPropertiesSerializer:
- __implements__ = IAspectSerializer
+ __implements__ = IAspectSerializer
schema = RowSequenceSchema()
schema.addField('id', 'string', 1)
@@ -90,7 +90,7 @@
'max_cache_': int,
'cache_time': int,
'class_name_': str,
- 'class_file_': str,
+ 'class_file_': str,
'zclass': str, # XXX, what's that
'allow_simple_one_argument_traversal': int,
'connection_hook': str,
=== Products/AdaptableStorage/serial_ofs/public.py 1.4.2.1 => 1.4.2.2 ===
--- Products/AdaptableStorage/serial_ofs/public.py:1.4.2.1 Mon Jan 13 14:19:01 2003
+++ Products/AdaptableStorage/serial_ofs/public.py Tue Jan 21 03:11:21 2003
@@ -24,4 +24,6 @@
from OFSProperties import OFSProperties
from UserFolderSerializer import UserFolderSerializer
from PythonScriptSerializer import PythonScriptSerializer
+from ZSQLMethodSerializer import ZSQLMethodSerializer, \
+ ZSQLMethodPropertiesSerializer