gitweb: Refactor common parts of 'log' and 'shortlog' views
commit15f0b112d86001b0ae4be2555513c45b3cf65844
authorJakub Narebski <jnareb@gmail.com>
Fri, 13 Nov 2009 01:02:13 +0000 (13 02:02 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 14 Nov 2009 23:22:09 +0000 (14 15:22 -0800)
treeca35540560a2f6d7bfd4b37c22750e419e4933d4
parent42671caa7d619da9d490e77c438845c1e638c54c
gitweb: Refactor common parts of 'log' and 'shortlog' views

Put the common parts of git_log and git_shortlog into git_log_generic
subroutine: git_log and git_shortlog are now thin wrappers calling
git_log_generic with appropriate arguments.

The unification of code responsible for 'log' and 'shorlog' actions
lead to the following changes in gitweb output
 * 'tree' link in page_nav now uses $hash parameter, as was the case
   for 'shortlog' but not for 'log'
 * 'log' view now respect $hash_parent limiting, like 'shortlog' did
 * 'log' view doesn't have special case for empty list anymore, and it
   always uses page_header linking to summary view, like 'shortlog'
   did.

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