[Zope-CVS] CVS: Products/Ape/lib/apelib/sql - oidgen.py:1.1.2.2
structure.py:1.5.6.2
Shane Hathaway
shane at zope.com
Sat Dec 20 23:24:36 EST 2003
Update of /cvs-repository/Products/Ape/lib/apelib/sql
In directory cvs.zope.org:/tmp/cvs-serv18412/lib/apelib/sql
Modified Files:
Tag: ape-0_8-branch
oidgen.py structure.py
Log Message:
Continued cleanup after refactoring the interfaces. See CHANGES.txt.
All tests now pass except for the SQL tests.
=== Products/Ape/lib/apelib/sql/oidgen.py 1.1.2.1 => 1.1.2.2 ===
--- Products/Ape/lib/apelib/sql/oidgen.py:1.1.2.1 Sat Dec 20 02:31:05 2003
+++ Products/Ape/lib/apelib/sql/oidgen.py Sat Dec 20 23:24:05 2003
@@ -29,6 +29,8 @@
table_base_name = 'oid_seq'
column_defs = ()
+ root_oid = "0"
+
def init(self, event):
conn = event.connections[self.conn_name]
first_time = 0
=== Products/Ape/lib/apelib/sql/structure.py 1.5.6.1 => 1.5.6.2 ===
--- Products/Ape/lib/apelib/sql/structure.py:1.5.6.1 Sat Dec 20 02:31:05 2003
+++ Products/Ape/lib/apelib/sql/structure.py Sat Dec 20 23:24:05 2003
@@ -61,7 +61,7 @@
__implements__ = SQLGatewayBase.__implements__
schema = RowSequenceSchema()
- schema.addField('id', 'string', 1)
+ schema.addField('key', 'string', 1)
schema.addField('oid', 'string')
table_base_name = 'folder_items'
More information about the Zope-CVS
mailing list