Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Can any one help to correct the error which i got while using Rcs.pm in the Code

by srins (Sexton)
on Jul 26, 2006 at 18:10 UTC ( [id://563853]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @all_testcase_versions=$rcsObj->revisions;
    print "All Testcase Versions:@all_testcase_versions\n";
    
  2. or download this
    All Testcase Versions:1.4 1.3 1.2 1.1
    
  3. or download this
    To retrieve a specific version
    my $specific_version = $rcsObj->get('1.2');
    
  4. or download this
      my $rcs = new RCS;
      my $ret = $rcs->load($filename);
      my $specific_version = $rcs->get('1.2');
    
  5. or download this
    Failed to retrieve revision info of test case - TC00631.xml due to sys
    +tem error: Can't locate object method "load" via package "Rcs" line 1
    +514.
    
  6. or download this
     my $rcs = Rcs::Parser->new;
     my $ret = $rcs->load($rcstestcasename);
     my $specific_version = $rcs->get('1.2');
    
  7. or download this
    cat TC00631.xml,v
    gives,
    ...
    @Auto checked in by Portal
    @
    
  8. or download this
        
    use Rcs;
    #use RCS;
    ...
            print "1.2version:$specific_version\n";
    
        }; # end of eval
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://563853]
Approved by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2024-04-26 03:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found