Skip to content

Commit

Permalink
gitweb: Add an option to href() to return full URL
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Nov 21, 2006
1 parent 59e3b14 commit bd5d1e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gitweb/gitweb.perl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit bd5d1e4

Please sign in to comment.