Re: [PATCH 3/5] gitweb: limit links to alternate forms of project_list to active project_filter
From: Jakub Narebski <hidden>
Date: 2016-06-15 22:52:53
On Mon, 30 Jan 2012, Bernhard R. Link wrote:
If project_list action is given a project_filter argument, pass that to TXT and OPML formats.
Nice. This way [OPML] and [TXT] links provide the same list of projects as the projects_list page they are linked from.
quoted hunk ↗ jump to hunk
Signed-off-by: Bernhard R. Link <redacted> --- gitweb/gitweb.perl | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 36efc10..e022e11 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl@@ -3976,9 +3976,11 @@ sub git_footer_html { } } else { - print $cgi->a({-href => href(project=>undef, action=>"opml"), + print $cgi->a({-href => href(project=>undef, action=>"opml", + project_filter => $project_filter), -class => $feed_class}, "OPML") . " "; - print $cgi->a({-href => href(project=>undef, action=>"project_index"), + print $cgi->a({-href => href(project=>undef, action=>"project_index", + project_filter => $project_filter), -class => $feed_class}, "TXT") . "\n"; }
Nicely short. -- Jakub Narebski Poland