gitweb: rss feed managingEditor
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>
Mon, 26 Jan 2009 11:50:13 +0000 (12:50 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 28 Jan 2009 22:13:54 +0000 (14:13 -0800)
The RSS 2.0 specification allows an optional managingEditor tag for the
channel, containing the "email address for person responsible for editorial
content", which is basically the project owner.

Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
gitweb/gitweb.perl
index 3d94f50cff0c5d111f956bae6539913639c2f4f1..cc6d0fb79e6056e76da21c5cebf5b343ae3c3cc9 100755 (executable)
@@ -6074,7 +6074,9 @@ sub git_feed {
                print "<title>$title</title>\n" .
                      "<link>$alt_url</link>\n" .
                      "<description>$descr</description>\n" .
-                     "<language>en</language>\n";
+                     "<language>en</language>\n" .
+                     # project owner is responsible for 'editorial' content
+                     "<managingEditor>$owner</managingEditor>\n";
                if (defined $logo || defined $favicon) {
                        # prefer the logo to the favicon, since RSS
                        # doesn't allow both