예제 #1
0
    def __init__(self, path, base_path, vobstag):
        """Initialize the repsitory info.

        Args:
            path (unicode):
                The path of the repository.

            base_path (unicode):
                The relative path between the repository root and the working
                directory.

            vobstag (unicode):
                The vobstag for the repository.
        """
        RepositoryInfo.__init__(self, path, base_path,
                                supports_parent_diffs=False)
        self.vobstag = vobstag
예제 #2
0
파일: clearcase.py 프로젝트: mbait/rbtools
 def __init__(self, path, base_path, vobstag, supports_parent_diffs=False):
     RepositoryInfo.__init__(self, path, base_path,
                             supports_parent_diffs=supports_parent_diffs)
     self.vobstag = vobstag
예제 #3
0
파일: svn.py 프로젝트: beol/rbtools
 def __init__(self, path, base_path, uuid, supports_parent_diffs=False):
     RepositoryInfo.__init__(self,
                             path,
                             base_path,
                             supports_parent_diffs=supports_parent_diffs)
     self.uuid = uuid
예제 #4
0
파일: svn.py 프로젝트: halvorlu/rbtools
 def __init__(self, path, base_path, uuid, supports_parent_diffs=False):
     RepositoryInfo.__init__(self, path, base_path,
                             supports_parent_diffs=supports_parent_diffs)
     self.uuid = uuid