~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/branch.py

Merge with get_file_sha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
        return SuccessfulSmartServerResponse( ('ok', ), content)
93
93
 
94
94
 
 
95
class SmartServerBranchRequestGetStackedOnURL(SmartServerBranchRequest):
 
96
 
 
97
    def do_with_branch(self, branch):
 
98
        stacked_on_url = branch.get_stacked_on_url()
 
99
        return SuccessfulSmartServerResponse(('ok', stacked_on_url))
 
100
 
 
101
 
95
102
class SmartServerRequestRevisionHistory(SmartServerBranchRequest):
96
103
 
97
104
    def do_with_branch(self, branch):