comparison doc/upgrading.txt @ 1308:bd71c43f0911

fixed upgrading doc to have CGI changes in the correct order
author Richard Jones <richard@users.sourceforge.net>
date Fri, 08 Nov 2002 00:40:30 +0000
parents 7733d5b96ef6
children f41360211819
comparison
equal deleted inserted replaced
1307:0b44a351cf6d 1308:bd71c43f0911
358 358
359 The CGI interface code was completely reorganised and largely rewritten. The 359 The CGI interface code was completely reorganised and largely rewritten. The
360 end result is that this section of your tracker interfaces module will need 360 end result is that this section of your tracker interfaces module will need
361 changing from:: 361 changing from::
362 362
363 from roundup import cgi_client, mailgw
364 from roundup.i18n import _
365
366 class Client(cgi_client.Client):
367 ''' derives basic CGI implementation from the standard module,
368 with any specific extensions
369 '''
370 pass
371
372 to::
373
363 from roundup import mailgw 374 from roundup import mailgw
364 from roundup.cgi import client 375 from roundup.cgi import client
365 376
366 class Client(client.Client): 377 class Client(client.Client):
367 ''' derives basic CGI implementation from the standard module, 378 ''' derives basic CGI implementation from the standard module,
368 with any specific extensions 379 with any specific extensions
369 ''' 380 '''
370 pass 381 pass
371 382
372 to::
373
374 from roundup import cgi_client, mailgw
375 from roundup.i18n import _
376
377 class Client(cgi_client.Client):
378 ''' derives basic CGI implementation from the standard module,
379 with any specific extensions
380 '''
381 pass
382
383 You will also need to install the new version of roundup.cgi from the source 383 You will also need to install the new version of roundup.cgi from the source
384 cgi-bin directory if you're using it. 384 cgi-bin directory if you're using it.
385 385
386 386
387 0.5.0 HTML templating 387 0.5.0 HTML templating

Roundup Issue Tracker: http://roundup-tracker.org/