Skip to content

Commit 3ac109a

Browse files
Oblomovgitster
authored andcommitted
gitweb: rss feed managingEditor
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ad59a7a commit 3ac109a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gitweb/gitweb.perl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6074,7 +6074,9 @@ sub git_feed {
60746074
print "<title>$title</title>\n" .
60756075
"<link>$alt_url</link>\n" .
60766076
"<description>$descr</description>\n" .
6077-
"<language>en</language>\n";
6077+
"<language>en</language>\n" .
6078+
# project owner is responsible for 'editorial' content
6079+
"<managingEditor>$owner</managingEditor>\n";
60786080
if (defined $logo || defined $favicon) {
60796081
# prefer the logo to the favicon, since RSS
60806082
# doesn't allow both

0 commit comments

Comments
 (0)