summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cd355af)
raw | patch | inline | side by side (parent: cd355af)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 20 Feb 2002 05:23:24 +0000 (05:23 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 20 Feb 2002 05:23:24 +0000 (05:23 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@640 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/hyperdb.py | patch | blob | history |
diff --git a/roundup/hyperdb.py b/roundup/hyperdb.py
index 0386a7371fe6b154de8f2a2d928a49971de66ecc..240c9068471870791379f4269e8cdf1d0a21ec1a 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.56 2002-02-20 05:05:28 richard Exp $
+# $Id: hyperdb.py,v 1.57 2002-02-20 05:23:24 richard Exp $
__doc__ = """
Hyperdatabase implementation, especially field types.
# if the value's the same as the existing value, no sense in
# doing anything
- if value == node[key]:
+ if node.has_key(key) and value == node[key]:
del propvalues[key]
continue
#
# $Log: not supported by cvs2svn $
+# Revision 1.56 2002/02/20 05:05:28 richard
+# . Added simple editing for classes that don't define a templated interface.
+# - access using the admin "class list" interface
+# - limited to admin-only
+# - requires the csv module from object-craft (url given if it's missing)
+#
# Revision 1.55 2002/02/15 07:27:12 richard
# Oops, precedences around the way w0rng.
#