def _ProcessGitRepo()

in DocBuild.py [0:0]


    def _ProcessGitRepo(self, dirpath):
        name = os.path.basename(dirpath)
        u = GitSupport().get_url(dirpath)
        b = GitSupport().get_branch(dirpath)
        c = GitSupport().get_commit(dirpath)
        d = GitSupport().get_date(dirpath, c)
        cl = GitSupport().make_commit_url(c, u)
        obj = {"url": u, "branch": b, "commit": c, "date": d, "commitlink": cl}
        self.Repos[name] = obj