From: richard Date: Fri, 8 Nov 2002 00:40:30 +0000 (+0000) Subject: fixed upgrading doc to have CGI changes in the correct order X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fbbb0e7418450e06d27cf45c6ee992f1bcc32351;p=roundup.git fixed upgrading doc to have CGI changes in the correct order git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1382 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 7113b1a..87f4e49 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/doc/upgrading.txt b/doc/upgrading.txt index e7615dd..27f2414 100644 --- a/doc/upgrading.txt +++ b/doc/upgrading.txt @@ -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 '''