Hi all,
with this patch and the privious one I just sent, you can run a pretty
neat blog site with rss feed for geeks ;)
one missing feature is the picture tag Junio asked a while ago ;P
yashi
----
Add <author> and <guid>.
>From http://blogs.law.harvard.edu/tech/rss
author - Email address of the author of the item.
guid - A string that uniquely identifies the item.
Signed-off-by: Yasushi SHOJI <[EMAIL PROTECTED]>
---
gitweb.cgi | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
0a477312bf2975cf3240d3cf107ff7ac2e32049a
diff --git a/gitweb.cgi b/gitweb.cgi
--- a/gitweb.cgi
+++ b/gitweb.cgi
@@ -1424,7 +1424,9 @@ sub git_rss {
"<title>" .
sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'},
$cd{'hour'}, $cd{'minute'}) . " - " . escapeHTML($co{'title'}) .
"</title>\n" .
+ "<author>" . escapeHTML($co{'author'}) . "</author>\n" .
"<pubDate>$cd{'rfc2822'}</pubDate>\n" .
+ "<guid isPermaLink=\"true\">" .
escapeHTML("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
"<link>" .
escapeHTML("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
"<description>" .
"<![CDATA[\n";
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html