236
236
request_handlers.register_lazy(
237
237
'append', 'bzrlib.smart.vfs', 'AppendRequest')
238
238
request_handlers.register_lazy(
239
'Branch.get_config_file', 'bzrlib.smart.branch', 'SmartServerBranchGetConfigFile')
240
request_handlers.register_lazy(
241
'Branch.last_revision_info', 'bzrlib.smart.branch', 'SmartServerBranchRequestLastRevisionInfo')
242
request_handlers.register_lazy(
243
'Branch.lock_write', 'bzrlib.smart.branch', 'SmartServerBranchRequestLockWrite')
244
request_handlers.register_lazy(
245
'Branch.revision_history', 'bzrlib.smart.branch', 'SmartServerRequestRevisionHistory')
246
request_handlers.register_lazy(
247
'Branch.set_last_revision', 'bzrlib.smart.branch', 'SmartServerBranchRequestSetLastRevision')
248
request_handlers.register_lazy(
249
'Branch.unlock', 'bzrlib.smart.branch', 'SmartServerBranchRequestUnlock')
250
request_handlers.register_lazy(
251
'BzrDir.find_repository', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepository')
252
request_handlers.register_lazy(
253
'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir', 'SmartServerRequestInitializeBzrDir')
254
request_handlers.register_lazy(
255
'BzrDir.open_branch', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBranch')
256
request_handlers.register_lazy(
239
257
'delete', 'bzrlib.smart.vfs', 'DeleteRequest')
240
258
request_handlers.register_lazy(
241
259
'get', 'bzrlib.smart.vfs', 'GetRequest')
261
279
'readv', 'bzrlib.smart.vfs', 'ReadvRequest')
262
280
request_handlers.register_lazy(
263
281
'rename', 'bzrlib.smart.vfs', 'RenameRequest')
282
request_handlers.register_lazy('Repository.gather_stats',
283
'bzrlib.smart.repository',
284
'SmartServerRepositoryGatherStats')
285
request_handlers.register_lazy(
286
'Repository.get_revision_graph', 'bzrlib.smart.repository', 'SmartServerRepositoryGetRevisionGraph')
287
request_handlers.register_lazy(
288
'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')
289
request_handlers.register_lazy(
290
'Repository.is_shared', 'bzrlib.smart.repository', 'SmartServerRepositoryIsShared')
291
request_handlers.register_lazy(
292
'Repository.lock_write', 'bzrlib.smart.repository', 'SmartServerRepositoryLockWrite')
293
request_handlers.register_lazy(
294
'Repository.unlock', 'bzrlib.smart.repository', 'SmartServerRepositoryUnlock')
264
295
request_handlers.register_lazy(
265
296
'rmdir', 'bzrlib.smart.vfs', 'RmdirRequest')
266
297
request_handlers.register_lazy(
267
298
'stat', 'bzrlib.smart.vfs', 'StatRequest')
299
request_handlers.register_lazy(
300
'Transport.is_readonly', 'bzrlib.smart.request', 'SmartServerIsReadonly')
301
request_handlers.register_lazy(
302
'BzrDir.open', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBzrDir')