stagit

personal fork of stagit (rnpnr branch)
git clone anongit@rnpnr.xyz:stagit.git
Log | Files | Refs | Feed | README | LICENSE

Commit: 24947722ffb535e7128de8dca261cff30ee0a1a1
Parent: 788d9cfa264dc25a09c6856f4127e441a3da2536
Author: Randy Palamar
Date:   Sat,  4 Nov 2023 11:50:20 -0600

stagit: add link to atom/rss feed

Diffstat:
Mstagit.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/stagit.c b/stagit.c @@ -538,6 +538,7 @@ writeheader(FILE *fp, const char *title) fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath); fprintf(fp, "<a href=\"%sfiles.html\">Files</a> | ", relpath); fprintf(fp, "<a href=\"%srefs.html\">Refs</a>", relpath); + fprintf(fp, " | <a href=\"%satom.xml\">Feed</a>", relpath); if (submodules) fprintf(fp, " | <a href=\"%sfile/%s.html\">Submodules</a>", relpath, submodules);