Return-Path: Mailing-List: contact gump-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list gump@jakarta.apache.org Received: (qmail 6526 invoked by uid 500); 24 Sep 2003 21:26:44 -0000 Received: (qmail 5794 invoked from network); 24 Sep 2003 21:26:35 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 24 Sep 2003 21:26:35 -0000 Received: (qmail 91325 invoked by uid 1728); 24 Sep 2003 21:26:47 -0000 Date: 24 Sep 2003 21:26:47 -0000 Message-ID: <20030924212647.91324.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/24 14:26:47 Modified: python/gump document.py Log: In a place I can't easily test before I commit, the icon code failed. Retry #1. Revision Changes Path 1.27 +7 -6 jakarta-gump/python/gump/document.py Index: document.py =================================================================== RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- document.py 24 Sep 2003 20:28:21 -0000 1.26 +++ document.py 24 Sep 2003 21:26:46 -0000 1.27 @@ -197,6 +197,7 @@ # Temporary # Too verbose ... forrest.addParameter('-debug') + forrest.addParameter('-verbose') forrest.addPrefixedParameter('-D','java.awt.headless','true','=') #forrest.addPrefixedParameter('-D','project.content-dir', \ @@ -965,14 +966,14 @@ def getStatePairIcon(pair,depth=0): - stateName=stateName(pair.status) - reasonString=reasonString(pair.reason) + sname=stateName(pair.status) + rstring=reasonString(pair.reason) - description=stateName - uniqueName=stateName + description=sname + uniqueName=sname if not pair.reason==REASON_UNSET: - description+=' '+reasonString - uniqueName+='_'+reasonString + description+=' '+rstring + uniqueName+='_'+rstring # Build the URL iconName=gumpSafeName(uniqueName)