From 49fb19170a74accf51aa13ef0600a0d15f707737 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Sun, 24 Aug 2025 14:08:47 +0200 Subject: g2h: Add log page --- g2h/gen.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'g2h/gen.py') diff --git a/g2h/gen.py b/g2h/gen.py index 02162e8..91fab82 100644 --- a/g2h/gen.py +++ b/g2h/gen.py @@ -1,6 +1,14 @@ from jinja2 import Environment, FileSystemLoader import os +def ref_names_for_commit(refs, commit_sha): + ref_names = [] + for ref in refs: + if ref.commit.hexsha == commit_sha: + ref_names.append(ref.name) + + return ref_names + class Generator: def __init__(self, output_dir): self.output_dir = output_dir @@ -15,6 +23,23 @@ class Generator: with open(out_file, 'w', encoding='utf-8') as f: f.write(content) + def render_log(self, name, commits, branches, tags): + commits_context = [] + for commit in commits: + refs = ref_names_for_commit(branches, commit.hexsha) + ref_names_for_commit(tags, commit.hexsha) + commit_context = { + 'committed_datetime': commit.committed_datetime, + 'refs': refs, + 'summary': commit.summary + } + commits_context.append(commit_context) + + context = { + 'commits': commits_context, + 'title': name + } + self._render('log.md', context, 'l.md') + def render_overview(self, name, branches, tags): context = { 'branches': branches, -- cgit v1.2.3