summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a70af9d)
raw | patch | inline | side by side (parent: a70af9d)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 21 May 2002 06:08:10 +0000 (06:08 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 21 May 2002 06:08:10 +0000 (06:08 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@744 57a73879-2fb5-44c3-a270-3262357dd7e2
MIGRATION.txt | patch | blob | history | |
roundup/cgi_client.py | patch | blob | history |
diff --git a/MIGRATION.txt b/MIGRATION.txt
index c1057e224ce665be8b8a66697197da30041935b9..27bd93ec7ef3854af71690f2082e02083d5b5e8c 100644 (file)
--- a/MIGRATION.txt
+++ b/MIGRATION.txt
will go into files/file/2/file2003. Previous messages are still found, but
could be put into this structure.
+Migrating from 0.4.0 to 0.4.1
+=============================
+
+Configuration
+-------------
+
+The USER_INDEX definition introduced in 0.4.1 was too restrictive in its
+allowing replacement of 'assignedto' with the user's userid. Users must change
+the None value of 'assignedto' to 'CURRENT USER' (the string, in quotes) for
+the replacement behaviour to occur now.
+
+
Migrating from 0.4.0 to 0.4.1
=============================
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 031d669aa1d3b17e5f30eb3b3fb1cbb3d903807e..ec13b47ba13ba83563cce0adec79f92c7521cd57 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: cgi_client.py,v 1.120 2002-05-21 06:05:53 richard Exp $
+# $Id: cgi_client.py,v 1.121 2002-05-21 06:08:10 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
# now format the filterspec
for k, l in filterspec.items():
- # fix up the assignedto if needed
- if l == 'CURRENT USER':
+ # fix up the CURRENT USER if needed (handle None too since that's
+ # the old flag value)
+ if l in (None, 'CURRENT USER'):
l = [self.db.user.lookup(self.user)]
# add
#
# $Log: not supported by cvs2svn $
+# Revision 1.120 2002/05/21 06:05:53 richard
+# . #551483 ] assignedto in Client.make_index_link
+#
# Revision 1.119 2002/05/15 06:21:21 richard
# . node caching now works, and gives a small boost in performance
#