gitweb: use href() when generating URLs in OPML
Since the OPML project list view was hand-coding the RSS and HTML URLs, it didn't respect global options such as use_pathinfo. Make it use href() to ensure consistency with the rest of the gitweb setup. Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com> Acked-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
8ea6ae99b2
commit
df63fbbf46
@ -6146,8 +6146,8 @@ XML
|
|||||||
}
|
}
|
||||||
|
|
||||||
my $path = esc_html(chop_str($proj{'path'}, 25, 5));
|
my $path = esc_html(chop_str($proj{'path'}, 25, 5));
|
||||||
my $rss = "$my_url?p=$proj{'path'};a=rss";
|
my $rss = href('project' => $proj{'path'}, 'action' => 'rss', -full => 1);
|
||||||
my $html = "$my_url?p=$proj{'path'};a=summary";
|
my $html = href('project' => $proj{'path'}, 'action' => 'summary', -full => 1);
|
||||||
print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
|
print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
|
||||||
}
|
}
|
||||||
print <<XML;
|
print <<XML;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user