summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2020-10-17 00:43:07 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2020-10-17 00:43:07 -0400
commit725d6260fa6aa8a7340298597e3b08063c842b15 (patch)
treee0db6f3812203484b8c6c79efa1d14fbb2babe7a
parent0e8cf9cf4e8aa43c474cca64c3f795778ab75e6c (diff)
Update contribute stagit-index
-rw-r--r--stagit-index.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/stagit-index.c b/stagit-index.c
index 488637f..f2116a5 100644
--- a/stagit-index.c
+++ b/stagit-index.c
@@ -89,7 +89,7 @@ writefooter(FILE *fp)
"<h2 id=\"contribute\">Contribute</h2>\n"
"<p>The best way to contribute to my repositories is to contact me through email at <a href=\"mailto:benjamin@chausse.xyz\">benjamin@chausse.xyz</a>.</p>\n"
"<pre><code>git config format.subjectPrefix \"PATCH &lt;name-of-repository&gt;\"</code></pre>\n"
- "<p>You can also contribute on <a href=\"https://github.com/ChausseBenjamin\">Github</a> if you prefer.</p>\n"
+ "<p>You submit a pull request on <a href=\"https://github.com/ChausseBenjamin\">Github</a> if you prefer.</p>\n"
"</div>\n</body>\n</html>\n", fp);
}
@@ -124,11 +124,13 @@ writelog(FILE *fp)
fputs("<tr><td><a href=\"", fp);
xmlencode(fp, stripped_name, strlen(stripped_name));
- fputs("/\">", fp);
+ fputs("/log.html\">", fp);
xmlencode(fp, stripped_name, strlen(stripped_name));
fputs("</a></td><td>", fp);
xmlencode(fp, description, strlen(description));
fputs("</td><td>", fp);
+ xmlencode(fp, owner, strlen(owner));
+ fputs("</td><td>", fp);
if (author)
printtimeshort(fp, &(author->when));
fputs("</td></tr>", fp);