summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a5ae171)
raw | patch | inline | side by side (parent: a5ae171)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 24 Oct 2003 22:52:48 +0000 (22:52 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 24 Oct 2003 22:52:48 +0000 (22:52 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1933 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/hyperdb.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index a742947adce7834407d513dac0f4c4e139eaec0d..400fabd9d337100f3fa8c69a39be05e15e83953f 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- Fixed detectors fix incorrectly fixed in bugfix release 0.6.2
- Added note to upgrading doc for detectors fix in 0.6.2
- added script to help migrating queries from pre-0.6 trackers
+- Fixed "documentation" of getnodeids in roundup.hyperdb
2003-09-29 0.6.2
diff --git a/roundup/hyperdb.py b/roundup/hyperdb.py
index a524b1937563f7fbb03db15ba5b8adcb391144e5..6a1c83108d97b2a0534a22e8c5893dffa86304cd 100644 (file)
--- a/roundup/hyperdb.py
+++ b/roundup/hyperdb.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: hyperdb.py,v 1.89 2003-10-07 11:58:57 anthonybaxter Exp $
+# $Id: hyperdb.py,v 1.90 2003-10-24 22:52:48 richard Exp $
"""
Hyperdatabase implementation, especially field types.
'''
raise NotImplementedError
- def getnodeids(self, classname, db=None):
- '''Retrieve all the ids of the nodes for a particular Class.
- '''
- raise NotImplementedError
-
def storefile(self, classname, nodeid, property, content):
'''Store the content of the file in the database.
'''
return Node(self, nodeid)
+ def getnodeids(self, db=None):
+ '''Retrieve all the ids of the nodes for a particular Class.
+ '''
+ raise NotImplementedError
+
def set(self, nodeid, **propvalues):
"""Modify a property on an existing node of this class.