| Apache-CVS documentation | view source | Contained in the Apache-CVS distribution. |
Apache::CVS::RcsConfig - class that holds configuration information for an RCS object
use Apache::CVS::RcsConfig(); $config = Apache::CVS::RcsConfig->new(); $extension = $config->extension(); $working = $config->working(); $binary = $config->binary();
The Apache::CVS::RcsConfig class holds data used to configure an Rcs
object.
Construct a new Apache::CVS::RcsConfig object. The first argument is the
extension of the versioned files. The second argument is the working directory
where files may be checked out to. The last argument is the directory that
contains the rcs binaries such as: co, rlog, and rcsdiff. The default for
these arguments are ',v', '/var/tmp', and /usr/bin'.
Returns the extension of this configuration.
Returns the working directory of this configuration.
Returns the path to the RCS binaries stored in this configuration.
John Barbee <barbee@veribox.net>
Copyright 2001-2002 John Barbee
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Apache-CVS documentation | view source | Contained in the Apache-CVS distribution. |