equal
deleted
inserted
replaced
260 parts.pop() |
260 parts.pop() |
261 return False |
261 return False |
262 |
262 |
263 def peer(self): |
263 def peer(self): |
264 return localpeer(self) # not cached to avoid reference cycle |
264 return localpeer(self) # not cached to avoid reference cycle |
|
265 |
|
266 def unfiltered(self): |
|
267 """Return unfiltered version of the repository |
|
268 |
|
269 Intended to be ovewritten by filtered repo.""" |
|
270 return self |
265 |
271 |
266 @filecache('bookmarks') |
272 @filecache('bookmarks') |
267 def _bookmarks(self): |
273 def _bookmarks(self): |
268 return bookmarks.bmstore(self) |
274 return bookmarks.bmstore(self) |
269 |
275 |