summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e320078)
raw | patch | inline | side by side (parent: e320078)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 30 Jul 2001 01:41:36 +0000 (01:41 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 30 Jul 2001 01:41:36 +0000 (01:41 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@155 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/backends/back_anydbm.py | patch | blob | history | |
roundup/backends/back_bsddb.py | patch | blob | history | |
roundup/backends/back_bsddb3.py | patch | blob | history |
index 99febb29bdcefe877885d2edff7d082ab5ee4e05..3845914bc4c6bf57ef79002278cf31094361e2ed 100644 (file)
-#$Id: back_anydbm.py,v 1.3 2001-07-25 01:23:07 richard Exp $
+#$Id: back_anydbm.py,v 1.4 2001-07-30 01:41:36 richard Exp $
import anydbm, os, marshal
from roundup import hyperdb, date
# convert the marshalled data to instances
properties = self.classes[classname].properties
- for key in res.keys():
+ for key in properties.keys():
if key == self.RETIRED_FLAG: continue
if properties[key].isDateType:
res[key] = date.Date(res[key])
#
#$Log: not supported by cvs2svn $
+#Revision 1.3 2001/07/25 01:23:07 richard
+#Added the Roundup spec to the new documentation directory.
+#
#Revision 1.2 2001/07/23 08:20:44 richard
#Moved over to using marshal in the bsddb and anydbm backends.
#roundup-admin now has a "freshen" command that'll load/save all nodes (not
index db66c485f724cdca9bb931f57d368cc6da8678f3..fde8610beb62509cb11395bc50398c018341c666 100644 (file)
-#$Id: back_bsddb.py,v 1.4 2001-07-23 08:25:33 richard Exp $
+#$Id: back_bsddb.py,v 1.5 2001-07-30 01:41:36 richard Exp $
import bsddb, os, marshal
from roundup import hyperdb, date
# convert the marshalled data to instances
properties = self.classes[classname].properties
- for key in res.keys():
+ for key in properties.keys():
if properties[key].isDateType:
res[key] = date.Date(res[key])
elif properties[key].isIntervalType:
#
#$Log: not supported by cvs2svn $
+#Revision 1.4 2001/07/23 08:25:33 richard
+#more handling of bad journals
+#
#Revision 1.3 2001/07/23 08:20:44 richard
#Moved over to using marshal in the bsddb and anydbm backends.
#roundup-admin now has a "freshen" command that'll load/save all nodes (not
index 59ba80ab2cd6f69cf16101b36d39159b5c76e596..581e7bcf3d8549981641b93657987fa1f5ce9bcf 100644 (file)
-#$Id: back_bsddb3.py,v 1.1 2001-07-24 04:26:03 anthonybaxter Exp $
+#$Id: back_bsddb3.py,v 1.2 2001-07-30 01:41:36 richard Exp $
import bsddb3, os, marshal
from roundup import hyperdb, date
# convert the marshalled data to instances
properties = self.classes[classname].properties
- for key in res.keys():
+ for key in properties.keys():
if properties[key].isDateType:
res[key] = date.Date(res[key])
elif properties[key].isIntervalType:
#
#$Log: not supported by cvs2svn $
+#Revision 1.1 2001/07/24 04:26:03 anthonybaxter
+#bsddb3 implementation. For now, it's the bsddb implementation with a "3"
+#added in crayon.
+#
#Revision 1.4 2001/07/23 08:25:33 richard
#more handling of bad journals
#