~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/bzrdir.py

  • Committer: John Arbash Meinel
  • Date: 2009-02-23 15:29:35 UTC
  • mfrom: (3943.7.7 bzr.code_style_cleanup)
  • mto: This revision was merged to the branch mainline in revision 4033.
  • Revision ID: john@arbash-meinel.com-20090223152935-oel9m92mwcc6nb4h
Merge the removal of all trailing whitespace, and resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
 
107
107
    def _find(self, path):
108
108
        """try to find a repository from path upwards
109
 
        
 
109
 
110
110
        This operates precisely like 'bzrdir.find_repository'.
111
 
        
 
111
 
112
112
        :return: (relpath, rich_root, tree_ref, external_lookup) flags. All are
113
113
            strings, relpath is a / prefixed path, and the other three are
114
114
            either 'yes' or 'no'.
118
118
        bzrdir = BzrDir.open_from_transport(
119
119
            self.transport_from_client_path(path))
120
120
        repository = bzrdir.find_repository()
121
 
        # the relpath of the bzrdir in the found repository gives us the 
 
121
        # the relpath of the bzrdir in the found repository gives us the
122
122
        # path segments to pop-out.
123
123
        relpath = repository.bzrdir.root_transport.relpath(
124
124
            bzrdir.root_transport.base)
135
135
 
136
136
    def do(self, path):
137
137
        """try to find a repository from path upwards
138
 
        
 
138
 
139
139
        This operates precisely like 'bzrdir.find_repository'.
140
 
        
 
140
 
141
141
        If a bzrdir is not present, an exception is propogated
142
142
        rather than 'no branch' because these are different conditions.
143
143
 
158
158
 
159
159
    def do(self, path):
160
160
        """try to find a repository from path upwards
161
 
        
 
161
 
162
162
        This operates precisely like 'bzrdir.find_repository'.
163
 
        
 
163
 
164
164
        If a bzrdir is not present, an exception is propogated
165
165
        rather than 'no branch' because these are different conditions.
166
166
 
195
195
 
196
196
    def do(self, path):
197
197
        """try to open a branch at path and return ok/nobranch.
198
 
        
 
198
 
199
199
        If a bzrdir is not present, an exception is propogated
200
200
        rather than 'no branch' because these are different conditions.
201
201
        """