Return-Path: Mailing-List: contact gump-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list gump@jakarta.apache.org Received: (qmail 65371 invoked by uid 500); 25 Sep 2003 17:50:57 -0000 Received: (qmail 65368 invoked from network); 25 Sep 2003 17:50:57 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 25 Sep 2003 17:50:57 -0000 Received: (qmail 11366 invoked by uid 1728); 25 Sep 2003 17:51:05 -0000 Date: 25 Sep 2003 17:51:05 -0000 Message-ID: <20030925175105.11365.qmail@minotaur.apache.org> From: ajack@apache.org To: jakarta-gump-cvs@apache.org Subject: cvs commit: jakarta-gump/python/gump document.py X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N ajack 2003/09/25 10:51:05 Modified: python/gump document.py Log: Fixed typo. Added ws_version to output. Revision Changes Path 1.38 +3 -2 jakarta-gump/python/gump/document.py Index: document.py =================================================================== RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- document.py 25 Sep 2003 17:38:27 -0000 1.37 +++ document.py 25 Sep 2003 17:51:05 -0000 1.38 @@ -253,6 +253,7 @@ titledDataInTableXDoc(x,'Description', workspace.description) if workspace.version: titledDataInTableXDoc(x,'Workspace Version', workspace.version) + titledDataInTableXDoc(x,'Gump Preferred Workspace Version', setting.ws_version) titledDataInTableXDoc(x,'Java Command', context.javaCommand) titledDataInTableXDoc(x,'@@DATE@@', str(default.date)) @@ -381,9 +382,9 @@ if module.description or module.url: startSectionXDoc(x,'Description') - if module.description + if module.description: paragraphXDoc(x,module.description) - if module.url + if module.url: paragraphXDoc(x,getLink(module.url)) endSectionXDoc(x)