branch: main
commit 655ba0a0a506e619d574a05d1699ef13bcc9a6fc
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Oct 17 21:17:42 2024 +0200
templates: Support commit URLs for codeberg.org (Forgejo).
* src/cuirass/templates.scm (%vcs-web-views)
(%vcs-web-commit-range-views): Add entry for codeberg.org.
---
src/cuirass/templates.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm
index 1358774..1d7125b 100644
--- a/src/cuirass/templates.scm
+++ b/src/cuirass/templates.scm
@@ -1441,6 +1441,7 @@ and BUILD-MAX are global minimal and maximal (stoptime,
rowid) pairs."
"/log/?id=" commit)))
("notabug.org" ,labhub-url)
("framagit.org" ,labhub-url)
+ ("codeberg.org" ,labhub-url)
("gitlab.com" ,labhub-url)
("gitlab.inria.fr" ,labhub-url)
("github.com" ,labhub-url))))
@@ -1465,6 +1466,7 @@ and BUILD-MAX are global minimal and maximal (stoptime,
rowid) pairs."
"/git/" "/cgit/")
"/log/?qt=range&q=" commit1 ".." commit2)))
("framagit.org" ,gitlab-url)
+ ("codeberg.org" ,github-url)
("gitlab.com" ,gitlab-url)
("gitlab.inria.fr" ,gitlab-url)
("github.com" ,github-url))))