[Zope-CVS] CVS: Products/AdaptableStorage/zodb - mapper_public.py:1.1 ASConnection.py:1.12 ASDB.py:1.4 ASStorage.py:1.9 RemainingState.py:1.2 .cvsignore:NONE serial_public.py:NONE
Shane Hathaway
shane@zope.com
Tue, 31 Dec 2002 16:48:23 -0500
Update of /cvs-repository/Products/AdaptableStorage/zodb
In directory cvs.zope.org:/tmp/cvs-serv18282/zodb
Modified Files:
ASConnection.py ASDB.py ASStorage.py RemainingState.py
Added Files:
mapper_public.py
Removed Files:
.cvsignore serial_public.py
Log Message:
Changed the name of the "serial" package to "mapper". It's a more
appropriate name, since mappers are the focus of this software.
Sorry about the flood of checkins.
=== Added File Products/AdaptableStorage/zodb/mapper_public.py ===
##############################################################################
#
# Copyright (c) 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Import of the public classes and interfaces from the serial package.
$Id: mapper_public.py,v 1.1 2002/12/31 21:47:52 shane Exp $
"""
from Products.AdaptableStorage.mapper.public import *
=== Products/AdaptableStorage/zodb/ASConnection.py 1.11 => 1.12 ===
--- Products/AdaptableStorage/zodb/ASConnection.py:1.11 Wed Dec 25 00:27:36 2002
+++ Products/AdaptableStorage/zodb/ASConnection.py Tue Dec 31 16:47:52 2002
@@ -25,7 +25,7 @@
ConflictError, ReadConflictError, LOG, ERROR
from consts import SERIAL0, DEBUG
-from serial_public import IKeyedObjectSystem, SerializationEvent, \
+from mapper_public import IKeyedObjectSystem, SerializationEvent, \
DeserializationEvent
=== Products/AdaptableStorage/zodb/ASDB.py 1.3 => 1.4 ===
--- Products/AdaptableStorage/zodb/ASDB.py:1.3 Mon Dec 23 23:29:34 2002
+++ Products/AdaptableStorage/zodb/ASDB.py Tue Dec 31 16:47:52 2002
@@ -18,7 +18,7 @@
from ZODB.DB import DB, Transaction, cPickle, cStringIO, allocate_lock
-from serial_public import IObjectMapper
+from mapper_public import IObjectMapper
from ASConnection import ASConnection
from ASStorage import ASStorage
=== Products/AdaptableStorage/zodb/ASStorage.py 1.8 => 1.9 ===
--- Products/AdaptableStorage/zodb/ASStorage.py:1.8 Tue Dec 31 16:09:06 2002
+++ Products/AdaptableStorage/zodb/ASStorage.py Tue Dec 31 16:47:52 2002
@@ -21,7 +21,7 @@
from cStringIO import StringIO
from ZODB import POSException, BaseStorage
-from serial_public import MapperEvent, ITPCConnection
+from mapper_public import MapperEvent, ITPCConnection
from consts import SERIAL0, SERIAL1, DEBUG
from OIDEncoder import OIDEncoder
=== Products/AdaptableStorage/zodb/RemainingState.py 1.1 => 1.2 ===
--- Products/AdaptableStorage/zodb/RemainingState.py:1.1 Fri Dec 13 15:42:03 2002
+++ Products/AdaptableStorage/zodb/RemainingState.py Tue Dec 31 16:47:52 2002
@@ -22,7 +22,7 @@
from ZODB import Persistent
-from serial_public import \
+from mapper_public import \
IAspectSerializer, FieldSchema, \
IFullSerializationEvent, IFullDeserializationEvent
=== Removed File Products/AdaptableStorage/zodb/.cvsignore ===
=== Removed File Products/AdaptableStorage/zodb/serial_public.py ===