Subversion Repositories svn1-original

Rev

Rev 25 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25 Rev 27
Line 1129... Line 1129...
1129
 *
1129
 *
1130
 *  Print award results
1130
 *  Print award results
1131
 *
1131
 *
1132
 *  Purpose:
1132
 *  Purpose:
1133
 *      This function is called to Print award results
1133
 *      This function is called to Print award results
-
 
1134
 *      Keep the page to 80 cols, so that it can be pronted on A4
1134
 *
1135
 *
1135
 *  Parameters:
1136
 *  Parameters:
1136
 *      None
1137
 *      None
1137
 *
1138
 *
1138
 *  Returns:
1139
 *  Returns:
Line 1147... Line 1148...
1147
    int windex;
1148
    int windex;
1148
    ty_s_data  *ptr;
1149
    ty_s_data  *ptr;
1149
    int         last_class;
1150
    int         last_class;
1150
 
1151
 
1151
    report_html = 1;
1152
    report_html = 1;
1152
    if( !open_printer( "", "awards", 132, report_html, "Prizes and Awards" ) )
1153
    if( !open_printer( "", "awards", 80, report_html, "Prizes and Awards" ) )
1153
        return;
1154
        return;
1154
 
1155
 
1155
    /*
1156
    /*
1156
    **  Generate an index for this page
1157
    **  Generate an index for this page
1157
    */
1158
    */
Line 1345... Line 1346...
1345
        print( "    %-13s ", config.leg_name[i - 1] );
1346
        print( "    %-13s ", config.leg_name[i - 1] );
1346
        print( "  Name: <A HREF=\"%s#Team_%04d\">", p_filename(filebase, "name" ,"html"), team_buf.numb );
1347
        print( "  Name: <A HREF=\"%s#Team_%04d\">", p_filename(filebase, "name" ,"html"), team_buf.numb );
1347
        print( "%-*s", MAX_PERSON_NAME, team_buf.members[i-1].name );
1348
        print( "%-*s", MAX_PERSON_NAME, team_buf.members[i-1].name );
1348
        print( "</A>" );
1349
        print( "</A>" );
1349
        print( "  Team :<A HREF=\"%s#Team_%04d\">", p_filename(filebase, "finish" ,"html"), team_buf.numb );
1350
        print( "  Team :<A HREF=\"%s#Team_%04d\">", p_filename(filebase, "finish" ,"html"), team_buf.numb );
1350
        print( "%4d", stats.fast.team[i][0] );
1351
        print( "%4d" , stats.fast.team[i][0] );
1351
        print( "</A>" );
-
 
1352
        print( "  Team Name: <A HREF=\"%s#Team_%04d\">", p_filename(filebase, "name" ,"html"), team_buf.numb );
-
 
1353
        print( "%-*s",     MAX_TM_NAME, team_buf.name );
-
 
1354
        print( "</A>" );
1352
        print( "</A> " );
1355
        print( " Time:%s ", time_a( stats.fast.time[i][0] ) );
1353
        print( "Time:%s ", time_a( stats.fast.time[i][0] ) );
1356
 
1354
 
1357
    }
1355
    }
1358
 
1356
 
1359
 
1357
 
1360
 
1358