Subversion Repositories svn1-original

Rev

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

Rev 258 Rev 276
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 )
1008
    if ( report_html == html )
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 )
1017
    if ( report_html == html )
1018
    {
1018
    {
1019
        pri_awards_html();
1019
        pri_awards_html();
1020
    }
1020
    }
1021
 
1021
 
1022
    /*
1022
    /*
1023
    **  Generate the master index page
1023
    **  Generate the master index page
1024
    */
1024
    */
1025
    if ( report_html )
1025
    if ( report_html == html )
1026
    {
1026
    {
1027
        pri_master_index();
1027
        pri_master_index();
1028
    }
1028
    }
1029
 
1029
 
1030
    pri_name_index_body();
1030
    pri_name_index_body();
Line 1678... Line 1678...
1678
 
1678
 
1679
    close_printer();
1679
    close_printer();
1680
    /*
1680
    /*
1681
     ** Tell the main system about this new report
1681
     ** Tell the main system about this new report
1682
     */
1682
     */
1683
    MainWindow::registerReport(getPrinterFile(), "Master Index");
1683
    MainWindow::registerReport(getPrinterFile(), "Master Leg Index");
1684
    
1684
    
1685
}
1685
}
1686
 
1686
 
1687
 
1687
 
1688
/*========================================================================
1688
/*========================================================================