gitweb: move hard coded .git suffix out of git_get_projects_list

Use of the filter option of git_get_projects_list is currently
limited to forks. It hard codes removal of ".git" suffixes from
the filter.

To make it more generic move the .git suffix removal to the callers.

Signed-off-by: Bernhard R. Link <brlink@debian.org>
Acked-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Bernhard R. Link 2012-01-30 21:05:47 +01:00 committed by Junio C Hamano
parent 828ea97de4
commit 4c7cd17714

View File

@ -2829,8 +2829,6 @@ sub git_get_projects_list {
my $filter = shift || '';
my @list;
$filter =~ s/\.git$//;
if (-d $projects_list) {
# search in directory
my $dir = $projects_list;
@ -6005,7 +6003,9 @@ sub git_forks {
die_error(400, "Unknown order parameter");
}
my @list = git_get_projects_list($project);
my $filter = $project;
$filter =~ s/\.git$//;
my @list = git_get_projects_list($filter);
if (!@list) {
die_error(404, "No forks found");
}
@ -6064,7 +6064,9 @@ sub git_summary {
if ($check_forks) {
# find forks of a project
@forklist = git_get_projects_list($project);
my $filter = $project;
$filter =~ s/\.git$//;
@forklist = git_get_projects_list($filter);
# filter out forks of forks
@forklist = filter_forks_from_projects_list(\@forklist)
if (@forklist);