HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //lib/python2.7/dist-packages/svn/ra.pyc
�
Lr}bc@soddlTddlmZee�d�ee�d�ed�e�j��Z[dd	d��YZdS(
i����(t*(t_unprefix_namestsvn_ra_tSVN_RA_cCs|j�jd�S(Ntsvn_(tlowert
startswith(tx((s*/usr/lib/python2.7/dist-packages/svn/ra.pyt<lambda>tt	CallbackscBsDeZdZdZdZdZdZdZdZ	dZ
dZdZRS(s�Base class for callbacks structure for svn.ra.open2.

  Ra users may pass an instance of this class as is to svn.ra.open2
  for some simple operations: as long as authentication is not
  required, auth_baton may be None, and some ra implementations do not
  use open_tmp_file at all.  These are not guarantees, however, and
  all but the simplest scripts should fill even these in.

  The wc_prop slots, on the other hand, are only necessary for commits
  and updates, and progress_func and cancel_func are always optional.

  A simple example:

  class Callbacks(svn.ra.Callbacks):
    def __init__(self, wc, username, password):
      self.wc = wc
      self.auth_baton = svn.core.svn_auth_open([
          svn.client.get_simple_provider(),
          svn.client.get_username_provider(),
          ])
      svn.core.svn_auth_set_parameter(self.auth_baton,
                                      svn.core.SVN_AUTH_PARAM_DEFAULT_USERNAME,
                                      username)
      svn.core.svn_auth_set_parameter(self.auth_baton,
                                      svn.core.SVN_AUTH_PARAM_DEFAULT_PASSWORD,
                                      password)
    def open_tmp_file(self, pool):
      path = '/'.join([self.wc, svn.wc.get_adm_dir(pool), 'tmp'])
      (fd, fn) = tempfile.mkstemp(dir=path)
      os.close(fd)
      return fn
    def cancel_func(self):
      if some_condition():
        return svn.core.SVN_ERR_CANCELLED
      return 0
  N(
t__name__t
__module__t__doc__tNonet
open_tmp_filet
auth_batontget_wc_proptset_wc_proptpush_wc_proptinvalidate_wc_propst
progress_functcancel_functget_client_string(((s*/usr/lib/python2.7/dist-packages/svn/ra.pyR
!s$N((t	libsvn.ratsvn.coreRtlocalstfiltertkeyst__all__R
(((s*/usr/lib/python2.7/dist-packages/svn/ra.pyt<module>s