File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ are given with the most recent entry first.
442002-11-?? 0.5.3
55- added mention of how to give users multiple Roles
66- mention needed trailing "/" in TRACKER_WEB
7+ - fixed upgrading doc to have CGI changes in the correct order
78
89
9102002-11-07 0.5.2
Original file line number Diff line number Diff line change @@ -360,21 +360,21 @@ The CGI interface code was completely reorganised and largely rewritten. The
360360end result is that this section of your tracker interfaces module will need
361361changing from::
362362
363- from roundup import mailgw
364- from roundup.cgi import client
363+ from roundup import cgi_client, mailgw
364+ from roundup.i18n import _
365365
366- class Client(client .Client):
366+ class Client(cgi_client .Client):
367367 ''' derives basic CGI implementation from the standard module,
368368 with any specific extensions
369369 '''
370370 pass
371371
372372to::
373373
374- from roundup import cgi_client, mailgw
375- from roundup.i18n import _
374+ from roundup import mailgw
375+ from roundup.cgi import client
376376
377- class Client(cgi_client .Client):
377+ class Client(client .Client):
378378 ''' derives basic CGI implementation from the standard module,
379379 with any specific extensions
380380 '''
You can’t perform that action at this time.
0 commit comments