Changeset 4679


Ignore:
Timestamp:
07/20/10 15:32:57 (15 years ago)
Author:
Mathieu Morlighem
Message:

Fixed table border and special characters (< and >)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/cron/report.sh

    r3615 r4679  
    2020
    2121#Process matlab_log.log
    22 cat matlab_log.log         | egrep 'ERROR|SUCCESS|FAILURE'          > matlab.log
     22cat matlab_log.log        | egrep 'ERROR|SUCCESS|FAILURE' | sed -e "s/>/\&gt;/g" | sed -e "s/</\&lt;/g" > matlab.log
    2323NUM_TOT=`wc -l matlab.log | awk '{print $1}'`
    2424NUM_ERR=`cat matlab.log | grep 'ERROR'   | grep -v "PETSC ERROR" | wc -l`
     
    124124        cat << END > content.html
    125125<table $(echo $H2_STYLE)><tr><td $(echo $H2_FONT)>List of tests</td></tr></table>
    126 <table $(echo $BODY_STYLE) cellspacing="-1">
     126<table $(echo $BODY_STYLE) style="border-collapse:collapse;">
    127127<tr>
    128128<th $(echo $BODY_FONT)>Result</th>
Note: See TracChangeset for help on using the changeset viewer.