Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
ce8c4f74
Commit
ce8c4f74
authored
Jun 10, 2005
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internal 3.5a1 release.
parent
d8a161cb
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
29 additions
and
16 deletions
+29
-16
NEWS.txt
NEWS.txt
+16
-3
README.txt
README.txt
+2
-2
doc/guide/zodb.tex
doc/guide/zodb.tex
+1
-1
doc/zodb.pdf
doc/zodb.pdf
+0
-0
setup.py
setup.py
+1
-1
src/ZEO/__init__.py
src/ZEO/__init__.py
+1
-1
src/ZEO/version.txt
src/ZEO/version.txt
+1
-1
src/ZODB/__init__.py
src/ZODB/__init__.py
+1
-1
src/ZODB/cross-database-references.txt
src/ZODB/cross-database-references.txt
+5
-5
src/ZODB/tests/testcrossdatabasereferences.py
src/ZODB/tests/testcrossdatabasereferences.py
+1
-1
No files found.
NEWS.txt
View file @
ce8c4f74
What's new in ZODB3 3.5a
0
?
What's new in ZODB3 3.5a
2
?
==========================
==========================
Release date: DD-MMM-YYYY
Release date: DD-MMM-2005
Following is combined news from "internal releases" (to support ongoing
Zope3 development). These are the dates of the internal releases:
- 3.5a1 10-Jun-2005
Multi-database
--------------
- (3.5a1) Preliminary support for persistent cross-database references has
been added. See ``ZODB/cross-database-references.txt`` for an
introduction.
What's new in ZODB3 3.4?
What's new in ZODB3 3.4?
========================
========================
Release date:
MM-DDD
-2005
Release date:
09-Jun
-2005
Following is combined news from the "internal releases" (to support
Following is combined news from the "internal releases" (to support
ongoing Zope 2.8 and Zope3 development) since the last public ZODB 3.4
ongoing Zope 2.8 and Zope3 development) since the last public ZODB 3.4
...
...
README.txt
View file @
ce8c4f74
...
@@ -35,8 +35,8 @@ The Zope 2.8 release, and Zope3 releases, should be compatible with this
...
@@ -35,8 +35,8 @@ The Zope 2.8 release, and Zope3 releases, should be compatible with this
version of ZODB. Note that Zope 2.7 and higher includes ZEO, so this package
version of ZODB. Note that Zope 2.7 and higher includes ZEO, so this package
should only be needed to run a ZEO server.
should only be needed to run a ZEO server.
ZEO servers and clients are wholly compatible among 3.3, 3.3.1
and 3.4: a ZEO
ZEO servers and clients are wholly compatible among 3.3, 3.3.1
, 3.4 and 3.5:
client from any of those versions can talk with a ZEO server from any.
a ZEO
client from any of those versions can talk with a ZEO server from any.
Trying to mix ZEO clients and servers from 3.3 or later from ZODB releases
Trying to mix ZEO clients and servers from 3.3 or later from ZODB releases
before 3.3 is much harder. ZODB 3.3 introduced multiversion concurrency
before 3.3 is much harder. ZODB 3.3 introduced multiversion concurrency
...
...
doc/guide/zodb.tex
View file @
ce8c4f74
\documentclass
{
howto
}
\documentclass
{
howto
}
\title
{
ZODB/ZEO Programming Guide
}
\title
{
ZODB/ZEO Programming Guide
}
\release
{
3.5
a0
}
\release
{
3.5
.0a1
}
\date
{
\today
}
\date
{
\today
}
\author
{
A.M.
\
Kuchling
}
\author
{
A.M.
\
Kuchling
}
...
...
doc/zodb.pdf
View file @
ce8c4f74
No preview for this file type
setup.py
View file @
ce8c4f74
...
@@ -264,7 +264,7 @@ class MyDistribution(Distribution):
...
@@ -264,7 +264,7 @@ class MyDistribution(Distribution):
doclines
=
__doc__
.
split
(
"
\
n
"
)
doclines
=
__doc__
.
split
(
"
\
n
"
)
setup
(
name
=
"ZODB3"
,
setup
(
name
=
"ZODB3"
,
version
=
"3.5
a0
"
,
version
=
"3.5
.0a1
"
,
maintainer
=
"Zope Corporation"
,
maintainer
=
"Zope Corporation"
,
maintainer_email
=
"zodb-dev@zope.org"
,
maintainer_email
=
"zodb-dev@zope.org"
,
url
=
"http://www.zope.org/Wikis/ZODB"
,
url
=
"http://www.zope.org/Wikis/ZODB"
,
...
...
src/ZEO/__init__.py
View file @
ce8c4f74
...
@@ -22,4 +22,4 @@ ZEO is now part of ZODB; ZODB's home on the web is
...
@@ -22,4 +22,4 @@ ZEO is now part of ZODB; ZODB's home on the web is
"""
"""
# The next line must use double quotes, so release.py recognizes it.
# The next line must use double quotes, so release.py recognizes it.
version
=
"3.5
a0
"
version
=
"3.5
.0a1
"
src/ZEO/version.txt
View file @
ce8c4f74
3.5
a0
3.5
.0a1
src/ZODB/__init__.py
View file @
ce8c4f74
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
##############################################################################
##############################################################################
# The next line must use double quotes, so release.py recognizes it.
# The next line must use double quotes, so release.py recognizes it.
__version__
=
"3.5
a0
"
__version__
=
"3.5
.0a1
"
import
sys
import
sys
import
__builtin__
import
__builtin__
...
...
src/ZODB/cross-database-references.txt
View file @
ce8c4f74
...
@@ -2,7 +2,7 @@ Cross-Database References
...
@@ -2,7 +2,7 @@ Cross-Database References
=========================
=========================
Persistent references to objects in different databases within a
Persistent references to objects in different databases within a
multi-database are allowed.
multi-database are allowed.
Lets set up a multi-database with 2 databases:
Lets set up a multi-database with 2 databases:
...
@@ -54,26 +54,26 @@ It isn't valid to create references outside a multi database:
...
@@ -54,26 +54,26 @@ It isn't valid to create references outside a multi database:
>>> tm.commit() # doctest: +NORMALIZE_WHITESPACE
>>> tm.commit() # doctest: +NORMALIZE_WHITESPACE
Traceback (most recent call last):
Traceback (most recent call last):
...
...
InvalidObjectReference:
InvalidObjectReference:
Attempt to store an object from a foreign database connection
Attempt to store an object from a foreign database connection
NOTE
NOTE
----
----
This implementation is incomplete. It allows creat
t
ing and using
This implementation is incomplete. It allows creating and using
cross-database references, however, there are a number of facilities
cross-database references, however, there are a number of facilities
missing:
missing:
cross-database garbage collection
cross-database garbage collection
Garbage collection is done on a database by database basis.
Garbage collection is done on a database by database basis.
If an object on a database only has references to it from other
If an object on a database only has references to it from other
databases, then the object will be garbage collected when it
'
s
databases, then the object will be garbage collected when its
database is packed. The cross-database references to it will be
database is packed. The cross-database references to it will be
broken.
broken.
cross-database undo
cross-database undo
Undo is only applied to a single database. Fixing this for
Undo is only applied to a single database. Fixing this for
mu
tl
iple databases is going to be extremely difficult. Undo
mu
lt
iple databases is going to be extremely difficult. Undo
currently poses consistency problems, so it is not (or should not
currently poses consistency problems, so it is not (or should not
be) widely used.
be) widely used.
...
...
src/ZODB/tests/testcrossdatabasereferences.py
View file @
ce8c4f74
##############################################################################
##############################################################################
#
#
# Copyright (c) 200
4
Zope Corporation and Contributors.
# Copyright (c) 200
5
Zope Corporation and Contributors.
# All Rights Reserved.
# All Rights Reserved.
#
#
# This software is subject to the provisions of the Zope Public License,
# This software is subject to the provisions of the Zope Public License,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment