[Zope-CVS] CVS: Products/AdaptableStorage/gateway_fs - mapper_public.py:1.1 FSAutoId.py:1.4 FSClassificationSection.py:1.6 FSConnection.py:1.6 FSDirectoryItems.py:1.8 FSFileData.py:1.5 FSSectionData.py:1.5 .cvsignore:NONE serial_public.py:NONE

Shane Hathaway shane@zope.com
Tue, 31 Dec 2002 16:48:15 -0500


Update of /cvs-repository/Products/AdaptableStorage/gateway_fs
In directory cvs.zope.org:/tmp/cvs-serv18282/gateway_fs

Modified Files:
	FSAutoId.py FSClassificationSection.py FSConnection.py 
	FSDirectoryItems.py FSFileData.py FSSectionData.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/gateway_fs/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:44 shane Exp $
"""

from Products.AdaptableStorage.mapper.public import *



=== Products/AdaptableStorage/gateway_fs/FSAutoId.py 1.3 => 1.4 ===
--- Products/AdaptableStorage/gateway_fs/FSAutoId.py:1.3	Mon Dec  9 13:25:27 2002
+++ Products/AdaptableStorage/gateway_fs/FSAutoId.py	Tue Dec 31 16:47:44 2002
@@ -16,7 +16,7 @@
 $Id$
 """
 
-from serial_public import IGateway, FieldSchema
+from mapper_public import IGateway, FieldSchema
 
 class FSAutoId:
 


=== Products/AdaptableStorage/gateway_fs/FSClassificationSection.py 1.5 => 1.6 ===
--- Products/AdaptableStorage/gateway_fs/FSClassificationSection.py:1.5	Mon Dec  9 13:25:27 2002
+++ Products/AdaptableStorage/gateway_fs/FSClassificationSection.py	Tue Dec 31 16:47:44 2002
@@ -16,7 +16,7 @@
 $Id$
 """
 
-from serial_public import IGateway, FieldSchema
+from mapper_public import IGateway, FieldSchema
 
 
 class FSClassificationSection:


=== Products/AdaptableStorage/gateway_fs/FSConnection.py 1.5 => 1.6 ===
--- Products/AdaptableStorage/gateway_fs/FSConnection.py:1.5	Tue Dec 31 16:09:04 2002
+++ Products/AdaptableStorage/gateway_fs/FSConnection.py	Tue Dec 31 16:47:44 2002
@@ -23,7 +23,7 @@
 
 from interfaces.public import IFSConnection
 from exceptions import FSWriteError
-from serial_public import ITPCConnection
+from mapper_public import ITPCConnection
 
 
 # Try to decipher this one ;-)


=== Products/AdaptableStorage/gateway_fs/FSDirectoryItems.py 1.7 => 1.8 ===
--- Products/AdaptableStorage/gateway_fs/FSDirectoryItems.py:1.7	Tue Dec 10 15:35:57 2002
+++ Products/AdaptableStorage/gateway_fs/FSDirectoryItems.py	Tue Dec 31 16:47:44 2002
@@ -17,7 +17,7 @@
 """
 
 
-from serial_public import IGateway, RowSequenceSchema
+from mapper_public import IGateway, RowSequenceSchema
 
 from FSConnection import WRITE_CONDITIONAL
 


=== Products/AdaptableStorage/gateway_fs/FSFileData.py 1.4 => 1.5 ===
--- Products/AdaptableStorage/gateway_fs/FSFileData.py:1.4	Mon Dec  9 15:27:08 2002
+++ Products/AdaptableStorage/gateway_fs/FSFileData.py	Tue Dec 31 16:47:44 2002
@@ -18,7 +18,7 @@
 
 from types import StringType
 
-from serial_public import IGateway, FieldSchema
+from mapper_public import IGateway, FieldSchema
 
 class FSFileData:
 


=== Products/AdaptableStorage/gateway_fs/FSSectionData.py 1.4 => 1.5 ===
--- Products/AdaptableStorage/gateway_fs/FSSectionData.py:1.4	Mon Dec  9 13:25:27 2002
+++ Products/AdaptableStorage/gateway_fs/FSSectionData.py	Tue Dec 31 16:47:44 2002
@@ -18,7 +18,7 @@
 
 from types import StringType
 
-from serial_public import IGateway, FieldSchema
+from mapper_public import IGateway, FieldSchema
 
 class FSSectionData:
 

=== Removed File Products/AdaptableStorage/gateway_fs/.cvsignore ===

=== Removed File Products/AdaptableStorage/gateway_fs/serial_public.py ===