?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
Ñò
™¹ÀUc @ sT d d k Td d k l Z e e ƒ d ƒ e e ƒ d ƒ [ d d d „ ƒ YZ d S( iÿÿÿÿ( t *( t _unprefix_namest svn_ra_t SVN_RA_t Callbacksc B sD e Z d Z d Z d Z d Z d Z d Z d Z d Z
d Z d Z 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__t Nonet
open_tmp_filet
auth_batont get_wc_propt set_wc_propt push_wc_propt invalidate_wc_propst
progress_funct cancel_funct get_client_string( ( ( s, /usr/lib64/python2.6/site-packages/svn/ra.pyR s $N( ( t libsvn.rat svn.coreR t localsR ( ( ( s, /usr/lib64/python2.6/site-packages/svn/ra.pyt s