Subversion Repositories svn1-original

Rev

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

Rev 358 Rev 359
Line 855... Line 855...
855
            }
855
            }
856
            else
856
            else
857
            {
857
            {
858
                print( "  %-8s", time_a( team_buf.leg[j].elapsed ));
858
                print( "  %-8s", time_a( team_buf.leg[j].elapsed ));
859
                print( " %4.4s",      px_place( j, team_buf.leg[j].l_place, false, false, ptr->flags ));
859
                print( " %4.4s",      px_place( j, team_buf.leg[j].l_place, false, false, ptr->flags ));
860
                if ( config.num_legs != 1 ) print( "%4.4s",   px_place( j, team_buf.leg[j].le_place,true , true, ptr->flags ));
860
                if ( config.num_legs != 1 ) print( " %4.4s",   px_place( j, team_buf.leg[j].le_place,true , true, ptr->flags ));
861
                if ( config.num_legs == 1 ) print( " %-*s ",  MAX_TM_NAME, team_buf.name );
861
                if ( config.num_legs == 1 ) print( " %-*s ",  MAX_TM_NAME, team_buf.name );
862
            }
862
            }
863
        }
863
        }
864
 
864
 
865
       /*
865
       /*
Line 868... Line 868...
868
        **      - Category place - with reference to category file
868
        **      - Category place - with reference to category file
869
        */
869
        */
870
        if ( config.num_legs != 1 ) print( "  %-8s ", time_a( ptr->lege[0] ) );
870
        if ( config.num_legs != 1 ) print( "  %-8s ", time_a( ptr->lege[0] ) );
871
        
871
        
872
        if ( report_html == html ) print( "<A HREF=\"%s#Team_%04d\">",url_encode(p_filename(filebase, config.team_class[team_buf.teamclass - 1].abr ,"html")), team_buf.numb );
872
        if ( report_html == html ) print( "<A HREF=\"%s#Team_%04d\">",url_encode(p_filename(filebase, config.team_class[team_buf.teamclass - 1].abr ,"html")), team_buf.numb );
873
        print( "%-4.4s", px_place( 0, team_buf.leg[0].lc_place, false, false, ptr->flags) );
873
        print( "%4.4s", px_place( 0, team_buf.leg[0].lc_place, false, false, ptr->flags) );
874
        if ( report_html == html ) print( "</A>" );
874
        if ( report_html == html ) print( "</A>" );
875
        if ( report_html == printed && lcount %5 == 4 ) print_underline( FALSE );
875
        if ( report_html == printed && lcount %5 == 4 ) print_underline( FALSE );
876
        lcount++;
876
        lcount++;
877
        print( "\n" );
877
        print( "\n" );
878
    }
878
    }
Line 3113... Line 3113...
3113
                    continue;
3113
                    continue;
3114
                }
3114
                }
3115
            }
3115
            }
3116
 
3116
 
3117
            // Flag as unplaced NE teams on the EQ leg
3117
            // Flag as unplaced NE teams on the EQ leg
3118
            // Flag as unplaced in overall (leg:0) NE teams
3118
            // DO NOT Flag as unplaced in overall (leg:0) NE teams as this is used in the full report
3119
            if ( (i == config.equestrian_leg || i == 0 ) && ptr->flags.non_equestrian ) {
3119
            if ( (i == config.equestrian_leg /*|| i == 0*/ ) && ptr->flags.non_equestrian ) {
3120
                if (ptr->isNeData) {
3120
                if (ptr->isNeData) {
3121
                    sort_aux[ptr->team].lq_place[i] = -1;
3121
                    sort_aux[ptr->team].lq_place[i] = -1;
3122
                } else {
3122
                } else {
3123
                    sort_aux[ptr->team].l_place[i] = -1;
3123
                    sort_aux[ptr->team].l_place[i] = -1;
3124
                }
3124
                }