ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages

 

This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles.

For more information about the manual page format, see the manual page for manpages(5).



native::Ra(3)                        User Contributed Perl Documentation                       native::Ra(3)



NAME
       SVN::Ra - Subversion remote access functions

SYNOPSIS
           require SVN::Core;
           require SVN::Ra;
           my $ra = SVN::Ra->new ('file:///tmp/svmtest');
           print $ra->get_latest_revnum ();

DESCRIPTION
       SVN::Ra wraps the object-oriented svn_ra_plugin_t functions.

SVN::Ra
       CONSTRUCTOR - new (...)

       The method creates an RA object and calls "open" for it. It takes a hash array as parameter. if
       there's only one argument supplied, it's used as the url. valid keys are:

       url
       auth
           An auth_baton could be given to the SVN::RA object. Default to a auth_provider with a
           username_provider. See SVN::Client for how to create auth_baton.

       pool
           The pool for the ra session to use, and also the member functions will be called with this pool.
           Default to a newly created root pool.

       config
           The config hash that could be obtained by SVN::Core::config_get_config(undef).

       callback
           The ra_callback namespace to use. Default to SVN::Ra::Callback.

       METHODS

       Please consult the svn_ra.h section in the Subversion API. Member functions of svn_ra_plugin_t could
       be called as methods of SVN::Ra objects, with the session_baton and pool omitted.

SVN::Ra::Reporter
       the SVN::Ra methods: do_diff, do_status, do_switch, do_update, returns a SVN::Ra::Reporter object as
       a wrapper of svn_ra_reporter_t. You can use the member functions of it as methods of
       SVN::Ra::Reporter, with the reporter_baton omitted.

SVN::Ra::Callbacks
       This is the wrapper class for svn_ra_callback_t. To supply custom callback to SVN::Ra, subclass this
       class and override the member functions.

AUTHORS
       Chia-liang Kao <clkao@clkao.org>

COPYRIGHT
       Copyright (c) 2003 CollabNet.  All rights reserved.

       This software is licensed as described in the file COPYING, which you should have received as part of
       this distribution.  The terms are also available at http://subversion.tigris.org/license-1.html  If
       newer versions of this license are posted there, you may use a newer version instead, at your option.

       This software consists of voluntary contributions made by many individuals.  For exact contribution
       history, see the revision history and logs, available at http://subversion.tigris.org/



perl v5.8.8                                      2005-06-17                                    native::Ra(3)

Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.