Currently, if I go to http://server/gitweb/project/<commit-sha1> I get to the shortlog page, which is not as useful as the commit page. But changing this to have a default `commit' action isn't right either since the shortlog is more appropriate with http://server/gitweb/project/<commit-sha1>..<other-commit-sha1> So how about changing this: $input_params{'action'} ||= "shortlog"; to this: $input_params{'action'} ||= ((defined $parentrefname) ? "shortlog" : "commit"); which will make the first case show the commit, and the second show the shortlog? -- ((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay: http://barzilay.org/ Maze is Life! -- 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