ajack 2003/11/02 13:46:00
Modified: profile gump.xml
. gumpy.sh
python/gump check.py document.py
Log:
1) Added Krysalis BarCode to profile
2) Display Python Version in gumpy.sh
3) Display Python version in documentation.
Revision Changes Path
1.274 +1 -0 jakarta-gump/profile/gump.xml
Index: gump.xml
===================================================================
RCS file: /home/cvs/jakarta-gump/profile/gump.xml,v
retrieving revision 1.273
retrieving revision 1.274
diff -u -r1.273 -r1.274
--- gump.xml 27 Oct 2003 21:54:11 -0000 1.273
+++ gump.xml 2 Nov 2003 21:45:59 -0000 1.274
@@ -165,6 +165,7 @@
<!-- [EMAIL PROTECTED] -->
+ <module href="project/krysalis-barcode.xml" />
<module href="project/krysalis-version.xml" />
<module href="project/krysalis-ruper.xml"/>
<module href="project/ruper2.xml"/>
1.21 +2 -0 jakarta-gump/gumpy.sh
Index: gumpy.sh
===================================================================
RCS file: /home/cvs/jakarta-gump/gumpy.sh,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- gumpy.sh 27 Oct 2003 17:51:51 -0000 1.20
+++ gumpy.sh 2 Nov 2003 21:45:59 -0000 1.21
@@ -138,6 +138,8 @@
#
echo $SEPARATOR >> $GUMP_LOG
export >> $GUMP_LOG
+# Capture Python Version
+python -V >> $GUMP_LOG
#
# Do the integration run
@@ -195,6 +197,8 @@
pkill -KILL -P $$
# $Log$
-# Revision 1.20 2003/10/27 17:51:51 ajack
-# Exit script and mail (via cron) if python fails
+# Revision 1.21 2003/11/02 21:45:59 ajack
+# 1) Added Krysalis BarCode to profile
+# 2) Display Python Version in gumpy.sh
+# 3) Display Python version in documentation.
#
1.32 +4 -4 jakarta-gump/python/gump/check.py
Index: check.py
===================================================================
RCS file: /home/cvs/jakarta-gump/python/gump/check.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- check.py 29 Oct 2003 19:34:05 -0000 1.31
+++ check.py 2 Nov 2003 21:45:59 -0000 1.32
@@ -186,7 +186,7 @@
if logOutput and result.output:
out=tailFileToString(result.output,10)
- context.addInfo(name + 'produce:\n' + out)
+ context.addInfo(name + ' produced: \n' + out)
return ok
1.100 +3 -1 jakarta-gump/python/gump/document.py
Index: document.py
===================================================================
RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- document.py 30 Oct 2003 04:23:23 -0000 1.99
+++ document.py 2 Nov 2003 21:45:59 -0000 1.100
@@ -263,8 +263,10 @@
titledDataInTableXDoc(x,'Description', workspace.description)
if workspace.version:
titledDataInTableXDoc(x,'Workspace Version', workspace.version)
- titledDataInTableXDoc(x,'Gump Preferred Workspace Version', setting.ws_version)
+ if not workspace.version or not workspace.version == setting.ws_version:
+ titledDataInTableXDoc(x,'Gump Preferred Workspace Version',
setting.ws_version)
titledDataInTableXDoc(x,'Java Command', context.javaCommand)
+ titledDataInTableXDoc(x,'Python', str(sys.version))
titledDataInTableXDoc(x,'@@DATE@@', str(default.date))
titledDataInTableXDoc(x,'Start Date/Time', context.startdatetime)
titledDataInTableXDoc(x,'Timezone', context.timezone)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]