Mercurial > p > roundup > code
diff roundup/hyperdb.py @ 1865:a1b16b9cd329 maint-0.6
backport from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 24 Oct 2003 22:54:06 +0000 |
| parents | c4968040459e |
| children |
line wrap: on
line diff
--- a/roundup/hyperdb.py Fri Oct 24 09:32:19 2003 +0000 +++ b/roundup/hyperdb.py Fri Oct 24 22:54:06 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: hyperdb.py,v 1.87.2.1 2003-09-04 23:09:48 richard Exp $ +# $Id: hyperdb.py,v 1.87.2.2 2003-10-24 22:54:06 richard Exp $ """ Hyperdatabase implementation, especially field types. @@ -260,11 +260,6 @@ ''' 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. @@ -381,6 +376,11 @@ ''' 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.
