Code

fixed upgrading doc to have CGI changes in the correct order
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 8 Nov 2002 00:40:30 +0000 (00:40 +0000)
committerrichard <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
doc/upgrading.txt

index 7113b1a13f617e952288e88fc82cc1fc47dddd3d..87f4e49afa23c9020ea2d8392b56fdbfac2d675f 100644 (file)
@@ -4,6 +4,7 @@ are given with the most recent entry first.
 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
index e7615dd15e3e7a67ff26133985d24af3de6a9ed9..27f241443100fd6c3013f43231f231ac7e61b7ff 100644 (file)
@@ -360,10 +360,10 @@ The CGI interface code was completely reorganised and largely rewritten. The
 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
      '''
@@ -371,10 +371,10 @@ changing from::
 
 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
      '''