mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
gitweb: Add an option to href() to return full URL
href subroutine by default generates absolute URL (generated using CGI::url(-absolute=>1), and saved in $my_uri) using $my_uri as base; add an option to generate full URL using $my_url as base. New feature usage: href(..., -full=>1) Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
59e3b14e08
commit
bd5d1e42fb
1 changed files with 2 additions and 1 deletions
|
@ -459,7 +459,8 @@ sub evaluate_path_info {
|
|||
|
||||
sub href(%) {
|
||||
my %params = @_;
|
||||
my $href = $my_uri;
|
||||
# default is to use -absolute url() i.e. $my_uri
|
||||
my $href = $params{-full} ? $my_url : $my_uri;
|
||||
|
||||
# XXX: Warning: If you touch this, check the search form for updating,
|
||||
# too.
|
||||
|
|
Loading…
Reference in a new issue