[Swift-commit] r2065 - log-processing

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Sun Jun 15 12:10:55 CDT 2008


Author: benc
Date: 2008-06-15 12:10:55 -0500 (Sun, 15 Jun 2008)
New Revision: 2065

Modified:
   log-processing/table-jobs-sites
Log:
right-align numbers in site table

Modified: log-processing/table-jobs-sites
===================================================================
--- log-processing/table-jobs-sites	2008-06-15 17:10:24 UTC (rev 2064)
+++ log-processing/table-jobs-sites	2008-06-15 17:10:55 UTC (rev 2065)
@@ -6,7 +6,7 @@
 
 STATES="JOB_START JOB_END APPLICATION_EXCEPTION"
 
-echo "<table>"
+echo "<table border=\"1\">"
 
 echo "<tr> <th>site</th> "
 
@@ -24,12 +24,12 @@
 
 ACC=0
 
-echo "<tr> <th>$site</th>"
+echo "<tr> <th align=\"right\">$site</th>"
 
 for status in $STATES; do
 count=$(grep $status execute2.event | grep $site | wc -l)
 ACC=$(( $ACC + $count ))
-echo "<td>$count</td>"
+echo "<td align=\"right\">$count</td>"
 done
 
 count=$(grep $site execute2.event | wc -l)




More information about the Swift-commit mailing list