summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e98ae4a)
raw | patch | inline | side by side (parent: e98ae4a)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 27 Nov 2001 03:16:09 +0000 (03:16 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 27 Nov 2001 03:16:09 +0000 (03:16 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@427 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/hyperdb.py | patch | blob | history |
diff --git a/roundup/hyperdb.py b/roundup/hyperdb.py
index 515ec99327c1867d555900bdb20134eea5c14b66..4c9b511a59499bfdab2c49d79f098c694a483a14 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.35 2001-11-22 15:46:42 jhermann Exp $
+# $Id: hyperdb.py,v 1.36 2001-11-27 03:16:09 richard Exp $
__doc__ = """
Hyperdatabase implementation, especially field types.
continue
# apply filter
for t, k, v in filterspec:
+ # this node doesn't have this property, so reject it
+ if not node.has_key(k): break
+
if t == 0 and node[k] not in v:
# link - if this node'd property doesn't appear in the
# filterspec's nodeid list, skip it
#
# $Log: not supported by cvs2svn $
+# Revision 1.35 2001/11/22 15:46:42 jhermann
+# Added module docstrings to all modules.
+#
# Revision 1.34 2001/11/21 04:04:43 richard
# *sigh* more missing value handling
#