1#!/usr/bin/perl 2 3# gitweb - simple web interface to track changes in git repositories 4# 5# (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org> 6# (C) 2005, Christian Gierke 7# 8# This program is licensed under the GPLv2 9 10use5.008; 11use strict; 12use warnings; 13use CGI qw(:standard :escapeHTML -nosticky); 14use CGI::Util qw(unescape); 15use CGI::Carp qw(fatalsToBrowser set_message); 16use Encode; 17use Fcntl ':mode'; 18use File::Find qw(); 19use File::Basename qw(basename); 20use Time::HiRes qw(gettimeofday tv_interval); 21binmode STDOUT,':utf8'; 22 23if(!defined($CGI::VERSION) ||$CGI::VERSION <4.08) { 24eval'sub CGI::multi_param { CGI::param(@_) }' 25} 26 27our$t0= [ gettimeofday() ]; 28our$number_of_git_cmds=0; 29 30BEGIN{ 31 CGI->compile()if$ENV{'MOD_PERL'}; 32} 33 34our$version="++GIT_VERSION++"; 35 36our($my_url,$my_uri,$base_url,$path_info,$home_link); 37sub evaluate_uri { 38our$cgi; 39 40our$my_url=$cgi->url(); 41our$my_uri=$cgi->url(-absolute =>1); 42 43# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 44# needed and used only for URLs with nonempty PATH_INFO 45our$base_url=$my_url; 46 47# When the script is used as DirectoryIndex, the URL does not contain the name 48# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 49# have to do it ourselves. We make $path_info global because it's also used 50# later on. 51# 52# Another issue with the script being the DirectoryIndex is that the resulting 53# $my_url data is not the full script URL: this is good, because we want 54# generated links to keep implying the script name if it wasn't explicitly 55# indicated in the URL we're handling, but it means that $my_url cannot be used 56# as base URL. 57# Therefore, if we needed to strip PATH_INFO, then we know that we have 58# to build the base URL ourselves: 59our$path_info= decode_utf8($ENV{"PATH_INFO"}); 60if($path_info) { 61# $path_info has already been URL-decoded by the web server, but 62# $my_url and $my_uri have not. URL-decode them so we can properly 63# strip $path_info. 64$my_url= unescape($my_url); 65$my_uri= unescape($my_uri); 66if($my_url=~ s,\Q$path_info\E$,, && 67$my_uri=~ s,\Q$path_info\E$,, && 68defined$ENV{'SCRIPT_NAME'}) { 69$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 70} 71} 72 73# target of the home link on top of all pages 74our$home_link=$my_uri||"/"; 75} 76 77# core git executable to use 78# this can just be "git" if your webserver has a sensible PATH 79our$GIT="++GIT_BINDIR++/git"; 80 81# absolute fs-path which will be prepended to the project path 82#our $projectroot = "/pub/scm"; 83our$projectroot="++GITWEB_PROJECTROOT++"; 84 85# fs traversing limit for getting project list 86# the number is relative to the projectroot 87our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 88 89# string of the home link on top of all pages 90our$home_link_str="++GITWEB_HOME_LINK_STR++"; 91 92# extra breadcrumbs preceding the home link 93our@extra_breadcrumbs= (); 94 95# name of your site or organization to appear in page titles 96# replace this with something more descriptive for clearer bookmarks 97our$site_name="++GITWEB_SITENAME++" 98|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 99 100# html snippet to include in the <head> section of each page 101our$site_html_head_string="++GITWEB_SITE_HTML_HEAD_STRING++"; 102# filename of html text to include at top of each page 103our$site_header="++GITWEB_SITE_HEADER++"; 104# html text to include at home page 105our$home_text="++GITWEB_HOMETEXT++"; 106# filename of html text to include at bottom of each page 107our$site_footer="++GITWEB_SITE_FOOTER++"; 108 109# URI of stylesheets 110our@stylesheets= ("++GITWEB_CSS++"); 111# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 112our$stylesheet=undef; 113# URI of GIT logo (72x27 size) 114our$logo="++GITWEB_LOGO++"; 115# URI of GIT favicon, assumed to be image/png type 116our$favicon="++GITWEB_FAVICON++"; 117# URI of gitweb.js (JavaScript code for gitweb) 118our$javascript="++GITWEB_JS++"; 119 120# URI and label (title) of GIT logo link 121#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 122#our $logo_label = "git documentation"; 123our$logo_url="http://git-scm.com/"; 124our$logo_label="git homepage"; 125 126# source of projects list 127our$projects_list="++GITWEB_LIST++"; 128 129# the width (in characters) of the projects list "Description" column 130our$projects_list_description_width=25; 131 132# group projects by category on the projects list 133# (enabled if this variable evaluates to true) 134our$projects_list_group_categories=0; 135 136# default category if none specified 137# (leave the empty string for no category) 138our$project_list_default_category=""; 139 140# default order of projects list 141# valid values are none, project, descr, owner, and age 142our$default_projects_order="project"; 143 144# show repository only if this file exists 145# (only effective if this variable evaluates to true) 146our$export_ok="++GITWEB_EXPORT_OK++"; 147 148# don't generate age column on the projects list page 149our$omit_age_column=0; 150 151# don't generate information about owners of repositories 152our$omit_owner=0; 153 154# show repository only if this subroutine returns true 155# when given the path to the project, for example: 156# sub { return -e "$_[0]/git-daemon-export-ok"; } 157our$export_auth_hook=undef; 158 159# only allow viewing of repositories also shown on the overview page 160our$strict_export="++GITWEB_STRICT_EXPORT++"; 161 162# list of git base URLs used for URL to where fetch project from, 163# i.e. full URL is "$git_base_url/$project" 164our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 165 166# default blob_plain mimetype and default charset for text/plain blob 167our$default_blob_plain_mimetype='text/plain'; 168our$default_text_plain_charset=undef; 169 170# file to use for guessing MIME types before trying /etc/mime.types 171# (relative to the current git repository) 172our$mimetypes_file=undef; 173 174# assume this charset if line contains non-UTF-8 characters; 175# it should be valid encoding (see Encoding::Supported(3pm) for list), 176# for which encoding all byte sequences are valid, for example 177# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 178# could be even 'utf-8' for the old behavior) 179our$fallback_encoding='latin1'; 180 181# rename detection options for git-diff and git-diff-tree 182# - default is '-M', with the cost proportional to 183# (number of removed files) * (number of new files). 184# - more costly is '-C' (which implies '-M'), with the cost proportional to 185# (number of changed files + number of removed files) * (number of new files) 186# - even more costly is '-C', '--find-copies-harder' with cost 187# (number of files in the original tree) * (number of new files) 188# - one might want to include '-B' option, e.g. '-B', '-M' 189our@diff_opts= ('-M');# taken from git_commit 190 191# Disables features that would allow repository owners to inject script into 192# the gitweb domain. 193our$prevent_xss=0; 194 195# Path to the highlight executable to use (must be the one from 196# http://www.andre-simon.de due to assumptions about parameters and output). 197# Useful if highlight is not installed on your webserver's PATH. 198# [Default: highlight] 199our$highlight_bin="++HIGHLIGHT_BIN++"; 200 201# information about snapshot formats that gitweb is capable of serving 202our%known_snapshot_formats= ( 203# name => { 204# 'display' => display name, 205# 'type' => mime type, 206# 'suffix' => filename suffix, 207# 'format' => --format for git-archive, 208# 'compressor' => [compressor command and arguments] 209# (array reference, optional) 210# 'disabled' => boolean (optional)} 211# 212'tgz'=> { 213'display'=>'tar.gz', 214'type'=>'application/x-gzip', 215'suffix'=>'.tar.gz', 216'format'=>'tar', 217'compressor'=> ['gzip','-n']}, 218 219'tbz2'=> { 220'display'=>'tar.bz2', 221'type'=>'application/x-bzip2', 222'suffix'=>'.tar.bz2', 223'format'=>'tar', 224'compressor'=> ['bzip2']}, 225 226'txz'=> { 227'display'=>'tar.xz', 228'type'=>'application/x-xz', 229'suffix'=>'.tar.xz', 230'format'=>'tar', 231'compressor'=> ['xz'], 232'disabled'=>1}, 233 234'zip'=> { 235'display'=>'zip', 236'type'=>'application/x-zip', 237'suffix'=>'.zip', 238'format'=>'zip'}, 239); 240 241# Aliases so we understand old gitweb.snapshot values in repository 242# configuration. 243our%known_snapshot_format_aliases= ( 244'gzip'=>'tgz', 245'bzip2'=>'tbz2', 246'xz'=>'txz', 247 248# backward compatibility: legacy gitweb config support 249'x-gzip'=>undef,'gz'=>undef, 250'x-bzip2'=>undef,'bz2'=>undef, 251'x-zip'=>undef,''=>undef, 252); 253 254# Pixel sizes for icons and avatars. If the default font sizes or lineheights 255# are changed, it may be appropriate to change these values too via 256# $GITWEB_CONFIG. 257our%avatar_size= ( 258'default'=>16, 259'double'=>32 260); 261 262# Used to set the maximum load that we will still respond to gitweb queries. 263# If server load exceed this value then return "503 server busy" error. 264# If gitweb cannot determined server load, it is taken to be 0. 265# Leave it undefined (or set to 'undef') to turn off load checking. 266our$maxload=300; 267 268# configuration for 'highlight' (http://www.andre-simon.de/) 269# match by basename 270our%highlight_basename= ( 271#'Program' => 'py', 272#'Library' => 'py', 273'SConstruct'=>'py',# SCons equivalent of Makefile 274'Makefile'=>'make', 275); 276# match by extension 277our%highlight_ext= ( 278# main extensions, defining name of syntax; 279# see files in /usr/share/highlight/langDefs/ directory 280(map{$_=>$_}qw(py rb java css js tex bib xml awk bat ini spec tcl sql)), 281# alternate extensions, see /etc/highlight/filetypes.conf 282(map{$_=>'c'}qw(c h)), 283(map{$_=>'sh'}qw(sh bash zsh ksh)), 284(map{$_=>'cpp'}qw(cpp cxx c++ cc)), 285(map{$_=>'php'}qw(php php3 php4 php5 phps)), 286(map{$_=>'pl'}qw(pl perl pm)),# perhaps also 'cgi' 287(map{$_=>'make'}qw(make mak mk)), 288(map{$_=>'xml'}qw(xml xhtml html htm)), 289); 290 291# You define site-wide feature defaults here; override them with 292# $GITWEB_CONFIG as necessary. 293our%feature= ( 294# feature => { 295# 'sub' => feature-sub (subroutine), 296# 'override' => allow-override (boolean), 297# 'default' => [ default options...] (array reference)} 298# 299# if feature is overridable (it means that allow-override has true value), 300# then feature-sub will be called with default options as parameters; 301# return value of feature-sub indicates if to enable specified feature 302# 303# if there is no 'sub' key (no feature-sub), then feature cannot be 304# overridden 305# 306# use gitweb_get_feature(<feature>) to retrieve the <feature> value 307# (an array) or gitweb_check_feature(<feature>) to check if <feature> 308# is enabled 309 310# Enable the 'blame' blob view, showing the last commit that modified 311# each line in the file. This can be very CPU-intensive. 312 313# To enable system wide have in $GITWEB_CONFIG 314# $feature{'blame'}{'default'} = [1]; 315# To have project specific config enable override in $GITWEB_CONFIG 316# $feature{'blame'}{'override'} = 1; 317# and in project config gitweb.blame = 0|1; 318'blame'=> { 319'sub'=>sub{ feature_bool('blame',@_) }, 320'override'=>0, 321'default'=> [0]}, 322 323# Enable the 'snapshot' link, providing a compressed archive of any 324# tree. This can potentially generate high traffic if you have large 325# project. 326 327# Value is a list of formats defined in %known_snapshot_formats that 328# you wish to offer. 329# To disable system wide have in $GITWEB_CONFIG 330# $feature{'snapshot'}{'default'} = []; 331# To have project specific config enable override in $GITWEB_CONFIG 332# $feature{'snapshot'}{'override'} = 1; 333# and in project config, a comma-separated list of formats or "none" 334# to disable. Example: gitweb.snapshot = tbz2,zip; 335'snapshot'=> { 336'sub'=> \&feature_snapshot, 337'override'=>0, 338'default'=> ['tgz']}, 339 340# Enable text search, which will list the commits which match author, 341# committer or commit text to a given string. Enabled by default. 342# Project specific override is not supported. 343# 344# Note that this controls all search features, which means that if 345# it is disabled, then 'grep' and 'pickaxe' search would also be 346# disabled. 347'search'=> { 348'override'=>0, 349'default'=> [1]}, 350 351# Enable grep search, which will list the files in currently selected 352# tree containing the given string. Enabled by default. This can be 353# potentially CPU-intensive, of course. 354# Note that you need to have 'search' feature enabled too. 355 356# To enable system wide have in $GITWEB_CONFIG 357# $feature{'grep'}{'default'} = [1]; 358# To have project specific config enable override in $GITWEB_CONFIG 359# $feature{'grep'}{'override'} = 1; 360# and in project config gitweb.grep = 0|1; 361'grep'=> { 362'sub'=>sub{ feature_bool('grep',@_) }, 363'override'=>0, 364'default'=> [1]}, 365 366# Enable the pickaxe search, which will list the commits that modified 367# a given string in a file. This can be practical and quite faster 368# alternative to 'blame', but still potentially CPU-intensive. 369# Note that you need to have 'search' feature enabled too. 370 371# To enable system wide have in $GITWEB_CONFIG 372# $feature{'pickaxe'}{'default'} = [1]; 373# To have project specific config enable override in $GITWEB_CONFIG 374# $feature{'pickaxe'}{'override'} = 1; 375# and in project config gitweb.pickaxe = 0|1; 376'pickaxe'=> { 377'sub'=>sub{ feature_bool('pickaxe',@_) }, 378'override'=>0, 379'default'=> [1]}, 380 381# Enable showing size of blobs in a 'tree' view, in a separate 382# column, similar to what 'ls -l' does. This cost a bit of IO. 383 384# To disable system wide have in $GITWEB_CONFIG 385# $feature{'show-sizes'}{'default'} = [0]; 386# To have project specific config enable override in $GITWEB_CONFIG 387# $feature{'show-sizes'}{'override'} = 1; 388# and in project config gitweb.showsizes = 0|1; 389'show-sizes'=> { 390'sub'=>sub{ feature_bool('showsizes',@_) }, 391'override'=>0, 392'default'=> [1]}, 393 394# Make gitweb use an alternative format of the URLs which can be 395# more readable and natural-looking: project name is embedded 396# directly in the path and the query string contains other 397# auxiliary information. All gitweb installations recognize 398# URL in either format; this configures in which formats gitweb 399# generates links. 400 401# To enable system wide have in $GITWEB_CONFIG 402# $feature{'pathinfo'}{'default'} = [1]; 403# Project specific override is not supported. 404 405# Note that you will need to change the default location of CSS, 406# favicon, logo and possibly other files to an absolute URL. Also, 407# if gitweb.cgi serves as your indexfile, you will need to force 408# $my_uri to contain the script name in your $GITWEB_CONFIG. 409'pathinfo'=> { 410'override'=>0, 411'default'=> [0]}, 412 413# Make gitweb consider projects in project root subdirectories 414# to be forks of existing projects. Given project $projname.git, 415# projects matching $projname/*.git will not be shown in the main 416# projects list, instead a '+' mark will be added to $projname 417# there and a 'forks' view will be enabled for the project, listing 418# all the forks. If project list is taken from a file, forks have 419# to be listed after the main project. 420 421# To enable system wide have in $GITWEB_CONFIG 422# $feature{'forks'}{'default'} = [1]; 423# Project specific override is not supported. 424'forks'=> { 425'override'=>0, 426'default'=> [0]}, 427 428# Insert custom links to the action bar of all project pages. 429# This enables you mainly to link to third-party scripts integrating 430# into gitweb; e.g. git-browser for graphical history representation 431# or custom web-based repository administration interface. 432 433# The 'default' value consists of a list of triplets in the form 434# (label, link, position) where position is the label after which 435# to insert the link and link is a format string where %n expands 436# to the project name, %f to the project path within the filesystem, 437# %h to the current hash (h gitweb parameter) and %b to the current 438# hash base (hb gitweb parameter); %% expands to %. 439 440# To enable system wide have in $GITWEB_CONFIG e.g. 441# $feature{'actions'}{'default'} = [('graphiclog', 442# '/git-browser/by-commit.html?r=%n', 'summary')]; 443# Project specific override is not supported. 444'actions'=> { 445'override'=>0, 446'default'=> []}, 447 448# Allow gitweb scan project content tags of project repository, 449# and display the popular Web 2.0-ish "tag cloud" near the projects 450# list. Note that this is something COMPLETELY different from the 451# normal Git tags. 452 453# gitweb by itself can show existing tags, but it does not handle 454# tagging itself; you need to do it externally, outside gitweb. 455# The format is described in git_get_project_ctags() subroutine. 456# You may want to install the HTML::TagCloud Perl module to get 457# a pretty tag cloud instead of just a list of tags. 458 459# To enable system wide have in $GITWEB_CONFIG 460# $feature{'ctags'}{'default'} = [1]; 461# Project specific override is not supported. 462 463# In the future whether ctags editing is enabled might depend 464# on the value, but using 1 should always mean no editing of ctags. 465'ctags'=> { 466'override'=>0, 467'default'=> [0]}, 468 469# The maximum number of patches in a patchset generated in patch 470# view. Set this to 0 or undef to disable patch view, or to a 471# negative number to remove any limit. 472 473# To disable system wide have in $GITWEB_CONFIG 474# $feature{'patches'}{'default'} = [0]; 475# To have project specific config enable override in $GITWEB_CONFIG 476# $feature{'patches'}{'override'} = 1; 477# and in project config gitweb.patches = 0|n; 478# where n is the maximum number of patches allowed in a patchset. 479'patches'=> { 480'sub'=> \&feature_patches, 481'override'=>0, 482'default'=> [16]}, 483 484# Avatar support. When this feature is enabled, views such as 485# shortlog or commit will display an avatar associated with 486# the email of the committer(s) and/or author(s). 487 488# Currently available providers are gravatar and picon. 489# If an unknown provider is specified, the feature is disabled. 490 491# Gravatar depends on Digest::MD5. 492# Picon currently relies on the indiana.edu database. 493 494# To enable system wide have in $GITWEB_CONFIG 495# $feature{'avatar'}{'default'} = ['<provider>']; 496# where <provider> is either gravatar or picon. 497# To have project specific config enable override in $GITWEB_CONFIG 498# $feature{'avatar'}{'override'} = 1; 499# and in project config gitweb.avatar = <provider>; 500'avatar'=> { 501'sub'=> \&feature_avatar, 502'override'=>0, 503'default'=> ['']}, 504 505# Enable displaying how much time and how many git commands 506# it took to generate and display page. Disabled by default. 507# Project specific override is not supported. 508'timed'=> { 509'override'=>0, 510'default'=> [0]}, 511 512# Enable turning some links into links to actions which require 513# JavaScript to run (like 'blame_incremental'). Not enabled by 514# default. Project specific override is currently not supported. 515'javascript-actions'=> { 516'override'=>0, 517'default'=> [0]}, 518 519# Enable and configure ability to change common timezone for dates 520# in gitweb output via JavaScript. Enabled by default. 521# Project specific override is not supported. 522'javascript-timezone'=> { 523'override'=>0, 524'default'=> [ 525'local',# default timezone: 'utc', 'local', or '(-|+)HHMM' format, 526# or undef to turn off this feature 527'gitweb_tz',# name of cookie where to store selected timezone 528'datetime',# CSS class used to mark up dates for manipulation 529]}, 530 531# Syntax highlighting support. This is based on Daniel Svensson's 532# and Sham Chukoury's work in gitweb-xmms2.git. 533# It requires the 'highlight' program present in $PATH, 534# and therefore is disabled by default. 535 536# To enable system wide have in $GITWEB_CONFIG 537# $feature{'highlight'}{'default'} = [1]; 538 539'highlight'=> { 540'sub'=>sub{ feature_bool('highlight',@_) }, 541'override'=>0, 542'default'=> [0]}, 543 544# Enable displaying of remote heads in the heads list 545 546# To enable system wide have in $GITWEB_CONFIG 547# $feature{'remote_heads'}{'default'} = [1]; 548# To have project specific config enable override in $GITWEB_CONFIG 549# $feature{'remote_heads'}{'override'} = 1; 550# and in project config gitweb.remoteheads = 0|1; 551'remote_heads'=> { 552'sub'=>sub{ feature_bool('remote_heads',@_) }, 553'override'=>0, 554'default'=> [0]}, 555 556# Enable showing branches under other refs in addition to heads 557 558# To set system wide extra branch refs have in $GITWEB_CONFIG 559# $feature{'extra-branch-refs'}{'default'} = ['dirs', 'of', 'choice']; 560# To have project specific config enable override in $GITWEB_CONFIG 561# $feature{'extra-branch-refs'}{'override'} = 1; 562# and in project config gitweb.extrabranchrefs = dirs of choice 563# Every directory is separated with whitespace. 564 565'extra-branch-refs'=> { 566'sub'=> \&feature_extra_branch_refs, 567'override'=>0, 568'default'=> []}, 569); 570 571sub gitweb_get_feature { 572my($name) =@_; 573return unlessexists$feature{$name}; 574my($sub,$override,@defaults) = ( 575$feature{$name}{'sub'}, 576$feature{$name}{'override'}, 577@{$feature{$name}{'default'}}); 578# project specific override is possible only if we have project 579our$git_dir;# global variable, declared later 580if(!$override|| !defined$git_dir) { 581return@defaults; 582} 583if(!defined$sub) { 584warn"feature$nameis not overridable"; 585return@defaults; 586} 587return$sub->(@defaults); 588} 589 590# A wrapper to check if a given feature is enabled. 591# With this, you can say 592# 593# my $bool_feat = gitweb_check_feature('bool_feat'); 594# gitweb_check_feature('bool_feat') or somecode; 595# 596# instead of 597# 598# my ($bool_feat) = gitweb_get_feature('bool_feat'); 599# (gitweb_get_feature('bool_feat'))[0] or somecode; 600# 601sub gitweb_check_feature { 602return(gitweb_get_feature(@_))[0]; 603} 604 605 606sub feature_bool { 607my$key=shift; 608my($val) = git_get_project_config($key,'--bool'); 609 610if(!defined$val) { 611return($_[0]); 612}elsif($valeq'true') { 613return(1); 614}elsif($valeq'false') { 615return(0); 616} 617} 618 619sub feature_snapshot { 620my(@fmts) =@_; 621 622my($val) = git_get_project_config('snapshot'); 623 624if($val) { 625@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 626} 627 628return@fmts; 629} 630 631sub feature_patches { 632my@val= (git_get_project_config('patches','--int')); 633 634if(@val) { 635return@val; 636} 637 638return($_[0]); 639} 640 641sub feature_avatar { 642my@val= (git_get_project_config('avatar')); 643 644return@val?@val:@_; 645} 646 647sub feature_extra_branch_refs { 648my(@branch_refs) =@_; 649my$values= git_get_project_config('extrabranchrefs'); 650 651if($values) { 652$values= config_to_multi ($values); 653@branch_refs= (); 654foreachmy$value(@{$values}) { 655push@branch_refs,split/\s+/,$value; 656} 657} 658 659return@branch_refs; 660} 661 662# checking HEAD file with -e is fragile if the repository was 663# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 664# and then pruned. 665sub check_head_link { 666my($dir) =@_; 667my$headfile="$dir/HEAD"; 668return((-e $headfile) || 669(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 670} 671 672sub check_export_ok { 673my($dir) =@_; 674return(check_head_link($dir) && 675(!$export_ok|| -e "$dir/$export_ok") && 676(!$export_auth_hook||$export_auth_hook->($dir))); 677} 678 679# process alternate names for backward compatibility 680# filter out unsupported (unknown) snapshot formats 681sub filter_snapshot_fmts { 682my@fmts=@_; 683 684@fmts=map{ 685exists$known_snapshot_format_aliases{$_} ? 686$known_snapshot_format_aliases{$_} :$_}@fmts; 687@fmts=grep{ 688exists$known_snapshot_formats{$_} && 689!$known_snapshot_formats{$_}{'disabled'}}@fmts; 690} 691 692sub filter_and_validate_refs { 693my@refs=@_; 694my%unique_refs= (); 695 696foreachmy$ref(@refs) { 697 die_error(500,"Invalid ref '$ref' in 'extra-branch-refs' feature")unless(is_valid_ref_format($ref)); 698# 'heads' are added implicitly in get_branch_refs(). 699$unique_refs{$ref} =1if($refne'heads'); 700} 701returnsort keys%unique_refs; 702} 703 704# If it is set to code reference, it is code that it is to be run once per 705# request, allowing updating configurations that change with each request, 706# while running other code in config file only once. 707# 708# Otherwise, if it is false then gitweb would process config file only once; 709# if it is true then gitweb config would be run for each request. 710our$per_request_config=1; 711 712# read and parse gitweb config file given by its parameter. 713# returns true on success, false on recoverable error, allowing 714# to chain this subroutine, using first file that exists. 715# dies on errors during parsing config file, as it is unrecoverable. 716sub read_config_file { 717my$filename=shift; 718return unlessdefined$filename; 719# die if there are errors parsing config file 720if(-e $filename) { 721do$filename; 722die$@if$@; 723return1; 724} 725return; 726} 727 728our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM,$GITWEB_CONFIG_COMMON); 729sub evaluate_gitweb_config { 730our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 731our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 732our$GITWEB_CONFIG_COMMON=$ENV{'GITWEB_CONFIG_COMMON'} ||"++GITWEB_CONFIG_COMMON++"; 733 734# Protect against duplications of file names, to not read config twice. 735# Only one of $GITWEB_CONFIG and $GITWEB_CONFIG_SYSTEM is used, so 736# there possibility of duplication of filename there doesn't matter. 737$GITWEB_CONFIG=""if($GITWEB_CONFIGeq$GITWEB_CONFIG_COMMON); 738$GITWEB_CONFIG_SYSTEM=""if($GITWEB_CONFIG_SYSTEMeq$GITWEB_CONFIG_COMMON); 739 740# Common system-wide settings for convenience. 741# Those settings can be ovverriden by GITWEB_CONFIG or GITWEB_CONFIG_SYSTEM. 742 read_config_file($GITWEB_CONFIG_COMMON); 743 744# Use first config file that exists. This means use the per-instance 745# GITWEB_CONFIG if exists, otherwise use GITWEB_SYSTEM_CONFIG. 746 read_config_file($GITWEB_CONFIG)andreturn; 747 read_config_file($GITWEB_CONFIG_SYSTEM); 748} 749 750# Get loadavg of system, to compare against $maxload. 751# Currently it requires '/proc/loadavg' present to get loadavg; 752# if it is not present it returns 0, which means no load checking. 753sub get_loadavg { 754if( -e '/proc/loadavg'){ 755open my$fd,'<','/proc/loadavg' 756orreturn0; 757my@load=split(/\s+/,scalar<$fd>); 758close$fd; 759 760# The first three columns measure CPU and IO utilization of the last one, 761# five, and 10 minute periods. The fourth column shows the number of 762# currently running processes and the total number of processes in the m/n 763# format. The last column displays the last process ID used. 764return$load[0] ||0; 765} 766# additional checks for load average should go here for things that don't export 767# /proc/loadavg 768 769return0; 770} 771 772# version of the core git binary 773our$git_version; 774sub evaluate_git_version { 775our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 776$number_of_git_cmds++; 777} 778 779sub check_loadavg { 780if(defined$maxload&& get_loadavg() >$maxload) { 781 die_error(503,"The load average on the server is too high"); 782} 783} 784 785# ====================================================================== 786# input validation and dispatch 787 788# input parameters can be collected from a variety of sources (presently, CGI 789# and PATH_INFO), so we define an %input_params hash that collects them all 790# together during validation: this allows subsequent uses (e.g. href()) to be 791# agnostic of the parameter origin 792 793our%input_params= (); 794 795# input parameters are stored with the long parameter name as key. This will 796# also be used in the href subroutine to convert parameters to their CGI 797# equivalent, and since the href() usage is the most frequent one, we store 798# the name -> CGI key mapping here, instead of the reverse. 799# 800# XXX: Warning: If you touch this, check the search form for updating, 801# too. 802 803our@cgi_param_mapping= ( 804 project =>"p", 805 action =>"a", 806 file_name =>"f", 807 file_parent =>"fp", 808 hash =>"h", 809 hash_parent =>"hp", 810 hash_base =>"hb", 811 hash_parent_base =>"hpb", 812 page =>"pg", 813 order =>"o", 814 searchtext =>"s", 815 searchtype =>"st", 816 snapshot_format =>"sf", 817 extra_options =>"opt", 818 search_use_regexp =>"sr", 819 ctag =>"by_tag", 820 diff_style =>"ds", 821 project_filter =>"pf", 822# this must be last entry (for manipulation from JavaScript) 823 javascript =>"js" 824); 825our%cgi_param_mapping=@cgi_param_mapping; 826 827# we will also need to know the possible actions, for validation 828our%actions= ( 829"blame"=> \&git_blame, 830"blame_incremental"=> \&git_blame_incremental, 831"blame_data"=> \&git_blame_data, 832"blobdiff"=> \&git_blobdiff, 833"blobdiff_plain"=> \&git_blobdiff_plain, 834"blob"=> \&git_blob, 835"blob_plain"=> \&git_blob_plain, 836"commitdiff"=> \&git_commitdiff, 837"commitdiff_plain"=> \&git_commitdiff_plain, 838"commit"=> \&git_commit, 839"forks"=> \&git_forks, 840"heads"=> \&git_heads, 841"history"=> \&git_history, 842"log"=> \&git_log, 843"patch"=> \&git_patch, 844"patches"=> \&git_patches, 845"remotes"=> \&git_remotes, 846"rss"=> \&git_rss, 847"atom"=> \&git_atom, 848"search"=> \&git_search, 849"search_help"=> \&git_search_help, 850"shortlog"=> \&git_shortlog, 851"summary"=> \&git_summary, 852"tag"=> \&git_tag, 853"tags"=> \&git_tags, 854"tree"=> \&git_tree, 855"snapshot"=> \&git_snapshot, 856"object"=> \&git_object, 857# those below don't need $project 858"opml"=> \&git_opml, 859"project_list"=> \&git_project_list, 860"project_index"=> \&git_project_index, 861); 862 863# finally, we have the hash of allowed extra_options for the commands that 864# allow them 865our%allowed_options= ( 866"--no-merges"=> [qw(rss atom log shortlog history)], 867); 868 869# fill %input_params with the CGI parameters. All values except for 'opt' 870# should be single values, but opt can be an array. We should probably 871# build an array of parameters that can be multi-valued, but since for the time 872# being it's only this one, we just single it out 873sub evaluate_query_params { 874our$cgi; 875 876while(my($name,$symbol) =each%cgi_param_mapping) { 877if($symboleq'opt') { 878$input_params{$name} = [map{ decode_utf8($_) }$cgi->multi_param($symbol) ]; 879}else{ 880$input_params{$name} = decode_utf8($cgi->param($symbol)); 881} 882} 883} 884 885# now read PATH_INFO and update the parameter list for missing parameters 886sub evaluate_path_info { 887return ifdefined$input_params{'project'}; 888return if!$path_info; 889$path_info=~ s,^/+,,; 890return if!$path_info; 891 892# find which part of PATH_INFO is project 893my$project=$path_info; 894$project=~ s,/+$,,; 895while($project&& !check_head_link("$projectroot/$project")) { 896$project=~ s,/*[^/]*$,,; 897} 898return unless$project; 899$input_params{'project'} =$project; 900 901# do not change any parameters if an action is given using the query string 902return if$input_params{'action'}; 903$path_info=~ s,^\Q$project\E/*,,; 904 905# next, check if we have an action 906my$action=$path_info; 907$action=~ s,/.*$,,; 908if(exists$actions{$action}) { 909$path_info=~ s,^$action/*,,; 910$input_params{'action'} =$action; 911} 912 913# list of actions that want hash_base instead of hash, but can have no 914# pathname (f) parameter 915my@wants_base= ( 916'tree', 917'history', 918); 919 920# we want to catch, among others 921# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 922my($parentrefname,$parentpathname,$refname,$pathname) = 923($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 924 925# first, analyze the 'current' part 926if(defined$pathname) { 927# we got "branch:filename" or "branch:dir/" 928# we could use git_get_type(branch:pathname), but: 929# - it needs $git_dir 930# - it does a git() call 931# - the convention of terminating directories with a slash 932# makes it superfluous 933# - embedding the action in the PATH_INFO would make it even 934# more superfluous 935$pathname=~ s,^/+,,; 936if(!$pathname||substr($pathname, -1)eq"/") { 937$input_params{'action'} ||="tree"; 938$pathname=~ s,/$,,; 939}else{ 940# the default action depends on whether we had parent info 941# or not 942if($parentrefname) { 943$input_params{'action'} ||="blobdiff_plain"; 944}else{ 945$input_params{'action'} ||="blob_plain"; 946} 947} 948$input_params{'hash_base'} ||=$refname; 949$input_params{'file_name'} ||=$pathname; 950}elsif(defined$refname) { 951# we got "branch". In this case we have to choose if we have to 952# set hash or hash_base. 953# 954# Most of the actions without a pathname only want hash to be 955# set, except for the ones specified in @wants_base that want 956# hash_base instead. It should also be noted that hand-crafted 957# links having 'history' as an action and no pathname or hash 958# set will fail, but that happens regardless of PATH_INFO. 959if(defined$parentrefname) { 960# if there is parent let the default be 'shortlog' action 961# (for http://git.example.com/repo.git/A..B links); if there 962# is no parent, dispatch will detect type of object and set 963# action appropriately if required (if action is not set) 964$input_params{'action'} ||="shortlog"; 965} 966if($input_params{'action'} && 967grep{$_eq$input_params{'action'} }@wants_base) { 968$input_params{'hash_base'} ||=$refname; 969}else{ 970$input_params{'hash'} ||=$refname; 971} 972} 973 974# next, handle the 'parent' part, if present 975if(defined$parentrefname) { 976# a missing pathspec defaults to the 'current' filename, allowing e.g. 977# someproject/blobdiff/oldrev..newrev:/filename 978if($parentpathname) { 979$parentpathname=~ s,^/+,,; 980$parentpathname=~ s,/$,,; 981$input_params{'file_parent'} ||=$parentpathname; 982}else{ 983$input_params{'file_parent'} ||=$input_params{'file_name'}; 984} 985# we assume that hash_parent_base is wanted if a path was specified, 986# or if the action wants hash_base instead of hash 987if(defined$input_params{'file_parent'} || 988grep{$_eq$input_params{'action'} }@wants_base) { 989$input_params{'hash_parent_base'} ||=$parentrefname; 990}else{ 991$input_params{'hash_parent'} ||=$parentrefname; 992} 993} 994 995# for the snapshot action, we allow URLs in the form 996# $project/snapshot/$hash.ext 997# where .ext determines the snapshot and gets removed from the 998# passed $refname to provide the $hash. 999#1000# To be able to tell that $refname includes the format extension, we1001# require the following two conditions to be satisfied:1002# - the hash input parameter MUST have been set from the $refname part1003# of the URL (i.e. they must be equal)1004# - the snapshot format MUST NOT have been defined already (e.g. from1005# CGI parameter sf)1006# It's also useless to try any matching unless $refname has a dot,1007# so we check for that too1008if(defined$input_params{'action'} &&1009$input_params{'action'}eq'snapshot'&&1010defined$refname&&index($refname,'.') != -1&&1011$refnameeq$input_params{'hash'} &&1012!defined$input_params{'snapshot_format'}) {1013# We loop over the known snapshot formats, checking for1014# extensions. Allowed extensions are both the defined suffix1015# (which includes the initial dot already) and the snapshot1016# format key itself, with a prepended dot1017while(my($fmt,$opt) =each%known_snapshot_formats) {1018my$hash=$refname;1019unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {1020next;1021}1022my$sfx=$1;1023# a valid suffix was found, so set the snapshot format1024# and reset the hash parameter1025$input_params{'snapshot_format'} =$fmt;1026$input_params{'hash'} =$hash;1027# we also set the format suffix to the one requested1028# in the URL: this way a request for e.g. .tgz returns1029# a .tgz instead of a .tar.gz1030$known_snapshot_formats{$fmt}{'suffix'} =$sfx;1031last;1032}1033}1034}10351036our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base,1037$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp,1038$searchtext,$search_regexp,$project_filter);1039sub evaluate_and_validate_params {1040our$action=$input_params{'action'};1041if(defined$action) {1042if(!is_valid_action($action)) {1043 die_error(400,"Invalid action parameter");1044}1045}10461047# parameters which are pathnames1048our$project=$input_params{'project'};1049if(defined$project) {1050if(!is_valid_project($project)) {1051undef$project;1052 die_error(404,"No such project");1053}1054}10551056our$project_filter=$input_params{'project_filter'};1057if(defined$project_filter) {1058if(!is_valid_pathname($project_filter)) {1059 die_error(404,"Invalid project_filter parameter");1060}1061}10621063our$file_name=$input_params{'file_name'};1064if(defined$file_name) {1065if(!is_valid_pathname($file_name)) {1066 die_error(400,"Invalid file parameter");1067}1068}10691070our$file_parent=$input_params{'file_parent'};1071if(defined$file_parent) {1072if(!is_valid_pathname($file_parent)) {1073 die_error(400,"Invalid file parent parameter");1074}1075}10761077# parameters which are refnames1078our$hash=$input_params{'hash'};1079if(defined$hash) {1080if(!is_valid_refname($hash)) {1081 die_error(400,"Invalid hash parameter");1082}1083}10841085our$hash_parent=$input_params{'hash_parent'};1086if(defined$hash_parent) {1087if(!is_valid_refname($hash_parent)) {1088 die_error(400,"Invalid hash parent parameter");1089}1090}10911092our$hash_base=$input_params{'hash_base'};1093if(defined$hash_base) {1094if(!is_valid_refname($hash_base)) {1095 die_error(400,"Invalid hash base parameter");1096}1097}10981099our@extra_options= @{$input_params{'extra_options'}};1100# @extra_options is always defined, since it can only be (currently) set from1101# CGI, and $cgi->param() returns the empty array in array context if the param1102# is not set1103foreachmy$opt(@extra_options) {1104if(not exists$allowed_options{$opt}) {1105 die_error(400,"Invalid option parameter");1106}1107if(not grep(/^$action$/, @{$allowed_options{$opt}})) {1108 die_error(400,"Invalid option parameter for this action");1109}1110}11111112our$hash_parent_base=$input_params{'hash_parent_base'};1113if(defined$hash_parent_base) {1114if(!is_valid_refname($hash_parent_base)) {1115 die_error(400,"Invalid hash parent base parameter");1116}1117}11181119# other parameters1120our$page=$input_params{'page'};1121if(defined$page) {1122if($page=~m/[^0-9]/) {1123 die_error(400,"Invalid page parameter");1124}1125}11261127our$searchtype=$input_params{'searchtype'};1128if(defined$searchtype) {1129if($searchtype=~m/[^a-z]/) {1130 die_error(400,"Invalid searchtype parameter");1131}1132}11331134our$search_use_regexp=$input_params{'search_use_regexp'};11351136our$searchtext=$input_params{'searchtext'};1137our$search_regexp=undef;1138if(defined$searchtext) {1139if(length($searchtext) <2) {1140 die_error(403,"At least two characters are required for search parameter");1141}1142if($search_use_regexp) {1143$search_regexp=$searchtext;1144if(!eval{qr/$search_regexp/;1; }) {1145(my$error=$@) =~s/ at \S+ line \d+.*\n?//;1146 die_error(400,"Invalid search regexp '$search_regexp'",1147 esc_html($error));1148}1149}else{1150$search_regexp=quotemeta$searchtext;1151}1152}1153}11541155# path to the current git repository1156our$git_dir;1157sub evaluate_git_dir {1158our$git_dir="$projectroot/$project"if$project;1159}11601161our(@snapshot_fmts,$git_avatar,@extra_branch_refs);1162sub configure_gitweb_features {1163# list of supported snapshot formats1164our@snapshot_fmts= gitweb_get_feature('snapshot');1165@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);11661167# check that the avatar feature is set to a known provider name,1168# and for each provider check if the dependencies are satisfied.1169# if the provider name is invalid or the dependencies are not met,1170# reset $git_avatar to the empty string.1171our($git_avatar) = gitweb_get_feature('avatar');1172if($git_avatareq'gravatar') {1173$git_avatar=''unless(eval{require Digest::MD5;1; });1174}elsif($git_avatareq'picon') {1175# no dependencies1176}else{1177$git_avatar='';1178}11791180our@extra_branch_refs= gitweb_get_feature('extra-branch-refs');1181@extra_branch_refs= filter_and_validate_refs (@extra_branch_refs);1182}11831184sub get_branch_refs {1185return('heads',@extra_branch_refs);1186}11871188# custom error handler: 'die <message>' is Internal Server Error1189sub handle_errors_html {1190my$msg=shift;# it is already HTML escaped11911192# to avoid infinite loop where error occurs in die_error,1193# change handler to default handler, disabling handle_errors_html1194 set_message("Error occurred when inside die_error:\n$msg");11951196# you cannot jump out of die_error when called as error handler;1197# the subroutine set via CGI::Carp::set_message is called _after_1198# HTTP headers are already written, so it cannot write them itself1199 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1200}1201set_message(\&handle_errors_html);12021203# dispatch1204sub dispatch {1205if(!defined$action) {1206if(defined$hash) {1207$action= git_get_type($hash);1208$actionor die_error(404,"Object does not exist");1209}elsif(defined$hash_base&&defined$file_name) {1210$action= git_get_type("$hash_base:$file_name");1211$actionor die_error(404,"File or directory does not exist");1212}elsif(defined$project) {1213$action='summary';1214}else{1215$action='project_list';1216}1217}1218if(!defined($actions{$action})) {1219 die_error(400,"Unknown action");1220}1221if($action!~m/^(?:opml|project_list|project_index)$/&&1222!$project) {1223 die_error(400,"Project needed");1224}1225$actions{$action}->();1226}12271228sub reset_timer {1229our$t0= [ gettimeofday() ]1230ifdefined$t0;1231our$number_of_git_cmds=0;1232}12331234our$first_request=1;1235sub run_request {1236 reset_timer();12371238 evaluate_uri();1239if($first_request) {1240 evaluate_gitweb_config();1241 evaluate_git_version();1242}1243if($per_request_config) {1244if(ref($per_request_config)eq'CODE') {1245$per_request_config->();1246}elsif(!$first_request) {1247 evaluate_gitweb_config();1248}1249}1250 check_loadavg();12511252# $projectroot and $projects_list might be set in gitweb config file1253$projects_list||=$projectroot;12541255 evaluate_query_params();1256 evaluate_path_info();1257 evaluate_and_validate_params();1258 evaluate_git_dir();12591260 configure_gitweb_features();12611262 dispatch();1263}12641265our$is_last_request=sub{1};1266our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1267our$CGI='CGI';1268our$cgi;1269sub configure_as_fcgi {1270require CGI::Fast;1271our$CGI='CGI::Fast';12721273my$request_number=0;1274# let each child service 100 requests1275our$is_last_request=sub{ ++$request_number>100};1276}1277sub evaluate_argv {1278my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1279 configure_as_fcgi()1280if$script_name=~/\.fcgi$/;12811282return unless(@ARGV);12831284require Getopt::Long;1285 Getopt::Long::GetOptions(1286'fastcgi|fcgi|f'=> \&configure_as_fcgi,1287'nproc|n=i'=>sub{1288my($arg,$val) =@_;1289return unlesseval{require FCGI::ProcManager;1; };1290my$proc_manager= FCGI::ProcManager->new({1291 n_processes =>$val,1292});1293our$pre_listen_hook=sub{$proc_manager->pm_manage() };1294our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1295our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1296},1297);1298}12991300sub run {1301 evaluate_argv();13021303$first_request=1;1304$pre_listen_hook->()1305if$pre_listen_hook;13061307 REQUEST:1308while($cgi=$CGI->new()) {1309$pre_dispatch_hook->()1310if$pre_dispatch_hook;13111312 run_request();13131314$post_dispatch_hook->()1315if$post_dispatch_hook;1316$first_request=0;13171318last REQUEST if($is_last_request->());1319}13201321 DONE_GITWEB:13221;1323}13241325run();13261327if(defined caller) {1328# wrapped in a subroutine processing requests,1329# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1330return;1331}else{1332# pure CGI script, serving single request1333exit;1334}13351336## ======================================================================1337## action links13381339# possible values of extra options1340# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1341# -replay => 1 - start from a current view (replay with modifications)1342# -path_info => 0|1 - don't use/use path_info URL (if possible)1343# -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone1344sub href {1345my%params=@_;1346# default is to use -absolute url() i.e. $my_uri1347my$href=$params{-full} ?$my_url:$my_uri;13481349# implicit -replay, must be first of implicit params1350$params{-replay} =1if(keys%params==1&&$params{-anchor});13511352$params{'project'} =$projectunlessexists$params{'project'};13531354if($params{-replay}) {1355while(my($name,$symbol) =each%cgi_param_mapping) {1356if(!exists$params{$name}) {1357$params{$name} =$input_params{$name};1358}1359}1360}13611362my$use_pathinfo= gitweb_check_feature('pathinfo');1363if(defined$params{'project'} &&1364(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1365# try to put as many parameters as possible in PATH_INFO:1366# - project name1367# - action1368# - hash_parent or hash_parent_base:/file_parent1369# - hash or hash_base:/filename1370# - the snapshot_format as an appropriate suffix13711372# When the script is the root DirectoryIndex for the domain,1373# $href here would be something like http://gitweb.example.com/1374# Thus, we strip any trailing / from $href, to spare us double1375# slashes in the final URL1376$href=~ s,/$,,;13771378# Then add the project name, if present1379$href.="/".esc_path_info($params{'project'});1380delete$params{'project'};13811382# since we destructively absorb parameters, we keep this1383# boolean that remembers if we're handling a snapshot1384my$is_snapshot=$params{'action'}eq'snapshot';13851386# Summary just uses the project path URL, any other action is1387# added to the URL1388if(defined$params{'action'}) {1389$href.="/".esc_path_info($params{'action'})1390unless$params{'action'}eq'summary';1391delete$params{'action'};1392}13931394# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1395# stripping nonexistent or useless pieces1396$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1397||$params{'hash_parent'} ||$params{'hash'});1398if(defined$params{'hash_base'}) {1399if(defined$params{'hash_parent_base'}) {1400$href.= esc_path_info($params{'hash_parent_base'});1401# skip the file_parent if it's the same as the file_name1402if(defined$params{'file_parent'}) {1403if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1404delete$params{'file_parent'};1405}elsif($params{'file_parent'} !~/\.\./) {1406$href.=":/".esc_path_info($params{'file_parent'});1407delete$params{'file_parent'};1408}1409}1410$href.="..";1411delete$params{'hash_parent'};1412delete$params{'hash_parent_base'};1413}elsif(defined$params{'hash_parent'}) {1414$href.= esc_path_info($params{'hash_parent'})."..";1415delete$params{'hash_parent'};1416}14171418$href.= esc_path_info($params{'hash_base'});1419if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1420$href.=":/".esc_path_info($params{'file_name'});1421delete$params{'file_name'};1422}1423delete$params{'hash'};1424delete$params{'hash_base'};1425}elsif(defined$params{'hash'}) {1426$href.= esc_path_info($params{'hash'});1427delete$params{'hash'};1428}14291430# If the action was a snapshot, we can absorb the1431# snapshot_format parameter too1432if($is_snapshot) {1433my$fmt=$params{'snapshot_format'};1434# snapshot_format should always be defined when href()1435# is called, but just in case some code forgets, we1436# fall back to the default1437$fmt||=$snapshot_fmts[0];1438$href.=$known_snapshot_formats{$fmt}{'suffix'};1439delete$params{'snapshot_format'};1440}1441}14421443# now encode the parameters explicitly1444my@result= ();1445for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1446my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1447if(defined$params{$name}) {1448if(ref($params{$name})eq"ARRAY") {1449foreachmy$par(@{$params{$name}}) {1450push@result,$symbol."=". esc_param($par);1451}1452}else{1453push@result,$symbol."=". esc_param($params{$name});1454}1455}1456}1457$href.="?".join(';',@result)ifscalar@result;14581459# final transformation: trailing spaces must be escaped (URI-encoded)1460$href=~s/(\s+)$/CGI::escape($1)/e;14611462if($params{-anchor}) {1463$href.="#".esc_param($params{-anchor});1464}14651466return$href;1467}146814691470## ======================================================================1471## validation, quoting/unquoting and escaping14721473sub is_valid_action {1474my$input=shift;1475returnundefunlessexists$actions{$input};1476return1;1477}14781479sub is_valid_project {1480my$input=shift;14811482return unlessdefined$input;1483if(!is_valid_pathname($input) ||1484!(-d "$projectroot/$input") ||1485!check_export_ok("$projectroot/$input") ||1486($strict_export&& !project_in_list($input))) {1487returnundef;1488}else{1489return1;1490}1491}14921493sub is_valid_pathname {1494my$input=shift;14951496returnundefunlessdefined$input;1497# no '.' or '..' as elements of path, i.e. no '.' or '..'1498# at the beginning, at the end, and between slashes.1499# also this catches doubled slashes1500if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1501returnundef;1502}1503# no null characters1504if($input=~m!\0!) {1505returnundef;1506}1507return1;1508}15091510sub is_valid_ref_format {1511my$input=shift;15121513returnundefunlessdefined$input;1514# restrictions on ref name according to git-check-ref-format1515if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1516returnundef;1517}1518return1;1519}15201521sub is_valid_refname {1522my$input=shift;15231524returnundefunlessdefined$input;1525# textual hashes are O.K.1526if($input=~m/^[0-9a-fA-F]{40}$/) {1527return1;1528}1529# it must be correct pathname1530 is_valid_pathname($input)orreturnundef;1531# check git-check-ref-format restrictions1532 is_valid_ref_format($input)orreturnundef;1533return1;1534}15351536# decode sequences of octets in utf8 into Perl's internal form,1537# which is utf-8 with utf8 flag set if needed. gitweb writes out1538# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1539sub to_utf8 {1540my$str=shift;1541returnundefunlessdefined$str;15421543if(utf8::is_utf8($str) || utf8::decode($str)) {1544return$str;1545}else{1546return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1547}1548}15491550# quote unsafe chars, but keep the slash, even when it's not1551# correct, but quoted slashes look too horrible in bookmarks1552sub esc_param {1553my$str=shift;1554returnundefunlessdefined$str;1555$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1556$str=~s/ /\+/g;1557return$str;1558}15591560# the quoting rules for path_info fragment are slightly different1561sub esc_path_info {1562my$str=shift;1563returnundefunlessdefined$str;15641565# path_info doesn't treat '+' as space (specially), but '?' must be escaped1566$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;15671568return$str;1569}15701571# quote unsafe chars in whole URL, so some characters cannot be quoted1572sub esc_url {1573my$str=shift;1574returnundefunlessdefined$str;1575$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1576$str=~s/ /\+/g;1577return$str;1578}15791580# quote unsafe characters in HTML attributes1581sub esc_attr {15821583# for XHTML conformance escaping '"' to '"' is not enough1584return esc_html(@_);1585}15861587# replace invalid utf8 character with SUBSTITUTION sequence1588sub esc_html {1589my$str=shift;1590my%opts=@_;15911592returnundefunlessdefined$str;15931594$str= to_utf8($str);1595$str=$cgi->escapeHTML($str);1596if($opts{'-nbsp'}) {1597$str=~s/ / /g;1598}1599$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1600return$str;1601}16021603# quote control characters and escape filename to HTML1604sub esc_path {1605my$str=shift;1606my%opts=@_;16071608returnundefunlessdefined$str;16091610$str= to_utf8($str);1611$str=$cgi->escapeHTML($str);1612if($opts{'-nbsp'}) {1613$str=~s/ / /g;1614}1615$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1616return$str;1617}16181619# Sanitize for use in XHTML + application/xml+xhtml (valid XML 1.0)1620sub sanitize {1621my$str=shift;16221623returnundefunlessdefined$str;16241625$str= to_utf8($str);1626$str=~ s|([[:cntrl:]])|(index("\t\n\r",$1) != -1?$1: quot_cec($1))|eg;1627return$str;1628}16291630# Make control characters "printable", using character escape codes (CEC)1631sub quot_cec {1632my$cntrl=shift;1633my%opts=@_;1634my%es= (# character escape codes, aka escape sequences1635"\t"=>'\t',# tab (HT)1636"\n"=>'\n',# line feed (LF)1637"\r"=>'\r',# carrige return (CR)1638"\f"=>'\f',# form feed (FF)1639"\b"=>'\b',# backspace (BS)1640"\a"=>'\a',# alarm (bell) (BEL)1641"\e"=>'\e',# escape (ESC)1642"\013"=>'\v',# vertical tab (VT)1643"\000"=>'\0',# nul character (NUL)1644);1645my$chr= ( (exists$es{$cntrl})1646?$es{$cntrl}1647:sprintf('\%2x',ord($cntrl)) );1648if($opts{-nohtml}) {1649return$chr;1650}else{1651return"<span class=\"cntrl\">$chr</span>";1652}1653}16541655# Alternatively use unicode control pictures codepoints,1656# Unicode "printable representation" (PR)1657sub quot_upr {1658my$cntrl=shift;1659my%opts=@_;16601661my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1662if($opts{-nohtml}) {1663return$chr;1664}else{1665return"<span class=\"cntrl\">$chr</span>";1666}1667}16681669# git may return quoted and escaped filenames1670sub unquote {1671my$str=shift;16721673sub unq {1674my$seq=shift;1675my%es= (# character escape codes, aka escape sequences1676't'=>"\t",# tab (HT, TAB)1677'n'=>"\n",# newline (NL)1678'r'=>"\r",# return (CR)1679'f'=>"\f",# form feed (FF)1680'b'=>"\b",# backspace (BS)1681'a'=>"\a",# alarm (bell) (BEL)1682'e'=>"\e",# escape (ESC)1683'v'=>"\013",# vertical tab (VT)1684);16851686if($seq=~m/^[0-7]{1,3}$/) {1687# octal char sequence1688returnchr(oct($seq));1689}elsif(exists$es{$seq}) {1690# C escape sequence, aka character escape code1691return$es{$seq};1692}1693# quoted ordinary character1694return$seq;1695}16961697if($str=~m/^"(.*)"$/) {1698# needs unquoting1699$str=$1;1700$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1701}1702return$str;1703}17041705# escape tabs (convert tabs to spaces)1706sub untabify {1707my$line=shift;17081709while((my$pos=index($line,"\t")) != -1) {1710if(my$count= (8- ($pos%8))) {1711my$spaces=' ' x $count;1712$line=~s/\t/$spaces/;1713}1714}17151716return$line;1717}17181719sub project_in_list {1720my$project=shift;1721my@list= git_get_projects_list();1722return@list&&scalar(grep{$_->{'path'}eq$project}@list);1723}17241725## ----------------------------------------------------------------------1726## HTML aware string manipulation17271728# Try to chop given string on a word boundary between position1729# $len and $len+$add_len. If there is no word boundary there,1730# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1731# (marking chopped part) would be longer than given string.1732sub chop_str {1733my$str=shift;1734my$len=shift;1735my$add_len=shift||10;1736my$where=shift||'right';# 'left' | 'center' | 'right'17371738# Make sure perl knows it is utf8 encoded so we don't1739# cut in the middle of a utf8 multibyte char.1740$str= to_utf8($str);17411742# allow only $len chars, but don't cut a word if it would fit in $add_len1743# if it doesn't fit, cut it if it's still longer than the dots we would add1744# remove chopped character entities entirely17451746# when chopping in the middle, distribute $len into left and right part1747# return early if chopping wouldn't make string shorter1748if($whereeq'center') {1749return$strif($len+5>=length($str));# filler is length 51750$len=int($len/2);1751}else{1752return$strif($len+4>=length($str));# filler is length 41753}17541755# regexps: ending and beginning with word part up to $add_len1756my$endre=qr/.{$len}\w{0,$add_len}/;1757my$begre=qr/\w{0,$add_len}.{$len}/;17581759if($whereeq'left') {1760$str=~m/^(.*?)($begre)$/;1761my($lead,$body) = ($1,$2);1762if(length($lead) >4) {1763$lead=" ...";1764}1765return"$lead$body";17661767}elsif($whereeq'center') {1768$str=~m/^($endre)(.*)$/;1769my($left,$str) = ($1,$2);1770$str=~m/^(.*?)($begre)$/;1771my($mid,$right) = ($1,$2);1772if(length($mid) >5) {1773$mid=" ... ";1774}1775return"$left$mid$right";17761777}else{1778$str=~m/^($endre)(.*)$/;1779my$body=$1;1780my$tail=$2;1781if(length($tail) >4) {1782$tail="... ";1783}1784return"$body$tail";1785}1786}17871788# takes the same arguments as chop_str, but also wraps a <span> around the1789# result with a title attribute if it does get chopped. Additionally, the1790# string is HTML-escaped.1791sub chop_and_escape_str {1792my($str) =@_;17931794my$chopped= chop_str(@_);1795$str= to_utf8($str);1796if($choppedeq$str) {1797return esc_html($chopped);1798}else{1799$str=~s/[[:cntrl:]]/?/g;1800return$cgi->span({-title=>$str}, esc_html($chopped));1801}1802}18031804# Highlight selected fragments of string, using given CSS class,1805# and escape HTML. It is assumed that fragments do not overlap.1806# Regions are passed as list of pairs (array references).1807#1808# Example: esc_html_hl_regions("foobar", "mark", [ 0, 3 ]) returns1809# '<span class="mark">foo</span>bar'1810sub esc_html_hl_regions {1811my($str,$css_class,@sel) =@_;1812my%opts=grep{ref($_)ne'ARRAY'}@sel;1813@sel=grep{ref($_)eq'ARRAY'}@sel;1814return esc_html($str,%opts)unless@sel;18151816my$out='';1817my$pos=0;18181819formy$s(@sel) {1820my($begin,$end) =@$s;18211822# Don't create empty <span> elements.1823next if$end<=$begin;18241825my$escaped= esc_html(substr($str,$begin,$end-$begin),1826%opts);18271828$out.= esc_html(substr($str,$pos,$begin-$pos),%opts)1829if($begin-$pos>0);1830$out.=$cgi->span({-class=>$css_class},$escaped);18311832$pos=$end;1833}1834$out.= esc_html(substr($str,$pos),%opts)1835if($pos<length($str));18361837return$out;1838}18391840# return positions of beginning and end of each match1841sub matchpos_list {1842my($str,$regexp) =@_;1843return unless(defined$str&&defined$regexp);18441845my@matches;1846while($str=~/$regexp/g) {1847push@matches, [$-[0],$+[0]];1848}1849return@matches;1850}18511852# highlight match (if any), and escape HTML1853sub esc_html_match_hl {1854my($str,$regexp) =@_;1855return esc_html($str)unlessdefined$regexp;18561857my@matches= matchpos_list($str,$regexp);1858return esc_html($str)unless@matches;18591860return esc_html_hl_regions($str,'match',@matches);1861}186218631864# highlight match (if any) of shortened string, and escape HTML1865sub esc_html_match_hl_chopped {1866my($str,$chopped,$regexp) =@_;1867return esc_html_match_hl($str,$regexp)unlessdefined$chopped;18681869my@matches= matchpos_list($str,$regexp);1870return esc_html($chopped)unless@matches;18711872# filter matches so that we mark chopped string1873my$tail="... ";# see chop_str1874unless($chopped=~s/\Q$tail\E$//) {1875$tail='';1876}1877my$chop_len=length($chopped);1878my$tail_len=length($tail);1879my@filtered;18801881formy$m(@matches) {1882if($m->[0] >$chop_len) {1883push@filtered, [$chop_len,$chop_len+$tail_len]if($tail_len>0);1884last;1885}elsif($m->[1] >$chop_len) {1886push@filtered, [$m->[0],$chop_len+$tail_len];1887last;1888}1889push@filtered,$m;1890}18911892return esc_html_hl_regions($chopped.$tail,'match',@filtered);1893}18941895## ----------------------------------------------------------------------1896## functions returning short strings18971898# CSS class for given age value (in seconds)1899sub age_class {1900my$age=shift;19011902if(!defined$age) {1903return"noage";1904}elsif($age<60*60*2) {1905return"age0";1906}elsif($age<60*60*24*2) {1907return"age1";1908}else{1909return"age2";1910}1911}19121913# convert age in seconds to "nn units ago" string1914sub age_string {1915my$age=shift;1916my$age_str;19171918if($age>60*60*24*365*2) {1919$age_str= (int$age/60/60/24/365);1920$age_str.=" years ago";1921}elsif($age>60*60*24*(365/12)*2) {1922$age_str=int$age/60/60/24/(365/12);1923$age_str.=" months ago";1924}elsif($age>60*60*24*7*2) {1925$age_str=int$age/60/60/24/7;1926$age_str.=" weeks ago";1927}elsif($age>60*60*24*2) {1928$age_str=int$age/60/60/24;1929$age_str.=" days ago";1930}elsif($age>60*60*2) {1931$age_str=int$age/60/60;1932$age_str.=" hours ago";1933}elsif($age>60*2) {1934$age_str=int$age/60;1935$age_str.=" min ago";1936}elsif($age>2) {1937$age_str=int$age;1938$age_str.=" sec ago";1939}else{1940$age_str.=" right now";1941}1942return$age_str;1943}19441945useconstant{1946 S_IFINVALID =>0030000,1947 S_IFGITLINK =>0160000,1948};19491950# submodule/subproject, a commit object reference1951sub S_ISGITLINK {1952my$mode=shift;19531954return(($mode& S_IFMT) == S_IFGITLINK)1955}19561957# convert file mode in octal to symbolic file mode string1958sub mode_str {1959my$mode=oct shift;19601961if(S_ISGITLINK($mode)) {1962return'm---------';1963}elsif(S_ISDIR($mode& S_IFMT)) {1964return'drwxr-xr-x';1965}elsif(S_ISLNK($mode)) {1966return'lrwxrwxrwx';1967}elsif(S_ISREG($mode)) {1968# git cares only about the executable bit1969if($mode& S_IXUSR) {1970return'-rwxr-xr-x';1971}else{1972return'-rw-r--r--';1973};1974}else{1975return'----------';1976}1977}19781979# convert file mode in octal to file type string1980sub file_type {1981my$mode=shift;19821983if($mode!~m/^[0-7]+$/) {1984return$mode;1985}else{1986$mode=oct$mode;1987}19881989if(S_ISGITLINK($mode)) {1990return"submodule";1991}elsif(S_ISDIR($mode& S_IFMT)) {1992return"directory";1993}elsif(S_ISLNK($mode)) {1994return"symlink";1995}elsif(S_ISREG($mode)) {1996return"file";1997}else{1998return"unknown";1999}2000}20012002# convert file mode in octal to file type description string2003sub file_type_long {2004my$mode=shift;20052006if($mode!~m/^[0-7]+$/) {2007return$mode;2008}else{2009$mode=oct$mode;2010}20112012if(S_ISGITLINK($mode)) {2013return"submodule";2014}elsif(S_ISDIR($mode& S_IFMT)) {2015return"directory";2016}elsif(S_ISLNK($mode)) {2017return"symlink";2018}elsif(S_ISREG($mode)) {2019if($mode& S_IXUSR) {2020return"executable";2021}else{2022return"file";2023};2024}else{2025return"unknown";2026}2027}202820292030## ----------------------------------------------------------------------2031## functions returning short HTML fragments, or transforming HTML fragments2032## which don't belong to other sections20332034# format line of commit message.2035sub format_log_line_html {2036my$line=shift;20372038$line= esc_html($line, -nbsp=>1);2039$line=~ s{2040\b2041(2042# The output of "git describe", e.g. v2.10.0-297-gf6727b02043# or hadoop-20160921-113441-20-g094fb7d2044(?<!-)# see strbuf_check_tag_ref(). Tags can't start with -2045[A-Za-z0-9.-]+2046(?!\.)# refs can't end with ".", see check_refname_format()2047-g[0-9a-fA-F]{7,40}2048|2049# Just a normal looking Git SHA12050[0-9a-fA-F]{7,40}2051)2052\b2053}{2054$cgi->a({-href => href(action=>"object", hash=>$1),2055-class=>"text"},$1);2056}egx;20572058return$line;2059}20602061# format marker of refs pointing to given object20622063# the destination action is chosen based on object type and current context:2064# - for annotated tags, we choose the tag view unless it's the current view2065# already, in which case we go to shortlog view2066# - for other refs, we keep the current view if we're in history, shortlog or2067# log view, and select shortlog otherwise2068sub format_ref_marker {2069my($refs,$id) =@_;2070my$markers='';20712072if(defined$refs->{$id}) {2073foreachmy$ref(@{$refs->{$id}}) {2074# this code exploits the fact that non-lightweight tags are the2075# only indirect objects, and that they are the only objects for which2076# we want to use tag instead of shortlog as action2077my($type,$name) =qw();2078my$indirect= ($ref=~s/\^\{\}$//);2079# e.g. tags/v2.6.11 or heads/next2080if($ref=~m!^(.*?)s?/(.*)$!) {2081$type=$1;2082$name=$2;2083}else{2084$type="ref";2085$name=$ref;2086}20872088my$class=$type;2089$class.=" indirect"if$indirect;20902091my$dest_action="shortlog";20922093if($indirect) {2094$dest_action="tag"unless$actioneq"tag";2095}elsif($action=~/^(history|(short)?log)$/) {2096$dest_action=$action;2097}20982099my$dest="";2100$dest.="refs/"unless$ref=~ m!^refs/!;2101$dest.=$ref;21022103my$link=$cgi->a({2104-href => href(2105 action=>$dest_action,2106 hash=>$dest2107)}, esc_html($name));21082109$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".2110$link."</span>";2111}2112}21132114if($markers) {2115return' <span class="refs">'.$markers.'</span>';2116}else{2117return"";2118}2119}21202121# format, perhaps shortened and with markers, title line2122sub format_subject_html {2123my($long,$short,$href,$extra) =@_;2124$extra=''unlessdefined($extra);21252126if(length($short) <length($long)) {2127$long=~s/[[:cntrl:]]/?/g;2128return$cgi->a({-href =>$href, -class=>"list subject",2129-title => to_utf8($long)},2130 esc_html($short)) .$extra;2131}else{2132return$cgi->a({-href =>$href, -class=>"list subject"},2133 esc_html($long)) .$extra;2134}2135}21362137# Rather than recomputing the url for an email multiple times, we cache it2138# after the first hit. This gives a visible benefit in views where the avatar2139# for the same email is used repeatedly (e.g. shortlog).2140# The cache is shared by all avatar engines (currently gravatar only), which2141# are free to use it as preferred. Since only one avatar engine is used for any2142# given page, there's no risk for cache conflicts.2143our%avatar_cache= ();21442145# Compute the picon url for a given email, by using the picon search service over at2146# http://www.cs.indiana.edu/picons/search.html2147sub picon_url {2148my$email=lc shift;2149if(!$avatar_cache{$email}) {2150my($user,$domain) =split('@',$email);2151$avatar_cache{$email} =2152"//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".2153"$domain/$user/".2154"users+domains+unknown/up/single";2155}2156return$avatar_cache{$email};2157}21582159# Compute the gravatar url for a given email, if it's not in the cache already.2160# Gravatar stores only the part of the URL before the size, since that's the2161# one computationally more expensive. This also allows reuse of the cache for2162# different sizes (for this particular engine).2163sub gravatar_url {2164my$email=lc shift;2165my$size=shift;2166$avatar_cache{$email} ||=2167"//www.gravatar.com/avatar/".2168 Digest::MD5::md5_hex($email) ."?s=";2169return$avatar_cache{$email} .$size;2170}21712172# Insert an avatar for the given $email at the given $size if the feature2173# is enabled.2174sub git_get_avatar {2175my($email,%opts) =@_;2176my$pre_white= ($opts{-pad_before} ?" ":"");2177my$post_white= ($opts{-pad_after} ?" ":"");2178$opts{-size} ||='default';2179my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};2180my$url="";2181if($git_avatareq'gravatar') {2182$url= gravatar_url($email,$size);2183}elsif($git_avatareq'picon') {2184$url= picon_url($email);2185}2186# Other providers can be added by extending the if chain, defining $url2187# as needed. If no variant puts something in $url, we assume avatars2188# are completely disabled/unavailable.2189if($url) {2190return$pre_white.2191"<img width=\"$size\"".2192"class=\"avatar\"".2193"src=\"".esc_url($url)."\"".2194"alt=\"\"".2195"/>".$post_white;2196}else{2197return"";2198}2199}22002201sub format_search_author {2202my($author,$searchtype,$displaytext) =@_;2203my$have_search= gitweb_check_feature('search');22042205if($have_search) {2206my$performed="";2207if($searchtypeeq'author') {2208$performed="authored";2209}elsif($searchtypeeq'committer') {2210$performed="committed";2211}22122213return$cgi->a({-href => href(action=>"search", hash=>$hash,2214 searchtext=>$author,2215 searchtype=>$searchtype),class=>"list",2216 title=>"Search for commits$performedby$author"},2217$displaytext);22182219}else{2220return$displaytext;2221}2222}22232224# format the author name of the given commit with the given tag2225# the author name is chopped and escaped according to the other2226# optional parameters (see chop_str).2227sub format_author_html {2228my$tag=shift;2229my$co=shift;2230my$author= chop_and_escape_str($co->{'author_name'},@_);2231return"<$tagclass=\"author\">".2232 format_search_author($co->{'author_name'},"author",2233 git_get_avatar($co->{'author_email'}, -pad_after =>1) .2234$author) .2235"</$tag>";2236}22372238# format git diff header line, i.e. "diff --(git|combined|cc) ..."2239sub format_git_diff_header_line {2240my$line=shift;2241my$diffinfo=shift;2242my($from,$to) =@_;22432244if($diffinfo->{'nparents'}) {2245# combined diff2246$line=~s!^(diff (.*?) )"?.*$!$1!;2247if($to->{'href'}) {2248$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},2249 esc_path($to->{'file'}));2250}else{# file was deleted (no href)2251$line.= esc_path($to->{'file'});2252}2253}else{2254# "ordinary" diff2255$line=~s!^(diff (.*?) )"?a/.*$!$1!;2256if($from->{'href'}) {2257$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},2258'a/'. esc_path($from->{'file'}));2259}else{# file was added (no href)2260$line.='a/'. esc_path($from->{'file'});2261}2262$line.=' ';2263if($to->{'href'}) {2264$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},2265'b/'. esc_path($to->{'file'}));2266}else{# file was deleted2267$line.='b/'. esc_path($to->{'file'});2268}2269}22702271return"<div class=\"diff header\">$line</div>\n";2272}22732274# format extended diff header line, before patch itself2275sub format_extended_diff_header_line {2276my$line=shift;2277my$diffinfo=shift;2278my($from,$to) =@_;22792280# match <path>2281if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {2282$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},2283 esc_path($from->{'file'}));2284}2285if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {2286$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},2287 esc_path($to->{'file'}));2288}2289# match single <mode>2290if($line=~m/\s(\d{6})$/) {2291$line.='<span class="info"> ('.2292 file_type_long($1) .2293')</span>';2294}2295# match <hash>2296if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {2297# can match only for combined diff2298$line='index ';2299for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2300if($from->{'href'}[$i]) {2301$line.=$cgi->a({-href=>$from->{'href'}[$i],2302-class=>"hash"},2303substr($diffinfo->{'from_id'}[$i],0,7));2304}else{2305$line.='0' x 7;2306}2307# separator2308$line.=','if($i<$diffinfo->{'nparents'} -1);2309}2310$line.='..';2311if($to->{'href'}) {2312$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2313substr($diffinfo->{'to_id'},0,7));2314}else{2315$line.='0' x 7;2316}23172318}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2319# can match only for ordinary diff2320my($from_link,$to_link);2321if($from->{'href'}) {2322$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2323substr($diffinfo->{'from_id'},0,7));2324}else{2325$from_link='0' x 7;2326}2327if($to->{'href'}) {2328$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2329substr($diffinfo->{'to_id'},0,7));2330}else{2331$to_link='0' x 7;2332}2333my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2334$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2335}23362337return$line."<br/>\n";2338}23392340# format from-file/to-file diff header2341sub format_diff_from_to_header {2342my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2343my$line;2344my$result='';23452346$line=$from_line;2347#assert($line =~ m/^---/) if DEBUG;2348# no extra formatting for "^--- /dev/null"2349if(!$diffinfo->{'nparents'}) {2350# ordinary (single parent) diff2351if($line=~m!^--- "?a/!) {2352if($from->{'href'}) {2353$line='--- a/'.2354$cgi->a({-href=>$from->{'href'}, -class=>"path"},2355 esc_path($from->{'file'}));2356}else{2357$line='--- a/'.2358 esc_path($from->{'file'});2359}2360}2361$result.= qq!<div class="diff from_file">$line</div>\n!;23622363}else{2364# combined diff (merge commit)2365for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2366if($from->{'href'}[$i]) {2367$line='--- '.2368$cgi->a({-href=>href(action=>"blobdiff",2369 hash_parent=>$diffinfo->{'from_id'}[$i],2370 hash_parent_base=>$parents[$i],2371 file_parent=>$from->{'file'}[$i],2372 hash=>$diffinfo->{'to_id'},2373 hash_base=>$hash,2374 file_name=>$to->{'file'}),2375-class=>"path",2376-title=>"diff". ($i+1)},2377$i+1) .2378'/'.2379$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2380 esc_path($from->{'file'}[$i]));2381}else{2382$line='--- /dev/null';2383}2384$result.= qq!<div class="diff from_file">$line</div>\n!;2385}2386}23872388$line=$to_line;2389#assert($line =~ m/^\+\+\+/) if DEBUG;2390# no extra formatting for "^+++ /dev/null"2391if($line=~m!^\+\+\+ "?b/!) {2392if($to->{'href'}) {2393$line='+++ b/'.2394$cgi->a({-href=>$to->{'href'}, -class=>"path"},2395 esc_path($to->{'file'}));2396}else{2397$line='+++ b/'.2398 esc_path($to->{'file'});2399}2400}2401$result.= qq!<div class="diff to_file">$line</div>\n!;24022403return$result;2404}24052406# create note for patch simplified by combined diff2407sub format_diff_cc_simplified {2408my($diffinfo,@parents) =@_;2409my$result='';24102411$result.="<div class=\"diff header\">".2412"diff --cc ";2413if(!is_deleted($diffinfo)) {2414$result.=$cgi->a({-href => href(action=>"blob",2415 hash_base=>$hash,2416 hash=>$diffinfo->{'to_id'},2417 file_name=>$diffinfo->{'to_file'}),2418-class=>"path"},2419 esc_path($diffinfo->{'to_file'}));2420}else{2421$result.= esc_path($diffinfo->{'to_file'});2422}2423$result.="</div>\n".# class="diff header"2424"<div class=\"diff nodifferences\">".2425"Simple merge".2426"</div>\n";# class="diff nodifferences"24272428return$result;2429}24302431sub diff_line_class {2432my($line,$from,$to) =@_;24332434# ordinary diff2435my$num_sign=1;2436# combined diff2437if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2438$num_sign=scalar@{$from->{'href'}};2439}24402441my@diff_line_classifier= (2442{ regexp =>qr/^\@\@{$num_sign} /,class=>"chunk_header"},2443{ regexp =>qr/^\\/,class=>"incomplete"},2444{ regexp =>qr/^ {$num_sign}/,class=>"ctx"},2445# classifier for context must come before classifier add/rem,2446# or we would have to use more complicated regexp, for example2447# qr/(?= {0,$m}\+)[+ ]{$num_sign}/, where $m = $num_sign - 1;2448{ regexp =>qr/^[+ ]{$num_sign}/,class=>"add"},2449{ regexp =>qr/^[- ]{$num_sign}/,class=>"rem"},2450);2451formy$clsfy(@diff_line_classifier) {2452return$clsfy->{'class'}2453if($line=~$clsfy->{'regexp'});2454}24552456# fallback2457return"";2458}24592460# assumes that $from and $to are defined and correctly filled,2461# and that $line holds a line of chunk header for unified diff2462sub format_unidiff_chunk_header {2463my($line,$from,$to) =@_;24642465my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2466$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;24672468$from_lines=0unlessdefined$from_lines;2469$to_lines=0unlessdefined$to_lines;24702471if($from->{'href'}) {2472$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2473-class=>"list"},$from_text);2474}2475if($to->{'href'}) {2476$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2477-class=>"list"},$to_text);2478}2479$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2480"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2481return$line;2482}24832484# assumes that $from and $to are defined and correctly filled,2485# and that $line holds a line of chunk header for combined diff2486sub format_cc_diff_chunk_header {2487my($line,$from,$to) =@_;24882489my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2490my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);24912492@from_text=split(' ',$ranges);2493for(my$i=0;$i<@from_text; ++$i) {2494($from_start[$i],$from_nlines[$i]) =2495(split(',',substr($from_text[$i],1)),0);2496}24972498$to_text=pop@from_text;2499$to_start=pop@from_start;2500$to_nlines=pop@from_nlines;25012502$line="<span class=\"chunk_info\">$prefix";2503for(my$i=0;$i<@from_text; ++$i) {2504if($from->{'href'}[$i]) {2505$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2506-class=>"list"},$from_text[$i]);2507}else{2508$line.=$from_text[$i];2509}2510$line.=" ";2511}2512if($to->{'href'}) {2513$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2514-class=>"list"},$to_text);2515}else{2516$line.=$to_text;2517}2518$line.="$prefix</span>".2519"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2520return$line;2521}25222523# process patch (diff) line (not to be used for diff headers),2524# returning HTML-formatted (but not wrapped) line.2525# If the line is passed as a reference, it is treated as HTML and not2526# esc_html()'ed.2527sub format_diff_line {2528my($line,$diff_class,$from,$to) =@_;25292530if(ref($line)) {2531$line=$$line;2532}else{2533chomp$line;2534$line= untabify($line);25352536if($from&&$to&&$line=~m/^\@{2} /) {2537$line= format_unidiff_chunk_header($line,$from,$to);2538}elsif($from&&$to&&$line=~m/^\@{3}/) {2539$line= format_cc_diff_chunk_header($line,$from,$to);2540}else{2541$line= esc_html($line, -nbsp=>1);2542}2543}25442545my$diff_classes="diff";2546$diff_classes.="$diff_class"if($diff_class);2547$line="<div class=\"$diff_classes\">$line</div>\n";25482549return$line;2550}25512552# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2553# linked. Pass the hash of the tree/commit to snapshot.2554sub format_snapshot_links {2555my($hash) =@_;2556my$num_fmts=@snapshot_fmts;2557if($num_fmts>1) {2558# A parenthesized list of links bearing format names.2559# e.g. "snapshot (_tar.gz_ _zip_)"2560return"snapshot (".join(' ',map2561$cgi->a({2562-href => href(2563 action=>"snapshot",2564 hash=>$hash,2565 snapshot_format=>$_2566)2567},$known_snapshot_formats{$_}{'display'})2568,@snapshot_fmts) .")";2569}elsif($num_fmts==1) {2570# A single "snapshot" link whose tooltip bears the format name.2571# i.e. "_snapshot_"2572my($fmt) =@snapshot_fmts;2573return2574$cgi->a({2575-href => href(2576 action=>"snapshot",2577 hash=>$hash,2578 snapshot_format=>$fmt2579),2580-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2581},"snapshot");2582}else{# $num_fmts == 02583returnundef;2584}2585}25862587## ......................................................................2588## functions returning values to be passed, perhaps after some2589## transformation, to other functions; e.g. returning arguments to href()25902591# returns hash to be passed to href to generate gitweb URL2592# in -title key it returns description of link2593sub get_feed_info {2594my$format=shift||'Atom';2595my%res= (action =>lc($format));2596my$matched_ref=0;25972598# feed links are possible only for project views2599return unless(defined$project);2600# some views should link to OPML, or to generic project feed,2601# or don't have specific feed yet (so they should use generic)2602return if(!$action||$action=~/^(?:tags|heads|forks|tag|search)$/x);26032604my$branch=undef;2605# branches refs uses 'refs/' + $get_branch_refs()[x] + '/' prefix2606# (fullname) to differentiate from tag links; this also makes2607# possible to detect branch links2608formy$ref(get_branch_refs()) {2609if((defined$hash_base&&$hash_base=~m!^refs/\Q$ref\E/(.*)$!) ||2610(defined$hash&&$hash=~m!^refs/\Q$ref\E/(.*)$!)) {2611$branch=$1;2612$matched_ref=$ref;2613last;2614}2615}2616# find log type for feed description (title)2617my$type='log';2618if(defined$file_name) {2619$type="history of$file_name";2620$type.="/"if($actioneq'tree');2621$type.=" on '$branch'"if(defined$branch);2622}else{2623$type="log of$branch"if(defined$branch);2624}26252626$res{-title} =$type;2627$res{'hash'} = (defined$branch?"refs/$matched_ref/$branch":undef);2628$res{'file_name'} =$file_name;26292630return%res;2631}26322633## ----------------------------------------------------------------------2634## git utility subroutines, invoking git commands26352636# returns path to the core git executable and the --git-dir parameter as list2637sub git_cmd {2638$number_of_git_cmds++;2639return$GIT,'--git-dir='.$git_dir;2640}26412642# quote the given arguments for passing them to the shell2643# quote_command("command", "arg 1", "arg with ' and ! characters")2644# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2645# Try to avoid using this function wherever possible.2646sub quote_command {2647returnjoin(' ',2648map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2649}26502651# get HEAD ref of given project as hash2652sub git_get_head_hash {2653return git_get_full_hash(shift,'HEAD');2654}26552656sub git_get_full_hash {2657return git_get_hash(@_);2658}26592660sub git_get_short_hash {2661return git_get_hash(@_,'--short=7');2662}26632664sub git_get_hash {2665my($project,$hash,@options) =@_;2666my$o_git_dir=$git_dir;2667my$retval=undef;2668$git_dir="$projectroot/$project";2669if(open my$fd,'-|', git_cmd(),'rev-parse',2670'--verify','-q',@options,$hash) {2671$retval= <$fd>;2672chomp$retvalifdefined$retval;2673close$fd;2674}2675if(defined$o_git_dir) {2676$git_dir=$o_git_dir;2677}2678return$retval;2679}26802681# get type of given object2682sub git_get_type {2683my$hash=shift;26842685open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2686my$type= <$fd>;2687close$fdorreturn;2688chomp$type;2689return$type;2690}26912692# repository configuration2693our$config_file='';2694our%config;26952696# store multiple values for single key as anonymous array reference2697# single values stored directly in the hash, not as [ <value> ]2698sub hash_set_multi {2699my($hash,$key,$value) =@_;27002701if(!exists$hash->{$key}) {2702$hash->{$key} =$value;2703}elsif(!ref$hash->{$key}) {2704$hash->{$key} = [$hash->{$key},$value];2705}else{2706push@{$hash->{$key}},$value;2707}2708}27092710# return hash of git project configuration2711# optionally limited to some section, e.g. 'gitweb'2712sub git_parse_project_config {2713my$section_regexp=shift;2714my%config;27152716local$/="\0";27172718open my$fh,"-|", git_cmd(),"config",'-z','-l',2719orreturn;27202721while(my$keyval= <$fh>) {2722chomp$keyval;2723my($key,$value) =split(/\n/,$keyval,2);27242725 hash_set_multi(\%config,$key,$value)2726if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2727}2728close$fh;27292730return%config;2731}27322733# convert config value to boolean: 'true' or 'false'2734# no value, number > 0, 'true' and 'yes' values are true2735# rest of values are treated as false (never as error)2736sub config_to_bool {2737my$val=shift;27382739return1if!defined$val;# section.key27402741# strip leading and trailing whitespace2742$val=~s/^\s+//;2743$val=~s/\s+$//;27442745return(($val=~/^\d+$/&&$val) ||# section.key = 12746($val=~/^(?:true|yes)$/i));# section.key = true2747}27482749# convert config value to simple decimal number2750# an optional value suffix of 'k', 'm', or 'g' will cause the value2751# to be multiplied by 1024, 1048576, or 10737418242752sub config_to_int {2753my$val=shift;27542755# strip leading and trailing whitespace2756$val=~s/^\s+//;2757$val=~s/\s+$//;27582759if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2760$unit=lc($unit);2761# unknown unit is treated as 12762return$num* ($uniteq'g'?1073741824:2763$uniteq'm'?1048576:2764$uniteq'k'?1024:1);2765}2766return$val;2767}27682769# convert config value to array reference, if needed2770sub config_to_multi {2771my$val=shift;27722773returnref($val) ?$val: (defined($val) ? [$val] : []);2774}27752776sub git_get_project_config {2777my($key,$type) =@_;27782779return unlessdefined$git_dir;27802781# key sanity check2782return unless($key);2783# only subsection, if exists, is case sensitive,2784# and not lowercased by 'git config -z -l'2785if(my($hi,$mi,$lo) = ($key=~/^([^.]*)\.(.*)\.([^.]*)$/)) {2786$lo=~s/_//g;2787$key=join(".",lc($hi),$mi,lc($lo));2788return if($lo=~/\W/||$hi=~/\W/);2789}else{2790$key=lc($key);2791$key=~s/_//g;2792return if($key=~/\W/);2793}2794$key=~s/^gitweb\.//;27952796# type sanity check2797if(defined$type) {2798$type=~s/^--//;2799$type=undef2800unless($typeeq'bool'||$typeeq'int');2801}28022803# get config2804if(!defined$config_file||2805$config_filene"$git_dir/config") {2806%config= git_parse_project_config('gitweb');2807$config_file="$git_dir/config";2808}28092810# check if config variable (key) exists2811return unlessexists$config{"gitweb.$key"};28122813# ensure given type2814if(!defined$type) {2815return$config{"gitweb.$key"};2816}elsif($typeeq'bool') {2817# backward compatibility: 'git config --bool' returns true/false2818return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2819}elsif($typeeq'int') {2820return config_to_int($config{"gitweb.$key"});2821}2822return$config{"gitweb.$key"};2823}28242825# get hash of given path at given ref2826sub git_get_hash_by_path {2827my$base=shift;2828my$path=shift||returnundef;2829my$type=shift;28302831$path=~ s,/+$,,;28322833open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2834or die_error(500,"Open git-ls-tree failed");2835my$line= <$fd>;2836close$fdorreturnundef;28372838if(!defined$line) {2839# there is no tree or hash given by $path at $base2840returnundef;2841}28422843#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2844$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2845if(defined$type&&$typene$2) {2846# type doesn't match2847returnundef;2848}2849return$3;2850}28512852# get path of entry with given hash at given tree-ish (ref)2853# used to get 'from' filename for combined diff (merge commit) for renames2854sub git_get_path_by_hash {2855my$base=shift||return;2856my$hash=shift||return;28572858local$/="\0";28592860open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2861orreturnundef;2862while(my$line= <$fd>) {2863chomp$line;28642865#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2866#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2867if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2868close$fd;2869return$1;2870}2871}2872close$fd;2873returnundef;2874}28752876## ......................................................................2877## git utility functions, directly accessing git repository28782879# get the value of config variable either from file named as the variable2880# itself in the repository ($GIT_DIR/$name file), or from gitweb.$name2881# configuration variable in the repository config file.2882sub git_get_file_or_project_config {2883my($path,$name) =@_;28842885$git_dir="$projectroot/$path";2886open my$fd,'<',"$git_dir/$name"2887orreturn git_get_project_config($name);2888my$conf= <$fd>;2889close$fd;2890if(defined$conf) {2891chomp$conf;2892}2893return$conf;2894}28952896sub git_get_project_description {2897my$path=shift;2898return git_get_file_or_project_config($path,'description');2899}29002901sub git_get_project_category {2902my$path=shift;2903return git_get_file_or_project_config($path,'category');2904}290529062907# supported formats:2908# * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)2909# - if its contents is a number, use it as tag weight,2910# - otherwise add a tag with weight 12911# * $GIT_DIR/ctags file, each line is a tag (with weight 1)2912# the same value multiple times increases tag weight2913# * `gitweb.ctag' multi-valued repo config variable2914sub git_get_project_ctags {2915my$project=shift;2916my$ctags= {};29172918$git_dir="$projectroot/$project";2919if(opendir my$dh,"$git_dir/ctags") {2920my@files=grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh);2921foreachmy$tagfile(@files) {2922open my$ct,'<',$tagfile2923ornext;2924my$val= <$ct>;2925chomp$valif$val;2926close$ct;29272928(my$ctag=$tagfile) =~ s#.*/##;2929if($val=~/^\d+$/) {2930$ctags->{$ctag} =$val;2931}else{2932$ctags->{$ctag} =1;2933}2934}2935closedir$dh;29362937}elsif(open my$fh,'<',"$git_dir/ctags") {2938while(my$line= <$fh>) {2939chomp$line;2940$ctags->{$line}++if$line;2941}2942close$fh;29432944}else{2945my$taglist= config_to_multi(git_get_project_config('ctag'));2946foreachmy$tag(@$taglist) {2947$ctags->{$tag}++;2948}2949}29502951return$ctags;2952}29532954# return hash, where keys are content tags ('ctags'),2955# and values are sum of weights of given tag in every project2956sub git_gather_all_ctags {2957my$projects=shift;2958my$ctags= {};29592960foreachmy$p(@$projects) {2961foreachmy$ct(keys%{$p->{'ctags'}}) {2962$ctags->{$ct} +=$p->{'ctags'}->{$ct};2963}2964}29652966return$ctags;2967}29682969sub git_populate_project_tagcloud {2970my$ctags=shift;29712972# First, merge different-cased tags; tags vote on casing2973my%ctags_lc;2974foreach(keys%$ctags) {2975$ctags_lc{lc$_}->{count} +=$ctags->{$_};2976if(not$ctags_lc{lc$_}->{topcount}2977or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2978$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2979$ctags_lc{lc$_}->{topname} =$_;2980}2981}29822983my$cloud;2984my$matched=$input_params{'ctag'};2985if(eval{require HTML::TagCloud;1; }) {2986$cloud= HTML::TagCloud->new;2987foreachmy$ctag(sort keys%ctags_lc) {2988# Pad the title with spaces so that the cloud looks2989# less crammed.2990my$title= esc_html($ctags_lc{$ctag}->{topname});2991$title=~s/ / /g;2992$title=~s/^/ /g;2993$title=~s/$/ /g;2994if(defined$matched&&$matchedeq$ctag) {2995$title=qq(<span class="match">$title</span>);2996}2997$cloud->add($title, href(project=>undef, ctag=>$ctag),2998$ctags_lc{$ctag}->{count});2999}3000}else{3001$cloud= {};3002foreachmy$ctag(keys%ctags_lc) {3003my$title= esc_html($ctags_lc{$ctag}->{topname}, -nbsp=>1);3004if(defined$matched&&$matchedeq$ctag) {3005$title=qq(<span class="match">$title</span>);3006}3007$cloud->{$ctag}{count} =$ctags_lc{$ctag}->{count};3008$cloud->{$ctag}{ctag} =3009$cgi->a({-href=>href(project=>undef, ctag=>$ctag)},$title);3010}3011}3012return$cloud;3013}30143015sub git_show_project_tagcloud {3016my($cloud,$count) =@_;3017if(ref$cloudeq'HTML::TagCloud') {3018return$cloud->html_and_css($count);3019}else{3020my@tags=sort{$cloud->{$a}->{'count'} <=>$cloud->{$b}->{'count'} }keys%$cloud;3021return3022'<div id="htmltagcloud"'.($project?'':' align="center"').'>'.3023join(', ',map{3024$cloud->{$_}->{'ctag'}3025}splice(@tags,0,$count)) .3026'</div>';3027}3028}30293030sub git_get_project_url_list {3031my$path=shift;30323033$git_dir="$projectroot/$path";3034open my$fd,'<',"$git_dir/cloneurl"3035orreturnwantarray?3036@{ config_to_multi(git_get_project_config('url')) } :3037 config_to_multi(git_get_project_config('url'));3038my@git_project_url_list=map{chomp;$_} <$fd>;3039close$fd;30403041returnwantarray?@git_project_url_list: \@git_project_url_list;3042}30433044sub git_get_projects_list {3045my$filter=shift||'';3046my$paranoid=shift;3047my@list;30483049if(-d $projects_list) {3050# search in directory3051my$dir=$projects_list;3052# remove the trailing "/"3053$dir=~s!/+$!!;3054my$pfxlen=length("$dir");3055my$pfxdepth= ($dir=~tr!/!!);3056# when filtering, search only given subdirectory3057if($filter&& !$paranoid) {3058$dir.="/$filter";3059$dir=~s!/+$!!;3060}30613062 File::Find::find({3063 follow_fast =>1,# follow symbolic links3064 follow_skip =>2,# ignore duplicates3065 dangling_symlinks =>0,# ignore dangling symlinks, silently3066 wanted =>sub{3067# global variables3068our$project_maxdepth;3069our$projectroot;3070# skip project-list toplevel, if we get it.3071return if(m!^[/.]$!);3072# only directories can be git repositories3073return unless(-d $_);3074# don't traverse too deep (Find is super slow on os x)3075# $project_maxdepth excludes depth of $projectroot3076if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {3077$File::Find::prune =1;3078return;3079}30803081my$path=substr($File::Find::name,$pfxlen+1);3082# paranoidly only filter here3083if($paranoid&&$filter&&$path!~m!^\Q$filter\E/!) {3084next;3085}3086# we check related file in $projectroot3087if(check_export_ok("$projectroot/$path")) {3088push@list, { path =>$path};3089$File::Find::prune =1;3090}3091},3092},"$dir");30933094}elsif(-f $projects_list) {3095# read from file(url-encoded):3096# 'git%2Fgit.git Linus+Torvalds'3097# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'3098# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'3099open my$fd,'<',$projects_listorreturn;3100 PROJECT:3101while(my$line= <$fd>) {3102chomp$line;3103my($path,$owner) =split' ',$line;3104$path= unescape($path);3105$owner= unescape($owner);3106if(!defined$path) {3107next;3108}3109# if $filter is rpovided, check if $path begins with $filter3110if($filter&&$path!~m!^\Q$filter\E/!) {3111next;3112}3113if(check_export_ok("$projectroot/$path")) {3114my$pr= {3115 path =>$path3116};3117if($owner) {3118$pr->{'owner'} = to_utf8($owner);3119}3120push@list,$pr;3121}3122}3123close$fd;3124}3125return@list;3126}31273128# written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)3129# as side effects it sets 'forks' field to list of forks for forked projects3130sub filter_forks_from_projects_list {3131my$projects=shift;31323133my%trie;# prefix tree of directories (path components)3134# generate trie out of those directories that might contain forks3135foreachmy$pr(@$projects) {3136my$path=$pr->{'path'};3137$path=~s/\.git$//;# forks of 'repo.git' are in 'repo/' directory3138next if($path=~m!/$!);# skip non-bare repositories, e.g. 'repo/.git'3139next unless($path);# skip '.git' repository: tests, git-instaweb3140next unless(-d "$projectroot/$path");# containing directory exists3141$pr->{'forks'} = [];# there can be 0 or more forks of project31423143# add to trie3144my@dirs=split('/',$path);3145# walk the trie, until either runs out of components or out of trie3146my$ref= \%trie;3147while(scalar@dirs&&3148exists($ref->{$dirs[0]})) {3149$ref=$ref->{shift@dirs};3150}3151# create rest of trie structure from rest of components3152foreachmy$dir(@dirs) {3153$ref=$ref->{$dir} = {};3154}3155# create end marker, store $pr as a data3156$ref->{''} =$prif(!exists$ref->{''});3157}31583159# filter out forks, by finding shortest prefix match for paths3160my@filtered;3161 PROJECT:3162foreachmy$pr(@$projects) {3163# trie lookup3164my$ref= \%trie;3165 DIR:3166foreachmy$dir(split('/',$pr->{'path'})) {3167if(exists$ref->{''}) {3168# found [shortest] prefix, is a fork - skip it3169push@{$ref->{''}{'forks'}},$pr;3170next PROJECT;3171}3172if(!exists$ref->{$dir}) {3173# not in trie, cannot have prefix, not a fork3174push@filtered,$pr;3175next PROJECT;3176}3177# If the dir is there, we just walk one step down the trie.3178$ref=$ref->{$dir};3179}3180# we ran out of trie3181# (shouldn't happen: it's either no match, or end marker)3182push@filtered,$pr;3183}31843185return@filtered;3186}31873188# note: fill_project_list_info must be run first,3189# for 'descr_long' and 'ctags' to be filled3190sub search_projects_list {3191my($projlist,%opts) =@_;3192my$tagfilter=$opts{'tagfilter'};3193my$search_re=$opts{'search_regexp'};31943195return@$projlist3196unless($tagfilter||$search_re);31973198# searching projects require filling to be run before it;3199 fill_project_list_info($projlist,3200$tagfilter?'ctags': (),3201$search_re? ('path','descr') : ());3202my@projects;3203 PROJECT:3204foreachmy$pr(@$projlist) {32053206if($tagfilter) {3207next unlessref($pr->{'ctags'})eq'HASH';3208next unless3209grep{lc($_)eq lc($tagfilter) }keys%{$pr->{'ctags'}};3210}32113212if($search_re) {3213next unless3214$pr->{'path'} =~/$search_re/||3215$pr->{'descr_long'} =~/$search_re/;3216}32173218push@projects,$pr;3219}32203221return@projects;3222}32233224our$gitweb_project_owner=undef;3225sub git_get_project_list_from_file {32263227return if(defined$gitweb_project_owner);32283229$gitweb_project_owner= {};3230# read from file (url-encoded):3231# 'git%2Fgit.git Linus+Torvalds'3232# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'3233# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'3234if(-f $projects_list) {3235open(my$fd,'<',$projects_list);3236while(my$line= <$fd>) {3237chomp$line;3238my($pr,$ow) =split' ',$line;3239$pr= unescape($pr);3240$ow= unescape($ow);3241$gitweb_project_owner->{$pr} = to_utf8($ow);3242}3243close$fd;3244}3245}32463247sub git_get_project_owner {3248my$project=shift;3249my$owner;32503251returnundefunless$project;3252$git_dir="$projectroot/$project";32533254if(!defined$gitweb_project_owner) {3255 git_get_project_list_from_file();3256}32573258if(exists$gitweb_project_owner->{$project}) {3259$owner=$gitweb_project_owner->{$project};3260}3261if(!defined$owner){3262$owner= git_get_project_config('owner');3263}3264if(!defined$owner) {3265$owner= get_file_owner("$git_dir");3266}32673268return$owner;3269}32703271sub git_get_last_activity {3272my($path) =@_;3273my$fd;32743275$git_dir="$projectroot/$path";3276open($fd,"-|", git_cmd(),'for-each-ref',3277'--format=%(committer)',3278'--sort=-committerdate',3279'--count=1',3280map{"refs/$_"} get_branch_refs ())orreturn;3281my$most_recent= <$fd>;3282close$fdorreturn;3283if(defined$most_recent&&3284$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {3285my$timestamp=$1;3286my$age=time-$timestamp;3287return($age, age_string($age));3288}3289return(undef,undef);3290}32913292# Implementation note: when a single remote is wanted, we cannot use 'git3293# remote show -n' because that command always work (assuming it's a remote URL3294# if it's not defined), and we cannot use 'git remote show' because that would3295# try to make a network roundtrip. So the only way to find if that particular3296# remote is defined is to walk the list provided by 'git remote -v' and stop if3297# and when we find what we want.3298sub git_get_remotes_list {3299my$wanted=shift;3300my%remotes= ();33013302open my$fd,'-|', git_cmd(),'remote','-v';3303return unless$fd;3304while(my$remote= <$fd>) {3305chomp$remote;3306$remote=~s!\t(.*?)\s+\((\w+)\)$!!;3307next if$wantedand not$remoteeq$wanted;3308my($url,$key) = ($1,$2);33093310$remotes{$remote} ||= {'heads'=> () };3311$remotes{$remote}{$key} =$url;3312}3313close$fdorreturn;3314returnwantarray?%remotes: \%remotes;3315}33163317# Takes a hash of remotes as first parameter and fills it by adding the3318# available remote heads for each of the indicated remotes.3319sub fill_remote_heads {3320my$remotes=shift;3321my@heads=map{"remotes/$_"}keys%$remotes;3322my@remoteheads= git_get_heads_list(undef,@heads);3323foreachmy$remote(keys%$remotes) {3324$remotes->{$remote}{'heads'} = [grep{3325$_->{'name'} =~s!^$remote/!!3326}@remoteheads];3327}3328}33293330sub git_get_references {3331my$type=shift||"";3332my%refs;3333# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.113334# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}3335open my$fd,"-|", git_cmd(),"show-ref","--dereference",3336($type? ("--","refs/$type") : ())# use -- <pattern> if $type3337orreturn;33383339while(my$line= <$fd>) {3340chomp$line;3341if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {3342if(defined$refs{$1}) {3343push@{$refs{$1}},$2;3344}else{3345$refs{$1} = [$2];3346}3347}3348}3349close$fdorreturn;3350return \%refs;3351}33523353sub git_get_rev_name_tags {3354my$hash=shift||returnundef;33553356open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash3357orreturn;3358my$name_rev= <$fd>;3359close$fd;33603361if($name_rev=~ m|^$hash tags/(.*)$|) {3362return$1;3363}else{3364# catches also '$hash undefined' output3365returnundef;3366}3367}33683369## ----------------------------------------------------------------------3370## parse to hash functions33713372sub parse_date {3373my$epoch=shift;3374my$tz=shift||"-0000";33753376my%date;3377my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");3378my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");3379my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);3380$date{'hour'} =$hour;3381$date{'minute'} =$min;3382$date{'mday'} =$mday;3383$date{'day'} =$days[$wday];3384$date{'month'} =$months[$mon];3385$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",3386$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;3387$date{'mday-time'} =sprintf"%d%s%02d:%02d",3388$mday,$months[$mon],$hour,$min;3389$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",33901900+$year,1+$mon,$mday,$hour,$min,$sec;33913392my($tz_sign,$tz_hour,$tz_min) =3393($tz=~m/^([-+])(\d\d)(\d\d)$/);3394$tz_sign= ($tz_signeq'-'? -1: +1);3395my$local=$epoch+$tz_sign*((($tz_hour*60) +$tz_min)*60);3396($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);3397$date{'hour_local'} =$hour;3398$date{'minute_local'} =$min;3399$date{'tz_local'} =$tz;3400$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",34011900+$year,$mon+1,$mday,3402$hour,$min,$sec,$tz);3403return%date;3404}34053406sub parse_tag {3407my$tag_id=shift;3408my%tag;3409my@comment;34103411open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;3412$tag{'id'} =$tag_id;3413while(my$line= <$fd>) {3414chomp$line;3415if($line=~m/^object ([0-9a-fA-F]{40})$/) {3416$tag{'object'} =$1;3417}elsif($line=~m/^type (.+)$/) {3418$tag{'type'} =$1;3419}elsif($line=~m/^tag (.+)$/) {3420$tag{'name'} =$1;3421}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {3422$tag{'author'} =$1;3423$tag{'author_epoch'} =$2;3424$tag{'author_tz'} =$3;3425if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {3426$tag{'author_name'} =$1;3427$tag{'author_email'} =$2;3428}else{3429$tag{'author_name'} =$tag{'author'};3430}3431}elsif($line=~m/--BEGIN/) {3432push@comment,$line;3433last;3434}elsif($lineeq"") {3435last;3436}3437}3438push@comment, <$fd>;3439$tag{'comment'} = \@comment;3440close$fdorreturn;3441if(!defined$tag{'name'}) {3442return3443};3444return%tag3445}34463447sub parse_commit_text {3448my($commit_text,$withparents) =@_;3449my@commit_lines=split'\n',$commit_text;3450my%co;34513452pop@commit_lines;# Remove '\0'34533454if(!@commit_lines) {3455return;3456}34573458my$header=shift@commit_lines;3459if($header!~m/^[0-9a-fA-F]{40}/) {3460return;3461}3462($co{'id'},my@parents) =split' ',$header;3463while(my$line=shift@commit_lines) {3464last if$lineeq"\n";3465if($line=~m/^tree ([0-9a-fA-F]{40})$/) {3466$co{'tree'} =$1;3467}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {3468push@parents,$1;3469}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {3470$co{'author'} = to_utf8($1);3471$co{'author_epoch'} =$2;3472$co{'author_tz'} =$3;3473if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {3474$co{'author_name'} =$1;3475$co{'author_email'} =$2;3476}else{3477$co{'author_name'} =$co{'author'};3478}3479}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3480$co{'committer'} = to_utf8($1);3481$co{'committer_epoch'} =$2;3482$co{'committer_tz'} =$3;3483if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3484$co{'committer_name'} =$1;3485$co{'committer_email'} =$2;3486}else{3487$co{'committer_name'} =$co{'committer'};3488}3489}3490}3491if(!defined$co{'tree'}) {3492return;3493};3494$co{'parents'} = \@parents;3495$co{'parent'} =$parents[0];34963497foreachmy$title(@commit_lines) {3498$title=~s/^ //;3499if($titlene"") {3500$co{'title'} = chop_str($title,80,5);3501# remove leading stuff of merges to make the interesting part visible3502if(length($title) >50) {3503$title=~s/^Automatic //;3504$title=~s/^merge (of|with) /Merge ... /i;3505if(length($title) >50) {3506$title=~s/(http|rsync):\/\///;3507}3508if(length($title) >50) {3509$title=~s/(master|www|rsync)\.//;3510}3511if(length($title) >50) {3512$title=~s/kernel.org:?//;3513}3514if(length($title) >50) {3515$title=~s/\/pub\/scm//;3516}3517}3518$co{'title_short'} = chop_str($title,50,5);3519last;3520}3521}3522if(!defined$co{'title'} ||$co{'title'}eq"") {3523$co{'title'} =$co{'title_short'} ='(no commit message)';3524}3525# remove added spaces3526foreachmy$line(@commit_lines) {3527$line=~s/^ //;3528}3529$co{'comment'} = \@commit_lines;35303531my$age=time-$co{'committer_epoch'};3532$co{'age'} =$age;3533$co{'age_string'} = age_string($age);3534my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3535if($age>60*60*24*7*2) {3536$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3537$co{'age_string_age'} =$co{'age_string'};3538}else{3539$co{'age_string_date'} =$co{'age_string'};3540$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3541}3542return%co;3543}35443545sub parse_commit {3546my($commit_id) =@_;3547my%co;35483549local$/="\0";35503551open my$fd,"-|", git_cmd(),"rev-list",3552"--parents",3553"--header",3554"--max-count=1",3555$commit_id,3556"--",3557or die_error(500,"Open git-rev-list failed");3558%co= parse_commit_text(<$fd>,1);3559close$fd;35603561return%co;3562}35633564sub parse_commits {3565my($commit_id,$maxcount,$skip,$filename,@args) =@_;3566my@cos;35673568$maxcount||=1;3569$skip||=0;35703571local$/="\0";35723573open my$fd,"-|", git_cmd(),"rev-list",3574"--header",3575@args,3576("--max-count=".$maxcount),3577("--skip=".$skip),3578@extra_options,3579$commit_id,3580"--",3581($filename? ($filename) : ())3582or die_error(500,"Open git-rev-list failed");3583while(my$line= <$fd>) {3584my%co= parse_commit_text($line);3585push@cos, \%co;3586}3587close$fd;35883589returnwantarray?@cos: \@cos;3590}35913592# parse line of git-diff-tree "raw" output3593sub parse_difftree_raw_line {3594my$line=shift;3595my%res;35963597# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3598# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3599if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3600$res{'from_mode'} =$1;3601$res{'to_mode'} =$2;3602$res{'from_id'} =$3;3603$res{'to_id'} =$4;3604$res{'status'} =$5;3605$res{'similarity'} =$6;3606if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3607($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3608}else{3609$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3610}3611}3612# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3613# combined diff (for merge commit)3614elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3615$res{'nparents'} =length($1);3616$res{'from_mode'} = [split(' ',$2) ];3617$res{'to_mode'} =pop@{$res{'from_mode'}};3618$res{'from_id'} = [split(' ',$3) ];3619$res{'to_id'} =pop@{$res{'from_id'}};3620$res{'status'} = [split('',$4) ];3621$res{'to_file'} = unquote($5);3622}3623# 'c512b523472485aef4fff9e57b229d9d243c967f'3624elsif($line=~m/^([0-9a-fA-F]{40})$/) {3625$res{'commit'} =$1;3626}36273628returnwantarray?%res: \%res;3629}36303631# wrapper: return parsed line of git-diff-tree "raw" output3632# (the argument might be raw line, or parsed info)3633sub parsed_difftree_line {3634my$line_or_ref=shift;36353636if(ref($line_or_ref)eq"HASH") {3637# pre-parsed (or generated by hand)3638return$line_or_ref;3639}else{3640return parse_difftree_raw_line($line_or_ref);3641}3642}36433644# parse line of git-ls-tree output3645sub parse_ls_tree_line {3646my$line=shift;3647my%opts=@_;3648my%res;36493650if($opts{'-l'}) {3651#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3652$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;36533654$res{'mode'} =$1;3655$res{'type'} =$2;3656$res{'hash'} =$3;3657$res{'size'} =$4;3658if($opts{'-z'}) {3659$res{'name'} =$5;3660}else{3661$res{'name'} = unquote($5);3662}3663}else{3664#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3665$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;36663667$res{'mode'} =$1;3668$res{'type'} =$2;3669$res{'hash'} =$3;3670if($opts{'-z'}) {3671$res{'name'} =$4;3672}else{3673$res{'name'} = unquote($4);3674}3675}36763677returnwantarray?%res: \%res;3678}36793680# generates _two_ hashes, references to which are passed as 2 and 3 argument3681sub parse_from_to_diffinfo {3682my($diffinfo,$from,$to,@parents) =@_;36833684if($diffinfo->{'nparents'}) {3685# combined diff3686$from->{'file'} = [];3687$from->{'href'} = [];3688 fill_from_file_info($diffinfo,@parents)3689unlessexists$diffinfo->{'from_file'};3690for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3691$from->{'file'}[$i] =3692defined$diffinfo->{'from_file'}[$i] ?3693$diffinfo->{'from_file'}[$i] :3694$diffinfo->{'to_file'};3695if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3696$from->{'href'}[$i] = href(action=>"blob",3697 hash_base=>$parents[$i],3698 hash=>$diffinfo->{'from_id'}[$i],3699 file_name=>$from->{'file'}[$i]);3700}else{3701$from->{'href'}[$i] =undef;3702}3703}3704}else{3705# ordinary (not combined) diff3706$from->{'file'} =$diffinfo->{'from_file'};3707if($diffinfo->{'status'}ne"A") {# not new (added) file3708$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3709 hash=>$diffinfo->{'from_id'},3710 file_name=>$from->{'file'});3711}else{3712delete$from->{'href'};3713}3714}37153716$to->{'file'} =$diffinfo->{'to_file'};3717if(!is_deleted($diffinfo)) {# file exists in result3718$to->{'href'} = href(action=>"blob", hash_base=>$hash,3719 hash=>$diffinfo->{'to_id'},3720 file_name=>$to->{'file'});3721}else{3722delete$to->{'href'};3723}3724}37253726## ......................................................................3727## parse to array of hashes functions37283729sub git_get_heads_list {3730my($limit,@classes) =@_;3731@classes= get_branch_refs()unless@classes;3732my@patterns=map{"refs/$_"}@classes;3733my@headslist;37343735open my$fd,'-|', git_cmd(),'for-each-ref',3736($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3737'--format=%(objectname) %(refname) %(subject)%00%(committer)',3738@patterns3739orreturn;3740while(my$line= <$fd>) {3741my%ref_item;37423743chomp$line;3744my($refinfo,$committerinfo) =split(/\0/,$line);3745my($hash,$name,$title) =split(' ',$refinfo,3);3746my($committer,$epoch,$tz) =3747($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3748$ref_item{'fullname'} =$name;3749my$strip_refs=join'|',map{quotemeta} get_branch_refs();3750$name=~s!^refs/($strip_refs|remotes)/!!;3751$ref_item{'name'} =$name;3752# for refs neither in 'heads' nor 'remotes' we want to3753# show their ref dir3754my$ref_dir= (defined$1) ?$1:'';3755if($ref_dirne''and$ref_dirne'heads'and$ref_dirne'remotes') {3756$ref_item{'name'} .=' ('.$ref_dir.')';3757}37583759$ref_item{'id'} =$hash;3760$ref_item{'title'} =$title||'(no commit message)';3761$ref_item{'epoch'} =$epoch;3762if($epoch) {3763$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3764}else{3765$ref_item{'age'} ="unknown";3766}37673768push@headslist, \%ref_item;3769}3770close$fd;37713772returnwantarray?@headslist: \@headslist;3773}37743775sub git_get_tags_list {3776my$limit=shift;3777my@tagslist;37783779open my$fd,'-|', git_cmd(),'for-each-ref',3780($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3781'--format=%(objectname) %(objecttype) %(refname) '.3782'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3783'refs/tags'3784orreturn;3785while(my$line= <$fd>) {3786my%ref_item;37873788chomp$line;3789my($refinfo,$creatorinfo) =split(/\0/,$line);3790my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3791my($creator,$epoch,$tz) =3792($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3793$ref_item{'fullname'} =$name;3794$name=~s!^refs/tags/!!;37953796$ref_item{'type'} =$type;3797$ref_item{'id'} =$id;3798$ref_item{'name'} =$name;3799if($typeeq"tag") {3800$ref_item{'subject'} =$title;3801$ref_item{'reftype'} =$reftype;3802$ref_item{'refid'} =$refid;3803}else{3804$ref_item{'reftype'} =$type;3805$ref_item{'refid'} =$id;3806}38073808if($typeeq"tag"||$typeeq"commit") {3809$ref_item{'epoch'} =$epoch;3810if($epoch) {3811$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3812}else{3813$ref_item{'age'} ="unknown";3814}3815}38163817push@tagslist, \%ref_item;3818}3819close$fd;38203821returnwantarray?@tagslist: \@tagslist;3822}38233824## ----------------------------------------------------------------------3825## filesystem-related functions38263827sub get_file_owner {3828my$path=shift;38293830my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3831my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3832if(!defined$gcos) {3833returnundef;3834}3835my$owner=$gcos;3836$owner=~s/[,;].*$//;3837return to_utf8($owner);3838}38393840# assume that file exists3841sub insert_file {3842my$filename=shift;38433844open my$fd,'<',$filename;3845print map{ to_utf8($_) } <$fd>;3846close$fd;3847}38483849## ......................................................................3850## mimetype related functions38513852sub mimetype_guess_file {3853my$filename=shift;3854my$mimemap=shift;3855-r $mimemaporreturnundef;38563857my%mimemap;3858open(my$mh,'<',$mimemap)orreturnundef;3859while(<$mh>) {3860next ifm/^#/;# skip comments3861my($mimetype,@exts) =split(/\s+/);3862foreachmy$ext(@exts) {3863$mimemap{$ext} =$mimetype;3864}3865}3866close($mh);38673868$filename=~/\.([^.]*)$/;3869return$mimemap{$1};3870}38713872sub mimetype_guess {3873my$filename=shift;3874my$mime;3875$filename=~/\./orreturnundef;38763877if($mimetypes_file) {3878my$file=$mimetypes_file;3879if($file!~m!^/!) {# if it is relative path3880# it is relative to project3881$file="$projectroot/$project/$file";3882}3883$mime= mimetype_guess_file($filename,$file);3884}3885$mime||= mimetype_guess_file($filename,'/etc/mime.types');3886return$mime;3887}38883889sub blob_mimetype {3890my$fd=shift;3891my$filename=shift;38923893if($filename) {3894my$mime= mimetype_guess($filename);3895$mimeandreturn$mime;3896}38973898# just in case3899return$default_blob_plain_mimetypeunless$fd;39003901if(-T $fd) {3902return'text/plain';3903}elsif(!$filename) {3904return'application/octet-stream';3905}elsif($filename=~m/\.png$/i) {3906return'image/png';3907}elsif($filename=~m/\.gif$/i) {3908return'image/gif';3909}elsif($filename=~m/\.jpe?g$/i) {3910return'image/jpeg';3911}else{3912return'application/octet-stream';3913}3914}39153916sub blob_contenttype {3917my($fd,$file_name,$type) =@_;39183919$type||= blob_mimetype($fd,$file_name);3920if($typeeq'text/plain'&&defined$default_text_plain_charset) {3921$type.="; charset=$default_text_plain_charset";3922}39233924return$type;3925}39263927# guess file syntax for syntax highlighting; return undef if no highlighting3928# the name of syntax can (in the future) depend on syntax highlighter used3929sub guess_file_syntax {3930my($highlight,$file_name) =@_;3931returnundefunless($highlight&&defined$file_name);3932my$basename= basename($file_name,'.in');3933return$highlight_basename{$basename}3934ifexists$highlight_basename{$basename};39353936$basename=~/\.([^.]*)$/;3937my$ext=$1orreturnundef;3938return$highlight_ext{$ext}3939ifexists$highlight_ext{$ext};39403941returnundef;3942}39433944# run highlighter and return FD of its output,3945# or return original FD if no highlighting3946sub run_highlighter {3947my($fd,$highlight,$syntax) =@_;3948return$fdunless($highlight);39493950close$fd;3951my$syntax_arg= (defined$syntax) ?"--syntax$syntax":"--force";3952open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3953 quote_command($^X,'-CO','-MEncode=decode,FB_DEFAULT','-pse',3954'$_= decode($fe,$_, FB_DEFAULT) if !utf8::decode($_);',3955'--',"-fe=$fallback_encoding")." | ".3956 quote_command($highlight_bin).3957" --replace-tabs=8 --fragment$syntax_arg|"3958or die_error(500,"Couldn't open file or run syntax highlighter");3959return$fd;3960}39613962## ======================================================================3963## functions printing HTML: header, footer, error page39643965sub get_page_title {3966my$title= to_utf8($site_name);39673968unless(defined$project) {3969if(defined$project_filter) {3970$title.=" - projects in '". esc_path($project_filter) ."'";3971}3972return$title;3973}3974$title.=" - ". to_utf8($project);39753976return$titleunless(defined$action);3977$title.="/$action";# $action is US-ASCII (7bit ASCII)39783979return$titleunless(defined$file_name);3980$title.=" - ". esc_path($file_name);3981if($actioneq"tree"&&$file_name!~ m|/$|) {3982$title.="/";3983}39843985return$title;3986}39873988sub get_content_type_html {3989# require explicit support from the UA if we are to send the page as3990# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3991# we have to do this because MSIE sometimes globs '*/*', pretending to3992# support xhtml+xml but choking when it gets what it asked for.3993if(defined$cgi->http('HTTP_ACCEPT') &&3994$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3995$cgi->Accept('application/xhtml+xml') !=0) {3996return'application/xhtml+xml';3997}else{3998return'text/html';3999}4000}40014002sub print_feed_meta {4003if(defined$project) {4004my%href_params= get_feed_info();4005if(!exists$href_params{'-title'}) {4006$href_params{'-title'} ='log';4007}40084009foreachmy$format(qw(RSS Atom)) {4010my$type=lc($format);4011my%link_attr= (4012'-rel'=>'alternate',4013'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),4014'-type'=>"application/$type+xml"4015);40164017$href_params{'extra_options'} =undef;4018$href_params{'action'} =$type;4019$link_attr{'-href'} = href(%href_params);4020print"<link ".4021"rel=\"$link_attr{'-rel'}\"".4022"title=\"$link_attr{'-title'}\"".4023"href=\"$link_attr{'-href'}\"".4024"type=\"$link_attr{'-type'}\"".4025"/>\n";40264027$href_params{'extra_options'} ='--no-merges';4028$link_attr{'-href'} = href(%href_params);4029$link_attr{'-title'} .=' (no merges)';4030print"<link ".4031"rel=\"$link_attr{'-rel'}\"".4032"title=\"$link_attr{'-title'}\"".4033"href=\"$link_attr{'-href'}\"".4034"type=\"$link_attr{'-type'}\"".4035"/>\n";4036}40374038}else{4039printf('<link rel="alternate" title="%sprojects list" '.4040'href="%s" type="text/plain; charset=utf-8" />'."\n",4041 esc_attr($site_name), href(project=>undef, action=>"project_index"));4042printf('<link rel="alternate" title="%sprojects feeds" '.4043'href="%s" type="text/x-opml" />'."\n",4044 esc_attr($site_name), href(project=>undef, action=>"opml"));4045}4046}40474048sub print_header_links {4049my$status=shift;40504051# print out each stylesheet that exist, providing backwards capability4052# for those people who defined $stylesheet in a config file4053if(defined$stylesheet) {4054print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";4055}else{4056foreachmy$stylesheet(@stylesheets) {4057next unless$stylesheet;4058print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";4059}4060}4061 print_feed_meta()4062if($statuseq'200 OK');4063if(defined$favicon) {4064printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);4065}4066}40674068sub print_nav_breadcrumbs_path {4069my$dirprefix=undef;4070while(my$part=shift) {4071$dirprefix.="/"ifdefined$dirprefix;4072$dirprefix.=$part;4073print$cgi->a({-href => href(project =>undef,4074 project_filter =>$dirprefix,4075 action =>"project_list")},4076 esc_html($part)) ." / ";4077}4078}40794080sub print_nav_breadcrumbs {4081my%opts=@_;40824083formy$crumb(@extra_breadcrumbs, [$home_link_str=>$home_link]) {4084print$cgi->a({-href => esc_url($crumb->[1])},$crumb->[0]) ." / ";4085}4086if(defined$project) {4087my@dirname=split'/',$project;4088my$projectbasename=pop@dirname;4089 print_nav_breadcrumbs_path(@dirname);4090print$cgi->a({-href => href(action=>"summary")}, esc_html($projectbasename));4091if(defined$action) {4092my$action_print=$action;4093if(defined$opts{-action_extra}) {4094$action_print=$cgi->a({-href => href(action=>$action)},4095$action);4096}4097print" /$action_print";4098}4099if(defined$opts{-action_extra}) {4100print" /$opts{-action_extra}";4101}4102print"\n";4103}elsif(defined$project_filter) {4104 print_nav_breadcrumbs_path(split'/',$project_filter);4105}4106}41074108sub print_search_form {4109if(!defined$searchtext) {4110$searchtext="";4111}4112my$search_hash;4113if(defined$hash_base) {4114$search_hash=$hash_base;4115}elsif(defined$hash) {4116$search_hash=$hash;4117}else{4118$search_hash="HEAD";4119}4120my$action=$my_uri;4121my$use_pathinfo= gitweb_check_feature('pathinfo');4122if($use_pathinfo) {4123$action.="/".esc_url($project);4124}4125print$cgi->start_form(-method=>"get", -action =>$action) .4126"<div class=\"search\">\n".4127(!$use_pathinfo&&4128$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .4129$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".4130$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".4131$cgi->popup_menu(-name =>'st', -default=>'commit',4132-values=> ['commit','grep','author','committer','pickaxe']) .4133" ".$cgi->a({-href => href(action=>"search_help"),4134-title =>"search help"},"?") ." search:\n",4135$cgi->textfield(-name =>"s", -value =>$searchtext, -override =>1) ."\n".4136"<span title=\"Extended regular expression\">".4137$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',4138-checked =>$search_use_regexp) .4139"</span>".4140"</div>".4141$cgi->end_form() ."\n";4142}41434144sub git_header_html {4145my$status=shift||"200 OK";4146my$expires=shift;4147my%opts=@_;41484149my$title= get_page_title();4150my$content_type= get_content_type_html();4151print$cgi->header(-type=>$content_type, -charset =>'utf-8',4152-status=>$status, -expires =>$expires)4153unless($opts{'-no_http_header'});4154my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';4155print<<EOF;4156<?xml version="1.0" encoding="utf-8"?>4157<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">4158<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">4159<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->4160<!-- git core binaries version$git_version-->4161<head>4162<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>4163<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>4164<meta name="robots" content="index, nofollow"/>4165<title>$title</title>4166EOF4167# the stylesheet, favicon etc urls won't work correctly with path_info4168# unless we set the appropriate base URL4169if($ENV{'PATH_INFO'}) {4170print"<base href=\"".esc_url($base_url)."\"/>\n";4171}4172 print_header_links($status);41734174if(defined$site_html_head_string) {4175print to_utf8($site_html_head_string);4176}41774178print"</head>\n".4179"<body>\n";41804181if(defined$site_header&& -f $site_header) {4182 insert_file($site_header);4183}41844185print"<div class=\"page_header\">\n";4186if(defined$logo) {4187print$cgi->a({-href => esc_url($logo_url),4188-title =>$logo_label},4189$cgi->img({-src => esc_url($logo),4190-width =>72, -height =>27,4191-alt =>"git",4192-class=>"logo"}));4193}4194 print_nav_breadcrumbs(%opts);4195print"</div>\n";41964197my$have_search= gitweb_check_feature('search');4198if(defined$project&&$have_search) {4199 print_search_form();4200}4201}42024203sub git_footer_html {4204my$feed_class='rss_logo';42054206print"<div class=\"page_footer\">\n";4207if(defined$project) {4208my$descr= git_get_project_description($project);4209if(defined$descr) {4210print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";4211}42124213my%href_params= get_feed_info();4214if(!%href_params) {4215$feed_class.=' generic';4216}4217$href_params{'-title'} ||='log';42184219foreachmy$format(qw(RSS Atom)) {4220$href_params{'action'} =lc($format);4221print$cgi->a({-href => href(%href_params),4222-title =>"$href_params{'-title'}$formatfeed",4223-class=>$feed_class},$format)."\n";4224}42254226}else{4227print$cgi->a({-href => href(project=>undef, action=>"opml",4228 project_filter =>$project_filter),4229-class=>$feed_class},"OPML") ." ";4230print$cgi->a({-href => href(project=>undef, action=>"project_index",4231 project_filter =>$project_filter),4232-class=>$feed_class},"TXT") ."\n";4233}4234print"</div>\n";# class="page_footer"42354236if(defined$t0&& gitweb_check_feature('timed')) {4237print"<div id=\"generating_info\">\n";4238print'This page took '.4239'<span id="generating_time" class="time_span">'.4240 tv_interval($t0, [ gettimeofday() ]).4241' seconds </span>'.4242' and '.4243'<span id="generating_cmd">'.4244$number_of_git_cmds.4245'</span> git commands '.4246" to generate.\n";4247print"</div>\n";# class="page_footer"4248}42494250if(defined$site_footer&& -f $site_footer) {4251 insert_file($site_footer);4252}42534254print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;4255if(defined$action&&4256$actioneq'blame_incremental') {4257print qq!<script type="text/javascript">\n!.4258 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.4259 qq!"!. href() .qq!");\n!.4260 qq!</script>\n!;4261}else{4262my($jstimezone,$tz_cookie,$datetime_class) =4263 gitweb_get_feature('javascript-timezone');42644265print qq!<script type="text/javascript">\n!.4266 qq!window.onload = function () {\n!;4267if(gitweb_check_feature('javascript-actions')) {4268print qq! fixLinks();\n!;4269}4270if($jstimezone&&$tz_cookie&&$datetime_class) {4271print qq! var tz_cookie = { name:'$tz_cookie', expires:14, path:'/'};\n!.# in days4272 qq! onloadTZSetup('$jstimezone', tz_cookie,'$datetime_class');\n!;4273}4274print qq!};\n!.4275 qq!</script>\n!;4276}42774278print"</body>\n".4279"</html>";4280}42814282# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])4283# Example: die_error(404, 'Hash not found')4284# By convention, use the following status codes (as defined in RFC 2616):4285# 400: Invalid or missing CGI parameters, or4286# requested object exists but has wrong type.4287# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on4288# this server or project.4289# 404: Requested object/revision/project doesn't exist.4290# 500: The server isn't configured properly, or4291# an internal error occurred (e.g. failed assertions caused by bugs), or4292# an unknown error occurred (e.g. the git binary died unexpectedly).4293# 503: The server is currently unavailable (because it is overloaded,4294# or down for maintenance). Generally, this is a temporary state.4295sub die_error {4296my$status=shift||500;4297my$error= esc_html(shift) ||"Internal Server Error";4298my$extra=shift;4299my%opts=@_;43004301my%http_responses= (4302400=>'400 Bad Request',4303403=>'403 Forbidden',4304404=>'404 Not Found',4305500=>'500 Internal Server Error',4306503=>'503 Service Unavailable',4307);4308 git_header_html($http_responses{$status},undef,%opts);4309print<<EOF;4310<div class="page_body">4311<br /><br />4312$status-$error4313<br />4314EOF4315if(defined$extra) {4316print"<hr />\n".4317"$extra\n";4318}4319print"</div>\n";43204321 git_footer_html();4322goto DONE_GITWEB4323unless($opts{'-error_handler'});4324}43254326## ----------------------------------------------------------------------4327## functions printing or outputting HTML: navigation43284329sub git_print_page_nav {4330my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;4331$extra=''if!defined$extra;# pager or formats43324333my@navs=qw(summary shortlog log commit commitdiff tree);4334if($suppress) {4335@navs=grep{$_ne$suppress}@navs;4336}43374338my%arg=map{$_=> {action=>$_} }@navs;4339if(defined$head) {4340for(qw(commit commitdiff)) {4341$arg{$_}{'hash'} =$head;4342}4343if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {4344for(qw(shortlog log)) {4345$arg{$_}{'hash'} =$head;4346}4347}4348}43494350$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;4351$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;43524353my@actions= gitweb_get_feature('actions');4354my%repl= (4355'%'=>'%',4356'n'=>$project,# project name4357'f'=>$git_dir,# project path within filesystem4358'h'=>$treehead||'',# current hash ('h' parameter)4359'b'=>$treebase||'',# hash base ('hb' parameter)4360);4361while(@actions) {4362my($label,$link,$pos) =splice(@actions,0,3);4363# insert4364@navs=map{$_eq$pos? ($_,$label) :$_}@navs;4365# munch munch4366$link=~s/%([%nfhb])/$repl{$1}/g;4367$arg{$label}{'_href'} =$link;4368}43694370print"<div class=\"page_nav\">\n".4371(join" | ",4372map{$_eq$current?4373$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")4374}@navs);4375print"<br/>\n$extra<br/>\n".4376"</div>\n";4377}43784379# returns a submenu for the nagivation of the refs views (tags, heads,4380# remotes) with the current view disabled and the remotes view only4381# available if the feature is enabled4382sub format_ref_views {4383my($current) =@_;4384my@ref_views=qw{tags heads};4385push@ref_views,'remotes'if gitweb_check_feature('remote_heads');4386returnjoin" | ",map{4387$_eq$current?$_:4388$cgi->a({-href => href(action=>$_)},$_)4389}@ref_views4390}43914392sub format_paging_nav {4393my($action,$page,$has_next_link) =@_;4394my$paging_nav;439543964397if($page>0) {4398$paging_nav.=4399$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .4400" ⋅ ".4401$cgi->a({-href => href(-replay=>1, page=>$page-1),4402-accesskey =>"p", -title =>"Alt-p"},"prev");4403}else{4404$paging_nav.="first ⋅ prev";4405}44064407if($has_next_link) {4408$paging_nav.=" ⋅ ".4409$cgi->a({-href => href(-replay=>1, page=>$page+1),4410-accesskey =>"n", -title =>"Alt-n"},"next");4411}else{4412$paging_nav.=" ⋅ next";4413}44144415return$paging_nav;4416}44174418## ......................................................................4419## functions printing or outputting HTML: div44204421sub git_print_header_div {4422my($action,$title,$hash,$hash_base) =@_;4423my%args= ();44244425$args{'action'} =$action;4426$args{'hash'} =$hashif$hash;4427$args{'hash_base'} =$hash_baseif$hash_base;44284429print"<div class=\"header\">\n".4430$cgi->a({-href => href(%args), -class=>"title"},4431$title?$title:$action) .4432"\n</div>\n";4433}44344435sub format_repo_url {4436my($name,$url) =@_;4437return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";4438}44394440# Group output by placing it in a DIV element and adding a header.4441# Options for start_div() can be provided by passing a hash reference as the4442# first parameter to the function.4443# Options to git_print_header_div() can be provided by passing an array4444# reference. This must follow the options to start_div if they are present.4445# The content can be a scalar, which is output as-is, a scalar reference, which4446# is output after html escaping, an IO handle passed either as *handle or4447# *handle{IO}, or a function reference. In the latter case all following4448# parameters will be taken as argument to the content function call.4449sub git_print_section {4450my($div_args,$header_args,$content);4451my$arg=shift;4452if(ref($arg)eq'HASH') {4453$div_args=$arg;4454$arg=shift;4455}4456if(ref($arg)eq'ARRAY') {4457$header_args=$arg;4458$arg=shift;4459}4460$content=$arg;44614462print$cgi->start_div($div_args);4463 git_print_header_div(@$header_args);44644465if(ref($content)eq'CODE') {4466$content->(@_);4467}elsif(ref($content)eq'SCALAR') {4468print esc_html($$content);4469}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {4470print<$content>;4471}elsif(!ref($content) &&defined($content)) {4472print$content;4473}44744475print$cgi->end_div;4476}44774478sub format_timestamp_html {4479my$date=shift;4480my$strtime=$date->{'rfc2822'};44814482my(undef,undef,$datetime_class) =4483 gitweb_get_feature('javascript-timezone');4484if($datetime_class) {4485$strtime= qq!<span class="$datetime_class">$strtime</span>!;4486}44874488my$localtime_format='(%02d:%02d%s)';4489if($date->{'hour_local'} <6) {4490$localtime_format='(<span class="atnight">%02d:%02d</span>%s)';4491}4492$strtime.=' '.4493sprintf($localtime_format,4494$date->{'hour_local'},$date->{'minute_local'},$date->{'tz_local'});44954496return$strtime;4497}44984499# Outputs the author name and date in long form4500sub git_print_authorship {4501my$co=shift;4502my%opts=@_;4503my$tag=$opts{-tag} ||'div';4504my$author=$co->{'author_name'};45054506my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});4507print"<$tagclass=\"author_date\">".4508 format_search_author($author,"author", esc_html($author)) .4509" [".format_timestamp_html(\%ad)."]".4510 git_get_avatar($co->{'author_email'}, -pad_before =>1) .4511"</$tag>\n";4512}45134514# Outputs table rows containing the full author or committer information,4515# in the format expected for 'commit' view (& similar).4516# Parameters are a commit hash reference, followed by the list of people4517# to output information for. If the list is empty it defaults to both4518# author and committer.4519sub git_print_authorship_rows {4520my$co=shift;4521# too bad we can't use @people = @_ || ('author', 'committer')4522my@people=@_;4523@people= ('author','committer')unless@people;4524foreachmy$who(@people) {4525my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});4526print"<tr><td>$who</td><td>".4527 format_search_author($co->{"${who}_name"},$who,4528 esc_html($co->{"${who}_name"})) ." ".4529 format_search_author($co->{"${who}_email"},$who,4530 esc_html("<".$co->{"${who}_email"} .">")) .4531"</td><td rowspan=\"2\">".4532 git_get_avatar($co->{"${who}_email"}, -size =>'double') .4533"</td></tr>\n".4534"<tr>".4535"<td></td><td>".4536 format_timestamp_html(\%wd) .4537"</td>".4538"</tr>\n";4539}4540}45414542sub git_print_page_path {4543my$name=shift;4544my$type=shift;4545my$hb=shift;454645474548print"<div class=\"page_path\">";4549print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),4550-title =>'tree root'}, to_utf8("[$project]"));4551print" / ";4552if(defined$name) {4553my@dirname=split'/',$name;4554my$basename=pop@dirname;4555my$fullname='';45564557foreachmy$dir(@dirname) {4558$fullname.= ($fullname?'/':'') .$dir;4559print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4560 hash_base=>$hb),4561-title =>$fullname}, esc_path($dir));4562print" / ";4563}4564if(defined$type&&$typeeq'blob') {4565print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4566 hash_base=>$hb),4567-title =>$name}, esc_path($basename));4568}elsif(defined$type&&$typeeq'tree') {4569print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4570 hash_base=>$hb),4571-title =>$name}, esc_path($basename));4572print" / ";4573}else{4574print esc_path($basename);4575}4576}4577print"<br/></div>\n";4578}45794580sub git_print_log {4581my$log=shift;4582my%opts=@_;45834584if($opts{'-remove_title'}) {4585# remove title, i.e. first line of log4586shift@$log;4587}4588# remove leading empty lines4589while(defined$log->[0] &&$log->[0]eq"") {4590shift@$log;4591}45924593# print log4594my$skip_blank_line=0;4595foreachmy$line(@$log) {4596if($line=~m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) {4597if(!$opts{'-remove_signoff'}) {4598print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4599$skip_blank_line=1;4600}4601next;4602}46034604if($line=~ m,\s*([a-z]*link): (https?://\S+),i) {4605if(!$opts{'-remove_signoff'}) {4606print"<span class=\"signoff\">". esc_html($1) .": ".4607"<a href=\"". esc_html($2) ."\">". esc_html($2) ."</a>".4608"</span><br/>\n";4609$skip_blank_line=1;4610}4611next;4612}46134614# print only one empty line4615# do not print empty line after signoff4616if($lineeq"") {4617next if($skip_blank_line);4618$skip_blank_line=1;4619}else{4620$skip_blank_line=0;4621}46224623print format_log_line_html($line) ."<br/>\n";4624}46254626if($opts{'-final_empty_line'}) {4627# end with single empty line4628print"<br/>\n"unless$skip_blank_line;4629}4630}46314632# return link target (what link points to)4633sub git_get_link_target {4634my$hash=shift;4635my$link_target;46364637# read link4638open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4639orreturn;4640{4641local$/=undef;4642$link_target= <$fd>;4643}4644close$fd4645orreturn;46464647return$link_target;4648}46494650# given link target, and the directory (basedir) the link is in,4651# return target of link relative to top directory (top tree);4652# return undef if it is not possible (including absolute links).4653sub normalize_link_target {4654my($link_target,$basedir) =@_;46554656# absolute symlinks (beginning with '/') cannot be normalized4657return if(substr($link_target,0,1)eq'/');46584659# normalize link target to path from top (root) tree (dir)4660my$path;4661if($basedir) {4662$path=$basedir.'/'.$link_target;4663}else{4664# we are in top (root) tree (dir)4665$path=$link_target;4666}46674668# remove //, /./, and /../4669my@path_parts;4670foreachmy$part(split('/',$path)) {4671# discard '.' and ''4672next if(!$part||$parteq'.');4673# handle '..'4674if($parteq'..') {4675if(@path_parts) {4676pop@path_parts;4677}else{4678# link leads outside repository (outside top dir)4679return;4680}4681}else{4682push@path_parts,$part;4683}4684}4685$path=join('/',@path_parts);46864687return$path;4688}46894690# print tree entry (row of git_tree), but without encompassing <tr> element4691sub git_print_tree_entry {4692my($t,$basedir,$hash_base,$have_blame) =@_;46934694my%base_key= ();4695$base_key{'hash_base'} =$hash_baseifdefined$hash_base;46964697# The format of a table row is: mode list link. Where mode is4698# the mode of the entry, list is the name of the entry, an href,4699# and link is the action links of the entry.47004701print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4702if(exists$t->{'size'}) {4703print"<td class=\"size\">$t->{'size'}</td>\n";4704}4705if($t->{'type'}eq"blob") {4706print"<td class=\"list\">".4707$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4708 file_name=>"$basedir$t->{'name'}",%base_key),4709-class=>"list"}, esc_path($t->{'name'}));4710if(S_ISLNK(oct$t->{'mode'})) {4711my$link_target= git_get_link_target($t->{'hash'});4712if($link_target) {4713my$norm_target= normalize_link_target($link_target,$basedir);4714if(defined$norm_target) {4715print" -> ".4716$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4717 file_name=>$norm_target),4718-title =>$norm_target}, esc_path($link_target));4719}else{4720print" -> ". esc_path($link_target);4721}4722}4723}4724print"</td>\n";4725print"<td class=\"link\">";4726print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4727 file_name=>"$basedir$t->{'name'}",%base_key)},4728"blob");4729if($have_blame) {4730print" | ".4731$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4732 file_name=>"$basedir$t->{'name'}",%base_key)},4733"blame");4734}4735if(defined$hash_base) {4736print" | ".4737$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4738 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4739"history");4740}4741print" | ".4742$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4743 file_name=>"$basedir$t->{'name'}")},4744"raw");4745print"</td>\n";47464747}elsif($t->{'type'}eq"tree") {4748print"<td class=\"list\">";4749print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4750 file_name=>"$basedir$t->{'name'}",4751%base_key)},4752 esc_path($t->{'name'}));4753print"</td>\n";4754print"<td class=\"link\">";4755print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4756 file_name=>"$basedir$t->{'name'}",4757%base_key)},4758"tree");4759if(defined$hash_base) {4760print" | ".4761$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4762 file_name=>"$basedir$t->{'name'}")},4763"history");4764}4765print"</td>\n";4766}else{4767# unknown object: we can only present history for it4768# (this includes 'commit' object, i.e. submodule support)4769print"<td class=\"list\">".4770 esc_path($t->{'name'}) .4771"</td>\n";4772print"<td class=\"link\">";4773if(defined$hash_base) {4774print$cgi->a({-href => href(action=>"history",4775 hash_base=>$hash_base,4776 file_name=>"$basedir$t->{'name'}")},4777"history");4778}4779print"</td>\n";4780}4781}47824783## ......................................................................4784## functions printing large fragments of HTML47854786# get pre-image filenames for merge (combined) diff4787sub fill_from_file_info {4788my($diff,@parents) =@_;47894790$diff->{'from_file'} = [ ];4791$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4792for(my$i=0;$i<$diff->{'nparents'};$i++) {4793if($diff->{'status'}[$i]eq'R'||4794$diff->{'status'}[$i]eq'C') {4795$diff->{'from_file'}[$i] =4796 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4797}4798}47994800return$diff;4801}48024803# is current raw difftree line of file deletion4804sub is_deleted {4805my$diffinfo=shift;48064807return$diffinfo->{'to_id'}eq('0' x 40);4808}48094810# does patch correspond to [previous] difftree raw line4811# $diffinfo - hashref of parsed raw diff format4812# $patchinfo - hashref of parsed patch diff format4813# (the same keys as in $diffinfo)4814sub is_patch_split {4815my($diffinfo,$patchinfo) =@_;48164817returndefined$diffinfo&&defined$patchinfo4818&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4819}482048214822sub git_difftree_body {4823my($difftree,$hash,@parents) =@_;4824my($parent) =$parents[0];4825my$have_blame= gitweb_check_feature('blame');4826print"<div class=\"list_head\">\n";4827if($#{$difftree} >10) {4828print(($#{$difftree} +1) ." files changed:\n");4829}4830print"</div>\n";48314832print"<table class=\"".4833(@parents>1?"combined ":"") .4834"diff_tree\">\n";48354836# header only for combined diff in 'commitdiff' view4837my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4838if($has_header) {4839# table header4840print"<thead><tr>\n".4841"<th></th><th></th>\n";# filename, patchN link4842for(my$i=0;$i<@parents;$i++) {4843my$par=$parents[$i];4844print"<th>".4845$cgi->a({-href => href(action=>"commitdiff",4846 hash=>$hash, hash_parent=>$par),4847-title =>'commitdiff to parent number '.4848($i+1) .': '.substr($par,0,7)},4849$i+1) .4850" </th>\n";4851}4852print"</tr></thead>\n<tbody>\n";4853}48544855my$alternate=1;4856my$patchno=0;4857foreachmy$line(@{$difftree}) {4858my$diff= parsed_difftree_line($line);48594860if($alternate) {4861print"<tr class=\"dark\">\n";4862}else{4863print"<tr class=\"light\">\n";4864}4865$alternate^=1;48664867if(exists$diff->{'nparents'}) {# combined diff48684869 fill_from_file_info($diff,@parents)4870unlessexists$diff->{'from_file'};48714872if(!is_deleted($diff)) {4873# file exists in the result (child) commit4874print"<td>".4875$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4876 file_name=>$diff->{'to_file'},4877 hash_base=>$hash),4878-class=>"list"}, esc_path($diff->{'to_file'})) .4879"</td>\n";4880}else{4881print"<td>".4882 esc_path($diff->{'to_file'}) .4883"</td>\n";4884}48854886if($actioneq'commitdiff') {4887# link to patch4888$patchno++;4889print"<td class=\"link\">".4890$cgi->a({-href => href(-anchor=>"patch$patchno")},4891"patch") .4892" | ".4893"</td>\n";4894}48954896my$has_history=0;4897my$not_deleted=0;4898for(my$i=0;$i<$diff->{'nparents'};$i++) {4899my$hash_parent=$parents[$i];4900my$from_hash=$diff->{'from_id'}[$i];4901my$from_path=$diff->{'from_file'}[$i];4902my$status=$diff->{'status'}[$i];49034904$has_history||= ($statusne'A');4905$not_deleted||= ($statusne'D');49064907if($statuseq'A') {4908print"<td class=\"link\"align=\"right\"> | </td>\n";4909}elsif($statuseq'D') {4910print"<td class=\"link\">".4911$cgi->a({-href => href(action=>"blob",4912 hash_base=>$hash,4913 hash=>$from_hash,4914 file_name=>$from_path)},4915"blob". ($i+1)) .4916" | </td>\n";4917}else{4918if($diff->{'to_id'}eq$from_hash) {4919print"<td class=\"link nochange\">";4920}else{4921print"<td class=\"link\">";4922}4923print$cgi->a({-href => href(action=>"blobdiff",4924 hash=>$diff->{'to_id'},4925 hash_parent=>$from_hash,4926 hash_base=>$hash,4927 hash_parent_base=>$hash_parent,4928 file_name=>$diff->{'to_file'},4929 file_parent=>$from_path)},4930"diff". ($i+1)) .4931" | </td>\n";4932}4933}49344935print"<td class=\"link\">";4936if($not_deleted) {4937print$cgi->a({-href => href(action=>"blob",4938 hash=>$diff->{'to_id'},4939 file_name=>$diff->{'to_file'},4940 hash_base=>$hash)},4941"blob");4942print" | "if($has_history);4943}4944if($has_history) {4945print$cgi->a({-href => href(action=>"history",4946 file_name=>$diff->{'to_file'},4947 hash_base=>$hash)},4948"history");4949}4950print"</td>\n";49514952print"</tr>\n";4953next;# instead of 'else' clause, to avoid extra indent4954}4955# else ordinary diff49564957my($to_mode_oct,$to_mode_str,$to_file_type);4958my($from_mode_oct,$from_mode_str,$from_file_type);4959if($diff->{'to_mode'}ne('0' x 6)) {4960$to_mode_oct=oct$diff->{'to_mode'};4961if(S_ISREG($to_mode_oct)) {# only for regular file4962$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4963}4964$to_file_type= file_type($diff->{'to_mode'});4965}4966if($diff->{'from_mode'}ne('0' x 6)) {4967$from_mode_oct=oct$diff->{'from_mode'};4968if(S_ISREG($from_mode_oct)) {# only for regular file4969$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4970}4971$from_file_type= file_type($diff->{'from_mode'});4972}49734974if($diff->{'status'}eq"A") {# created4975my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4976$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4977$mode_chng.="]</span>";4978print"<td>";4979print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4980 hash_base=>$hash, file_name=>$diff->{'file'}),4981-class=>"list"}, esc_path($diff->{'file'}));4982print"</td>\n";4983print"<td>$mode_chng</td>\n";4984print"<td class=\"link\">";4985if($actioneq'commitdiff') {4986# link to patch4987$patchno++;4988print$cgi->a({-href => href(-anchor=>"patch$patchno")},4989"patch") .4990" | ";4991}4992print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4993 hash_base=>$hash, file_name=>$diff->{'file'})},4994"blob");4995print"</td>\n";49964997}elsif($diff->{'status'}eq"D") {# deleted4998my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4999print"<td>";5000print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},5001 hash_base=>$parent, file_name=>$diff->{'file'}),5002-class=>"list"}, esc_path($diff->{'file'}));5003print"</td>\n";5004print"<td>$mode_chng</td>\n";5005print"<td class=\"link\">";5006if($actioneq'commitdiff') {5007# link to patch5008$patchno++;5009print$cgi->a({-href => href(-anchor=>"patch$patchno")},5010"patch") .5011" | ";5012}5013print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},5014 hash_base=>$parent, file_name=>$diff->{'file'})},5015"blob") ." | ";5016if($have_blame) {5017print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,5018 file_name=>$diff->{'file'})},5019"blame") ." | ";5020}5021print$cgi->a({-href => href(action=>"history", hash_base=>$parent,5022 file_name=>$diff->{'file'})},5023"history");5024print"</td>\n";50255026}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed5027my$mode_chnge="";5028if($diff->{'from_mode'} !=$diff->{'to_mode'}) {5029$mode_chnge="<span class=\"file_status mode_chnge\">[changed";5030if($from_file_typene$to_file_type) {5031$mode_chnge.=" from$from_file_typeto$to_file_type";5032}5033if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {5034if($from_mode_str&&$to_mode_str) {5035$mode_chnge.=" mode:$from_mode_str->$to_mode_str";5036}elsif($to_mode_str) {5037$mode_chnge.=" mode:$to_mode_str";5038}5039}5040$mode_chnge.="]</span>\n";5041}5042print"<td>";5043print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},5044 hash_base=>$hash, file_name=>$diff->{'file'}),5045-class=>"list"}, esc_path($diff->{'file'}));5046print"</td>\n";5047print"<td>$mode_chnge</td>\n";5048print"<td class=\"link\">";5049if($actioneq'commitdiff') {5050# link to patch5051$patchno++;5052print$cgi->a({-href => href(-anchor=>"patch$patchno")},5053"patch") .5054" | ";5055}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {5056# "commit" view and modified file (not onlu mode changed)5057print$cgi->a({-href => href(action=>"blobdiff",5058 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},5059 hash_base=>$hash, hash_parent_base=>$parent,5060 file_name=>$diff->{'file'})},5061"diff") .5062" | ";5063}5064print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},5065 hash_base=>$hash, file_name=>$diff->{'file'})},5066"blob") ." | ";5067if($have_blame) {5068print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,5069 file_name=>$diff->{'file'})},5070"blame") ." | ";5071}5072print$cgi->a({-href => href(action=>"history", hash_base=>$hash,5073 file_name=>$diff->{'file'})},5074"history");5075print"</td>\n";50765077}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied5078my%status_name= ('R'=>'moved','C'=>'copied');5079my$nstatus=$status_name{$diff->{'status'}};5080my$mode_chng="";5081if($diff->{'from_mode'} !=$diff->{'to_mode'}) {5082# mode also for directories, so we cannot use $to_mode_str5083$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);5084}5085print"<td>".5086$cgi->a({-href => href(action=>"blob", hash_base=>$hash,5087 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),5088-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".5089"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".5090$cgi->a({-href => href(action=>"blob", hash_base=>$parent,5091 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),5092-class=>"list"}, esc_path($diff->{'from_file'})) .5093" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".5094"<td class=\"link\">";5095if($actioneq'commitdiff') {5096# link to patch5097$patchno++;5098print$cgi->a({-href => href(-anchor=>"patch$patchno")},5099"patch") .5100" | ";5101}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {5102# "commit" view and modified file (not only pure rename or copy)5103print$cgi->a({-href => href(action=>"blobdiff",5104 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},5105 hash_base=>$hash, hash_parent_base=>$parent,5106 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},5107"diff") .5108" | ";5109}5110print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},5111 hash_base=>$parent, file_name=>$diff->{'to_file'})},5112"blob") ." | ";5113if($have_blame) {5114print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,5115 file_name=>$diff->{'to_file'})},5116"blame") ." | ";5117}5118print$cgi->a({-href => href(action=>"history", hash_base=>$hash,5119 file_name=>$diff->{'to_file'})},5120"history");5121print"</td>\n";51225123}# we should not encounter Unmerged (U) or Unknown (X) status5124print"</tr>\n";5125}5126print"</tbody>"if$has_header;5127print"</table>\n";5128}51295130# Print context lines and then rem/add lines in a side-by-side manner.5131sub print_sidebyside_diff_lines {5132my($ctx,$rem,$add) =@_;51335134# print context block before add/rem block5135if(@$ctx) {5136print join'',5137'<div class="chunk_block ctx">',5138'<div class="old">',5139@$ctx,5140'</div>',5141'<div class="new">',5142@$ctx,5143'</div>',5144'</div>';5145}51465147if(!@$add) {5148# pure removal5149print join'',5150'<div class="chunk_block rem">',5151'<div class="old">',5152@$rem,5153'</div>',5154'</div>';5155}elsif(!@$rem) {5156# pure addition5157print join'',5158'<div class="chunk_block add">',5159'<div class="new">',5160@$add,5161'</div>',5162'</div>';5163}else{5164print join'',5165'<div class="chunk_block chg">',5166'<div class="old">',5167@$rem,5168'</div>',5169'<div class="new">',5170@$add,5171'</div>',5172'</div>';5173}5174}51755176# Print context lines and then rem/add lines in inline manner.5177sub print_inline_diff_lines {5178my($ctx,$rem,$add) =@_;51795180print@$ctx,@$rem,@$add;5181}51825183# Format removed and added line, mark changed part and HTML-format them.5184# Implementation is based on contrib/diff-highlight5185sub format_rem_add_lines_pair {5186my($rem,$add,$num_parents) =@_;51875188# We need to untabify lines before split()'ing them;5189# otherwise offsets would be invalid.5190chomp$rem;5191chomp$add;5192$rem= untabify($rem);5193$add= untabify($add);51945195my@rem=split(//,$rem);5196my@add=split(//,$add);5197my($esc_rem,$esc_add);5198# Ignore leading +/- characters for each parent.5199my($prefix_len,$suffix_len) = ($num_parents,0);5200my($prefix_has_nonspace,$suffix_has_nonspace);52015202my$shorter= (@rem<@add) ?@rem:@add;5203while($prefix_len<$shorter) {5204last if($rem[$prefix_len]ne$add[$prefix_len]);52055206$prefix_has_nonspace=1if($rem[$prefix_len] !~/\s/);5207$prefix_len++;5208}52095210while($prefix_len+$suffix_len<$shorter) {5211last if($rem[-1-$suffix_len]ne$add[-1-$suffix_len]);52125213$suffix_has_nonspace=1if($rem[-1-$suffix_len] !~/\s/);5214$suffix_len++;5215}52165217# Mark lines that are different from each other, but have some common5218# part that isn't whitespace. If lines are completely different, don't5219# mark them because that would make output unreadable, especially if5220# diff consists of multiple lines.5221if($prefix_has_nonspace||$suffix_has_nonspace) {5222$esc_rem= esc_html_hl_regions($rem,'marked',5223[$prefix_len,@rem-$suffix_len], -nbsp=>1);5224$esc_add= esc_html_hl_regions($add,'marked',5225[$prefix_len,@add-$suffix_len], -nbsp=>1);5226}else{5227$esc_rem= esc_html($rem, -nbsp=>1);5228$esc_add= esc_html($add, -nbsp=>1);5229}52305231return format_diff_line(\$esc_rem,'rem'),5232 format_diff_line(\$esc_add,'add');5233}52345235# HTML-format diff context, removed and added lines.5236sub format_ctx_rem_add_lines {5237my($ctx,$rem,$add,$num_parents) =@_;5238my(@new_ctx,@new_rem,@new_add);5239my$can_highlight=0;5240my$is_combined= ($num_parents>1);52415242# Highlight if every removed line has a corresponding added line.5243if(@$add>0&&@$add==@$rem) {5244$can_highlight=1;52455246# Highlight lines in combined diff only if the chunk contains5247# diff between the same version, e.g.5248#5249# - a5250# - b5251# + c5252# + d5253#5254# Otherwise the highlightling would be confusing.5255if($is_combined) {5256for(my$i=0;$i<@$add;$i++) {5257my$prefix_rem=substr($rem->[$i],0,$num_parents);5258my$prefix_add=substr($add->[$i],0,$num_parents);52595260$prefix_rem=~s/-/+/g;52615262if($prefix_remne$prefix_add) {5263$can_highlight=0;5264last;5265}5266}5267}5268}52695270if($can_highlight) {5271for(my$i=0;$i<@$add;$i++) {5272my($line_rem,$line_add) = format_rem_add_lines_pair(5273$rem->[$i],$add->[$i],$num_parents);5274push@new_rem,$line_rem;5275push@new_add,$line_add;5276}5277}else{5278@new_rem=map{ format_diff_line($_,'rem') }@$rem;5279@new_add=map{ format_diff_line($_,'add') }@$add;5280}52815282@new_ctx=map{ format_diff_line($_,'ctx') }@$ctx;52835284return(\@new_ctx, \@new_rem, \@new_add);5285}52865287# Print context lines and then rem/add lines.5288sub print_diff_lines {5289my($ctx,$rem,$add,$diff_style,$num_parents) =@_;5290my$is_combined=$num_parents>1;52915292($ctx,$rem,$add) = format_ctx_rem_add_lines($ctx,$rem,$add,5293$num_parents);52945295if($diff_styleeq'sidebyside'&& !$is_combined) {5296 print_sidebyside_diff_lines($ctx,$rem,$add);5297}else{5298# default 'inline' style and unknown styles5299 print_inline_diff_lines($ctx,$rem,$add);5300}5301}53025303sub print_diff_chunk {5304my($diff_style,$num_parents,$from,$to,@chunk) =@_;5305my(@ctx,@rem,@add);53065307# The class of the previous line.5308my$prev_class='';53095310return unless@chunk;53115312# incomplete last line might be among removed or added lines,5313# or both, or among context lines: find which5314for(my$i=1;$i<@chunk;$i++) {5315if($chunk[$i][0]eq'incomplete') {5316$chunk[$i][0] =$chunk[$i-1][0];5317}5318}53195320# guardian5321push@chunk, ["",""];53225323foreachmy$line_info(@chunk) {5324my($class,$line) =@$line_info;53255326# print chunk headers5327if($class&&$classeq'chunk_header') {5328print format_diff_line($line,$class,$from,$to);5329next;5330}53315332## print from accumulator when have some add/rem lines or end5333# of chunk (flush context lines), or when have add and rem5334# lines and new block is reached (otherwise add/rem lines could5335# be reordered)5336if(!$class|| ((@rem||@add) &&$classeq'ctx') ||5337(@rem&&@add&&$classne$prev_class)) {5338 print_diff_lines(\@ctx, \@rem, \@add,5339$diff_style,$num_parents);5340@ctx=@rem=@add= ();5341}53425343## adding lines to accumulator5344# guardian value5345last unless$line;5346# rem, add or change5347if($classeq'rem') {5348push@rem,$line;5349}elsif($classeq'add') {5350push@add,$line;5351}5352# context line5353if($classeq'ctx') {5354push@ctx,$line;5355}53565357$prev_class=$class;5358}5359}53605361sub git_patchset_body {5362my($fd,$diff_style,$difftree,$hash,@hash_parents) =@_;5363my($hash_parent) =$hash_parents[0];53645365my$is_combined= (@hash_parents>1);5366my$patch_idx=0;5367my$patch_number=0;5368my$patch_line;5369my$diffinfo;5370my$to_name;5371my(%from,%to);5372my@chunk;# for side-by-side diff53735374print"<div class=\"patchset\">\n";53755376# skip to first patch5377while($patch_line= <$fd>) {5378chomp$patch_line;53795380last if($patch_line=~m/^diff /);5381}53825383 PATCH:5384while($patch_line) {53855386# parse "git diff" header line5387if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {5388# $1 is from_name, which we do not use5389$to_name= unquote($2);5390$to_name=~s!^b/!!;5391}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {5392# $1 is 'cc' or 'combined', which we do not use5393$to_name= unquote($2);5394}else{5395$to_name=undef;5396}53975398# check if current patch belong to current raw line5399# and parse raw git-diff line if needed5400if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {5401# this is continuation of a split patch5402print"<div class=\"patch cont\">\n";5403}else{5404# advance raw git-diff output if needed5405$patch_idx++ifdefined$diffinfo;54065407# read and prepare patch information5408$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);54095410# compact combined diff output can have some patches skipped5411# find which patch (using pathname of result) we are at now;5412if($is_combined) {5413while($to_namene$diffinfo->{'to_file'}) {5414print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".5415 format_diff_cc_simplified($diffinfo,@hash_parents) .5416"</div>\n";# class="patch"54175418$patch_idx++;5419$patch_number++;54205421last if$patch_idx>$#$difftree;5422$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);5423}5424}54255426# modifies %from, %to hashes5427 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);54285429# this is first patch for raw difftree line with $patch_idx index5430# we index @$difftree array from 0, but number patches from 15431print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";5432}54335434# git diff header5435#assert($patch_line =~ m/^diff /) if DEBUG;5436#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed5437$patch_number++;5438# print "git diff" header5439print format_git_diff_header_line($patch_line,$diffinfo,5440 \%from, \%to);54415442# print extended diff header5443print"<div class=\"diff extended_header\">\n";5444 EXTENDED_HEADER:5445while($patch_line= <$fd>) {5446chomp$patch_line;54475448last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);54495450print format_extended_diff_header_line($patch_line,$diffinfo,5451 \%from, \%to);5452}5453print"</div>\n";# class="diff extended_header"54545455# from-file/to-file diff header5456if(!$patch_line) {5457print"</div>\n";# class="patch"5458last PATCH;5459}5460next PATCH if($patch_line=~m/^diff /);5461#assert($patch_line =~ m/^---/) if DEBUG;54625463my$last_patch_line=$patch_line;5464$patch_line= <$fd>;5465chomp$patch_line;5466#assert($patch_line =~ m/^\+\+\+/) if DEBUG;54675468print format_diff_from_to_header($last_patch_line,$patch_line,5469$diffinfo, \%from, \%to,5470@hash_parents);54715472# the patch itself5473 LINE:5474while($patch_line= <$fd>) {5475chomp$patch_line;54765477next PATCH if($patch_line=~m/^diff /);54785479my$class= diff_line_class($patch_line, \%from, \%to);54805481if($classeq'chunk_header') {5482 print_diff_chunk($diff_style,scalar@hash_parents, \%from, \%to,@chunk);5483@chunk= ();5484}54855486push@chunk, [$class,$patch_line];5487}54885489}continue{5490if(@chunk) {5491 print_diff_chunk($diff_style,scalar@hash_parents, \%from, \%to,@chunk);5492@chunk= ();5493}5494print"</div>\n";# class="patch"5495}54965497# for compact combined (--cc) format, with chunk and patch simplification5498# the patchset might be empty, but there might be unprocessed raw lines5499for(++$patch_idxif$patch_number>0;5500$patch_idx<@$difftree;5501++$patch_idx) {5502# read and prepare patch information5503$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);55045505# generate anchor for "patch" links in difftree / whatchanged part5506print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".5507 format_diff_cc_simplified($diffinfo,@hash_parents) .5508"</div>\n";# class="patch"55095510$patch_number++;5511}55125513if($patch_number==0) {5514if(@hash_parents>1) {5515print"<div class=\"diff nodifferences\">Trivial merge</div>\n";5516}else{5517print"<div class=\"diff nodifferences\">No differences found</div>\n";5518}5519}55205521print"</div>\n";# class="patchset"5522}55235524# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .55255526sub git_project_search_form {5527my($searchtext,$search_use_regexp) =@_;55285529my$limit='';5530if($project_filter) {5531$limit=" in '$project_filter/'";5532}55335534print"<div class=\"projsearch\">\n";5535print$cgi->start_form(-method=>'get', -action =>$my_uri) .5536$cgi->hidden(-name =>'a', -value =>'project_list') ."\n";5537print$cgi->hidden(-name =>'pf', -value =>$project_filter)."\n"5538if(defined$project_filter);5539print$cgi->textfield(-name =>'s', -value =>$searchtext,5540-title =>"Search project by name and description$limit",5541-size =>60) ."\n".5542"<span title=\"Extended regular expression\">".5543$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',5544-checked =>$search_use_regexp) .5545"</span>\n".5546$cgi->submit(-name =>'btnS', -value =>'Search') .5547$cgi->end_form() ."\n".5548$cgi->a({-href => href(project =>undef, searchtext =>undef,5549 project_filter =>$project_filter)},5550 esc_html("List all projects$limit")) ."<br />\n";5551print"</div>\n";5552}55535554# entry for given @keys needs filling if at least one of keys in list5555# is not present in %$project_info5556sub project_info_needs_filling {5557my($project_info,@keys) =@_;55585559# return List::MoreUtils::any { !exists $project_info->{$_} } @keys;5560foreachmy$key(@keys) {5561if(!exists$project_info->{$key}) {5562return1;5563}5564}5565return;5566}55675568# fills project list info (age, description, owner, category, forks, etc.)5569# for each project in the list, removing invalid projects from5570# returned list, or fill only specified info.5571#5572# Invalid projects are removed from the returned list if and only if you5573# ask 'age' or 'age_string' to be filled, because they are the only fields5574# that run unconditionally git command that requires repository, and5575# therefore do always check if project repository is invalid.5576#5577# USAGE:5578# * fill_project_list_info(\@project_list, 'descr_long', 'ctags')5579# ensures that 'descr_long' and 'ctags' fields are filled5580# * @project_list = fill_project_list_info(\@project_list)5581# ensures that all fields are filled (and invalid projects removed)5582#5583# NOTE: modifies $projlist, but does not remove entries from it5584sub fill_project_list_info {5585my($projlist,@wanted_keys) =@_;5586my@projects;5587my$filter_set=sub{return@_; };5588if(@wanted_keys) {5589my%wanted_keys=map{$_=>1}@wanted_keys;5590$filter_set=sub{returngrep{$wanted_keys{$_} }@_; };5591}55925593my$show_ctags= gitweb_check_feature('ctags');5594 PROJECT:5595foreachmy$pr(@$projlist) {5596if(project_info_needs_filling($pr,$filter_set->('age','age_string'))) {5597my(@activity) = git_get_last_activity($pr->{'path'});5598unless(@activity) {5599next PROJECT;5600}5601($pr->{'age'},$pr->{'age_string'}) =@activity;5602}5603if(project_info_needs_filling($pr,$filter_set->('descr','descr_long'))) {5604my$descr= git_get_project_description($pr->{'path'}) ||"";5605$descr= to_utf8($descr);5606$pr->{'descr_long'} =$descr;5607$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);5608}5609if(project_info_needs_filling($pr,$filter_set->('owner'))) {5610$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";5611}5612if($show_ctags&&5613 project_info_needs_filling($pr,$filter_set->('ctags'))) {5614$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});5615}5616if($projects_list_group_categories&&5617 project_info_needs_filling($pr,$filter_set->('category'))) {5618my$cat= git_get_project_category($pr->{'path'}) ||5619$project_list_default_category;5620$pr->{'category'} = to_utf8($cat);5621}56225623push@projects,$pr;5624}56255626return@projects;5627}56285629sub sort_projects_list {5630my($projlist,$order) =@_;56315632sub order_str {5633my$key=shift;5634return sub{$a->{$key}cmp$b->{$key} };5635}56365637sub order_num_then_undef {5638my$key=shift;5639return sub{5640defined$a->{$key} ?5641(defined$b->{$key} ?$a->{$key} <=>$b->{$key} : -1) :5642(defined$b->{$key} ?1:0)5643};5644}56455646my%orderings= (5647 project => order_str('path'),5648 descr => order_str('descr_long'),5649 owner => order_str('owner'),5650 age => order_num_then_undef('age'),5651);56525653my$ordering=$orderings{$order};5654returndefined$ordering?sort$ordering @$projlist:@$projlist;5655}56565657# returns a hash of categories, containing the list of project5658# belonging to each category5659sub build_projlist_by_category {5660my($projlist,$from,$to) =@_;5661my%categories;56625663$from=0unlessdefined$from;5664$to=$#$projlistif(!defined$to||$#$projlist<$to);56655666for(my$i=$from;$i<=$to;$i++) {5667my$pr=$projlist->[$i];5668push@{$categories{$pr->{'category'} }},$pr;5669}56705671returnwantarray?%categories: \%categories;5672}56735674# print 'sort by' <th> element, generating 'sort by $name' replay link5675# if that order is not selected5676sub print_sort_th {5677print format_sort_th(@_);5678}56795680sub format_sort_th {5681my($name,$order,$header) =@_;5682my$sort_th="";5683$header||=ucfirst($name);56845685if($ordereq$name) {5686$sort_th.="<th>$header</th>\n";5687}else{5688$sort_th.="<th>".5689$cgi->a({-href => href(-replay=>1, order=>$name),5690-class=>"header"},$header) .5691"</th>\n";5692}56935694return$sort_th;5695}56965697sub git_project_list_rows {5698my($projlist,$from,$to,$check_forks) =@_;56995700$from=0unlessdefined$from;5701$to=$#$projlistif(!defined$to||$#$projlist<$to);57025703my$alternate=1;5704for(my$i=$from;$i<=$to;$i++) {5705my$pr=$projlist->[$i];57065707if($alternate) {5708print"<tr class=\"dark\">\n";5709}else{5710print"<tr class=\"light\">\n";5711}5712$alternate^=1;57135714if($check_forks) {5715print"<td>";5716if($pr->{'forks'}) {5717my$nforks=scalar@{$pr->{'forks'}};5718if($nforks>0) {5719print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks"),5720-title =>"$nforksforks"},"+");5721}else{5722print$cgi->span({-title =>"$nforksforks"},"+");5723}5724}5725print"</td>\n";5726}5727print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),5728-class=>"list"},5729 esc_html_match_hl($pr->{'path'},$search_regexp)) .5730"</td>\n".5731"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),5732-class=>"list",5733-title =>$pr->{'descr_long'}},5734$search_regexp5735? esc_html_match_hl_chopped($pr->{'descr_long'},5736$pr->{'descr'},$search_regexp)5737: esc_html($pr->{'descr'})) .5738"</td>\n";5739unless($omit_owner) {5740print"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";5741}5742unless($omit_age_column) {5743print"<td class=\"". age_class($pr->{'age'}) ."\">".5744(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n";5745}5746print"<td class=\"link\">".5747$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".5748$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".5749$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".5750$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .5751($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .5752"</td>\n".5753"</tr>\n";5754}5755}57565757sub git_project_list_body {5758# actually uses global variable $project5759my($projlist,$order,$from,$to,$extra,$no_header) =@_;5760my@projects=@$projlist;57615762my$check_forks= gitweb_check_feature('forks');5763my$show_ctags= gitweb_check_feature('ctags');5764my$tagfilter=$show_ctags?$input_params{'ctag'} :undef;5765$check_forks=undef5766if($tagfilter||$search_regexp);57675768# filtering out forks before filling info allows to do less work5769@projects= filter_forks_from_projects_list(\@projects)5770if($check_forks);5771# search_projects_list pre-fills required info5772@projects= search_projects_list(\@projects,5773'search_regexp'=>$search_regexp,5774'tagfilter'=>$tagfilter)5775if($tagfilter||$search_regexp);5776# fill the rest5777my@all_fields= ('descr','descr_long','ctags','category');5778push@all_fields, ('age','age_string')unless($omit_age_column);5779push@all_fields,'owner'unless($omit_owner);5780@projects= fill_project_list_info(\@projects,@all_fields);57815782$order||=$default_projects_order;5783$from=0unlessdefined$from;5784$to=$#projectsif(!defined$to||$#projects<$to);57855786# short circuit5787if($from>$to) {5788print"<center>\n".5789"<b>No such projects found</b><br />\n".5790"Click ".$cgi->a({-href=>href(project=>undef)},"here")." to view all projects<br />\n".5791"</center>\n<br />\n";5792return;5793}57945795@projects= sort_projects_list(\@projects,$order);57965797if($show_ctags) {5798my$ctags= git_gather_all_ctags(\@projects);5799my$cloud= git_populate_project_tagcloud($ctags);5800print git_show_project_tagcloud($cloud,64);5801}58025803print"<table class=\"project_list\">\n";5804unless($no_header) {5805print"<tr>\n";5806if($check_forks) {5807print"<th></th>\n";5808}5809 print_sort_th('project',$order,'Project');5810 print_sort_th('descr',$order,'Description');5811 print_sort_th('owner',$order,'Owner')unless$omit_owner;5812 print_sort_th('age',$order,'Last Change')unless$omit_age_column;5813print"<th></th>\n".# for links5814"</tr>\n";5815}58165817if($projects_list_group_categories) {5818# only display categories with projects in the $from-$to window5819@projects=sort{$a->{'category'}cmp$b->{'category'}}@projects[$from..$to];5820my%categories= build_projlist_by_category(\@projects,$from,$to);5821foreachmy$cat(sort keys%categories) {5822unless($cateq"") {5823print"<tr>\n";5824if($check_forks) {5825print"<td></td>\n";5826}5827print"<td class=\"category\"colspan=\"5\">".esc_html($cat)."</td>\n";5828print"</tr>\n";5829}58305831 git_project_list_rows($categories{$cat},undef,undef,$check_forks);5832}5833}else{5834 git_project_list_rows(\@projects,$from,$to,$check_forks);5835}58365837if(defined$extra) {5838print"<tr>\n";5839if($check_forks) {5840print"<td></td>\n";5841}5842print"<td colspan=\"5\">$extra</td>\n".5843"</tr>\n";5844}5845print"</table>\n";5846}58475848sub git_log_body {5849# uses global variable $project5850my($commitlist,$from,$to,$refs,$extra) =@_;58515852$from=0unlessdefined$from;5853$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);58545855for(my$i=0;$i<=$to;$i++) {5856my%co= %{$commitlist->[$i]};5857next if!%co;5858my$commit=$co{'id'};5859my$ref= format_ref_marker($refs,$commit);5860 git_print_header_div('commit',5861"<span class=\"age\">$co{'age_string'}</span>".5862 esc_html($co{'title'}) .$ref,5863$commit);5864print"<div class=\"title_text\">\n".5865"<div class=\"log_link\">\n".5866$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .5867" | ".5868$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .5869" | ".5870$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .5871"<br/>\n".5872"</div>\n";5873 git_print_authorship(\%co, -tag =>'span');5874print"<br/>\n</div>\n";58755876print"<div class=\"log_body\">\n";5877 git_print_log($co{'comment'}, -final_empty_line=>1);5878print"</div>\n";5879}5880if($extra) {5881print"<div class=\"page_nav\">\n";5882print"$extra\n";5883print"</div>\n";5884}5885}58865887sub git_shortlog_body {5888# uses global variable $project5889my($commitlist,$from,$to,$refs,$extra) =@_;58905891$from=0unlessdefined$from;5892$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);58935894print"<table class=\"shortlog\">\n";5895my$alternate=1;5896for(my$i=$from;$i<=$to;$i++) {5897my%co= %{$commitlist->[$i]};5898my$commit=$co{'id'};5899my$ref= format_ref_marker($refs,$commit);5900if($alternate) {5901print"<tr class=\"dark\">\n";5902}else{5903print"<tr class=\"light\">\n";5904}5905$alternate^=1;5906# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .5907print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5908 format_author_html('td', \%co,10) ."<td>";5909print format_subject_html($co{'title'},$co{'title_short'},5910 href(action=>"commit", hash=>$commit),$ref);5911print"</td>\n".5912"<td class=\"link\">".5913$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".5914$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".5915$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");5916my$snapshot_links= format_snapshot_links($commit);5917if(defined$snapshot_links) {5918print" | ".$snapshot_links;5919}5920print"</td>\n".5921"</tr>\n";5922}5923if(defined$extra) {5924print"<tr>\n".5925"<td colspan=\"4\">$extra</td>\n".5926"</tr>\n";5927}5928print"</table>\n";5929}59305931sub git_history_body {5932# Warning: assumes constant type (blob or tree) during history5933my($commitlist,$from,$to,$refs,$extra,5934$file_name,$file_hash,$ftype) =@_;59355936$from=0unlessdefined$from;5937$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});59385939print"<table class=\"history\">\n";5940my$alternate=1;5941for(my$i=$from;$i<=$to;$i++) {5942my%co= %{$commitlist->[$i]};5943if(!%co) {5944next;5945}5946my$commit=$co{'id'};59475948my$ref= format_ref_marker($refs,$commit);59495950if($alternate) {5951print"<tr class=\"dark\">\n";5952}else{5953print"<tr class=\"light\">\n";5954}5955$alternate^=1;5956print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5957# shortlog: format_author_html('td', \%co, 10)5958 format_author_html('td', \%co,15,3) ."<td>";5959# originally git_history used chop_str($co{'title'}, 50)5960print format_subject_html($co{'title'},$co{'title_short'},5961 href(action=>"commit", hash=>$commit),$ref);5962print"</td>\n".5963"<td class=\"link\">".5964$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5965$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");59665967if($ftypeeq'blob') {5968my$blob_current=$file_hash;5969my$blob_parent= git_get_hash_by_path($commit,$file_name);5970if(defined$blob_current&&defined$blob_parent&&5971$blob_currentne$blob_parent) {5972print" | ".5973$cgi->a({-href => href(action=>"blobdiff",5974 hash=>$blob_current, hash_parent=>$blob_parent,5975 hash_base=>$hash_base, hash_parent_base=>$commit,5976 file_name=>$file_name)},5977"diff to current");5978}5979}5980print"</td>\n".5981"</tr>\n";5982}5983if(defined$extra) {5984print"<tr>\n".5985"<td colspan=\"4\">$extra</td>\n".5986"</tr>\n";5987}5988print"</table>\n";5989}59905991sub git_tags_body {5992# uses global variable $project5993my($taglist,$from,$to,$extra) =@_;5994$from=0unlessdefined$from;5995$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);59965997print"<table class=\"tags\">\n";5998my$alternate=1;5999for(my$i=$from;$i<=$to;$i++) {6000my$entry=$taglist->[$i];6001my%tag=%$entry;6002my$comment=$tag{'subject'};6003my$comment_short;6004if(defined$comment) {6005$comment_short= chop_str($comment,30,5);6006}6007if($alternate) {6008print"<tr class=\"dark\">\n";6009}else{6010print"<tr class=\"light\">\n";6011}6012$alternate^=1;6013if(defined$tag{'age'}) {6014print"<td><i>$tag{'age'}</i></td>\n";6015}else{6016print"<td></td>\n";6017}6018print"<td>".6019$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),6020-class=>"list name"}, esc_html($tag{'name'})) .6021"</td>\n".6022"<td>";6023if(defined$comment) {6024print format_subject_html($comment,$comment_short,6025 href(action=>"tag", hash=>$tag{'id'}));6026}6027print"</td>\n".6028"<td class=\"selflink\">";6029if($tag{'type'}eq"tag") {6030print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");6031}else{6032print" ";6033}6034print"</td>\n".6035"<td class=\"link\">"." | ".6036$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});6037if($tag{'reftype'}eq"commit") {6038print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .6039" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");6040}elsif($tag{'reftype'}eq"blob") {6041print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");6042}6043print"</td>\n".6044"</tr>";6045}6046if(defined$extra) {6047print"<tr>\n".6048"<td colspan=\"5\">$extra</td>\n".6049"</tr>\n";6050}6051print"</table>\n";6052}60536054sub git_heads_body {6055# uses global variable $project6056my($headlist,$head_at,$from,$to,$extra) =@_;6057$from=0unlessdefined$from;6058$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);60596060print"<table class=\"heads\">\n";6061my$alternate=1;6062for(my$i=$from;$i<=$to;$i++) {6063my$entry=$headlist->[$i];6064my%ref=%$entry;6065my$curr=defined$head_at&&$ref{'id'}eq$head_at;6066if($alternate) {6067print"<tr class=\"dark\">\n";6068}else{6069print"<tr class=\"light\">\n";6070}6071$alternate^=1;6072print"<td><i>$ref{'age'}</i></td>\n".6073($curr?"<td class=\"current_head\">":"<td>") .6074$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),6075-class=>"list name"},esc_html($ref{'name'})) .6076"</td>\n".6077"<td class=\"link\">".6078$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".6079$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".6080$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .6081"</td>\n".6082"</tr>";6083}6084if(defined$extra) {6085print"<tr>\n".6086"<td colspan=\"3\">$extra</td>\n".6087"</tr>\n";6088}6089print"</table>\n";6090}60916092# Display a single remote block6093sub git_remote_block {6094my($remote,$rdata,$limit,$head) =@_;60956096my$heads=$rdata->{'heads'};6097my$fetch=$rdata->{'fetch'};6098my$push=$rdata->{'push'};60996100my$urls_table="<table class=\"projects_list\">\n";61016102if(defined$fetch) {6103if($fetcheq$push) {6104$urls_table.= format_repo_url("URL",$fetch);6105}else{6106$urls_table.= format_repo_url("Fetch URL",$fetch);6107$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;6108}6109}elsif(defined$push) {6110$urls_table.= format_repo_url("Push URL",$push);6111}else{6112$urls_table.= format_repo_url("","No remote URL");6113}61146115$urls_table.="</table>\n";61166117my$dots;6118if(defined$limit&&$limit<@$heads) {6119$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");6120}61216122print$urls_table;6123 git_heads_body($heads,$head,0,$limit,$dots);6124}61256126# Display a list of remote names with the respective fetch and push URLs6127sub git_remotes_list {6128my($remotedata,$limit) =@_;6129print"<table class=\"heads\">\n";6130my$alternate=1;6131my@remotes=sort keys%$remotedata;61326133my$limited=$limit&&$limit<@remotes;61346135$#remotes=$limit-1if$limited;61366137while(my$remote=shift@remotes) {6138my$rdata=$remotedata->{$remote};6139my$fetch=$rdata->{'fetch'};6140my$push=$rdata->{'push'};6141if($alternate) {6142print"<tr class=\"dark\">\n";6143}else{6144print"<tr class=\"light\">\n";6145}6146$alternate^=1;6147print"<td>".6148$cgi->a({-href=> href(action=>'remotes', hash=>$remote),6149-class=>"list name"},esc_html($remote)) .6150"</td>";6151print"<td class=\"link\">".6152(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .6153" | ".6154(defined$push?$cgi->a({-href=>$push},"push") :"push") .6155"</td>";61566157print"</tr>\n";6158}61596160if($limited) {6161print"<tr>\n".6162"<td colspan=\"3\">".6163$cgi->a({-href => href(action=>"remotes")},"...") .6164"</td>\n"."</tr>\n";6165}61666167print"</table>";6168}61696170# Display remote heads grouped by remote, unless there are too many6171# remotes, in which case we only display the remote names6172sub git_remotes_body {6173my($remotedata,$limit,$head) =@_;6174if($limitand$limit<keys%$remotedata) {6175 git_remotes_list($remotedata,$limit);6176}else{6177 fill_remote_heads($remotedata);6178while(my($remote,$rdata) =each%$remotedata) {6179 git_print_section({-class=>"remote", -id=>$remote},6180["remotes",$remote,$remote],sub{6181 git_remote_block($remote,$rdata,$limit,$head);6182});6183}6184}6185}61866187sub git_search_message {6188my%co=@_;61896190my$greptype;6191if($searchtypeeq'commit') {6192$greptype="--grep=";6193}elsif($searchtypeeq'author') {6194$greptype="--author=";6195}elsif($searchtypeeq'committer') {6196$greptype="--committer=";6197}6198$greptype.=$searchtext;6199my@commitlist= parse_commits($hash,101, (100*$page),undef,6200$greptype,'--regexp-ignore-case',6201$search_use_regexp?'--extended-regexp':'--fixed-strings');62026203my$paging_nav='';6204if($page>0) {6205$paging_nav.=6206$cgi->a({-href => href(-replay=>1, page=>undef)},6207"first") .6208" ⋅ ".6209$cgi->a({-href => href(-replay=>1, page=>$page-1),6210-accesskey =>"p", -title =>"Alt-p"},"prev");6211}else{6212$paging_nav.="first ⋅ prev";6213}6214my$next_link='';6215if($#commitlist>=100) {6216$next_link=6217$cgi->a({-href => href(-replay=>1, page=>$page+1),6218-accesskey =>"n", -title =>"Alt-n"},"next");6219$paging_nav.=" ⋅$next_link";6220}else{6221$paging_nav.=" ⋅ next";6222}62236224 git_header_html();62256226 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6227 git_print_header_div('commit', esc_html($co{'title'}),$hash);6228if($page==0&& !@commitlist) {6229print"<p>No match.</p>\n";6230}else{6231 git_search_grep_body(\@commitlist,0,99,$next_link);6232}62336234 git_footer_html();6235}62366237sub git_search_changes {6238my%co=@_;62396240local$/="\n";6241open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6242'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6243($search_use_regexp?'--pickaxe-regex': ())6244or die_error(500,"Open git-log failed");62456246 git_header_html();62476248 git_print_page_nav('','',$hash,$co{'tree'},$hash);6249 git_print_header_div('commit', esc_html($co{'title'}),$hash);62506251print"<table class=\"pickaxe search\">\n";6252my$alternate=1;6253undef%co;6254my@files;6255while(my$line= <$fd>) {6256chomp$line;6257next unless$line;62586259my%set= parse_difftree_raw_line($line);6260if(defined$set{'commit'}) {6261# finish previous commit6262if(%co) {6263print"</td>\n".6264"<td class=\"link\">".6265$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},6266"commit") .6267" | ".6268$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'},6269 hash_base=>$co{'id'})},6270"tree") .6271"</td>\n".6272"</tr>\n";6273}62746275if($alternate) {6276print"<tr class=\"dark\">\n";6277}else{6278print"<tr class=\"light\">\n";6279}6280$alternate^=1;6281%co= parse_commit($set{'commit'});6282my$author= chop_and_escape_str($co{'author_name'},15,5);6283print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6284"<td><i>$author</i></td>\n".6285"<td>".6286$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6287-class=>"list subject"},6288 chop_and_escape_str($co{'title'},50) ."<br/>");6289}elsif(defined$set{'to_id'}) {6290next if($set{'to_id'} =~m/^0{40}$/);62916292print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6293 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6294-class=>"list"},6295"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6296"<br/>\n";6297}6298}6299close$fd;63006301# finish last commit (warning: repetition!)6302if(%co) {6303print"</td>\n".6304"<td class=\"link\">".6305$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},6306"commit") .6307" | ".6308$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'},6309 hash_base=>$co{'id'})},6310"tree") .6311"</td>\n".6312"</tr>\n";6313}63146315print"</table>\n";63166317 git_footer_html();6318}63196320sub git_search_files {6321my%co=@_;63226323local$/="\n";6324open my$fd,"-|", git_cmd(),'grep','-n','-z',6325$search_use_regexp? ('-E','-i') :'-F',6326$searchtext,$co{'tree'}6327or die_error(500,"Open git-grep failed");63286329 git_header_html();63306331 git_print_page_nav('','',$hash,$co{'tree'},$hash);6332 git_print_header_div('commit', esc_html($co{'title'}),$hash);63336334print"<table class=\"grep_search\">\n";6335my$alternate=1;6336my$matches=0;6337my$lastfile='';6338my$file_href;6339while(my$line= <$fd>) {6340chomp$line;6341my($file,$lno,$ltext,$binary);6342last if($matches++>1000);6343if($line=~/^Binary file (.+) matches$/) {6344$file=$1;6345$binary=1;6346}else{6347($file,$lno,$ltext) =split(/\0/,$line,3);6348$file=~s/^$co{'tree'}://;6349}6350if($filene$lastfile) {6351$lastfileand print"</td></tr>\n";6352if($alternate++) {6353print"<tr class=\"dark\">\n";6354}else{6355print"<tr class=\"light\">\n";6356}6357$file_href= href(action=>"blob", hash_base=>$co{'id'},6358 file_name=>$file);6359print"<td class=\"list\">".6360$cgi->a({-href =>$file_href, -class=>"list"}, esc_path($file));6361print"</td><td>\n";6362$lastfile=$file;6363}6364if($binary) {6365print"<div class=\"binary\">Binary file</div>\n";6366}else{6367$ltext= untabify($ltext);6368if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6369$ltext= esc_html($1, -nbsp=>1);6370$ltext.='<span class="match">';6371$ltext.= esc_html($2, -nbsp=>1);6372$ltext.='</span>';6373$ltext.= esc_html($3, -nbsp=>1);6374}else{6375$ltext= esc_html($ltext, -nbsp=>1);6376}6377print"<div class=\"pre\">".6378$cgi->a({-href =>$file_href.'#l'.$lno,6379-class=>"linenr"},sprintf('%4i',$lno)) .6380' '.$ltext."</div>\n";6381}6382}6383if($lastfile) {6384print"</td></tr>\n";6385if($matches>1000) {6386print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6387}6388}else{6389print"<div class=\"diff nodifferences\">No matches found</div>\n";6390}6391close$fd;63926393print"</table>\n";63946395 git_footer_html();6396}63976398sub git_search_grep_body {6399my($commitlist,$from,$to,$extra) =@_;6400$from=0unlessdefined$from;6401$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);64026403print"<table class=\"commit_search\">\n";6404my$alternate=1;6405for(my$i=$from;$i<=$to;$i++) {6406my%co= %{$commitlist->[$i]};6407if(!%co) {6408next;6409}6410my$commit=$co{'id'};6411if($alternate) {6412print"<tr class=\"dark\">\n";6413}else{6414print"<tr class=\"light\">\n";6415}6416$alternate^=1;6417print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6418 format_author_html('td', \%co,15,5) .6419"<td>".6420$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6421-class=>"list subject"},6422 chop_and_escape_str($co{'title'},50) ."<br/>");6423my$comment=$co{'comment'};6424foreachmy$line(@$comment) {6425if($line=~m/^(.*?)($search_regexp)(.*)$/i) {6426my($lead,$match,$trail) = ($1,$2,$3);6427$match= chop_str($match,70,5,'center');6428my$contextlen=int((80-length($match))/2);6429$contextlen=30if($contextlen>30);6430$lead= chop_str($lead,$contextlen,10,'left');6431$trail= chop_str($trail,$contextlen,10,'right');64326433$lead= esc_html($lead);6434$match= esc_html($match);6435$trail= esc_html($trail);64366437print"$lead<span class=\"match\">$match</span>$trail<br />";6438}6439}6440print"</td>\n".6441"<td class=\"link\">".6442$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6443" | ".6444$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .6445" | ".6446$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6447print"</td>\n".6448"</tr>\n";6449}6450if(defined$extra) {6451print"<tr>\n".6452"<td colspan=\"3\">$extra</td>\n".6453"</tr>\n";6454}6455print"</table>\n";6456}64576458## ======================================================================6459## ======================================================================6460## actions64616462sub git_project_list {6463my$order=$input_params{'order'};6464if(defined$order&&$order!~m/none|project|descr|owner|age/) {6465 die_error(400,"Unknown order parameter");6466}64676468my@list= git_get_projects_list($project_filter,$strict_export);6469if(!@list) {6470 die_error(404,"No projects found");6471}64726473 git_header_html();6474if(defined$home_text&& -f $home_text) {6475print"<div class=\"index_include\">\n";6476 insert_file($home_text);6477print"</div>\n";6478}64796480 git_project_search_form($searchtext,$search_use_regexp);6481 git_project_list_body(\@list,$order);6482 git_footer_html();6483}64846485sub git_forks {6486my$order=$input_params{'order'};6487if(defined$order&&$order!~m/none|project|descr|owner|age/) {6488 die_error(400,"Unknown order parameter");6489}64906491my$filter=$project;6492$filter=~s/\.git$//;6493my@list= git_get_projects_list($filter);6494if(!@list) {6495 die_error(404,"No forks found");6496}64976498 git_header_html();6499 git_print_page_nav('','');6500 git_print_header_div('summary',"$projectforks");6501 git_project_list_body(\@list,$order);6502 git_footer_html();6503}65046505sub git_project_index {6506my@projects= git_get_projects_list($project_filter,$strict_export);6507if(!@projects) {6508 die_error(404,"No projects found");6509}65106511print$cgi->header(6512-type =>'text/plain',6513-charset =>'utf-8',6514-content_disposition =>'inline; filename="index.aux"');65156516foreachmy$pr(@projects) {6517if(!exists$pr->{'owner'}) {6518$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");6519}65206521my($path,$owner) = ($pr->{'path'},$pr->{'owner'});6522# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '6523$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;6524$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;6525$path=~s/ /\+/g;6526$owner=~s/ /\+/g;65276528print"$path$owner\n";6529}6530}65316532sub git_summary {6533my$descr= git_get_project_description($project) ||"none";6534my%co= parse_commit("HEAD");6535my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();6536my$head=$co{'id'};6537my$remote_heads= gitweb_check_feature('remote_heads');65386539my$owner= git_get_project_owner($project);65406541my$refs= git_get_references();6542# These get_*_list functions return one more to allow us to see if6543# there are more ...6544my@taglist= git_get_tags_list(16);6545my@headlist= git_get_heads_list(16);6546my%remotedata=$remote_heads? git_get_remotes_list() : ();6547my@forklist;6548my$check_forks= gitweb_check_feature('forks');65496550if($check_forks) {6551# find forks of a project6552my$filter=$project;6553$filter=~s/\.git$//;6554@forklist= git_get_projects_list($filter);6555# filter out forks of forks6556@forklist= filter_forks_from_projects_list(\@forklist)6557if(@forklist);6558}65596560 git_header_html();6561 git_print_page_nav('summary','',$head);65626563print"<div class=\"title\"> </div>\n";6564print"<table class=\"projects_list\">\n".6565"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n";6566if($ownerand not$omit_owner) {6567print"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";6568}6569if(defined$cd{'rfc2822'}) {6570print"<tr id=\"metadata_lchange\"><td>last change</td>".6571"<td>".format_timestamp_html(\%cd)."</td></tr>\n";6572}65736574# use per project git URL list in $projectroot/$project/cloneurl6575# or make project git URL from git base URL and project name6576my$url_tag="URL";6577my@url_list= git_get_project_url_list($project);6578@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;6579foreachmy$git_url(@url_list) {6580next unless$git_url;6581print format_repo_url($url_tag,$git_url);6582$url_tag="";6583}65846585# Tag cloud6586my$show_ctags= gitweb_check_feature('ctags');6587if($show_ctags) {6588my$ctags= git_get_project_ctags($project);6589if(%$ctags) {6590# without ability to add tags, don't show if there are none6591my$cloud= git_populate_project_tagcloud($ctags);6592print"<tr id=\"metadata_ctags\">".6593"<td>content tags</td>".6594"<td>".git_show_project_tagcloud($cloud,48)."</td>".6595"</tr>\n";6596}6597}65986599print"</table>\n";66006601# If XSS prevention is on, we don't include README.html.6602# TODO: Allow a readme in some safe format.6603if(!$prevent_xss&& -s "$projectroot/$project/README.html") {6604print"<div class=\"title\">readme</div>\n".6605"<div class=\"readme\">\n";6606 insert_file("$projectroot/$project/README.html");6607print"\n</div>\n";# class="readme"6608}66096610# we need to request one more than 16 (0..15) to check if6611# those 16 are all6612my@commitlist=$head? parse_commits($head,17) : ();6613if(@commitlist) {6614 git_print_header_div('shortlog');6615 git_shortlog_body(\@commitlist,0,15,$refs,6616$#commitlist<=15?undef:6617$cgi->a({-href => href(action=>"shortlog")},"..."));6618}66196620if(@taglist) {6621 git_print_header_div('tags');6622 git_tags_body(\@taglist,0,15,6623$#taglist<=15?undef:6624$cgi->a({-href => href(action=>"tags")},"..."));6625}66266627if(@headlist) {6628 git_print_header_div('heads');6629 git_heads_body(\@headlist,$head,0,15,6630$#headlist<=15?undef:6631$cgi->a({-href => href(action=>"heads")},"..."));6632}66336634if(%remotedata) {6635 git_print_header_div('remotes');6636 git_remotes_body(\%remotedata,15,$head);6637}66386639if(@forklist) {6640 git_print_header_div('forks');6641 git_project_list_body(\@forklist,'age',0,15,6642$#forklist<=15?undef:6643$cgi->a({-href => href(action=>"forks")},"..."),6644'no_header');6645}66466647 git_footer_html();6648}66496650sub git_tag {6651my%tag= parse_tag($hash);66526653if(!%tag) {6654 die_error(404,"Unknown tag object");6655}66566657my$head= git_get_head_hash($project);6658 git_header_html();6659 git_print_page_nav('','',$head,undef,$head);6660 git_print_header_div('commit', esc_html($tag{'name'}),$hash);6661print"<div class=\"title_text\">\n".6662"<table class=\"object_header\">\n".6663"<tr>\n".6664"<td>object</td>\n".6665"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},6666$tag{'object'}) ."</td>\n".6667"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},6668$tag{'type'}) ."</td>\n".6669"</tr>\n";6670if(defined($tag{'author'})) {6671 git_print_authorship_rows(\%tag,'author');6672}6673print"</table>\n\n".6674"</div>\n";6675print"<div class=\"page_body\">";6676my$comment=$tag{'comment'};6677foreachmy$line(@$comment) {6678chomp$line;6679print esc_html($line, -nbsp=>1) ."<br/>\n";6680}6681print"</div>\n";6682 git_footer_html();6683}66846685sub git_blame_common {6686my$format=shift||'porcelain';6687if($formateq'porcelain'&&$input_params{'javascript'}) {6688$format='incremental';6689$action='blame_incremental';# for page title etc6690}66916692# permissions6693 gitweb_check_feature('blame')6694or die_error(403,"Blame view not allowed");66956696# error checking6697 die_error(400,"No file name given")unless$file_name;6698$hash_base||= git_get_head_hash($project);6699 die_error(404,"Couldn't find base commit")unless$hash_base;6700my%co= parse_commit($hash_base)6701or die_error(404,"Commit not found");6702my$ftype="blob";6703if(!defined$hash) {6704$hash= git_get_hash_by_path($hash_base,$file_name,"blob")6705or die_error(404,"Error looking up file");6706}else{6707$ftype= git_get_type($hash);6708if($ftype!~"blob") {6709 die_error(400,"Object is not a blob");6710}6711}67126713my$fd;6714if($formateq'incremental') {6715# get file contents (as base)6716open$fd,"-|", git_cmd(),'cat-file','blob',$hash6717or die_error(500,"Open git-cat-file failed");6718}elsif($formateq'data') {6719# run git-blame --incremental6720open$fd,"-|", git_cmd(),"blame","--incremental",6721$hash_base,"--",$file_name6722or die_error(500,"Open git-blame --incremental failed");6723}else{6724# run git-blame --porcelain6725open$fd,"-|", git_cmd(),"blame",'-p',6726$hash_base,'--',$file_name6727or die_error(500,"Open git-blame --porcelain failed");6728}6729binmode$fd,':utf8';67306731# incremental blame data returns early6732if($formateq'data') {6733print$cgi->header(6734-type=>"text/plain", -charset =>"utf-8",6735-status=>"200 OK");6736local$| =1;# output autoflush6737while(my$line= <$fd>) {6738print to_utf8($line);6739}6740close$fd6741or print"ERROR$!\n";67426743print'END';6744if(defined$t0&& gitweb_check_feature('timed')) {6745print' '.6746 tv_interval($t0, [ gettimeofday() ]).6747' '.$number_of_git_cmds;6748}6749print"\n";67506751return;6752}67536754# page header6755 git_header_html();6756my$formats_nav=6757$cgi->a({-href => href(action=>"blob", -replay=>1)},6758"blob") .6759" | ";6760if($formateq'incremental') {6761$formats_nav.=6762$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},6763"blame") ." (non-incremental)";6764}else{6765$formats_nav.=6766$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},6767"blame") ." (incremental)";6768}6769$formats_nav.=6770" | ".6771$cgi->a({-href => href(action=>"history", -replay=>1)},6772"history") .6773" | ".6774$cgi->a({-href => href(action=>$action, file_name=>$file_name)},6775"HEAD");6776 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6777 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6778 git_print_page_path($file_name,$ftype,$hash_base);67796780# page body6781if($formateq'incremental') {6782print"<noscript>\n<div class=\"error\"><center><b>\n".6783"This page requires JavaScript to run.\nUse ".6784$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},6785'this page').6786" instead.\n".6787"</b></center></div>\n</noscript>\n";67886789print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;6790}67916792print qq!<div class="page_body">\n!;6793print qq!<div id="progress_info">.../ ...</div>\n!6794if($formateq'incremental');6795print qq!<table id="blame_table"class="blame" width="100%">\n!.6796#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.6797 qq!<thead>\n!.6798 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.6799 qq!</thead>\n!.6800 qq!<tbody>\n!;68016802my@rev_color=qw(light dark);6803my$num_colors=scalar(@rev_color);6804my$current_color=0;68056806if($formateq'incremental') {6807my$color_class=$rev_color[$current_color];68086809#contents of a file6810my$linenr=0;6811 LINE:6812while(my$line= <$fd>) {6813chomp$line;6814$linenr++;68156816print qq!<tr id="l$linenr"class="$color_class">!.6817 qq!<td class="sha1"><a href=""> </a></td>!.6818 qq!<td class="linenr">!.6819 qq!<a class="linenr" href="">$linenr</a></td>!;6820print qq!<td class="pre">! . esc_html($line) ."</td>\n";6821print qq!</tr>\n!;6822}68236824}else{# porcelain, i.e. ordinary blame6825my%metainfo= ();# saves information about commits68266827# blame data6828 LINE:6829while(my$line= <$fd>) {6830chomp$line;6831# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]6832# no <lines in group> for subsequent lines in group of lines6833my($full_rev,$orig_lineno,$lineno,$group_size) =6834($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);6835if(!exists$metainfo{$full_rev}) {6836$metainfo{$full_rev} = {'nprevious'=>0};6837}6838my$meta=$metainfo{$full_rev};6839my$data;6840while($data= <$fd>) {6841chomp$data;6842last if($data=~s/^\t//);# contents of line6843if($data=~/^(\S+)(?: (.*))?$/) {6844$meta->{$1} =$2unlessexists$meta->{$1};6845}6846if($data=~/^previous /) {6847$meta->{'nprevious'}++;6848}6849}6850my$short_rev=substr($full_rev,0,8);6851my$author=$meta->{'author'};6852my%date=6853 parse_date($meta->{'author-time'},$meta->{'author-tz'});6854my$date=$date{'iso-tz'};6855if($group_size) {6856$current_color= ($current_color+1) %$num_colors;6857}6858my$tr_class=$rev_color[$current_color];6859$tr_class.=' boundary'if(exists$meta->{'boundary'});6860$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);6861$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);6862print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";6863if($group_size) {6864print"<td class=\"sha1\"";6865print" title=\"". esc_html($author) .",$date\"";6866print" rowspan=\"$group_size\""if($group_size>1);6867print">";6868print$cgi->a({-href => href(action=>"commit",6869 hash=>$full_rev,6870 file_name=>$file_name)},6871 esc_html($short_rev));6872if($group_size>=2) {6873my@author_initials= ($author=~/\b([[:upper:]])\B/g);6874if(@author_initials) {6875print"<br />".6876 esc_html(join('',@author_initials));6877# or join('.', ...)6878}6879}6880print"</td>\n";6881}6882# 'previous' <sha1 of parent commit> <filename at commit>6883if(exists$meta->{'previous'} &&6884$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {6885$meta->{'parent'} =$1;6886$meta->{'file_parent'} = unquote($2);6887}6888my$linenr_commit=6889exists($meta->{'parent'}) ?6890$meta->{'parent'} :$full_rev;6891my$linenr_filename=6892exists($meta->{'file_parent'}) ?6893$meta->{'file_parent'} : unquote($meta->{'filename'});6894my$blamed= href(action =>'blame',6895 file_name =>$linenr_filename,6896 hash_base =>$linenr_commit);6897print"<td class=\"linenr\">";6898print$cgi->a({ -href =>"$blamed#l$orig_lineno",6899-class=>"linenr"},6900 esc_html($lineno));6901print"</td>";6902print"<td class=\"pre\">". esc_html($data) ."</td>\n";6903print"</tr>\n";6904}# end while69056906}69076908# footer6909print"</tbody>\n".6910"</table>\n";# class="blame"6911print"</div>\n";# class="blame_body"6912close$fd6913or print"Reading blob failed\n";69146915 git_footer_html();6916}69176918sub git_blame {6919 git_blame_common();6920}69216922sub git_blame_incremental {6923 git_blame_common('incremental');6924}69256926sub git_blame_data {6927 git_blame_common('data');6928}69296930sub git_tags {6931my$head= git_get_head_hash($project);6932 git_header_html();6933 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));6934 git_print_header_div('summary',$project);69356936my@tagslist= git_get_tags_list();6937if(@tagslist) {6938 git_tags_body(\@tagslist);6939}6940 git_footer_html();6941}69426943sub git_heads {6944my$head= git_get_head_hash($project);6945 git_header_html();6946 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));6947 git_print_header_div('summary',$project);69486949my@headslist= git_get_heads_list();6950if(@headslist) {6951 git_heads_body(\@headslist,$head);6952}6953 git_footer_html();6954}69556956# used both for single remote view and for list of all the remotes6957sub git_remotes {6958 gitweb_check_feature('remote_heads')6959or die_error(403,"Remote heads view is disabled");69606961my$head= git_get_head_hash($project);6962my$remote=$input_params{'hash'};69636964my$remotedata= git_get_remotes_list($remote);6965 die_error(500,"Unable to get remote information")unlessdefined$remotedata;69666967unless(%$remotedata) {6968 die_error(404,defined$remote?6969"Remote$remotenot found":6970"No remotes found");6971}69726973 git_header_html(undef,undef, -action_extra =>$remote);6974 git_print_page_nav('','',$head,undef,$head,6975 format_ref_views($remote?'':'remotes'));69766977 fill_remote_heads($remotedata);6978if(defined$remote) {6979 git_print_header_div('remotes',"$remoteremote for$project");6980 git_remote_block($remote,$remotedata->{$remote},undef,$head);6981}else{6982 git_print_header_div('summary',"$projectremotes");6983 git_remotes_body($remotedata,undef,$head);6984}69856986 git_footer_html();6987}69886989sub git_blob_plain {6990my$type=shift;6991my$expires;69926993if(!defined$hash) {6994if(defined$file_name) {6995my$base=$hash_base|| git_get_head_hash($project);6996$hash= git_get_hash_by_path($base,$file_name,"blob")6997or die_error(404,"Cannot find file");6998}else{6999 die_error(400,"No file name defined");7000}7001}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {7002# blobs defined by non-textual hash id's can be cached7003$expires="+1d";7004}70057006open my$fd,"-|", git_cmd(),"cat-file","blob",$hash7007or die_error(500,"Open git-cat-file blob '$hash' failed");70087009# content-type (can include charset)7010$type= blob_contenttype($fd,$file_name,$type);70117012# "save as" filename, even when no $file_name is given7013my$save_as="$hash";7014if(defined$file_name) {7015$save_as=$file_name;7016}elsif($type=~m/^text\//) {7017$save_as.='.txt';7018}70197020# With XSS prevention on, blobs of all types except a few known safe7021# ones are served with "Content-Disposition: attachment" to make sure7022# they don't run in our security domain. For certain image types,7023# blob view writes an <img> tag referring to blob_plain view, and we7024# want to be sure not to break that by serving the image as an7025# attachment (though Firefox 3 doesn't seem to care).7026my$sandbox=$prevent_xss&&7027$type!~m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;70287029# serve text/* as text/plain7030if($prevent_xss&&7031($type=~m!^text/[a-z]+\b(.*)$!||7032($type=~m!^[a-z]+/[a-z]\+xml\b(.*)$!&& -T $fd))) {7033my$rest=$1;7034$rest=defined$rest?$rest:'';7035$type="text/plain$rest";7036}70377038print$cgi->header(7039-type =>$type,7040-expires =>$expires,7041-content_disposition =>7042($sandbox?'attachment':'inline')7043.'; filename="'.$save_as.'"');7044local$/=undef;7045binmode STDOUT,':raw';7046print<$fd>;7047binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi7048close$fd;7049}70507051sub git_blob {7052my$expires;70537054if(!defined$hash) {7055if(defined$file_name) {7056my$base=$hash_base|| git_get_head_hash($project);7057$hash= git_get_hash_by_path($base,$file_name,"blob")7058or die_error(404,"Cannot find file");7059}else{7060 die_error(400,"No file name defined");7061}7062}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {7063# blobs defined by non-textual hash id's can be cached7064$expires="+1d";7065}70667067my$have_blame= gitweb_check_feature('blame');7068open my$fd,"-|", git_cmd(),"cat-file","blob",$hash7069or die_error(500,"Couldn't cat$file_name,$hash");7070my$mimetype= blob_mimetype($fd,$file_name);7071# use 'blob_plain' (aka 'raw') view for files that cannot be displayed7072if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {7073close$fd;7074return git_blob_plain($mimetype);7075}7076# we can have blame only for text/* mimetype7077$have_blame&&= ($mimetype=~m!^text/!);70787079my$highlight= gitweb_check_feature('highlight');7080my$syntax= guess_file_syntax($highlight,$file_name);7081$fd= run_highlighter($fd,$highlight,$syntax);70827083 git_header_html(undef,$expires);7084my$formats_nav='';7085if(defined$hash_base&& (my%co= parse_commit($hash_base))) {7086if(defined$file_name) {7087if($have_blame) {7088$formats_nav.=7089$cgi->a({-href => href(action=>"blame", -replay=>1)},7090"blame") .7091" | ";7092}7093$formats_nav.=7094$cgi->a({-href => href(action=>"history", -replay=>1)},7095"history") .7096" | ".7097$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},7098"raw") .7099" | ".7100$cgi->a({-href => href(action=>"blob",7101 hash_base=>"HEAD", file_name=>$file_name)},7102"HEAD");7103}else{7104$formats_nav.=7105$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},7106"raw");7107}7108 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);7109 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);7110}else{7111print"<div class=\"page_nav\">\n".7112"<br/><br/></div>\n".7113"<div class=\"title\">".esc_html($hash)."</div>\n";7114}7115 git_print_page_path($file_name,"blob",$hash_base);7116print"<div class=\"page_body\">\n";7117if($mimetype=~m!^image/!) {7118print qq!<img class="blob" type="!.esc_attr($mimetype).qq!"!;7119if($file_name) {7120print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;7121}7122print qq! src="! .7123 href(action=>"blob_plain", hash=>$hash,7124 hash_base=>$hash_base, file_name=>$file_name) .7125 qq!"/>\n!;7126}else{7127my$nr;7128while(my$line= <$fd>) {7129chomp$line;7130$nr++;7131$line= untabify($line);7132printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,7133$nr, esc_attr(href(-replay =>1)),$nr,$nr,7134$highlight? sanitize($line) : esc_html($line, -nbsp=>1);7135}7136}7137close$fd7138or print"Reading blob failed.\n";7139print"</div>";7140 git_footer_html();7141}71427143sub git_tree {7144if(!defined$hash_base) {7145$hash_base="HEAD";7146}7147if(!defined$hash) {7148if(defined$file_name) {7149$hash= git_get_hash_by_path($hash_base,$file_name,"tree");7150}else{7151$hash=$hash_base;7152}7153}7154 die_error(404,"No such tree")unlessdefined($hash);71557156my$show_sizes= gitweb_check_feature('show-sizes');7157my$have_blame= gitweb_check_feature('blame');71587159my@entries= ();7160{7161local$/="\0";7162open my$fd,"-|", git_cmd(),"ls-tree",'-z',7163($show_sizes?'-l': ()),@extra_options,$hash7164or die_error(500,"Open git-ls-tree failed");7165@entries=map{chomp;$_} <$fd>;7166close$fd7167or die_error(404,"Reading tree failed");7168}71697170my$refs= git_get_references();7171my$ref= format_ref_marker($refs,$hash_base);7172 git_header_html();7173my$basedir='';7174if(defined$hash_base&& (my%co= parse_commit($hash_base))) {7175my@views_nav= ();7176if(defined$file_name) {7177push@views_nav,7178$cgi->a({-href => href(action=>"history", -replay=>1)},7179"history"),7180$cgi->a({-href => href(action=>"tree",7181 hash_base=>"HEAD", file_name=>$file_name)},7182"HEAD"),7183}7184my$snapshot_links= format_snapshot_links($hash);7185if(defined$snapshot_links) {7186# FIXME: Should be available when we have no hash base as well.7187push@views_nav,$snapshot_links;7188}7189 git_print_page_nav('tree','',$hash_base,undef,undef,7190join(' | ',@views_nav));7191 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);7192}else{7193undef$hash_base;7194print"<div class=\"page_nav\">\n";7195print"<br/><br/></div>\n";7196print"<div class=\"title\">".esc_html($hash)."</div>\n";7197}7198if(defined$file_name) {7199$basedir=$file_name;7200if($basedirne''&&substr($basedir, -1)ne'/') {7201$basedir.='/';7202}7203 git_print_page_path($file_name,'tree',$hash_base);7204}7205print"<div class=\"page_body\">\n";7206print"<table class=\"tree\">\n";7207my$alternate=1;7208# '..' (top directory) link if possible7209if(defined$hash_base&&7210defined$file_name&&$file_name=~m![^/]+$!) {7211if($alternate) {7212print"<tr class=\"dark\">\n";7213}else{7214print"<tr class=\"light\">\n";7215}7216$alternate^=1;72177218my$up=$file_name;7219$up=~s!/?[^/]+$!!;7220undef$upunless$up;7221# based on git_print_tree_entry7222print'<td class="mode">'. mode_str('040000') ."</td>\n";7223print'<td class="size"> </td>'."\n"if$show_sizes;7224print'<td class="list">';7225print$cgi->a({-href => href(action=>"tree",7226 hash_base=>$hash_base,7227 file_name=>$up)},7228"..");7229print"</td>\n";7230print"<td class=\"link\"></td>\n";72317232print"</tr>\n";7233}7234foreachmy$line(@entries) {7235my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);72367237if($alternate) {7238print"<tr class=\"dark\">\n";7239}else{7240print"<tr class=\"light\">\n";7241}7242$alternate^=1;72437244 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);72457246print"</tr>\n";7247}7248print"</table>\n".7249"</div>";7250 git_footer_html();7251}72527253sub sanitize_for_filename {7254my$name=shift;72557256$name=~s!/!-!g;7257$name=~s/[^[:alnum:]_.-]//g;72587259return$name;7260}72617262sub snapshot_name {7263my($project,$hash) =@_;72647265# path/to/project.git -> project7266# path/to/project/.git -> project7267my$name= to_utf8($project);7268$name=~ s,([^/])/*\.git$,$1,;7269$name= sanitize_for_filename(basename($name));72707271my$ver=$hash;7272if($hash=~/^[0-9a-fA-F]+$/) {7273# shorten SHA-1 hash7274my$full_hash= git_get_full_hash($project,$hash);7275if($full_hash=~/^$hash/&&length($hash) >7) {7276$ver= git_get_short_hash($project,$hash);7277}7278}elsif($hash=~m!^refs/tags/(.*)$!) {7279# tags don't need shortened SHA-1 hash7280$ver=$1;7281}else{7282# branches and other need shortened SHA-1 hash7283my$strip_refs=join'|',map{quotemeta} get_branch_refs();7284if($hash=~m!^refs/($strip_refs|remotes)/(.*)$!) {7285my$ref_dir= (defined$1) ?$1:'';7286$ver=$2;72877288$ref_dir= sanitize_for_filename($ref_dir);7289# for refs neither in heads nor remotes we want to7290# add a ref dir to archive name7291if($ref_dirne''and$ref_dirne'heads'and$ref_dirne'remotes') {7292$ver=$ref_dir.'-'.$ver;7293}7294}7295$ver.='-'. git_get_short_hash($project,$hash);7296}7297# special case of sanitization for filename - we change7298# slashes to dots instead of dashes7299# in case of hierarchical branch names7300$ver=~s!/!.!g;7301$ver=~s/[^[:alnum:]_.-]//g;73027303# name = project-version_string7304$name="$name-$ver";73057306returnwantarray? ($name,$name) :$name;7307}73087309sub exit_if_unmodified_since {7310my($latest_epoch) =@_;7311our$cgi;73127313my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7314if(defined$if_modified) {7315my$since;7316if(eval{require HTTP::Date;1; }) {7317$since= HTTP::Date::str2time($if_modified);7318}elsif(eval{require Time::ParseDate;1; }) {7319$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7320}7321if(defined$since&&$latest_epoch<=$since) {7322my%latest_date= parse_date($latest_epoch);7323print$cgi->header(7324-last_modified =>$latest_date{'rfc2822'},7325-status =>'304 Not Modified');7326goto DONE_GITWEB;7327}7328}7329}73307331sub git_snapshot {7332my$format=$input_params{'snapshot_format'};7333if(!@snapshot_fmts) {7334 die_error(403,"Snapshots not allowed");7335}7336# default to first supported snapshot format7337$format||=$snapshot_fmts[0];7338if($format!~m/^[a-z0-9]+$/) {7339 die_error(400,"Invalid snapshot format parameter");7340}elsif(!exists($known_snapshot_formats{$format})) {7341 die_error(400,"Unknown snapshot format");7342}elsif($known_snapshot_formats{$format}{'disabled'}) {7343 die_error(403,"Snapshot format not allowed");7344}elsif(!grep($_eq$format,@snapshot_fmts)) {7345 die_error(403,"Unsupported snapshot format");7346}73477348my$type= git_get_type("$hash^{}");7349if(!$type) {7350 die_error(404,'Object does not exist');7351}elsif($typeeq'blob') {7352 die_error(400,'Object is not a tree-ish');7353}73547355my($name,$prefix) = snapshot_name($project,$hash);7356my$filename="$name$known_snapshot_formats{$format}{'suffix'}";73577358my%co= parse_commit($hash);7359 exit_if_unmodified_since($co{'committer_epoch'})if%co;73607361my$cmd= quote_command(7362 git_cmd(),'archive',7363"--format=$known_snapshot_formats{$format}{'format'}",7364"--prefix=$prefix/",$hash);7365if(exists$known_snapshot_formats{$format}{'compressor'}) {7366$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});7367}73687369$filename=~s/(["\\])/\\$1/g;7370my%latest_date;7371if(%co) {7372%latest_date= parse_date($co{'committer_epoch'},$co{'committer_tz'});7373}73747375print$cgi->header(7376-type =>$known_snapshot_formats{$format}{'type'},7377-content_disposition =>'inline; filename="'.$filename.'"',7378%co? (-last_modified =>$latest_date{'rfc2822'}) : (),7379-status =>'200 OK');73807381open my$fd,"-|",$cmd7382or die_error(500,"Execute git-archive failed");7383binmode STDOUT,':raw';7384print<$fd>;7385binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi7386close$fd;7387}73887389sub git_log_generic {7390my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;73917392my$head= git_get_head_hash($project);7393if(!defined$base) {7394$base=$head;7395}7396if(!defined$page) {7397$page=0;7398}7399my$refs= git_get_references();74007401my$commit_hash=$base;7402if(defined$parent) {7403$commit_hash="$parent..$base";7404}7405my@commitlist=7406 parse_commits($commit_hash,101, (100*$page),7407defined$file_name? ($file_name,"--full-history") : ());74087409my$ftype;7410if(!defined$file_hash&&defined$file_name) {7411# some commits could have deleted file in question,7412# and not have it in tree, but one of them has to have it7413for(my$i=0;$i<@commitlist;$i++) {7414$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);7415last ifdefined$file_hash;7416}7417}7418if(defined$file_hash) {7419$ftype= git_get_type($file_hash);7420}7421if(defined$file_name&& !defined$ftype) {7422 die_error(500,"Unknown type of object");7423}7424my%co;7425if(defined$file_name) {7426%co= parse_commit($base)7427or die_error(404,"Unknown commit object");7428}742974307431my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);7432my$next_link='';7433if($#commitlist>=100) {7434$next_link=7435$cgi->a({-href => href(-replay=>1, page=>$page+1),7436-accesskey =>"n", -title =>"Alt-n"},"next");7437}7438my$patch_max= gitweb_get_feature('patches');7439if($patch_max&& !defined$file_name) {7440if($patch_max<0||@commitlist<=$patch_max) {7441$paging_nav.=" ⋅ ".7442$cgi->a({-href => href(action=>"patches", -replay=>1)},7443"patches");7444}7445}74467447 git_header_html();7448 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);7449if(defined$file_name) {7450 git_print_header_div('commit', esc_html($co{'title'}),$base);7451}else{7452 git_print_header_div('summary',$project)7453}7454 git_print_page_path($file_name,$ftype,$hash_base)7455if(defined$file_name);74567457$body_subr->(\@commitlist,0,99,$refs,$next_link,7458$file_name,$file_hash,$ftype);74597460 git_footer_html();7461}74627463sub git_log {7464 git_log_generic('log', \&git_log_body,7465$hash,$hash_parent);7466}74677468sub git_commit {7469$hash||=$hash_base||"HEAD";7470my%co= parse_commit($hash)7471or die_error(404,"Unknown commit object");74727473my$parent=$co{'parent'};7474my$parents=$co{'parents'};# listref74757476# we need to prepare $formats_nav before any parameter munging7477my$formats_nav;7478if(!defined$parent) {7479# --root commitdiff7480$formats_nav.='(initial)';7481}elsif(@$parents==1) {7482# single parent commit7483$formats_nav.=7484'(parent: '.7485$cgi->a({-href => href(action=>"commit",7486 hash=>$parent)},7487 esc_html(substr($parent,0,7))) .7488')';7489}else{7490# merge commit7491$formats_nav.=7492'(merge: '.7493join(' ',map{7494$cgi->a({-href => href(action=>"commit",7495 hash=>$_)},7496 esc_html(substr($_,0,7)));7497}@$parents) .7498')';7499}7500if(gitweb_check_feature('patches') &&@$parents<=1) {7501$formats_nav.=" | ".7502$cgi->a({-href => href(action=>"patch", -replay=>1)},7503"patch");7504}75057506if(!defined$parent) {7507$parent="--root";7508}7509my@difftree;7510open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",7511@diff_opts,7512(@$parents<=1?$parent:'-c'),7513$hash,"--"7514or die_error(500,"Open git-diff-tree failed");7515@difftree=map{chomp;$_} <$fd>;7516close$fdor die_error(404,"Reading git-diff-tree failed");75177518# non-textual hash id's can be cached7519my$expires;7520if($hash=~m/^[0-9a-fA-F]{40}$/) {7521$expires="+1d";7522}7523my$refs= git_get_references();7524my$ref= format_ref_marker($refs,$co{'id'});75257526 git_header_html(undef,$expires);7527 git_print_page_nav('commit','',7528$hash,$co{'tree'},$hash,7529$formats_nav);75307531if(defined$co{'parent'}) {7532 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);7533}else{7534 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);7535}7536print"<div class=\"title_text\">\n".7537"<table class=\"object_header\">\n";7538 git_print_authorship_rows(\%co);7539print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";7540print"<tr>".7541"<td>tree</td>".7542"<td class=\"sha1\">".7543$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),7544class=>"list"},$co{'tree'}) .7545"</td>".7546"<td class=\"link\">".7547$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},7548"tree");7549my$snapshot_links= format_snapshot_links($hash);7550if(defined$snapshot_links) {7551print" | ".$snapshot_links;7552}7553print"</td>".7554"</tr>\n";75557556foreachmy$par(@$parents) {7557print"<tr>".7558"<td>parent</td>".7559"<td class=\"sha1\">".7560$cgi->a({-href => href(action=>"commit", hash=>$par),7561class=>"list"},$par) .7562"</td>".7563"<td class=\"link\">".7564$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .7565" | ".7566$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .7567"</td>".7568"</tr>\n";7569}7570print"</table>".7571"</div>\n";75727573print"<div class=\"page_body\">\n";7574 git_print_log($co{'comment'});7575print"</div>\n";75767577 git_difftree_body(\@difftree,$hash,@$parents);75787579 git_footer_html();7580}75817582sub git_object {7583# object is defined by:7584# - hash or hash_base alone7585# - hash_base and file_name7586my$type;75877588# - hash or hash_base alone7589if($hash|| ($hash_base&& !defined$file_name)) {7590my$object_id=$hash||$hash_base;75917592open my$fd,"-|", quote_command(7593 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'7594or die_error(404,"Object does not exist");7595$type= <$fd>;7596defined$type&&chomp$type;7597close$fd7598or die_error(404,"Object does not exist");75997600# - hash_base and file_name7601}elsif($hash_base&&defined$file_name) {7602$file_name=~ s,/+$,,;76037604system(git_cmd(),"cat-file",'-e',$hash_base) ==07605or die_error(404,"Base object does not exist");76067607# here errors should not happen7608open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name7609or die_error(500,"Open git-ls-tree failed");7610my$line= <$fd>;7611close$fd;76127613#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'7614unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {7615 die_error(404,"File or directory for given base does not exist");7616}7617$type=$2;7618$hash=$3;7619}else{7620 die_error(400,"Not enough information to find object");7621}76227623print$cgi->redirect(-uri => href(action=>$type, -full=>1,7624 hash=>$hash, hash_base=>$hash_base,7625 file_name=>$file_name),7626-status =>'302 Found');7627}76287629sub git_blobdiff {7630my$format=shift||'html';7631my$diff_style=$input_params{'diff_style'} ||'inline';76327633my$fd;7634my@difftree;7635my%diffinfo;7636my$expires;76377638# preparing $fd and %diffinfo for git_patchset_body7639# new style URI7640if(defined$hash_base&&defined$hash_parent_base) {7641if(defined$file_name) {7642# read raw output7643open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7644$hash_parent_base,$hash_base,7645"--", (defined$file_parent?$file_parent: ()),$file_name7646or die_error(500,"Open git-diff-tree failed");7647@difftree=map{chomp;$_} <$fd>;7648close$fd7649or die_error(404,"Reading git-diff-tree failed");7650@difftree7651or die_error(404,"Blob diff not found");76527653}elsif(defined$hash&&7654$hash=~/[0-9a-fA-F]{40}/) {7655# try to find filename from $hash76567657# read filtered raw output7658open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7659$hash_parent_base,$hash_base,"--"7660or die_error(500,"Open git-diff-tree failed");7661@difftree=7662# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'7663# $hash == to_id7664grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}7665map{chomp;$_} <$fd>;7666close$fd7667or die_error(404,"Reading git-diff-tree failed");7668@difftree7669or die_error(404,"Blob diff not found");76707671}else{7672 die_error(400,"Missing one of the blob diff parameters");7673}76747675if(@difftree>1) {7676 die_error(400,"Ambiguous blob diff specification");7677}76787679%diffinfo= parse_difftree_raw_line($difftree[0]);7680$file_parent||=$diffinfo{'from_file'} ||$file_name;7681$file_name||=$diffinfo{'to_file'};76827683$hash_parent||=$diffinfo{'from_id'};7684$hash||=$diffinfo{'to_id'};76857686# non-textual hash id's can be cached7687if($hash_base=~m/^[0-9a-fA-F]{40}$/&&7688$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {7689$expires='+1d';7690}76917692# open patch output7693open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7694'-p', ($formateq'html'?"--full-index": ()),7695$hash_parent_base,$hash_base,7696"--", (defined$file_parent?$file_parent: ()),$file_name7697or die_error(500,"Open git-diff-tree failed");7698}76997700# old/legacy style URI -- not generated anymore since 1.4.3.7701if(!%diffinfo) {7702 die_error('404 Not Found',"Missing one of the blob diff parameters")7703}77047705# header7706if($formateq'html') {7707my$formats_nav=7708$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},7709"raw");7710$formats_nav.= diff_style_nav($diff_style);7711 git_header_html(undef,$expires);7712if(defined$hash_base&& (my%co= parse_commit($hash_base))) {7713 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);7714 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);7715}else{7716print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";7717print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";7718}7719if(defined$file_name) {7720 git_print_page_path($file_name,"blob",$hash_base);7721}else{7722print"<div class=\"page_path\"></div>\n";7723}77247725}elsif($formateq'plain') {7726print$cgi->header(7727-type =>'text/plain',7728-charset =>'utf-8',7729-expires =>$expires,7730-content_disposition =>'inline; filename="'."$file_name".'.patch"');77317732print"X-Git-Url: ".$cgi->self_url() ."\n\n";77337734}else{7735 die_error(400,"Unknown blobdiff format");7736}77377738# patch7739if($formateq'html') {7740print"<div class=\"page_body\">\n";77417742 git_patchset_body($fd,$diff_style,7743[ \%diffinfo],$hash_base,$hash_parent_base);7744close$fd;77457746print"</div>\n";# class="page_body"7747 git_footer_html();77487749}else{7750while(my$line= <$fd>) {7751$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;7752$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;77537754print$line;77557756last if$line=~m!^\+\+\+!;7757}7758local$/=undef;7759print<$fd>;7760close$fd;7761}7762}77637764sub git_blobdiff_plain {7765 git_blobdiff('plain');7766}77677768# assumes that it is added as later part of already existing navigation,7769# so it returns "| foo | bar" rather than just "foo | bar"7770sub diff_style_nav {7771my($diff_style,$is_combined) =@_;7772$diff_style||='inline';77737774return""if($is_combined);77757776my@styles= (inline =>'inline','sidebyside'=>'side by side');7777my%styles=@styles;7778@styles=7779@styles[map{$_*2}0..$#styles/2];77807781returnjoin'',7782map{" | ".$_}7783map{7784$_eq$diff_style?$styles{$_} :7785$cgi->a({-href => href(-replay=>1, diff_style =>$_)},$styles{$_})7786}@styles;7787}77887789sub git_commitdiff {7790my%params=@_;7791my$format=$params{-format} ||'html';7792my$diff_style=$input_params{'diff_style'} ||'inline';77937794my($patch_max) = gitweb_get_feature('patches');7795if($formateq'patch') {7796 die_error(403,"Patch view not allowed")unless$patch_max;7797}77987799$hash||=$hash_base||"HEAD";7800my%co= parse_commit($hash)7801or die_error(404,"Unknown commit object");78027803# choose format for commitdiff for merge7804if(!defined$hash_parent&& @{$co{'parents'}} >1) {7805$hash_parent='--cc';7806}7807# we need to prepare $formats_nav before almost any parameter munging7808my$formats_nav;7809if($formateq'html') {7810$formats_nav=7811$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},7812"raw");7813if($patch_max&& @{$co{'parents'}} <=1) {7814$formats_nav.=" | ".7815$cgi->a({-href => href(action=>"patch", -replay=>1)},7816"patch");7817}7818$formats_nav.= diff_style_nav($diff_style, @{$co{'parents'}} >1);78197820if(defined$hash_parent&&7821$hash_parentne'-c'&&$hash_parentne'--cc') {7822# commitdiff with two commits given7823my$hash_parent_short=$hash_parent;7824if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {7825$hash_parent_short=substr($hash_parent,0,7);7826}7827$formats_nav.=7828' (from';7829for(my$i=0;$i< @{$co{'parents'}};$i++) {7830if($co{'parents'}[$i]eq$hash_parent) {7831$formats_nav.=' parent '. ($i+1);7832last;7833}7834}7835$formats_nav.=': '.7836$cgi->a({-href => href(-replay=>1,7837 hash=>$hash_parent, hash_base=>undef)},7838 esc_html($hash_parent_short)) .7839')';7840}elsif(!$co{'parent'}) {7841# --root commitdiff7842$formats_nav.=' (initial)';7843}elsif(scalar@{$co{'parents'}} ==1) {7844# single parent commit7845$formats_nav.=7846' (parent: '.7847$cgi->a({-href => href(-replay=>1,7848 hash=>$co{'parent'}, hash_base=>undef)},7849 esc_html(substr($co{'parent'},0,7))) .7850')';7851}else{7852# merge commit7853if($hash_parenteq'--cc') {7854$formats_nav.=' | '.7855$cgi->a({-href => href(-replay=>1,7856 hash=>$hash, hash_parent=>'-c')},7857'combined');7858}else{# $hash_parent eq '-c'7859$formats_nav.=' | '.7860$cgi->a({-href => href(-replay=>1,7861 hash=>$hash, hash_parent=>'--cc')},7862'compact');7863}7864$formats_nav.=7865' (merge: '.7866join(' ',map{7867$cgi->a({-href => href(-replay=>1,7868 hash=>$_, hash_base=>undef)},7869 esc_html(substr($_,0,7)));7870} @{$co{'parents'}} ) .7871')';7872}7873}78747875my$hash_parent_param=$hash_parent;7876if(!defined$hash_parent_param) {7877# --cc for multiple parents, --root for parentless7878$hash_parent_param=7879@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';7880}78817882# read commitdiff7883my$fd;7884my@difftree;7885if($formateq'html') {7886open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7887"--no-commit-id","--patch-with-raw","--full-index",7888$hash_parent_param,$hash,"--"7889or die_error(500,"Open git-diff-tree failed");78907891while(my$line= <$fd>) {7892chomp$line;7893# empty line ends raw part of diff-tree output7894last unless$line;7895push@difftree,scalar parse_difftree_raw_line($line);7896}78977898}elsif($formateq'plain') {7899open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7900'-p',$hash_parent_param,$hash,"--"7901or die_error(500,"Open git-diff-tree failed");7902}elsif($formateq'patch') {7903# For commit ranges, we limit the output to the number of7904# patches specified in the 'patches' feature.7905# For single commits, we limit the output to a single patch,7906# diverging from the git-format-patch default.7907my@commit_spec= ();7908if($hash_parent) {7909if($patch_max>0) {7910push@commit_spec,"-$patch_max";7911}7912push@commit_spec,'-n',"$hash_parent..$hash";7913}else{7914if($params{-single}) {7915push@commit_spec,'-1';7916}else{7917if($patch_max>0) {7918push@commit_spec,"-$patch_max";7919}7920push@commit_spec,"-n";7921}7922push@commit_spec,'--root',$hash;7923}7924open$fd,"-|", git_cmd(),"format-patch",@diff_opts,7925'--encoding=utf8','--stdout',@commit_spec7926or die_error(500,"Open git-format-patch failed");7927}else{7928 die_error(400,"Unknown commitdiff format");7929}79307931# non-textual hash id's can be cached7932my$expires;7933if($hash=~m/^[0-9a-fA-F]{40}$/) {7934$expires="+1d";7935}79367937# write commit message7938if($formateq'html') {7939my$refs= git_get_references();7940my$ref= format_ref_marker($refs,$co{'id'});79417942 git_header_html(undef,$expires);7943 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);7944 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);7945print"<div class=\"title_text\">\n".7946"<table class=\"object_header\">\n";7947 git_print_authorship_rows(\%co);7948print"</table>".7949"</div>\n";7950print"<div class=\"page_body\">\n";7951if(@{$co{'comment'}} >1) {7952print"<div class=\"log\">\n";7953 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);7954print"</div>\n";# class="log"7955}79567957}elsif($formateq'plain') {7958my$refs= git_get_references("tags");7959my$tagname= git_get_rev_name_tags($hash);7960my$filename= basename($project) ."-$hash.patch";79617962print$cgi->header(7963-type =>'text/plain',7964-charset =>'utf-8',7965-expires =>$expires,7966-content_disposition =>'inline; filename="'."$filename".'"');7967my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});7968print"From: ". to_utf8($co{'author'}) ."\n";7969print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";7970print"Subject: ". to_utf8($co{'title'}) ."\n";79717972print"X-Git-Tag:$tagname\n"if$tagname;7973print"X-Git-Url: ".$cgi->self_url() ."\n\n";79747975foreachmy$line(@{$co{'comment'}}) {7976print to_utf8($line) ."\n";7977}7978print"---\n\n";7979}elsif($formateq'patch') {7980my$filename= basename($project) ."-$hash.patch";79817982print$cgi->header(7983-type =>'text/plain',7984-charset =>'utf-8',7985-expires =>$expires,7986-content_disposition =>'inline; filename="'."$filename".'"');7987}79887989# write patch7990if($formateq'html') {7991my$use_parents= !defined$hash_parent||7992$hash_parenteq'-c'||$hash_parenteq'--cc';7993 git_difftree_body(\@difftree,$hash,7994$use_parents? @{$co{'parents'}} :$hash_parent);7995print"<br/>\n";79967997 git_patchset_body($fd,$diff_style,7998 \@difftree,$hash,7999$use_parents? @{$co{'parents'}} :$hash_parent);8000close$fd;8001print"</div>\n";# class="page_body"8002 git_footer_html();80038004}elsif($formateq'plain') {8005local$/=undef;8006print<$fd>;8007close$fd8008or print"Reading git-diff-tree failed\n";8009}elsif($formateq'patch') {8010local$/=undef;8011print<$fd>;8012close$fd8013or print"Reading git-format-patch failed\n";8014}8015}80168017sub git_commitdiff_plain {8018 git_commitdiff(-format =>'plain');8019}80208021# format-patch-style patches8022sub git_patch {8023 git_commitdiff(-format =>'patch', -single =>1);8024}80258026sub git_patches {8027 git_commitdiff(-format =>'patch');8028}80298030sub git_history {8031 git_log_generic('history', \&git_history_body,8032$hash_base,$hash_parent_base,8033$file_name,$hash);8034}80358036sub git_search {8037$searchtype||='commit';80388039# check if appropriate features are enabled8040 gitweb_check_feature('search')8041or die_error(403,"Search is disabled");8042if($searchtypeeq'pickaxe') {8043# pickaxe may take all resources of your box and run for several minutes8044# with every query - so decide by yourself how public you make this feature8045 gitweb_check_feature('pickaxe')8046or die_error(403,"Pickaxe search is disabled");8047}8048if($searchtypeeq'grep') {8049# grep search might be potentially CPU-intensive, too8050 gitweb_check_feature('grep')8051or die_error(403,"Grep search is disabled");8052}80538054if(!defined$searchtext) {8055 die_error(400,"Text field is empty");8056}8057if(!defined$hash) {8058$hash= git_get_head_hash($project);8059}8060my%co= parse_commit($hash);8061if(!%co) {8062 die_error(404,"Unknown commit object");8063}8064if(!defined$page) {8065$page=0;8066}80678068if($searchtypeeq'commit'||8069$searchtypeeq'author'||8070$searchtypeeq'committer') {8071 git_search_message(%co);8072}elsif($searchtypeeq'pickaxe') {8073 git_search_changes(%co);8074}elsif($searchtypeeq'grep') {8075 git_search_files(%co);8076}else{8077 die_error(400,"Unknown search type");8078}8079}80808081sub git_search_help {8082 git_header_html();8083 git_print_page_nav('','',$hash,$hash,$hash);8084print<<EOT;8085<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without8086regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,8087the pattern entered is recognized as the POSIX extended8088<a href="https://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case8089insensitive).</p>8090<dl>8091<dt><b>commit</b></dt>8092<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>8093EOT8094my$have_grep= gitweb_check_feature('grep');8095if($have_grep) {8096print<<EOT;8097<dt><b>grep</b></dt>8098<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing8099 a different one) are searched for the given pattern. On large trees, this search can take8100a while and put some strain on the server, so please use it with some consideration. Note that8101due to git-grep peculiarity, currently if regexp mode is turned off, the matches are8102case-sensitive.</dd>8103EOT8104}8105print<<EOT;8106<dt><b>author</b></dt>8107<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>8108<dt><b>committer</b></dt>8109<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>8110EOT8111my$have_pickaxe= gitweb_check_feature('pickaxe');8112if($have_pickaxe) {8113print<<EOT;8114<dt><b>pickaxe</b></dt>8115<dd>All commits that caused the string to appear or disappear from any file (changes that8116added, removed or "modified" the string) will be listed. This search can take a while and8117takes a lot of strain on the server, so please use it wisely. Note that since you may be8118interested even in changes just changing the case as well, this search is case sensitive.</dd>8119EOT8120}8121print"</dl>\n";8122 git_footer_html();8123}81248125sub git_shortlog {8126 git_log_generic('shortlog', \&git_shortlog_body,8127$hash,$hash_parent);8128}81298130## ......................................................................8131## feeds (RSS, Atom; OPML)81328133sub git_feed {8134my$format=shift||'atom';8135my$have_blame= gitweb_check_feature('blame');81368137# Atom: http://www.atomenabled.org/developers/syndication/8138# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ8139if($formatne'rss'&&$formatne'atom') {8140 die_error(400,"Unknown web feed format");8141}81428143# log/feed of current (HEAD) branch, log of given branch, history of file/directory8144my$head=$hash||'HEAD';8145my@commitlist= parse_commits($head,150,0,$file_name);81468147my%latest_commit;8148my%latest_date;8149my$content_type="application/$format+xml";8150if(defined$cgi->http('HTTP_ACCEPT') &&8151$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {8152# browser (feed reader) prefers text/xml8153$content_type='text/xml';8154}8155if(defined($commitlist[0])) {8156%latest_commit= %{$commitlist[0]};8157my$latest_epoch=$latest_commit{'committer_epoch'};8158 exit_if_unmodified_since($latest_epoch);8159%latest_date= parse_date($latest_epoch,$latest_commit{'committer_tz'});8160}8161print$cgi->header(8162-type =>$content_type,8163-charset =>'utf-8',8164%latest_date? (-last_modified =>$latest_date{'rfc2822'}) : (),8165-status =>'200 OK');81668167# Optimization: skip generating the body if client asks only8168# for Last-Modified date.8169return if($cgi->request_method()eq'HEAD');81708171# header variables8172my$title="$site_name-$project/$action";8173my$feed_type='log';8174if(defined$hash) {8175$title.=" - '$hash'";8176$feed_type='branch log';8177if(defined$file_name) {8178$title.=" ::$file_name";8179$feed_type='history';8180}8181}elsif(defined$file_name) {8182$title.=" -$file_name";8183$feed_type='history';8184}8185$title.="$feed_type";8186$title= esc_html($title);8187my$descr= git_get_project_description($project);8188if(defined$descr) {8189$descr= esc_html($descr);8190}else{8191$descr="$project".8192($formateq'rss'?'RSS':'Atom') .8193" feed";8194}8195my$owner= git_get_project_owner($project);8196$owner= esc_html($owner);81978198#header8199my$alt_url;8200if(defined$file_name) {8201$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);8202}elsif(defined$hash) {8203$alt_url= href(-full=>1, action=>"log", hash=>$hash);8204}else{8205$alt_url= href(-full=>1, action=>"summary");8206}8207print qq!<?xml version="1.0" encoding="utf-8"?>\n!;8208if($formateq'rss') {8209print<<XML;8210<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">8211<channel>8212XML8213print"<title>$title</title>\n".8214"<link>$alt_url</link>\n".8215"<description>$descr</description>\n".8216"<language>en</language>\n".8217# project owner is responsible for 'editorial' content8218"<managingEditor>$owner</managingEditor>\n";8219if(defined$logo||defined$favicon) {8220# prefer the logo to the favicon, since RSS8221# doesn't allow both8222my$img= esc_url($logo||$favicon);8223print"<image>\n".8224"<url>$img</url>\n".8225"<title>$title</title>\n".8226"<link>$alt_url</link>\n".8227"</image>\n";8228}8229if(%latest_date) {8230print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";8231print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";8232}8233print"<generator>gitweb v.$version/$git_version</generator>\n";8234}elsif($formateq'atom') {8235print<<XML;8236<feed xmlns="http://www.w3.org/2005/Atom">8237XML8238print"<title>$title</title>\n".8239"<subtitle>$descr</subtitle>\n".8240'<link rel="alternate" type="text/html" href="'.8241$alt_url.'" />'."\n".8242'<link rel="self" type="'.$content_type.'" href="'.8243$cgi->self_url() .'" />'."\n".8244"<id>". href(-full=>1) ."</id>\n".8245# use project owner for feed author8246"<author><name>$owner</name></author>\n";8247if(defined$favicon) {8248print"<icon>". esc_url($favicon) ."</icon>\n";8249}8250if(defined$logo) {8251# not twice as wide as tall: 72 x 27 pixels8252print"<logo>". esc_url($logo) ."</logo>\n";8253}8254if(!%latest_date) {8255# dummy date to keep the feed valid until commits trickle in:8256print"<updated>1970-01-01T00:00:00Z</updated>\n";8257}else{8258print"<updated>$latest_date{'iso-8601'}</updated>\n";8259}8260print"<generator version='$version/$git_version'>gitweb</generator>\n";8261}82628263# contents8264for(my$i=0;$i<=$#commitlist;$i++) {8265my%co= %{$commitlist[$i]};8266my$commit=$co{'id'};8267# we read 150, we always show 30 and the ones more recent than 48 hours8268if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {8269last;8270}8271my%cd= parse_date($co{'author_epoch'},$co{'author_tz'});82728273# get list of changed files8274open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,8275$co{'parent'} ||"--root",8276$co{'id'},"--", (defined$file_name?$file_name: ())8277ornext;8278my@difftree=map{chomp;$_} <$fd>;8279close$fd8280ornext;82818282# print element (entry, item)8283my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);8284if($formateq'rss') {8285print"<item>\n".8286"<title>". esc_html($co{'title'}) ."</title>\n".8287"<author>". esc_html($co{'author'}) ."</author>\n".8288"<pubDate>$cd{'rfc2822'}</pubDate>\n".8289"<guid isPermaLink=\"true\">$co_url</guid>\n".8290"<link>$co_url</link>\n".8291"<description>". esc_html($co{'title'}) ."</description>\n".8292"<content:encoded>".8293"<![CDATA[\n";8294}elsif($formateq'atom') {8295print"<entry>\n".8296"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".8297"<updated>$cd{'iso-8601'}</updated>\n".8298"<author>\n".8299" <name>". esc_html($co{'author_name'}) ."</name>\n";8300if($co{'author_email'}) {8301print" <email>". esc_html($co{'author_email'}) ."</email>\n";8302}8303print"</author>\n".8304# use committer for contributor8305"<contributor>\n".8306" <name>". esc_html($co{'committer_name'}) ."</name>\n";8307if($co{'committer_email'}) {8308print" <email>". esc_html($co{'committer_email'}) ."</email>\n";8309}8310print"</contributor>\n".8311"<published>$cd{'iso-8601'}</published>\n".8312"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".8313"<id>$co_url</id>\n".8314"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".8315"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";8316}8317my$comment=$co{'comment'};8318print"<pre>\n";8319foreachmy$line(@$comment) {8320$line= esc_html($line);8321print"$line\n";8322}8323print"</pre><ul>\n";8324foreachmy$difftree_line(@difftree) {8325my%difftree= parse_difftree_raw_line($difftree_line);8326next if!$difftree{'from_id'};83278328my$file=$difftree{'file'} ||$difftree{'to_file'};83298330print"<li>".8331"[".8332$cgi->a({-href => href(-full=>1, action=>"blobdiff",8333 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},8334 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},8335 file_name=>$file, file_parent=>$difftree{'from_file'}),8336-title =>"diff"},'D');8337if($have_blame) {8338print$cgi->a({-href => href(-full=>1, action=>"blame",8339 file_name=>$file, hash_base=>$commit),8340-title =>"blame"},'B');8341}8342# if this is not a feed of a file history8343if(!defined$file_name||$file_namene$file) {8344print$cgi->a({-href => href(-full=>1, action=>"history",8345 file_name=>$file, hash=>$commit),8346-title =>"history"},'H');8347}8348$file= esc_path($file);8349print"] ".8350"$file</li>\n";8351}8352if($formateq'rss') {8353print"</ul>]]>\n".8354"</content:encoded>\n".8355"</item>\n";8356}elsif($formateq'atom') {8357print"</ul>\n</div>\n".8358"</content>\n".8359"</entry>\n";8360}8361}83628363# end of feed8364if($formateq'rss') {8365print"</channel>\n</rss>\n";8366}elsif($formateq'atom') {8367print"</feed>\n";8368}8369}83708371sub git_rss {8372 git_feed('rss');8373}83748375sub git_atom {8376 git_feed('atom');8377}83788379sub git_opml {8380my@list= git_get_projects_list($project_filter,$strict_export);8381if(!@list) {8382 die_error(404,"No projects found");8383}83848385print$cgi->header(8386-type =>'text/xml',8387-charset =>'utf-8',8388-content_disposition =>'inline; filename="opml.xml"');83898390my$title= esc_html($site_name);8391my$filter=" within subdirectory ";8392if(defined$project_filter) {8393$filter.= esc_html($project_filter);8394}else{8395$filter="";8396}8397print<<XML;8398<?xml version="1.0" encoding="utf-8"?>8399<opml version="1.0">8400<head>8401 <title>$titleOPML Export$filter</title>8402</head>8403<body>8404<outline text="git RSS feeds">8405XML84068407foreachmy$pr(@list) {8408my%proj=%$pr;8409my$head= git_get_head_hash($proj{'path'});8410if(!defined$head) {8411next;8412}8413$git_dir="$projectroot/$proj{'path'}";8414my%co= parse_commit($head);8415if(!%co) {8416next;8417}84188419my$path= esc_html(chop_str($proj{'path'},25,5));8420my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);8421my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);8422print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";8423}8424print<<XML;8425</outline>8426</body>8427</opml>8428XML8429}