equal
deleted
inserted
replaced
269 easy way to get or check the existence of paths in the working |
269 easy way to get or check the existence of paths in the working |
270 copy. |
270 copy. |
271 """ |
271 """ |
272 |
272 |
273 def __init__(self, wc_dir): |
273 def __init__(self, wc_dir): |
274 Paths.__init__(self, wc_dir) |
274 util.Paths.__init__(self, wc_dir) |
275 |
275 |
276 def _unknownAndMissing(self, path): |
276 def _unknownAndMissing(self, path): |
277 """Returns lists of unknown and missing files in the working copy. |
277 """Returns lists of unknown and missing files in the working copy. |
278 |
278 |
279 Args: |
279 Args: |
567 Args: |
567 Args: |
568 root: The root of the release environment. |
568 root: The root of the release environment. |
569 release_repos: The URL to the Google release repository root. |
569 release_repos: The URL to the Google release repository root. |
570 upstream_repos: The URL to the Melange upstream repository root. |
570 upstream_repos: The URL to the Melange upstream repository root. |
571 """ |
571 """ |
572 Paths.__init__(self, root) |
572 util.Paths.__init__(self, root) |
573 self.wc = Subversion(self.path('google-soc')) |
573 self.wc = Subversion(self.path('google-soc')) |
574 self.release_repos = release_repos.strip('/') |
574 self.release_repos = release_repos.strip('/') |
575 self.upstream_repos = upstream_repos.strip('/') |
575 self.upstream_repos = upstream_repos.strip('/') |
576 |
576 |
577 if not self.wc.exists(): |
577 if not self.wc.exists(): |