stagit

static git page - forked from git.codemadness.org/stagit
git clone git://src.gearsix.net/stagit
Log | Files | Refs | Atom | README | LICENSE

commit ba5128fcb043e9879062e875f970c54bfe41c34f
parent e51bbf753662320255b009de4679cd41426a7e2e
Author: GeaRSiX <gearsix@tuta.io>
Date:   Wed, 17 Jun 2020 22:47:25 +0100

added atom.xml feed link to menu

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

diff --git a/stagit.c b/stagit.c @@ -378,6 +378,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\">Atom</a>", relpath); if (submodules) fprintf(fp, " | <a href=\"%sfile/%s.html\">Submodules</a>", relpath, submodules);