summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0a7255f)
raw | patch | inline | side by side (parent: 0a7255f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 8 Nov 2002 00:40:30 +0000 (00:40 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 8 Nov 2002 00:40:30 +0000 (00:40 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1382 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
doc/upgrading.txt | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 7113b1a13f617e952288e88fc82cc1fc47dddd3d..87f4e49afa23c9020ea2d8392b56fdbfac2d675f 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
2002-11-?? 0.5.3
- added mention of how to give users multiple Roles
- mention needed trailing "/" in TRACKER_WEB
+- fixed upgrading doc to have CGI changes in the correct order
2002-11-07 0.5.2
diff --git a/doc/upgrading.txt b/doc/upgrading.txt
index e7615dd15e3e7a67ff26133985d24af3de6a9ed9..27f241443100fd6c3013f43231f231ac7e61b7ff 100644 (file)
--- a/doc/upgrading.txt
+++ b/doc/upgrading.txt
end result is that this section of your tracker interfaces module will need
changing from::
- from roundup import mailgw
- from roundup.cgi import client
+ from roundup import cgi_client, mailgw
+ from roundup.i18n import _
- class Client(client.Client):
+ class Client(cgi_client.Client):
''' derives basic CGI implementation from the standard module,
with any specific extensions
'''
to::
- from roundup import cgi_client, mailgw
- from roundup.i18n import _
+ from roundup import mailgw
+ from roundup.cgi import client
- class Client(cgi_client.Client):
+ class Client(client.Client):
''' derives basic CGI implementation from the standard module,
with any specific extensions
'''