summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: eada09e)
raw | patch | inline | side by side (parent: eada09e)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 11 Dec 2002 01:03:38 +0000 (01:03 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 11 Dec 2002 01:03:38 +0000 (01:03 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1401 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/backends/back_anydbm.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 2d30a8af8410591a64892cb03541694bbf2a4bdc..e29f68da06f94111bd716257bcf14fd6d02f423c 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- finished of handling of retired flag in filter() (sf bug 635260)
- allow StringHTMLProperty in MultilinkHTMLProperty test to work
- don't set explicit None Link properties in web create
+- fixed nasty sorting bug that was lowercasing properties
2002-11-07 0.5.2
index 291c128ec830ba00a35c70ae0d42d2c29bc0ffb7..61606aeba579fc5761e5d768b319a4059c51b2cd 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-#$Id: back_anydbm.py,v 1.93 2002-11-28 07:02:23 richard Exp $
+#$Id: back_anydbm.py,v 1.94 2002-12-11 01:03:38 richard Exp $
'''
This module defines a backend that saves the hyperdatabase in a database
chosen by anydbm. It is guaranteed to always be available in python
if isinstance(propclass, String):
# clean up the strings
if av and av[0] in string.uppercase:
- av = an[prop] = av.lower()
+ av = av.lower()
if bv and bv[0] in string.uppercase:
- bv = bn[prop] = bv.lower()
+ bv = bv.lower()
if (isinstance(propclass, String) or
isinstance(propclass, Date)):
# it might be a string that's really an integer