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
54ea7005
Commit
54ea7005
authored
Mar 21, 2005
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/XXX/TODO/g in new interface verbiage.
parent
67a0eab9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
70 deletions
+70
-70
trunk/src/ZODB/interfaces.py
trunk/src/ZODB/interfaces.py
+69
-69
trunk/src/transaction/interfaces.py
trunk/src/transaction/interfaces.py
+1
-1
No files found.
trunk/src/ZODB/interfaces.py
View file @
54ea7005
...
...
@@ -353,88 +353,88 @@ class IStorage(Interface):
"""
def
load
(
oid
,
version
):
"""
XXX
"""
"""
TODO
"""
def
close
():
"""
XXX
"""
"""
TODO
"""
def
cleanup
():
"""
XXX
"""
"""
TODO
"""
def
lastSerial
():
"""
XXX
"""
"""
TODO
"""
def
lastTransaction
():
"""
XXX
"""
"""
TODO
"""
def
lastTid
(
oid
):
"""Return last serialno committed for object oid."""
def
loadSerial
(
oid
,
serial
):
"""
XXX
"""
"""
TODO
"""
def
loadBefore
(
oid
,
tid
):
"""
XXX
"""
"""
TODO
"""
def
iterator
(
start
=
None
,
stop
=
None
):
"""
XXX
"""
"""
TODO
"""
def
sortKey
():
"""
XXX
"""
"""
TODO
"""
def
getName
():
"""
XXX
"""
"""
TODO
"""
def
getSize
():
"""
XXX
"""
"""
TODO
"""
def
history
(
oid
,
version
,
length
=
1
,
filter
=
None
):
"""
XXX
"""
"""
TODO
"""
def
new_oid
(
last
=
None
):
"""
XXX
"""
"""
TODO
"""
def
set_max_oid
(
possible_new_max_oid
):
"""
XXX
"""
"""
TODO
"""
def
registerDB
(
db
,
limit
):
"""
XXX
"""
"""
TODO
"""
def
isReadOnly
():
"""
XXX
"""
"""
TODO
"""
def
supportsUndo
():
"""
XXX
"""
"""
TODO
"""
def
supportsVersions
():
"""
XXX
"""
"""
TODO
"""
def
tpc_abort
(
transaction
):
"""
XXX
"""
"""
TODO
"""
def
tpc_begin
(
transaction
):
"""
XXX
"""
"""
TODO
"""
def
tpc_vote
(
transaction
):
"""
XXX
"""
"""
TODO
"""
def
tpc_finish
(
transaction
,
f
=
None
):
"""
XXX
"""
"""
TODO
"""
def
getSerial
(
oid
):
"""
XXX
"""
"""
TODO
"""
def
loadSerial
(
oid
,
serial
):
"""
XXX
"""
"""
TODO
"""
def
loadBefore
(
oid
,
tid
):
"""
XXX
"""
"""
TODO
"""
def
getExtensionMethods
():
"""
XXX
"""
"""
TODO
"""
def
copyTransactionsFrom
():
"""
XXX
"""
"""
TODO
"""
def
store
(
oid
,
oldserial
,
data
,
version
,
transaction
):
"""
...
...
@@ -445,31 +445,31 @@ class IStorage(Interface):
class
IUndoableStorage
(
IStorage
):
def
undo
(
transaction_id
,
txn
):
"""
XXX
"""
"""
TODO
"""
def
undoInfo
():
"""
XXX
"""
"""
TODO
"""
def
undoLog
(
first
,
last
,
filter
=
None
):
"""
XXX
"""
"""
TODO
"""
def
pack
(
t
,
referencesf
):
"""
XXX
"""
"""
TODO
"""
class
IVersioningStorage
(
IStorage
):
def
abortVersion
(
src
,
transaction
):
"""
XXX
"""
"""
TODO
"""
def
commitVersion
(
src
,
dest
,
transaction
):
"""
XXX
"""
"""
TODO
"""
def
modifiedInVersion
(
oid
):
"""
XXX
"""
"""
TODO
"""
def
versionEmpty
(
version
):
"""
XXX
"""
"""
TODO
"""
def
versions
(
max
=
None
):
"""
XXX
"""
"""
TODO
"""
trunk/src/transaction/interfaces.py
View file @
54ea7005
...
...
@@ -151,7 +151,7 @@ class IDataManager(zope.interface.Interface):
manager must define a sortKey() method that provides a global ordering
for resource managers.
"""
#
XXX:
Alternate version:
# Alternate version:
#"""Return a consistent sort key for this connection.
#
#This allows ordering multiple connections that use the same storage in
...
...
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