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. > Signed-off-by: Bernhard R. Link <brlink@xxxxxxxxxx> > --- > 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 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html