summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 89a21c7)
raw | patch | inline | side by side (parent: 89a21c7)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 11 Jun 2002 05:02:37 +0000 (05:02 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 11 Jun 2002 05:02:37 +0000 (05:02 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@774 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 b463dd93fd660bc2aad462346a28c28df8c246d8..6bddb5cfb4e6b793f58358b4531aa24f2d38e5ea 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
wasn't necessary (font specs, styles never used) and added a style for
message content
. build htmlbase if tests are run using CVS checkout
+ . #565979 ] code error in hyperdb.Class.find
2002-03-25 - 0.4.1
Feature:
diff --git a/roundup/hyperdb.py b/roundup/hyperdb.py
index 776704ca0bdfca7fcf4ebe08398fa3c1a6012e0d..78a0d7691702921e450d3f54ce277d255ccd2bda 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.66 2002-05-25 07:16:24 rochecompaan Exp $
+# $Id: hyperdb.py,v 1.67 2002-06-11 05:02:37 richard Exp $
__doc__ = """
Hyperdatabase implementation, especially field types.
if node.has_key(self.db.RETIRED_FLAG):
continue
for propname, nodeid in propspec:
+ prop = self.properties[propname]
property = node[propname]
if isinstance(prop, Link) and nodeid == property:
l.append(id)
#
# $Log: not supported by cvs2svn $
+# Revision 1.66 2002/05/25 07:16:24 rochecompaan
+# Merged search_indexing-branch with HEAD
+#
# Revision 1.65 2002/05/22 04:12:05 richard
# . applied patch #558876 ] cgi client customization
# ... with significant additions and modifications ;)