Subversion Repositories DevTools

Rev

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

Rev 6353 Rev 6619
Line 682... Line 682...
682
    {
682
    {
683
        #
683
        #
684
        #   Error occurred
684
        #   Error occurred
685
        #   If the path does not exist then this is an error that
685
        #   If the path does not exist then this is an error that
686
        #   we can handle. The path does not exist in the Repository
686
        #   we can handle. The path does not exist in the Repository
-
 
687
        #   
-
 
688
        #   Note: Different version of SVN / SVN server generate different
-
 
689
        #         messages. Check many
687
        #
690
        #
-
 
691
        foreach my $umsg ( @{$self->{ERROR_LIST}})
-
 
692
        {
688
        return 0
693
            return 0
689
            if (    $self->{ERROR_LIST}[0] =~ m~' non-existent in that revision$~
694
                if (    $umsg =~ m~' non-existent in that revision$~
690
                 || $self->{ERROR_LIST}[0] =~ m~' non-existent in revision ~
695
                     || $umsg =~ m~' non-existent in revision ~
691
                 || $self->{ERROR_LIST}[0] =~ m~: No repository found in '~
696
                     || $umsg =~ m~: No repository found in '~
692
                 || $self->{ERROR_LIST}[0] =~ m~: Error resolving case of '~
697
                     || $umsg =~ m~: Error resolving case of '~
-
 
698
                     || $umsg =~ m~: W160013:~
-
 
699
                     || $umsg =~ m~: E200009:~
693
                );
700
                    );
694
 
701
        }
695
        Error ("$cmd: Unexpected error", @{$self->{ERROR_LIST}});
702
        Error ("$cmd: Unexpected error", @{$self->{ERROR_LIST}});
696
    }
703
    }
697
    return 1;
704
    return 1;
698
}
705
}
699
 
706