Subversion Repositories svn1-original

Rev

Rev 288 | Rev 317 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 288 Rev 295
Line 1003... Line 1003...
1003
    /*
1003
    /*
1004
    **  If we are generating an HTML report then we need to create the file
1004
    **  If we are generating an HTML report then we need to create the file
1005
    **  that contains all the team names - the assumption is that this data
1005
    **  that contains all the team names - the assumption is that this data
1006
    **  is available
1006
    **  is available
1007
    */
1007
    */
1008
    if ( report_html == html )
1008
    if ( report_html == html || report_html == printed)
1009
    {
1009
    {
1010
        pri_team();
1010
        pri_team();
1011
    }
1011
    }
1012
 
1012
 
1013
    /*
1013
    /*
1014
    **  Generate the awards report.
1014
    **  Generate the awards report.
1015
    **  This is only available as an HTML report
1015
    **  This is only available as an HTML report
1016
    */
1016
    */
1017
    if ( report_html == html )
1017
    if ( report_html == html || report_html == printed)
1018
    {
1018
    {
1019
        pri_awards_html();
1019
        pri_awards_html();
1020
    }
1020
    }
1021
 
1021
 
1022
    /*
1022
    /*
Line 1075... Line 1075...
1075
    /*
1075
    /*
1076
    **  Generate ALL results with HTML tags
1076
    **  Generate ALL results with HTML tags
1077
    */
1077
    */
1078
    report_html = html;
1078
    report_html = html;
1079
    pri_awards();
1079
    pri_awards();
-
 
1080
    report_html = printed;
-
 
1081
    pri_awards();
1080
    report_html = saved;
1082
    report_html = saved;
1081
}
1083
}
1082
 
1084
 
1083
/*========================================================================
1085
/*========================================================================
1084
 *
1086
 *
Line 2095... Line 2097...
2095
        pri_eleg_body ( leg );
2097
        pri_eleg_body ( leg );
2096
        
2098
        
2097
        report_html = html;
2099
        report_html = html;
2098
        
2100
        
2099
        pri_leg_body ( leg );
2101
        pri_leg_body ( leg );
-
 
2102
        pri_eleg_body ( leg );
-
 
2103
 
-
 
2104
        //report_html = printed;
-
 
2105
        //
-
 
2106
        //pri_leg_body ( leg );
2100
        pri_eleg_body ( leg );        
2107
        //pri_eleg_body ( leg );        
2101
        
2108
        
2102
        report_html = text;
2109
        report_html = text;
2103
    }
2110
    }
2104
 
2111
 
2105
    pri_final();
2112
    pri_final();
Line 2709... Line 2716...
2709
    /*
2716
    /*
2710
    **  Generate ALL results with HTML tags
2717
    **  Generate ALL results with HTML tags
2711
    */
2718
    */
2712
    report_html = html;
2719
    report_html = html;
2713
    pri_summary();
2720
    pri_summary();
-
 
2721
    report_html = printed;
-
 
2722
    pri_summary();
2714
    report_html = saved;
2723
    report_html = saved;
2715
}
2724
}
2716
 
2725
 
2717
/*========================================================================
2726
/*========================================================================
2718
 *
2727
 *