Return-Path: Mailing-List: contact gump-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list gump@jakarta.apache.org Received: (qmail 13775 invoked by uid 500); 25 Sep 2003 18:17:14 -0000 Received: (qmail 13772 invoked from network); 25 Sep 2003 18:17:14 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 25 Sep 2003 18:17:14 -0000 Received: (qmail 25616 invoked by uid 1728); 25 Sep 2003 18:17:22 -0000 Date: 25 Sep 2003 18:17:22 -0000 Message-ID: <20030925181722.25615.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 11:17:22 Modified: . gumpy.sh python/gump document.py Log: Fixed typo, enhanced logging. Revision Changes Path 1.12 +4 -2 jakarta-gump/gumpy.sh Index: gumpy.sh =================================================================== RCS file: /home/cvs/jakarta-gump/gumpy.sh,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- gumpy.sh 25 Sep 2003 18:13:54 -0000 1.11 +++ gumpy.sh 25 Sep 2003 18:17:21 -0000 1.12 @@ -125,8 +125,10 @@ # cd $GUMP_PYTHON echo $SEPARATOR >> $GUMP_LOG -python gump/integrate.py -w ../${GUMP_WORKSPACE}.xml ${GUMP_TARGET} >> $GUMP_LOG 2>&1 if [ ! $? ] ; then - echo "Failed to integrate, exiting..." +python gump/integrate.py -w ../${GUMP_WORKSPACE}.xml ${GUMP_TARGET} >> $GUMP_LOG 2>&1 +if [ ! $? ] ; then + echo "Failed to integrate, exited with [$?], exiting..." >> $GUMP_LOG + echo "Failed to integrate, exited with [$?], exiting..." exit 1 fi; @@ -166,10 +168,8 @@ pkill -P $$ # $Log$ -# Revision 1.11 2003/09/25 18:13:54 ajack -# Check the status of the integrate.py, it ought only exit badly if it drastically fails. -# This stuff it so verbose right now (during development) we don't notice the -# faliure that we should. +# Revision 1.12 2003/09/25 18:17:21 ajack +# Fixed typo, enhanced logging. # # Revision 1.2 2003/05/30 22:02:56 nickchalko # Fixing incomplete update from Adam 1.39 +1 -1 jakarta-gump/python/gump/document.py Index: document.py =================================================================== RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- document.py 25 Sep 2003 17:51:05 -0000 1.38 +++ document.py 25 Sep 2003 18:17:22 -0000 1.39 @@ -996,7 +996,7 @@ return url def getLink(href,name=None): - if not name: name = fref + if not name: name = href link='%s' % (href,name) return link