gitweb: Clean up code in git_search_* subroutines
commit882541b87d8f7bedca824228a8ad14aed69c904e
authorJakub Narebski <jnareb@gmail.com>
Wed, 22 Jun 2011 15:28:54 +0000 (22 17:28 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Jun 2011 18:52:28 +0000 (22 11:52 -0700)
tree5e9a52b42b018f9e3e66db5aef9cf0d8dc283752
parent16f20725bbcb7abbbc11e740050197b7fe8f843a
gitweb: Clean up code in git_search_* subroutines

Replace sequence of

       $foo .= "bar";
       $foo .= "baz";

with

       $foo .= "bar" .
       "baz";

Use href(-replay=>1, -page=>undef) for first page of a multipl-page view.

Wrap some lines to reduce their length. Some lines still have more than 80
characters, but lines are shorter now.

No functional changes intended.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
gitweb/gitweb.perl