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# need search permission3075return unless(-x $_);3076# don't traverse too deep (Find is super slow on os x)3077# $project_maxdepth excludes depth of $projectroot3078if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {3079$File::Find::prune =1;3080return;3081}30823083my$path=substr($File::Find::name,$pfxlen+1);3084# paranoidly only filter here3085if($paranoid&&$filter&&$path!~m!^\Q$filter\E/!) {3086next;3087}3088# we check related file in $projectroot3089if(check_export_ok("$projectroot/$path")) {3090push@list, { path =>$path};3091$File::Find::prune =1;3092}3093},3094},"$dir");30953096}elsif(-f $projects_list) {3097# read from file(url-encoded):3098# 'git%2Fgit.git Linus+Torvalds'3099# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'3100# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'3101open my$fd,'<',$projects_listorreturn;3102 PROJECT:3103while(my$line= <$fd>) {3104chomp$line;3105my($path,$owner) =split' ',$line;3106$path= unescape($path);3107$owner= unescape($owner);3108if(!defined$path) {3109next;3110}3111# if $filter is rpovided, check if $path begins with $filter3112if($filter&&$path!~m!^\Q$filter\E/!) {3113next;3114}3115if(check_export_ok("$projectroot/$path")) {3116my$pr= {3117 path =>$path3118};3119if($owner) {3120$pr->{'owner'} = to_utf8($owner);3121}3122push@list,$pr;3123}3124}3125close$fd;3126}3127return@list;3128}31293130# written with help of Tree::Trie module (Perl Artistic License, GPL compatible)3131# as side effects it sets 'forks' field to list of forks for forked projects3132sub filter_forks_from_projects_list {3133my$projects=shift;31343135my%trie;# prefix tree of directories (path components)3136# generate trie out of those directories that might contain forks3137foreachmy$pr(@$projects) {3138my$path=$pr->{'path'};3139$path=~s/\.git$//;# forks of 'repo.git' are in 'repo/' directory3140next if($path=~m!/$!);# skip non-bare repositories, e.g. 'repo/.git'3141next unless($path);# skip '.git' repository: tests, git-instaweb3142next unless(-d "$projectroot/$path");# containing directory exists3143$pr->{'forks'} = [];# there can be 0 or more forks of project31443145# add to trie3146my@dirs=split('/',$path);3147# walk the trie, until either runs out of components or out of trie3148my$ref= \%trie;3149while(scalar@dirs&&3150exists($ref->{$dirs[0]})) {3151$ref=$ref->{shift@dirs};3152}3153# create rest of trie structure from rest of components3154foreachmy$dir(@dirs) {3155$ref=$ref->{$dir} = {};3156}3157# create end marker, store $pr as a data3158$ref->{''} =$prif(!exists$ref->{''});3159}31603161# filter out forks, by finding shortest prefix match for paths3162my@filtered;3163 PROJECT:3164foreachmy$pr(@$projects) {3165# trie lookup3166my$ref= \%trie;3167 DIR:3168foreachmy$dir(split('/',$pr->{'path'})) {3169if(exists$ref->{''}) {3170# found [shortest] prefix, is a fork - skip it3171push@{$ref->{''}{'forks'}},$pr;3172next PROJECT;3173}3174if(!exists$ref->{$dir}) {3175# not in trie, cannot have prefix, not a fork3176push@filtered,$pr;3177next PROJECT;3178}3179# If the dir is there, we just walk one step down the trie.3180$ref=$ref->{$dir};3181}3182# we ran out of trie3183# (shouldn't happen: it's either no match, or end marker)3184push@filtered,$pr;3185}31863187return@filtered;3188}31893190# note: fill_project_list_info must be run first,3191# for 'descr_long' and 'ctags' to be filled3192sub search_projects_list {3193my($projlist,%opts) =@_;3194my$tagfilter=$opts{'tagfilter'};3195my$search_re=$opts{'search_regexp'};31963197return@$projlist3198unless($tagfilter||$search_re);31993200# searching projects require filling to be run before it;3201 fill_project_list_info($projlist,3202$tagfilter?'ctags': (),3203$search_re? ('path','descr') : ());3204my@projects;3205 PROJECT:3206foreachmy$pr(@$projlist) {32073208if($tagfilter) {3209next unlessref($pr->{'ctags'})eq'HASH';3210next unless3211grep{lc($_)eq lc($tagfilter) }keys%{$pr->{'ctags'}};3212}32133214if($search_re) {3215next unless3216$pr->{'path'} =~/$search_re/||3217$pr->{'descr_long'} =~/$search_re/;3218}32193220push@projects,$pr;3221}32223223return@projects;3224}32253226our$gitweb_project_owner=undef;3227sub git_get_project_list_from_file {32283229return if(defined$gitweb_project_owner);32303231$gitweb_project_owner= {};3232# read from file (url-encoded):3233# 'git%2Fgit.git Linus+Torvalds'3234# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'3235# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'3236if(-f $projects_list) {3237open(my$fd,'<',$projects_list);3238while(my$line= <$fd>) {3239chomp$line;3240my($pr,$ow) =split' ',$line;3241$pr= unescape($pr);3242$ow= unescape($ow);3243$gitweb_project_owner->{$pr} = to_utf8($ow);3244}3245close$fd;3246}3247}32483249sub git_get_project_owner {3250my$project=shift;3251my$owner;32523253returnundefunless$project;3254$git_dir="$projectroot/$project";32553256if(!defined$gitweb_project_owner) {3257 git_get_project_list_from_file();3258}32593260if(exists$gitweb_project_owner->{$project}) {3261$owner=$gitweb_project_owner->{$project};3262}3263if(!defined$owner){3264$owner= git_get_project_config('owner');3265}3266if(!defined$owner) {3267$owner= get_file_owner("$git_dir");3268}32693270return$owner;3271}32723273sub git_get_last_activity {3274my($path) =@_;3275my$fd;32763277$git_dir="$projectroot/$path";3278open($fd,"-|", git_cmd(),'for-each-ref',3279'--format=%(committer)',3280'--sort=-committerdate',3281'--count=1',3282map{"refs/$_"} get_branch_refs ())orreturn;3283my$most_recent= <$fd>;3284close$fdorreturn;3285if(defined$most_recent&&3286$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {3287my$timestamp=$1;3288my$age=time-$timestamp;3289return($age, age_string($age));3290}3291return(undef,undef);3292}32933294# Implementation note: when a single remote is wanted, we cannot use 'git3295# remote show -n' because that command always work (assuming it's a remote URL3296# if it's not defined), and we cannot use 'git remote show' because that would3297# try to make a network roundtrip. So the only way to find if that particular3298# remote is defined is to walk the list provided by 'git remote -v' and stop if3299# and when we find what we want.3300sub git_get_remotes_list {3301my$wanted=shift;3302my%remotes= ();33033304open my$fd,'-|', git_cmd(),'remote','-v';3305return unless$fd;3306while(my$remote= <$fd>) {3307chomp$remote;3308$remote=~s!\t(.*?)\s+\((\w+)\)$!!;3309next if$wantedand not$remoteeq$wanted;3310my($url,$key) = ($1,$2);33113312$remotes{$remote} ||= {'heads'=> () };3313$remotes{$remote}{$key} =$url;3314}3315close$fdorreturn;3316returnwantarray?%remotes: \%remotes;3317}33183319# Takes a hash of remotes as first parameter and fills it by adding the3320# available remote heads for each of the indicated remotes.3321sub fill_remote_heads {3322my$remotes=shift;3323my@heads=map{"remotes/$_"}keys%$remotes;3324my@remoteheads= git_get_heads_list(undef,@heads);3325foreachmy$remote(keys%$remotes) {3326$remotes->{$remote}{'heads'} = [grep{3327$_->{'name'} =~s!^$remote/!!3328}@remoteheads];3329}3330}33313332sub git_get_references {3333my$type=shift||"";3334my%refs;3335# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.113336# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}3337open my$fd,"-|", git_cmd(),"show-ref","--dereference",3338($type? ("--","refs/$type") : ())# use -- <pattern> if $type3339orreturn;33403341while(my$line= <$fd>) {3342chomp$line;3343if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {3344if(defined$refs{$1}) {3345push@{$refs{$1}},$2;3346}else{3347$refs{$1} = [$2];3348}3349}3350}3351close$fdorreturn;3352return \%refs;3353}33543355sub git_get_rev_name_tags {3356my$hash=shift||returnundef;33573358open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash3359orreturn;3360my$name_rev= <$fd>;3361close$fd;33623363if($name_rev=~ m|^$hash tags/(.*)$|) {3364return$1;3365}else{3366# catches also '$hash undefined' output3367returnundef;3368}3369}33703371## ----------------------------------------------------------------------3372## parse to hash functions33733374sub parse_date {3375my$epoch=shift;3376my$tz=shift||"-0000";33773378my%date;3379my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");3380my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");3381my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);3382$date{'hour'} =$hour;3383$date{'minute'} =$min;3384$date{'mday'} =$mday;3385$date{'day'} =$days[$wday];3386$date{'month'} =$months[$mon];3387$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",3388$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;3389$date{'mday-time'} =sprintf"%d%s%02d:%02d",3390$mday,$months[$mon],$hour,$min;3391$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",33921900+$year,1+$mon,$mday,$hour,$min,$sec;33933394my($tz_sign,$tz_hour,$tz_min) =3395($tz=~m/^([-+])(\d\d)(\d\d)$/);3396$tz_sign= ($tz_signeq'-'? -1: +1);3397my$local=$epoch+$tz_sign*((($tz_hour*60) +$tz_min)*60);3398($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);3399$date{'hour_local'} =$hour;3400$date{'minute_local'} =$min;3401$date{'tz_local'} =$tz;3402$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",34031900+$year,$mon+1,$mday,3404$hour,$min,$sec,$tz);3405return%date;3406}34073408sub parse_tag {3409my$tag_id=shift;3410my%tag;3411my@comment;34123413open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;3414$tag{'id'} =$tag_id;3415while(my$line= <$fd>) {3416chomp$line;3417if($line=~m/^object ([0-9a-fA-F]{40})$/) {3418$tag{'object'} =$1;3419}elsif($line=~m/^type (.+)$/) {3420$tag{'type'} =$1;3421}elsif($line=~m/^tag (.+)$/) {3422$tag{'name'} =$1;3423}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {3424$tag{'author'} =$1;3425$tag{'author_epoch'} =$2;3426$tag{'author_tz'} =$3;3427if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {3428$tag{'author_name'} =$1;3429$tag{'author_email'} =$2;3430}else{3431$tag{'author_name'} =$tag{'author'};3432}3433}elsif($line=~m/--BEGIN/) {3434push@comment,$line;3435last;3436}elsif($lineeq"") {3437last;3438}3439}3440push@comment, <$fd>;3441$tag{'comment'} = \@comment;3442close$fdorreturn;3443if(!defined$tag{'name'}) {3444return3445};3446return%tag3447}34483449sub parse_commit_text {3450my($commit_text,$withparents) =@_;3451my@commit_lines=split'\n',$commit_text;3452my%co;34533454pop@commit_lines;# Remove '\0'34553456if(!@commit_lines) {3457return;3458}34593460my$header=shift@commit_lines;3461if($header!~m/^[0-9a-fA-F]{40}/) {3462return;3463}3464($co{'id'},my@parents) =split' ',$header;3465while(my$line=shift@commit_lines) {3466last if$lineeq"\n";3467if($line=~m/^tree ([0-9a-fA-F]{40})$/) {3468$co{'tree'} =$1;3469}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {3470push@parents,$1;3471}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {3472$co{'author'} = to_utf8($1);3473$co{'author_epoch'} =$2;3474$co{'author_tz'} =$3;3475if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {3476$co{'author_name'} =$1;3477$co{'author_email'} =$2;3478}else{3479$co{'author_name'} =$co{'author'};3480}3481}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3482$co{'committer'} = to_utf8($1);3483$co{'committer_epoch'} =$2;3484$co{'committer_tz'} =$3;3485if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3486$co{'committer_name'} =$1;3487$co{'committer_email'} =$2;3488}else{3489$co{'committer_name'} =$co{'committer'};3490}3491}3492}3493if(!defined$co{'tree'}) {3494return;3495};3496$co{'parents'} = \@parents;3497$co{'parent'} =$parents[0];34983499foreachmy$title(@commit_lines) {3500$title=~s/^ //;3501if($titlene"") {3502$co{'title'} = chop_str($title,80,5);3503# remove leading stuff of merges to make the interesting part visible3504if(length($title) >50) {3505$title=~s/^Automatic //;3506$title=~s/^merge (of|with) /Merge ... /i;3507if(length($title) >50) {3508$title=~s/(http|rsync):\/\///;3509}3510if(length($title) >50) {3511$title=~s/(master|www|rsync)\.//;3512}3513if(length($title) >50) {3514$title=~s/kernel.org:?//;3515}3516if(length($title) >50) {3517$title=~s/\/pub\/scm//;3518}3519}3520$co{'title_short'} = chop_str($title,50,5);3521last;3522}3523}3524if(!defined$co{'title'} ||$co{'title'}eq"") {3525$co{'title'} =$co{'title_short'} ='(no commit message)';3526}3527# remove added spaces3528foreachmy$line(@commit_lines) {3529$line=~s/^ //;3530}3531$co{'comment'} = \@commit_lines;35323533my$age=time-$co{'committer_epoch'};3534$co{'age'} =$age;3535$co{'age_string'} = age_string($age);3536my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3537if($age>60*60*24*7*2) {3538$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3539$co{'age_string_age'} =$co{'age_string'};3540}else{3541$co{'age_string_date'} =$co{'age_string'};3542$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3543}3544return%co;3545}35463547sub parse_commit {3548my($commit_id) =@_;3549my%co;35503551local$/="\0";35523553open my$fd,"-|", git_cmd(),"rev-list",3554"--parents",3555"--header",3556"--max-count=1",3557$commit_id,3558"--",3559or die_error(500,"Open git-rev-list failed");3560%co= parse_commit_text(<$fd>,1);3561close$fd;35623563return%co;3564}35653566sub parse_commits {3567my($commit_id,$maxcount,$skip,$filename,@args) =@_;3568my@cos;35693570$maxcount||=1;3571$skip||=0;35723573local$/="\0";35743575open my$fd,"-|", git_cmd(),"rev-list",3576"--header",3577@args,3578("--max-count=".$maxcount),3579("--skip=".$skip),3580@extra_options,3581$commit_id,3582"--",3583($filename? ($filename) : ())3584or die_error(500,"Open git-rev-list failed");3585while(my$line= <$fd>) {3586my%co= parse_commit_text($line);3587push@cos, \%co;3588}3589close$fd;35903591returnwantarray?@cos: \@cos;3592}35933594# parse line of git-diff-tree "raw" output3595sub parse_difftree_raw_line {3596my$line=shift;3597my%res;35983599# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3600# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3601if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3602$res{'from_mode'} =$1;3603$res{'to_mode'} =$2;3604$res{'from_id'} =$3;3605$res{'to_id'} =$4;3606$res{'status'} =$5;3607$res{'similarity'} =$6;3608if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3609($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3610}else{3611$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3612}3613}3614# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3615# combined diff (for merge commit)3616elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3617$res{'nparents'} =length($1);3618$res{'from_mode'} = [split(' ',$2) ];3619$res{'to_mode'} =pop@{$res{'from_mode'}};3620$res{'from_id'} = [split(' ',$3) ];3621$res{'to_id'} =pop@{$res{'from_id'}};3622$res{'status'} = [split('',$4) ];3623$res{'to_file'} = unquote($5);3624}3625# 'c512b523472485aef4fff9e57b229d9d243c967f'3626elsif($line=~m/^([0-9a-fA-F]{40})$/) {3627$res{'commit'} =$1;3628}36293630returnwantarray?%res: \%res;3631}36323633# wrapper: return parsed line of git-diff-tree "raw" output3634# (the argument might be raw line, or parsed info)3635sub parsed_difftree_line {3636my$line_or_ref=shift;36373638if(ref($line_or_ref)eq"HASH") {3639# pre-parsed (or generated by hand)3640return$line_or_ref;3641}else{3642return parse_difftree_raw_line($line_or_ref);3643}3644}36453646# parse line of git-ls-tree output3647sub parse_ls_tree_line {3648my$line=shift;3649my%opts=@_;3650my%res;36513652if($opts{'-l'}) {3653#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3654$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;36553656$res{'mode'} =$1;3657$res{'type'} =$2;3658$res{'hash'} =$3;3659$res{'size'} =$4;3660if($opts{'-z'}) {3661$res{'name'} =$5;3662}else{3663$res{'name'} = unquote($5);3664}3665}else{3666#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3667$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;36683669$res{'mode'} =$1;3670$res{'type'} =$2;3671$res{'hash'} =$3;3672if($opts{'-z'}) {3673$res{'name'} =$4;3674}else{3675$res{'name'} = unquote($4);3676}3677}36783679returnwantarray?%res: \%res;3680}36813682# generates _two_ hashes, references to which are passed as 2 and 3 argument3683sub parse_from_to_diffinfo {3684my($diffinfo,$from,$to,@parents) =@_;36853686if($diffinfo->{'nparents'}) {3687# combined diff3688$from->{'file'} = [];3689$from->{'href'} = [];3690 fill_from_file_info($diffinfo,@parents)3691unlessexists$diffinfo->{'from_file'};3692for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3693$from->{'file'}[$i] =3694defined$diffinfo->{'from_file'}[$i] ?3695$diffinfo->{'from_file'}[$i] :3696$diffinfo->{'to_file'};3697if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3698$from->{'href'}[$i] = href(action=>"blob",3699 hash_base=>$parents[$i],3700 hash=>$diffinfo->{'from_id'}[$i],3701 file_name=>$from->{'file'}[$i]);3702}else{3703$from->{'href'}[$i] =undef;3704}3705}3706}else{3707# ordinary (not combined) diff3708$from->{'file'} =$diffinfo->{'from_file'};3709if($diffinfo->{'status'}ne"A") {# not new (added) file3710$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3711 hash=>$diffinfo->{'from_id'},3712 file_name=>$from->{'file'});3713}else{3714delete$from->{'href'};3715}3716}37173718$to->{'file'} =$diffinfo->{'to_file'};3719if(!is_deleted($diffinfo)) {# file exists in result3720$to->{'href'} = href(action=>"blob", hash_base=>$hash,3721 hash=>$diffinfo->{'to_id'},3722 file_name=>$to->{'file'});3723}else{3724delete$to->{'href'};3725}3726}37273728## ......................................................................3729## parse to array of hashes functions37303731sub git_get_heads_list {3732my($limit,@classes) =@_;3733@classes= get_branch_refs()unless@classes;3734my@patterns=map{"refs/$_"}@classes;3735my@headslist;37363737open my$fd,'-|', git_cmd(),'for-each-ref',3738($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3739'--format=%(objectname) %(refname) %(subject)%00%(committer)',3740@patterns3741orreturn;3742while(my$line= <$fd>) {3743my%ref_item;37443745chomp$line;3746my($refinfo,$committerinfo) =split(/\0/,$line);3747my($hash,$name,$title) =split(' ',$refinfo,3);3748my($committer,$epoch,$tz) =3749($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3750$ref_item{'fullname'} =$name;3751my$strip_refs=join'|',map{quotemeta} get_branch_refs();3752$name=~s!^refs/($strip_refs|remotes)/!!;3753$ref_item{'name'} =$name;3754# for refs neither in 'heads' nor 'remotes' we want to3755# show their ref dir3756my$ref_dir= (defined$1) ?$1:'';3757if($ref_dirne''and$ref_dirne'heads'and$ref_dirne'remotes') {3758$ref_item{'name'} .=' ('.$ref_dir.')';3759}37603761$ref_item{'id'} =$hash;3762$ref_item{'title'} =$title||'(no commit message)';3763$ref_item{'epoch'} =$epoch;3764if($epoch) {3765$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3766}else{3767$ref_item{'age'} ="unknown";3768}37693770push@headslist, \%ref_item;3771}3772close$fd;37733774returnwantarray?@headslist: \@headslist;3775}37763777sub git_get_tags_list {3778my$limit=shift;3779my@tagslist;37803781open my$fd,'-|', git_cmd(),'for-each-ref',3782($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3783'--format=%(objectname) %(objecttype) %(refname) '.3784'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3785'refs/tags'3786orreturn;3787while(my$line= <$fd>) {3788my%ref_item;37893790chomp$line;3791my($refinfo,$creatorinfo) =split(/\0/,$line);3792my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3793my($creator,$epoch,$tz) =3794($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3795$ref_item{'fullname'} =$name;3796$name=~s!^refs/tags/!!;37973798$ref_item{'type'} =$type;3799$ref_item{'id'} =$id;3800$ref_item{'name'} =$name;3801if($typeeq"tag") {3802$ref_item{'subject'} =$title;3803$ref_item{'reftype'} =$reftype;3804$ref_item{'refid'} =$refid;3805}else{3806$ref_item{'reftype'} =$type;3807$ref_item{'refid'} =$id;3808}38093810if($typeeq"tag"||$typeeq"commit") {3811$ref_item{'epoch'} =$epoch;3812if($epoch) {3813$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3814}else{3815$ref_item{'age'} ="unknown";3816}3817}38183819push@tagslist, \%ref_item;3820}3821close$fd;38223823returnwantarray?@tagslist: \@tagslist;3824}38253826## ----------------------------------------------------------------------3827## filesystem-related functions38283829sub get_file_owner {3830my$path=shift;38313832my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3833my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3834if(!defined$gcos) {3835returnundef;3836}3837my$owner=$gcos;3838$owner=~s/[,;].*$//;3839return to_utf8($owner);3840}38413842# assume that file exists3843sub insert_file {3844my$filename=shift;38453846open my$fd,'<',$filename;3847print map{ to_utf8($_) } <$fd>;3848close$fd;3849}38503851## ......................................................................3852## mimetype related functions38533854sub mimetype_guess_file {3855my$filename=shift;3856my$mimemap=shift;3857-r $mimemaporreturnundef;38583859my%mimemap;3860open(my$mh,'<',$mimemap)orreturnundef;3861while(<$mh>) {3862next ifm/^#/;# skip comments3863my($mimetype,@exts) =split(/\s+/);3864foreachmy$ext(@exts) {3865$mimemap{$ext} =$mimetype;3866}3867}3868close($mh);38693870$filename=~/\.([^.]*)$/;3871return$mimemap{$1};3872}38733874sub mimetype_guess {3875my$filename=shift;3876my$mime;3877$filename=~/\./orreturnundef;38783879if($mimetypes_file) {3880my$file=$mimetypes_file;3881if($file!~m!^/!) {# if it is relative path3882# it is relative to project3883$file="$projectroot/$project/$file";3884}3885$mime= mimetype_guess_file($filename,$file);3886}3887$mime||= mimetype_guess_file($filename,'/etc/mime.types');3888return$mime;3889}38903891sub blob_mimetype {3892my$fd=shift;3893my$filename=shift;38943895if($filename) {3896my$mime= mimetype_guess($filename);3897$mimeandreturn$mime;3898}38993900# just in case3901return$default_blob_plain_mimetypeunless$fd;39023903if(-T $fd) {3904return'text/plain';3905}elsif(!$filename) {3906return'application/octet-stream';3907}elsif($filename=~m/\.png$/i) {3908return'image/png';3909}elsif($filename=~m/\.gif$/i) {3910return'image/gif';3911}elsif($filename=~m/\.jpe?g$/i) {3912return'image/jpeg';3913}else{3914return'application/octet-stream';3915}3916}39173918sub blob_contenttype {3919my($fd,$file_name,$type) =@_;39203921$type||= blob_mimetype($fd,$file_name);3922if($typeeq'text/plain'&&defined$default_text_plain_charset) {3923$type.="; charset=$default_text_plain_charset";3924}39253926return$type;3927}39283929# guess file syntax for syntax highlighting; return undef if no highlighting3930# the name of syntax can (in the future) depend on syntax highlighter used3931sub guess_file_syntax {3932my($highlight,$file_name) =@_;3933returnundefunless($highlight&&defined$file_name);3934my$basename= basename($file_name,'.in');3935return$highlight_basename{$basename}3936ifexists$highlight_basename{$basename};39373938$basename=~/\.([^.]*)$/;3939my$ext=$1orreturnundef;3940return$highlight_ext{$ext}3941ifexists$highlight_ext{$ext};39423943returnundef;3944}39453946# run highlighter and return FD of its output,3947# or return original FD if no highlighting3948sub run_highlighter {3949my($fd,$highlight,$syntax) =@_;3950return$fdunless($highlight);39513952close$fd;3953my$syntax_arg= (defined$syntax) ?"--syntax$syntax":"--force";3954open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3955 quote_command($^X,'-CO','-MEncode=decode,FB_DEFAULT','-pse',3956'$_= decode($fe,$_, FB_DEFAULT) if !utf8::decode($_);',3957'--',"-fe=$fallback_encoding")." | ".3958 quote_command($highlight_bin).3959" --replace-tabs=8 --fragment$syntax_arg|"3960or die_error(500,"Couldn't open file or run syntax highlighter");3961return$fd;3962}39633964## ======================================================================3965## functions printing HTML: header, footer, error page39663967sub get_page_title {3968my$title= to_utf8($site_name);39693970unless(defined$project) {3971if(defined$project_filter) {3972$title.=" - projects in '". esc_path($project_filter) ."'";3973}3974return$title;3975}3976$title.=" - ". to_utf8($project);39773978return$titleunless(defined$action);3979$title.="/$action";# $action is US-ASCII (7bit ASCII)39803981return$titleunless(defined$file_name);3982$title.=" - ". esc_path($file_name);3983if($actioneq"tree"&&$file_name!~ m|/$|) {3984$title.="/";3985}39863987return$title;3988}39893990sub get_content_type_html {3991# require explicit support from the UA if we are to send the page as3992# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3993# we have to do this because MSIE sometimes globs '*/*', pretending to3994# support xhtml+xml but choking when it gets what it asked for.3995if(defined$cgi->http('HTTP_ACCEPT') &&3996$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3997$cgi->Accept('application/xhtml+xml') !=0) {3998return'application/xhtml+xml';3999}else{4000return'text/html';4001}4002}40034004sub print_feed_meta {4005if(defined$project) {4006my%href_params= get_feed_info();4007if(!exists$href_params{'-title'}) {4008$href_params{'-title'} ='log';4009}40104011foreachmy$format(qw(RSS Atom)) {4012my$type=lc($format);4013my%link_attr= (4014'-rel'=>'alternate',4015'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),4016'-type'=>"application/$type+xml"4017);40184019$href_params{'extra_options'} =undef;4020$href_params{'action'} =$type;4021$link_attr{'-href'} = href(%href_params);4022print"<link ".4023"rel=\"$link_attr{'-rel'}\"".4024"title=\"$link_attr{'-title'}\"".4025"href=\"$link_attr{'-href'}\"".4026"type=\"$link_attr{'-type'}\"".4027"/>\n";40284029$href_params{'extra_options'} ='--no-merges';4030$link_attr{'-href'} = href(%href_params);4031$link_attr{'-title'} .=' (no merges)';4032print"<link ".4033"rel=\"$link_attr{'-rel'}\"".4034"title=\"$link_attr{'-title'}\"".4035"href=\"$link_attr{'-href'}\"".4036"type=\"$link_attr{'-type'}\"".4037"/>\n";4038}40394040}else{4041printf('<link rel="alternate" title="%sprojects list" '.4042'href="%s" type="text/plain; charset=utf-8" />'."\n",4043 esc_attr($site_name), href(project=>undef, action=>"project_index"));4044printf('<link rel="alternate" title="%sprojects feeds" '.4045'href="%s" type="text/x-opml" />'."\n",4046 esc_attr($site_name), href(project=>undef, action=>"opml"));4047}4048}40494050sub print_header_links {4051my$status=shift;40524053# print out each stylesheet that exist, providing backwards capability4054# for those people who defined $stylesheet in a config file4055if(defined$stylesheet) {4056print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";4057}else{4058foreachmy$stylesheet(@stylesheets) {4059next unless$stylesheet;4060print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";4061}4062}4063 print_feed_meta()4064if($statuseq'200 OK');4065if(defined$favicon) {4066printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);4067}4068}40694070sub print_nav_breadcrumbs_path {4071my$dirprefix=undef;4072while(my$part=shift) {4073$dirprefix.="/"ifdefined$dirprefix;4074$dirprefix.=$part;4075print$cgi->a({-href => href(project =>undef,4076 project_filter =>$dirprefix,4077 action =>"project_list")},4078 esc_html($part)) ." / ";4079}4080}40814082sub print_nav_breadcrumbs {4083my%opts=@_;40844085formy$crumb(@extra_breadcrumbs, [$home_link_str=>$home_link]) {4086print$cgi->a({-href => esc_url($crumb->[1])},$crumb->[0]) ." / ";4087}4088if(defined$project) {4089my@dirname=split'/',$project;4090my$projectbasename=pop@dirname;4091 print_nav_breadcrumbs_path(@dirname);4092print$cgi->a({-href => href(action=>"summary")}, esc_html($projectbasename));4093if(defined$action) {4094my$action_print=$action;4095if(defined$opts{-action_extra}) {4096$action_print=$cgi->a({-href => href(action=>$action)},4097$action);4098}4099print" /$action_print";4100}4101if(defined$opts{-action_extra}) {4102print" /$opts{-action_extra}";4103}4104print"\n";4105}elsif(defined$project_filter) {4106 print_nav_breadcrumbs_path(split'/',$project_filter);4107}4108}41094110sub print_search_form {4111if(!defined$searchtext) {4112$searchtext="";4113}4114my$search_hash;4115if(defined$hash_base) {4116$search_hash=$hash_base;4117}elsif(defined$hash) {4118$search_hash=$hash;4119}else{4120$search_hash="HEAD";4121}4122my$action=$my_uri;4123my$use_pathinfo= gitweb_check_feature('pathinfo');4124if($use_pathinfo) {4125$action.="/".esc_url($project);4126}4127print$cgi->start_form(-method=>"get", -action =>$action) .4128"<div class=\"search\">\n".4129(!$use_pathinfo&&4130$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .4131$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".4132$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".4133$cgi->popup_menu(-name =>'st', -default=>'commit',4134-values=> ['commit','grep','author','committer','pickaxe']) .4135" ".$cgi->a({-href => href(action=>"search_help"),4136-title =>"search help"},"?") ." search:\n",4137$cgi->textfield(-name =>"s", -value =>$searchtext, -override =>1) ."\n".4138"<span title=\"Extended regular expression\">".4139$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',4140-checked =>$search_use_regexp) .4141"</span>".4142"</div>".4143$cgi->end_form() ."\n";4144}41454146sub git_header_html {4147my$status=shift||"200 OK";4148my$expires=shift;4149my%opts=@_;41504151my$title= get_page_title();4152my$content_type= get_content_type_html();4153print$cgi->header(-type=>$content_type, -charset =>'utf-8',4154-status=>$status, -expires =>$expires)4155unless($opts{'-no_http_header'});4156my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';4157print<<EOF;4158<?xml version="1.0" encoding="utf-8"?>4159<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">4160<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">4161<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->4162<!-- git core binaries version$git_version-->4163<head>4164<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>4165<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>4166<meta name="robots" content="index, nofollow"/>4167<title>$title</title>4168EOF4169# the stylesheet, favicon etc urls won't work correctly with path_info4170# unless we set the appropriate base URL4171if($ENV{'PATH_INFO'}) {4172print"<base href=\"".esc_url($base_url)."\"/>\n";4173}4174 print_header_links($status);41754176if(defined$site_html_head_string) {4177print to_utf8($site_html_head_string);4178}41794180print"</head>\n".4181"<body>\n";41824183if(defined$site_header&& -f $site_header) {4184 insert_file($site_header);4185}41864187print"<div class=\"page_header\">\n";4188if(defined$logo) {4189print$cgi->a({-href => esc_url($logo_url),4190-title =>$logo_label},4191$cgi->img({-src => esc_url($logo),4192-width =>72, -height =>27,4193-alt =>"git",4194-class=>"logo"}));4195}4196 print_nav_breadcrumbs(%opts);4197print"</div>\n";41984199my$have_search= gitweb_check_feature('search');4200if(defined$project&&$have_search) {4201 print_search_form();4202}4203}42044205sub git_footer_html {4206my$feed_class='rss_logo';42074208print"<div class=\"page_footer\">\n";4209if(defined$project) {4210my$descr= git_get_project_description($project);4211if(defined$descr) {4212print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";4213}42144215my%href_params= get_feed_info();4216if(!%href_params) {4217$feed_class.=' generic';4218}4219$href_params{'-title'} ||='log';42204221foreachmy$format(qw(RSS Atom)) {4222$href_params{'action'} =lc($format);4223print$cgi->a({-href => href(%href_params),4224-title =>"$href_params{'-title'}$formatfeed",4225-class=>$feed_class},$format)."\n";4226}42274228}else{4229print$cgi->a({-href => href(project=>undef, action=>"opml",4230 project_filter =>$project_filter),4231-class=>$feed_class},"OPML") ." ";4232print$cgi->a({-href => href(project=>undef, action=>"project_index",4233 project_filter =>$project_filter),4234-class=>$feed_class},"TXT") ."\n";4235}4236print"</div>\n";# class="page_footer"42374238if(defined$t0&& gitweb_check_feature('timed')) {4239print"<div id=\"generating_info\">\n";4240print'This page took '.4241'<span id="generating_time" class="time_span">'.4242 tv_interval($t0, [ gettimeofday() ]).4243' seconds </span>'.4244' and '.4245'<span id="generating_cmd">'.4246$number_of_git_cmds.4247'</span> git commands '.4248" to generate.\n";4249print"</div>\n";# class="page_footer"4250}42514252if(defined$site_footer&& -f $site_footer) {4253 insert_file($site_footer);4254}42554256print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;4257if(defined$action&&4258$actioneq'blame_incremental') {4259print qq!<script type="text/javascript">\n!.4260 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.4261 qq!"!. href() .qq!");\n!.4262 qq!</script>\n!;4263}else{4264my($jstimezone,$tz_cookie,$datetime_class) =4265 gitweb_get_feature('javascript-timezone');42664267print qq!<script type="text/javascript">\n!.4268 qq!window.onload = function () {\n!;4269if(gitweb_check_feature('javascript-actions')) {4270print qq! fixLinks();\n!;4271}4272if($jstimezone&&$tz_cookie&&$datetime_class) {4273print qq! var tz_cookie = { name:'$tz_cookie', expires:14, path:'/'};\n!.# in days4274 qq! onloadTZSetup('$jstimezone', tz_cookie,'$datetime_class');\n!;4275}4276print qq!};\n!.4277 qq!</script>\n!;4278}42794280print"</body>\n".4281"</html>";4282}42834284# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])4285# Example: die_error(404, 'Hash not found')4286# By convention, use the following status codes (as defined in RFC 2616):4287# 400: Invalid or missing CGI parameters, or4288# requested object exists but has wrong type.4289# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on4290# this server or project.4291# 404: Requested object/revision/project doesn't exist.4292# 500: The server isn't configured properly, or4293# an internal error occurred (e.g. failed assertions caused by bugs), or4294# an unknown error occurred (e.g. the git binary died unexpectedly).4295# 503: The server is currently unavailable (because it is overloaded,4296# or down for maintenance). Generally, this is a temporary state.4297sub die_error {4298my$status=shift||500;4299my$error= esc_html(shift) ||"Internal Server Error";4300my$extra=shift;4301my%opts=@_;43024303my%http_responses= (4304400=>'400 Bad Request',4305403=>'403 Forbidden',4306404=>'404 Not Found',4307500=>'500 Internal Server Error',4308503=>'503 Service Unavailable',4309);4310 git_header_html($http_responses{$status},undef,%opts);4311print<<EOF;4312<div class="page_body">4313<br /><br />4314$status-$error4315<br />4316EOF4317if(defined$extra) {4318print"<hr />\n".4319"$extra\n";4320}4321print"</div>\n";43224323 git_footer_html();4324goto DONE_GITWEB4325unless($opts{'-error_handler'});4326}43274328## ----------------------------------------------------------------------4329## functions printing or outputting HTML: navigation43304331sub git_print_page_nav {4332my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;4333$extra=''if!defined$extra;# pager or formats43344335my@navs=qw(summary shortlog log commit commitdiff tree);4336if($suppress) {4337@navs=grep{$_ne$suppress}@navs;4338}43394340my%arg=map{$_=> {action=>$_} }@navs;4341if(defined$head) {4342for(qw(commit commitdiff)) {4343$arg{$_}{'hash'} =$head;4344}4345if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {4346for(qw(shortlog log)) {4347$arg{$_}{'hash'} =$head;4348}4349}4350}43514352$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;4353$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;43544355my@actions= gitweb_get_feature('actions');4356my%repl= (4357'%'=>'%',4358'n'=>$project,# project name4359'f'=>$git_dir,# project path within filesystem4360'h'=>$treehead||'',# current hash ('h' parameter)4361'b'=>$treebase||'',# hash base ('hb' parameter)4362);4363while(@actions) {4364my($label,$link,$pos) =splice(@actions,0,3);4365# insert4366@navs=map{$_eq$pos? ($_,$label) :$_}@navs;4367# munch munch4368$link=~s/%([%nfhb])/$repl{$1}/g;4369$arg{$label}{'_href'} =$link;4370}43714372print"<div class=\"page_nav\">\n".4373(join" | ",4374map{$_eq$current?4375$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")4376}@navs);4377print"<br/>\n$extra<br/>\n".4378"</div>\n";4379}43804381# returns a submenu for the navigation of the refs views (tags, heads,4382# remotes) with the current view disabled and the remotes view only4383# available if the feature is enabled4384sub format_ref_views {4385my($current) =@_;4386my@ref_views=qw{tags heads};4387push@ref_views,'remotes'if gitweb_check_feature('remote_heads');4388returnjoin" | ",map{4389$_eq$current?$_:4390$cgi->a({-href => href(action=>$_)},$_)4391}@ref_views4392}43934394sub format_paging_nav {4395my($action,$page,$has_next_link) =@_;4396my$paging_nav;439743984399if($page>0) {4400$paging_nav.=4401$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .4402" ⋅ ".4403$cgi->a({-href => href(-replay=>1, page=>$page-1),4404-accesskey =>"p", -title =>"Alt-p"},"prev");4405}else{4406$paging_nav.="first ⋅ prev";4407}44084409if($has_next_link) {4410$paging_nav.=" ⋅ ".4411$cgi->a({-href => href(-replay=>1, page=>$page+1),4412-accesskey =>"n", -title =>"Alt-n"},"next");4413}else{4414$paging_nav.=" ⋅ next";4415}44164417return$paging_nav;4418}44194420## ......................................................................4421## functions printing or outputting HTML: div44224423sub git_print_header_div {4424my($action,$title,$hash,$hash_base) =@_;4425my%args= ();44264427$args{'action'} =$action;4428$args{'hash'} =$hashif$hash;4429$args{'hash_base'} =$hash_baseif$hash_base;44304431print"<div class=\"header\">\n".4432$cgi->a({-href => href(%args), -class=>"title"},4433$title?$title:$action) .4434"\n</div>\n";4435}44364437sub format_repo_url {4438my($name,$url) =@_;4439return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";4440}44414442# Group output by placing it in a DIV element and adding a header.4443# Options for start_div() can be provided by passing a hash reference as the4444# first parameter to the function.4445# Options to git_print_header_div() can be provided by passing an array4446# reference. This must follow the options to start_div if they are present.4447# The content can be a scalar, which is output as-is, a scalar reference, which4448# is output after html escaping, an IO handle passed either as *handle or4449# *handle{IO}, or a function reference. In the latter case all following4450# parameters will be taken as argument to the content function call.4451sub git_print_section {4452my($div_args,$header_args,$content);4453my$arg=shift;4454if(ref($arg)eq'HASH') {4455$div_args=$arg;4456$arg=shift;4457}4458if(ref($arg)eq'ARRAY') {4459$header_args=$arg;4460$arg=shift;4461}4462$content=$arg;44634464print$cgi->start_div($div_args);4465 git_print_header_div(@$header_args);44664467if(ref($content)eq'CODE') {4468$content->(@_);4469}elsif(ref($content)eq'SCALAR') {4470print esc_html($$content);4471}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {4472print<$content>;4473}elsif(!ref($content) &&defined($content)) {4474print$content;4475}44764477print$cgi->end_div;4478}44794480sub format_timestamp_html {4481my$date=shift;4482my$strtime=$date->{'rfc2822'};44834484my(undef,undef,$datetime_class) =4485 gitweb_get_feature('javascript-timezone');4486if($datetime_class) {4487$strtime= qq!<span class="$datetime_class">$strtime</span>!;4488}44894490my$localtime_format='(%02d:%02d%s)';4491if($date->{'hour_local'} <6) {4492$localtime_format='(<span class="atnight">%02d:%02d</span>%s)';4493}4494$strtime.=' '.4495sprintf($localtime_format,4496$date->{'hour_local'},$date->{'minute_local'},$date->{'tz_local'});44974498return$strtime;4499}45004501# Outputs the author name and date in long form4502sub git_print_authorship {4503my$co=shift;4504my%opts=@_;4505my$tag=$opts{-tag} ||'div';4506my$author=$co->{'author_name'};45074508my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});4509print"<$tagclass=\"author_date\">".4510 format_search_author($author,"author", esc_html($author)) .4511" [".format_timestamp_html(\%ad)."]".4512 git_get_avatar($co->{'author_email'}, -pad_before =>1) .4513"</$tag>\n";4514}45154516# Outputs table rows containing the full author or committer information,4517# in the format expected for 'commit' view (& similar).4518# Parameters are a commit hash reference, followed by the list of people4519# to output information for. If the list is empty it defaults to both4520# author and committer.4521sub git_print_authorship_rows {4522my$co=shift;4523# too bad we can't use @people = @_ || ('author', 'committer')4524my@people=@_;4525@people= ('author','committer')unless@people;4526foreachmy$who(@people) {4527my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});4528print"<tr><td>$who</td><td>".4529 format_search_author($co->{"${who}_name"},$who,4530 esc_html($co->{"${who}_name"})) ." ".4531 format_search_author($co->{"${who}_email"},$who,4532 esc_html("<".$co->{"${who}_email"} .">")) .4533"</td><td rowspan=\"2\">".4534 git_get_avatar($co->{"${who}_email"}, -size =>'double') .4535"</td></tr>\n".4536"<tr>".4537"<td></td><td>".4538 format_timestamp_html(\%wd) .4539"</td>".4540"</tr>\n";4541}4542}45434544sub git_print_page_path {4545my$name=shift;4546my$type=shift;4547my$hb=shift;454845494550print"<div class=\"page_path\">";4551print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),4552-title =>'tree root'}, to_utf8("[$project]"));4553print" / ";4554if(defined$name) {4555my@dirname=split'/',$name;4556my$basename=pop@dirname;4557my$fullname='';45584559foreachmy$dir(@dirname) {4560$fullname.= ($fullname?'/':'') .$dir;4561print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4562 hash_base=>$hb),4563-title =>$fullname}, esc_path($dir));4564print" / ";4565}4566if(defined$type&&$typeeq'blob') {4567print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4568 hash_base=>$hb),4569-title =>$name}, esc_path($basename));4570}elsif(defined$type&&$typeeq'tree') {4571print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4572 hash_base=>$hb),4573-title =>$name}, esc_path($basename));4574print" / ";4575}else{4576print esc_path($basename);4577}4578}4579print"<br/></div>\n";4580}45814582sub git_print_log {4583my$log=shift;4584my%opts=@_;45854586if($opts{'-remove_title'}) {4587# remove title, i.e. first line of log4588shift@$log;4589}4590# remove leading empty lines4591while(defined$log->[0] &&$log->[0]eq"") {4592shift@$log;4593}45944595# print log4596my$skip_blank_line=0;4597foreachmy$line(@$log) {4598if($line=~m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) {4599if(!$opts{'-remove_signoff'}) {4600print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4601$skip_blank_line=1;4602}4603next;4604}46054606if($line=~ m,\s*([a-z]*link): (https?://\S+),i) {4607if(!$opts{'-remove_signoff'}) {4608print"<span class=\"signoff\">". esc_html($1) .": ".4609"<a href=\"". esc_html($2) ."\">". esc_html($2) ."</a>".4610"</span><br/>\n";4611$skip_blank_line=1;4612}4613next;4614}46154616# print only one empty line4617# do not print empty line after signoff4618if($lineeq"") {4619next if($skip_blank_line);4620$skip_blank_line=1;4621}else{4622$skip_blank_line=0;4623}46244625print format_log_line_html($line) ."<br/>\n";4626}46274628if($opts{'-final_empty_line'}) {4629# end with single empty line4630print"<br/>\n"unless$skip_blank_line;4631}4632}46334634# return link target (what link points to)4635sub git_get_link_target {4636my$hash=shift;4637my$link_target;46384639# read link4640open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4641orreturn;4642{4643local$/=undef;4644$link_target= <$fd>;4645}4646close$fd4647orreturn;46484649return$link_target;4650}46514652# given link target, and the directory (basedir) the link is in,4653# return target of link relative to top directory (top tree);4654# return undef if it is not possible (including absolute links).4655sub normalize_link_target {4656my($link_target,$basedir) =@_;46574658# absolute symlinks (beginning with '/') cannot be normalized4659return if(substr($link_target,0,1)eq'/');46604661# normalize link target to path from top (root) tree (dir)4662my$path;4663if($basedir) {4664$path=$basedir.'/'.$link_target;4665}else{4666# we are in top (root) tree (dir)4667$path=$link_target;4668}46694670# remove //, /./, and /../4671my@path_parts;4672foreachmy$part(split('/',$path)) {4673# discard '.' and ''4674next if(!$part||$parteq'.');4675# handle '..'4676if($parteq'..') {4677if(@path_parts) {4678pop@path_parts;4679}else{4680# link leads outside repository (outside top dir)4681return;4682}4683}else{4684push@path_parts,$part;4685}4686}4687$path=join('/',@path_parts);46884689return$path;4690}46914692# print tree entry (row of git_tree), but without encompassing <tr> element4693sub git_print_tree_entry {4694my($t,$basedir,$hash_base,$have_blame) =@_;46954696my%base_key= ();4697$base_key{'hash_base'} =$hash_baseifdefined$hash_base;46984699# The format of a table row is: mode list link. Where mode is4700# the mode of the entry, list is the name of the entry, an href,4701# and link is the action links of the entry.47024703print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4704if(exists$t->{'size'}) {4705print"<td class=\"size\">$t->{'size'}</td>\n";4706}4707if($t->{'type'}eq"blob") {4708print"<td class=\"list\">".4709$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4710 file_name=>"$basedir$t->{'name'}",%base_key),4711-class=>"list"}, esc_path($t->{'name'}));4712if(S_ISLNK(oct$t->{'mode'})) {4713my$link_target= git_get_link_target($t->{'hash'});4714if($link_target) {4715my$norm_target= normalize_link_target($link_target,$basedir);4716if(defined$norm_target) {4717print" -> ".4718$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4719 file_name=>$norm_target),4720-title =>$norm_target}, esc_path($link_target));4721}else{4722print" -> ". esc_path($link_target);4723}4724}4725}4726print"</td>\n";4727print"<td class=\"link\">";4728print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4729 file_name=>"$basedir$t->{'name'}",%base_key)},4730"blob");4731if($have_blame) {4732print" | ".4733$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4734 file_name=>"$basedir$t->{'name'}",%base_key)},4735"blame");4736}4737if(defined$hash_base) {4738print" | ".4739$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4740 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4741"history");4742}4743print" | ".4744$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4745 file_name=>"$basedir$t->{'name'}")},4746"raw");4747print"</td>\n";47484749}elsif($t->{'type'}eq"tree") {4750print"<td class=\"list\">";4751print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4752 file_name=>"$basedir$t->{'name'}",4753%base_key)},4754 esc_path($t->{'name'}));4755print"</td>\n";4756print"<td class=\"link\">";4757print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4758 file_name=>"$basedir$t->{'name'}",4759%base_key)},4760"tree");4761if(defined$hash_base) {4762print" | ".4763$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4764 file_name=>"$basedir$t->{'name'}")},4765"history");4766}4767print"</td>\n";4768}else{4769# unknown object: we can only present history for it4770# (this includes 'commit' object, i.e. submodule support)4771print"<td class=\"list\">".4772 esc_path($t->{'name'}) .4773"</td>\n";4774print"<td class=\"link\">";4775if(defined$hash_base) {4776print$cgi->a({-href => href(action=>"history",4777 hash_base=>$hash_base,4778 file_name=>"$basedir$t->{'name'}")},4779"history");4780}4781print"</td>\n";4782}4783}47844785## ......................................................................4786## functions printing large fragments of HTML47874788# get pre-image filenames for merge (combined) diff4789sub fill_from_file_info {4790my($diff,@parents) =@_;47914792$diff->{'from_file'} = [ ];4793$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4794for(my$i=0;$i<$diff->{'nparents'};$i++) {4795if($diff->{'status'}[$i]eq'R'||4796$diff->{'status'}[$i]eq'C') {4797$diff->{'from_file'}[$i] =4798 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4799}4800}48014802return$diff;4803}48044805# is current raw difftree line of file deletion4806sub is_deleted {4807my$diffinfo=shift;48084809return$diffinfo->{'to_id'}eq('0' x 40);4810}48114812# does patch correspond to [previous] difftree raw line4813# $diffinfo - hashref of parsed raw diff format4814# $patchinfo - hashref of parsed patch diff format4815# (the same keys as in $diffinfo)4816sub is_patch_split {4817my($diffinfo,$patchinfo) =@_;48184819returndefined$diffinfo&&defined$patchinfo4820&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4821}482248234824sub git_difftree_body {4825my($difftree,$hash,@parents) =@_;4826my($parent) =$parents[0];4827my$have_blame= gitweb_check_feature('blame');4828print"<div class=\"list_head\">\n";4829if($#{$difftree} >10) {4830print(($#{$difftree} +1) ." files changed:\n");4831}4832print"</div>\n";48334834print"<table class=\"".4835(@parents>1?"combined ":"") .4836"diff_tree\">\n";48374838# header only for combined diff in 'commitdiff' view4839my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4840if($has_header) {4841# table header4842print"<thead><tr>\n".4843"<th></th><th></th>\n";# filename, patchN link4844for(my$i=0;$i<@parents;$i++) {4845my$par=$parents[$i];4846print"<th>".4847$cgi->a({-href => href(action=>"commitdiff",4848 hash=>$hash, hash_parent=>$par),4849-title =>'commitdiff to parent number '.4850($i+1) .': '.substr($par,0,7)},4851$i+1) .4852" </th>\n";4853}4854print"</tr></thead>\n<tbody>\n";4855}48564857my$alternate=1;4858my$patchno=0;4859foreachmy$line(@{$difftree}) {4860my$diff= parsed_difftree_line($line);48614862if($alternate) {4863print"<tr class=\"dark\">\n";4864}else{4865print"<tr class=\"light\">\n";4866}4867$alternate^=1;48684869if(exists$diff->{'nparents'}) {# combined diff48704871 fill_from_file_info($diff,@parents)4872unlessexists$diff->{'from_file'};48734874if(!is_deleted($diff)) {4875# file exists in the result (child) commit4876print"<td>".4877$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4878 file_name=>$diff->{'to_file'},4879 hash_base=>$hash),4880-class=>"list"}, esc_path($diff->{'to_file'})) .4881"</td>\n";4882}else{4883print"<td>".4884 esc_path($diff->{'to_file'}) .4885"</td>\n";4886}48874888if($actioneq'commitdiff') {4889# link to patch4890$patchno++;4891print"<td class=\"link\">".4892$cgi->a({-href => href(-anchor=>"patch$patchno")},4893"patch") .4894" | ".4895"</td>\n";4896}48974898my$has_history=0;4899my$not_deleted=0;4900for(my$i=0;$i<$diff->{'nparents'};$i++) {4901my$hash_parent=$parents[$i];4902my$from_hash=$diff->{'from_id'}[$i];4903my$from_path=$diff->{'from_file'}[$i];4904my$status=$diff->{'status'}[$i];49054906$has_history||= ($statusne'A');4907$not_deleted||= ($statusne'D');49084909if($statuseq'A') {4910print"<td class=\"link\"align=\"right\"> | </td>\n";4911}elsif($statuseq'D') {4912print"<td class=\"link\">".4913$cgi->a({-href => href(action=>"blob",4914 hash_base=>$hash,4915 hash=>$from_hash,4916 file_name=>$from_path)},4917"blob". ($i+1)) .4918" | </td>\n";4919}else{4920if($diff->{'to_id'}eq$from_hash) {4921print"<td class=\"link nochange\">";4922}else{4923print"<td class=\"link\">";4924}4925print$cgi->a({-href => href(action=>"blobdiff",4926 hash=>$diff->{'to_id'},4927 hash_parent=>$from_hash,4928 hash_base=>$hash,4929 hash_parent_base=>$hash_parent,4930 file_name=>$diff->{'to_file'},4931 file_parent=>$from_path)},4932"diff". ($i+1)) .4933" | </td>\n";4934}4935}49364937print"<td class=\"link\">";4938if($not_deleted) {4939print$cgi->a({-href => href(action=>"blob",4940 hash=>$diff->{'to_id'},4941 file_name=>$diff->{'to_file'},4942 hash_base=>$hash)},4943"blob");4944print" | "if($has_history);4945}4946if($has_history) {4947print$cgi->a({-href => href(action=>"history",4948 file_name=>$diff->{'to_file'},4949 hash_base=>$hash)},4950"history");4951}4952print"</td>\n";49534954print"</tr>\n";4955next;# instead of 'else' clause, to avoid extra indent4956}4957# else ordinary diff49584959my($to_mode_oct,$to_mode_str,$to_file_type);4960my($from_mode_oct,$from_mode_str,$from_file_type);4961if($diff->{'to_mode'}ne('0' x 6)) {4962$to_mode_oct=oct$diff->{'to_mode'};4963if(S_ISREG($to_mode_oct)) {# only for regular file4964$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4965}4966$to_file_type= file_type($diff->{'to_mode'});4967}4968if($diff->{'from_mode'}ne('0' x 6)) {4969$from_mode_oct=oct$diff->{'from_mode'};4970if(S_ISREG($from_mode_oct)) {# only for regular file4971$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4972}4973$from_file_type= file_type($diff->{'from_mode'});4974}49754976if($diff->{'status'}eq"A") {# created4977my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4978$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4979$mode_chng.="]</span>";4980print"<td>";4981print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4982 hash_base=>$hash, file_name=>$diff->{'file'}),4983-class=>"list"}, esc_path($diff->{'file'}));4984print"</td>\n";4985print"<td>$mode_chng</td>\n";4986print"<td class=\"link\">";4987if($actioneq'commitdiff') {4988# link to patch4989$patchno++;4990print$cgi->a({-href => href(-anchor=>"patch$patchno")},4991"patch") .4992" | ";4993}4994print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4995 hash_base=>$hash, file_name=>$diff->{'file'})},4996"blob");4997print"</td>\n";49984999}elsif($diff->{'status'}eq"D") {# deleted5000my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";5001print"<td>";5002print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},5003 hash_base=>$parent, file_name=>$diff->{'file'}),5004-class=>"list"}, esc_path($diff->{'file'}));5005print"</td>\n";5006print"<td>$mode_chng</td>\n";5007print"<td class=\"link\">";5008if($actioneq'commitdiff') {5009# link to patch5010$patchno++;5011print$cgi->a({-href => href(-anchor=>"patch$patchno")},5012"patch") .5013" | ";5014}5015print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},5016 hash_base=>$parent, file_name=>$diff->{'file'})},5017"blob") ." | ";5018if($have_blame) {5019print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,5020 file_name=>$diff->{'file'})},5021"blame") ." | ";5022}5023print$cgi->a({-href => href(action=>"history", hash_base=>$parent,5024 file_name=>$diff->{'file'})},5025"history");5026print"</td>\n";50275028}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed5029my$mode_chnge="";5030if($diff->{'from_mode'} !=$diff->{'to_mode'}) {5031$mode_chnge="<span class=\"file_status mode_chnge\">[changed";5032if($from_file_typene$to_file_type) {5033$mode_chnge.=" from$from_file_typeto$to_file_type";5034}5035if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {5036if($from_mode_str&&$to_mode_str) {5037$mode_chnge.=" mode:$from_mode_str->$to_mode_str";5038}elsif($to_mode_str) {5039$mode_chnge.=" mode:$to_mode_str";5040}5041}5042$mode_chnge.="]</span>\n";5043}5044print"<td>";5045print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},5046 hash_base=>$hash, file_name=>$diff->{'file'}),5047-class=>"list"}, esc_path($diff->{'file'}));5048print"</td>\n";5049print"<td>$mode_chnge</td>\n";5050print"<td class=\"link\">";5051if($actioneq'commitdiff') {5052# link to patch5053$patchno++;5054print$cgi->a({-href => href(-anchor=>"patch$patchno")},5055"patch") .5056" | ";5057}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {5058# "commit" view and modified file (not onlu mode changed)5059print$cgi->a({-href => href(action=>"blobdiff",5060 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},5061 hash_base=>$hash, hash_parent_base=>$parent,5062 file_name=>$diff->{'file'})},5063"diff") .5064" | ";5065}5066print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},5067 hash_base=>$hash, file_name=>$diff->{'file'})},5068"blob") ." | ";5069if($have_blame) {5070print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,5071 file_name=>$diff->{'file'})},5072"blame") ." | ";5073}5074print$cgi->a({-href => href(action=>"history", hash_base=>$hash,5075 file_name=>$diff->{'file'})},5076"history");5077print"</td>\n";50785079}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied5080my%status_name= ('R'=>'moved','C'=>'copied');5081my$nstatus=$status_name{$diff->{'status'}};5082my$mode_chng="";5083if($diff->{'from_mode'} !=$diff->{'to_mode'}) {5084# mode also for directories, so we cannot use $to_mode_str5085$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);5086}5087print"<td>".5088$cgi->a({-href => href(action=>"blob", hash_base=>$hash,5089 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),5090-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".5091"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".5092$cgi->a({-href => href(action=>"blob", hash_base=>$parent,5093 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),5094-class=>"list"}, esc_path($diff->{'from_file'})) .5095" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".5096"<td class=\"link\">";5097if($actioneq'commitdiff') {5098# link to patch5099$patchno++;5100print$cgi->a({-href => href(-anchor=>"patch$patchno")},5101"patch") .5102" | ";5103}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {5104# "commit" view and modified file (not only pure rename or copy)5105print$cgi->a({-href => href(action=>"blobdiff",5106 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},5107 hash_base=>$hash, hash_parent_base=>$parent,5108 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},5109"diff") .5110" | ";5111}5112print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},5113 hash_base=>$parent, file_name=>$diff->{'to_file'})},5114"blob") ." | ";5115if($have_blame) {5116print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,5117 file_name=>$diff->{'to_file'})},5118"blame") ." | ";5119}5120print$cgi->a({-href => href(action=>"history", hash_base=>$hash,5121 file_name=>$diff->{'to_file'})},5122"history");5123print"</td>\n";51245125}# we should not encounter Unmerged (U) or Unknown (X) status5126print"</tr>\n";5127}5128print"</tbody>"if$has_header;5129print"</table>\n";5130}51315132# Print context lines and then rem/add lines in a side-by-side manner.5133sub print_sidebyside_diff_lines {5134my($ctx,$rem,$add) =@_;51355136# print context block before add/rem block5137if(@$ctx) {5138print join'',5139'<div class="chunk_block ctx">',5140'<div class="old">',5141@$ctx,5142'</div>',5143'<div class="new">',5144@$ctx,5145'</div>',5146'</div>';5147}51485149if(!@$add) {5150# pure removal5151print join'',5152'<div class="chunk_block rem">',5153'<div class="old">',5154@$rem,5155'</div>',5156'</div>';5157}elsif(!@$rem) {5158# pure addition5159print join'',5160'<div class="chunk_block add">',5161'<div class="new">',5162@$add,5163'</div>',5164'</div>';5165}else{5166print join'',5167'<div class="chunk_block chg">',5168'<div class="old">',5169@$rem,5170'</div>',5171'<div class="new">',5172@$add,5173'</div>',5174'</div>';5175}5176}51775178# Print context lines and then rem/add lines in inline manner.5179sub print_inline_diff_lines {5180my($ctx,$rem,$add) =@_;51815182print@$ctx,@$rem,@$add;5183}51845185# Format removed and added line, mark changed part and HTML-format them.5186# Implementation is based on contrib/diff-highlight5187sub format_rem_add_lines_pair {5188my($rem,$add,$num_parents) =@_;51895190# We need to untabify lines before split()'ing them;5191# otherwise offsets would be invalid.5192chomp$rem;5193chomp$add;5194$rem= untabify($rem);5195$add= untabify($add);51965197my@rem=split(//,$rem);5198my@add=split(//,$add);5199my($esc_rem,$esc_add);5200# Ignore leading +/- characters for each parent.5201my($prefix_len,$suffix_len) = ($num_parents,0);5202my($prefix_has_nonspace,$suffix_has_nonspace);52035204my$shorter= (@rem<@add) ?@rem:@add;5205while($prefix_len<$shorter) {5206last if($rem[$prefix_len]ne$add[$prefix_len]);52075208$prefix_has_nonspace=1if($rem[$prefix_len] !~/\s/);5209$prefix_len++;5210}52115212while($prefix_len+$suffix_len<$shorter) {5213last if($rem[-1-$suffix_len]ne$add[-1-$suffix_len]);52145215$suffix_has_nonspace=1if($rem[-1-$suffix_len] !~/\s/);5216$suffix_len++;5217}52185219# Mark lines that are different from each other, but have some common5220# part that isn't whitespace. If lines are completely different, don't5221# mark them because that would make output unreadable, especially if5222# diff consists of multiple lines.5223if($prefix_has_nonspace||$suffix_has_nonspace) {5224$esc_rem= esc_html_hl_regions($rem,'marked',5225[$prefix_len,@rem-$suffix_len], -nbsp=>1);5226$esc_add= esc_html_hl_regions($add,'marked',5227[$prefix_len,@add-$suffix_len], -nbsp=>1);5228}else{5229$esc_rem= esc_html($rem, -nbsp=>1);5230$esc_add= esc_html($add, -nbsp=>1);5231}52325233return format_diff_line(\$esc_rem,'rem'),5234 format_diff_line(\$esc_add,'add');5235}52365237# HTML-format diff context, removed and added lines.5238sub format_ctx_rem_add_lines {5239my($ctx,$rem,$add,$num_parents) =@_;5240my(@new_ctx,@new_rem,@new_add);5241my$can_highlight=0;5242my$is_combined= ($num_parents>1);52435244# Highlight if every removed line has a corresponding added line.5245if(@$add>0&&@$add==@$rem) {5246$can_highlight=1;52475248# Highlight lines in combined diff only if the chunk contains5249# diff between the same version, e.g.5250#5251# - a5252# - b5253# + c5254# + d5255#5256# Otherwise the highlightling would be confusing.5257if($is_combined) {5258for(my$i=0;$i<@$add;$i++) {5259my$prefix_rem=substr($rem->[$i],0,$num_parents);5260my$prefix_add=substr($add->[$i],0,$num_parents);52615262$prefix_rem=~s/-/+/g;52635264if($prefix_remne$prefix_add) {5265$can_highlight=0;5266last;5267}5268}5269}5270}52715272if($can_highlight) {5273for(my$i=0;$i<@$add;$i++) {5274my($line_rem,$line_add) = format_rem_add_lines_pair(5275$rem->[$i],$add->[$i],$num_parents);5276push@new_rem,$line_rem;5277push@new_add,$line_add;5278}5279}else{5280@new_rem=map{ format_diff_line($_,'rem') }@$rem;5281@new_add=map{ format_diff_line($_,'add') }@$add;5282}52835284@new_ctx=map{ format_diff_line($_,'ctx') }@$ctx;52855286return(\@new_ctx, \@new_rem, \@new_add);5287}52885289# Print context lines and then rem/add lines.5290sub print_diff_lines {5291my($ctx,$rem,$add,$diff_style,$num_parents) =@_;5292my$is_combined=$num_parents>1;52935294($ctx,$rem,$add) = format_ctx_rem_add_lines($ctx,$rem,$add,5295$num_parents);52965297if($diff_styleeq'sidebyside'&& !$is_combined) {5298 print_sidebyside_diff_lines($ctx,$rem,$add);5299}else{5300# default 'inline' style and unknown styles5301 print_inline_diff_lines($ctx,$rem,$add);5302}5303}53045305sub print_diff_chunk {5306my($diff_style,$num_parents,$from,$to,@chunk) =@_;5307my(@ctx,@rem,@add);53085309# The class of the previous line.5310my$prev_class='';53115312return unless@chunk;53135314# incomplete last line might be among removed or added lines,5315# or both, or among context lines: find which5316for(my$i=1;$i<@chunk;$i++) {5317if($chunk[$i][0]eq'incomplete') {5318$chunk[$i][0] =$chunk[$i-1][0];5319}5320}53215322# guardian5323push@chunk, ["",""];53245325foreachmy$line_info(@chunk) {5326my($class,$line) =@$line_info;53275328# print chunk headers5329if($class&&$classeq'chunk_header') {5330print format_diff_line($line,$class,$from,$to);5331next;5332}53335334## print from accumulator when have some add/rem lines or end5335# of chunk (flush context lines), or when have add and rem5336# lines and new block is reached (otherwise add/rem lines could5337# be reordered)5338if(!$class|| ((@rem||@add) &&$classeq'ctx') ||5339(@rem&&@add&&$classne$prev_class)) {5340 print_diff_lines(\@ctx, \@rem, \@add,5341$diff_style,$num_parents);5342@ctx=@rem=@add= ();5343}53445345## adding lines to accumulator5346# guardian value5347last unless$line;5348# rem, add or change5349if($classeq'rem') {5350push@rem,$line;5351}elsif($classeq'add') {5352push@add,$line;5353}5354# context line5355if($classeq'ctx') {5356push@ctx,$line;5357}53585359$prev_class=$class;5360}5361}53625363sub git_patchset_body {5364my($fd,$diff_style,$difftree,$hash,@hash_parents) =@_;5365my($hash_parent) =$hash_parents[0];53665367my$is_combined= (@hash_parents>1);5368my$patch_idx=0;5369my$patch_number=0;5370my$patch_line;5371my$diffinfo;5372my$to_name;5373my(%from,%to);5374my@chunk;# for side-by-side diff53755376print"<div class=\"patchset\">\n";53775378# skip to first patch5379while($patch_line= <$fd>) {5380chomp$patch_line;53815382last if($patch_line=~m/^diff /);5383}53845385 PATCH:5386while($patch_line) {53875388# parse "git diff" header line5389if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {5390# $1 is from_name, which we do not use5391$to_name= unquote($2);5392$to_name=~s!^b/!!;5393}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {5394# $1 is 'cc' or 'combined', which we do not use5395$to_name= unquote($2);5396}else{5397$to_name=undef;5398}53995400# check if current patch belong to current raw line5401# and parse raw git-diff line if needed5402if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {5403# this is continuation of a split patch5404print"<div class=\"patch cont\">\n";5405}else{5406# advance raw git-diff output if needed5407$patch_idx++ifdefined$diffinfo;54085409# read and prepare patch information5410$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);54115412# compact combined diff output can have some patches skipped5413# find which patch (using pathname of result) we are at now;5414if($is_combined) {5415while($to_namene$diffinfo->{'to_file'}) {5416print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".5417 format_diff_cc_simplified($diffinfo,@hash_parents) .5418"</div>\n";# class="patch"54195420$patch_idx++;5421$patch_number++;54225423last if$patch_idx>$#$difftree;5424$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);5425}5426}54275428# modifies %from, %to hashes5429 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);54305431# this is first patch for raw difftree line with $patch_idx index5432# we index @$difftree array from 0, but number patches from 15433print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";5434}54355436# git diff header5437#assert($patch_line =~ m/^diff /) if DEBUG;5438#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed5439$patch_number++;5440# print "git diff" header5441print format_git_diff_header_line($patch_line,$diffinfo,5442 \%from, \%to);54435444# print extended diff header5445print"<div class=\"diff extended_header\">\n";5446 EXTENDED_HEADER:5447while($patch_line= <$fd>) {5448chomp$patch_line;54495450last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);54515452print format_extended_diff_header_line($patch_line,$diffinfo,5453 \%from, \%to);5454}5455print"</div>\n";# class="diff extended_header"54565457# from-file/to-file diff header5458if(!$patch_line) {5459print"</div>\n";# class="patch"5460last PATCH;5461}5462next PATCH if($patch_line=~m/^diff /);5463#assert($patch_line =~ m/^---/) if DEBUG;54645465my$last_patch_line=$patch_line;5466$patch_line= <$fd>;5467chomp$patch_line;5468#assert($patch_line =~ m/^\+\+\+/) if DEBUG;54695470print format_diff_from_to_header($last_patch_line,$patch_line,5471$diffinfo, \%from, \%to,5472@hash_parents);54735474# the patch itself5475 LINE:5476while($patch_line= <$fd>) {5477chomp$patch_line;54785479next PATCH if($patch_line=~m/^diff /);54805481my$class= diff_line_class($patch_line, \%from, \%to);54825483if($classeq'chunk_header') {5484 print_diff_chunk($diff_style,scalar@hash_parents, \%from, \%to,@chunk);5485@chunk= ();5486}54875488push@chunk, [$class,$patch_line];5489}54905491}continue{5492if(@chunk) {5493 print_diff_chunk($diff_style,scalar@hash_parents, \%from, \%to,@chunk);5494@chunk= ();5495}5496print"</div>\n";# class="patch"5497}54985499# for compact combined (--cc) format, with chunk and patch simplification5500# the patchset might be empty, but there might be unprocessed raw lines5501for(++$patch_idxif$patch_number>0;5502$patch_idx<@$difftree;5503++$patch_idx) {5504# read and prepare patch information5505$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);55065507# generate anchor for "patch" links in difftree / whatchanged part5508print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".5509 format_diff_cc_simplified($diffinfo,@hash_parents) .5510"</div>\n";# class="patch"55115512$patch_number++;5513}55145515if($patch_number==0) {5516if(@hash_parents>1) {5517print"<div class=\"diff nodifferences\">Trivial merge</div>\n";5518}else{5519print"<div class=\"diff nodifferences\">No differences found</div>\n";5520}5521}55225523print"</div>\n";# class="patchset"5524}55255526# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .55275528sub git_project_search_form {5529my($searchtext,$search_use_regexp) =@_;55305531my$limit='';5532if($project_filter) {5533$limit=" in '$project_filter/'";5534}55355536print"<div class=\"projsearch\">\n";5537print$cgi->start_form(-method=>'get', -action =>$my_uri) .5538$cgi->hidden(-name =>'a', -value =>'project_list') ."\n";5539print$cgi->hidden(-name =>'pf', -value =>$project_filter)."\n"5540if(defined$project_filter);5541print$cgi->textfield(-name =>'s', -value =>$searchtext,5542-title =>"Search project by name and description$limit",5543-size =>60) ."\n".5544"<span title=\"Extended regular expression\">".5545$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',5546-checked =>$search_use_regexp) .5547"</span>\n".5548$cgi->submit(-name =>'btnS', -value =>'Search') .5549$cgi->end_form() ."\n".5550$cgi->a({-href => href(project =>undef, searchtext =>undef,5551 project_filter =>$project_filter)},5552 esc_html("List all projects$limit")) ."<br />\n";5553print"</div>\n";5554}55555556# entry for given @keys needs filling if at least one of keys in list5557# is not present in %$project_info5558sub project_info_needs_filling {5559my($project_info,@keys) =@_;55605561# return List::MoreUtils::any { !exists $project_info->{$_} } @keys;5562foreachmy$key(@keys) {5563if(!exists$project_info->{$key}) {5564return1;5565}5566}5567return;5568}55695570# fills project list info (age, description, owner, category, forks, etc.)5571# for each project in the list, removing invalid projects from5572# returned list, or fill only specified info.5573#5574# Invalid projects are removed from the returned list if and only if you5575# ask 'age' or 'age_string' to be filled, because they are the only fields5576# that run unconditionally git command that requires repository, and5577# therefore do always check if project repository is invalid.5578#5579# USAGE:5580# * fill_project_list_info(\@project_list, 'descr_long', 'ctags')5581# ensures that 'descr_long' and 'ctags' fields are filled5582# * @project_list = fill_project_list_info(\@project_list)5583# ensures that all fields are filled (and invalid projects removed)5584#5585# NOTE: modifies $projlist, but does not remove entries from it5586sub fill_project_list_info {5587my($projlist,@wanted_keys) =@_;5588my@projects;5589my$filter_set=sub{return@_; };5590if(@wanted_keys) {5591my%wanted_keys=map{$_=>1}@wanted_keys;5592$filter_set=sub{returngrep{$wanted_keys{$_} }@_; };5593}55945595my$show_ctags= gitweb_check_feature('ctags');5596 PROJECT:5597foreachmy$pr(@$projlist) {5598if(project_info_needs_filling($pr,$filter_set->('age','age_string'))) {5599my(@activity) = git_get_last_activity($pr->{'path'});5600unless(@activity) {5601next PROJECT;5602}5603($pr->{'age'},$pr->{'age_string'}) =@activity;5604}5605if(project_info_needs_filling($pr,$filter_set->('descr','descr_long'))) {5606my$descr= git_get_project_description($pr->{'path'}) ||"";5607$descr= to_utf8($descr);5608$pr->{'descr_long'} =$descr;5609$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);5610}5611if(project_info_needs_filling($pr,$filter_set->('owner'))) {5612$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";5613}5614if($show_ctags&&5615 project_info_needs_filling($pr,$filter_set->('ctags'))) {5616$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});5617}5618if($projects_list_group_categories&&5619 project_info_needs_filling($pr,$filter_set->('category'))) {5620my$cat= git_get_project_category($pr->{'path'}) ||5621$project_list_default_category;5622$pr->{'category'} = to_utf8($cat);5623}56245625push@projects,$pr;5626}56275628return@projects;5629}56305631sub sort_projects_list {5632my($projlist,$order) =@_;56335634sub order_str {5635my$key=shift;5636return sub{$a->{$key}cmp$b->{$key} };5637}56385639sub order_num_then_undef {5640my$key=shift;5641return sub{5642defined$a->{$key} ?5643(defined$b->{$key} ?$a->{$key} <=>$b->{$key} : -1) :5644(defined$b->{$key} ?1:0)5645};5646}56475648my%orderings= (5649 project => order_str('path'),5650 descr => order_str('descr_long'),5651 owner => order_str('owner'),5652 age => order_num_then_undef('age'),5653);56545655my$ordering=$orderings{$order};5656returndefined$ordering?sort$ordering @$projlist:@$projlist;5657}56585659# returns a hash of categories, containing the list of project5660# belonging to each category5661sub build_projlist_by_category {5662my($projlist,$from,$to) =@_;5663my%categories;56645665$from=0unlessdefined$from;5666$to=$#$projlistif(!defined$to||$#$projlist<$to);56675668for(my$i=$from;$i<=$to;$i++) {5669my$pr=$projlist->[$i];5670push@{$categories{$pr->{'category'} }},$pr;5671}56725673returnwantarray?%categories: \%categories;5674}56755676# print 'sort by' <th> element, generating 'sort by $name' replay link5677# if that order is not selected5678sub print_sort_th {5679print format_sort_th(@_);5680}56815682sub format_sort_th {5683my($name,$order,$header) =@_;5684my$sort_th="";5685$header||=ucfirst($name);56865687if($ordereq$name) {5688$sort_th.="<th>$header</th>\n";5689}else{5690$sort_th.="<th>".5691$cgi->a({-href => href(-replay=>1, order=>$name),5692-class=>"header"},$header) .5693"</th>\n";5694}56955696return$sort_th;5697}56985699sub git_project_list_rows {5700my($projlist,$from,$to,$check_forks) =@_;57015702$from=0unlessdefined$from;5703$to=$#$projlistif(!defined$to||$#$projlist<$to);57045705my$alternate=1;5706for(my$i=$from;$i<=$to;$i++) {5707my$pr=$projlist->[$i];57085709if($alternate) {5710print"<tr class=\"dark\">\n";5711}else{5712print"<tr class=\"light\">\n";5713}5714$alternate^=1;57155716if($check_forks) {5717print"<td>";5718if($pr->{'forks'}) {5719my$nforks=scalar@{$pr->{'forks'}};5720if($nforks>0) {5721print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks"),5722-title =>"$nforksforks"},"+");5723}else{5724print$cgi->span({-title =>"$nforksforks"},"+");5725}5726}5727print"</td>\n";5728}5729print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),5730-class=>"list"},5731 esc_html_match_hl($pr->{'path'},$search_regexp)) .5732"</td>\n".5733"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),5734-class=>"list",5735-title =>$pr->{'descr_long'}},5736$search_regexp5737? esc_html_match_hl_chopped($pr->{'descr_long'},5738$pr->{'descr'},$search_regexp)5739: esc_html($pr->{'descr'})) .5740"</td>\n";5741unless($omit_owner) {5742print"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";5743}5744unless($omit_age_column) {5745print"<td class=\"". age_class($pr->{'age'}) ."\">".5746(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n";5747}5748print"<td class=\"link\">".5749$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".5750$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".5751$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".5752$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .5753($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .5754"</td>\n".5755"</tr>\n";5756}5757}57585759sub git_project_list_body {5760# actually uses global variable $project5761my($projlist,$order,$from,$to,$extra,$no_header) =@_;5762my@projects=@$projlist;57635764my$check_forks= gitweb_check_feature('forks');5765my$show_ctags= gitweb_check_feature('ctags');5766my$tagfilter=$show_ctags?$input_params{'ctag'} :undef;5767$check_forks=undef5768if($tagfilter||$search_regexp);57695770# filtering out forks before filling info allows to do less work5771@projects= filter_forks_from_projects_list(\@projects)5772if($check_forks);5773# search_projects_list pre-fills required info5774@projects= search_projects_list(\@projects,5775'search_regexp'=>$search_regexp,5776'tagfilter'=>$tagfilter)5777if($tagfilter||$search_regexp);5778# fill the rest5779my@all_fields= ('descr','descr_long','ctags','category');5780push@all_fields, ('age','age_string')unless($omit_age_column);5781push@all_fields,'owner'unless($omit_owner);5782@projects= fill_project_list_info(\@projects,@all_fields);57835784$order||=$default_projects_order;5785$from=0unlessdefined$from;5786$to=$#projectsif(!defined$to||$#projects<$to);57875788# short circuit5789if($from>$to) {5790print"<center>\n".5791"<b>No such projects found</b><br />\n".5792"Click ".$cgi->a({-href=>href(project=>undef)},"here")." to view all projects<br />\n".5793"</center>\n<br />\n";5794return;5795}57965797@projects= sort_projects_list(\@projects,$order);57985799if($show_ctags) {5800my$ctags= git_gather_all_ctags(\@projects);5801my$cloud= git_populate_project_tagcloud($ctags);5802print git_show_project_tagcloud($cloud,64);5803}58045805print"<table class=\"project_list\">\n";5806unless($no_header) {5807print"<tr>\n";5808if($check_forks) {5809print"<th></th>\n";5810}5811 print_sort_th('project',$order,'Project');5812 print_sort_th('descr',$order,'Description');5813 print_sort_th('owner',$order,'Owner')unless$omit_owner;5814 print_sort_th('age',$order,'Last Change')unless$omit_age_column;5815print"<th></th>\n".# for links5816"</tr>\n";5817}58185819if($projects_list_group_categories) {5820# only display categories with projects in the $from-$to window5821@projects=sort{$a->{'category'}cmp$b->{'category'}}@projects[$from..$to];5822my%categories= build_projlist_by_category(\@projects,$from,$to);5823foreachmy$cat(sort keys%categories) {5824unless($cateq"") {5825print"<tr>\n";5826if($check_forks) {5827print"<td></td>\n";5828}5829print"<td class=\"category\"colspan=\"5\">".esc_html($cat)."</td>\n";5830print"</tr>\n";5831}58325833 git_project_list_rows($categories{$cat},undef,undef,$check_forks);5834}5835}else{5836 git_project_list_rows(\@projects,$from,$to,$check_forks);5837}58385839if(defined$extra) {5840print"<tr>\n";5841if($check_forks) {5842print"<td></td>\n";5843}5844print"<td colspan=\"5\">$extra</td>\n".5845"</tr>\n";5846}5847print"</table>\n";5848}58495850sub git_log_body {5851# uses global variable $project5852my($commitlist,$from,$to,$refs,$extra) =@_;58535854$from=0unlessdefined$from;5855$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);58565857for(my$i=0;$i<=$to;$i++) {5858my%co= %{$commitlist->[$i]};5859next if!%co;5860my$commit=$co{'id'};5861my$ref= format_ref_marker($refs,$commit);5862 git_print_header_div('commit',5863"<span class=\"age\">$co{'age_string'}</span>".5864 esc_html($co{'title'}) .$ref,5865$commit);5866print"<div class=\"title_text\">\n".5867"<div class=\"log_link\">\n".5868$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .5869" | ".5870$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .5871" | ".5872$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .5873"<br/>\n".5874"</div>\n";5875 git_print_authorship(\%co, -tag =>'span');5876print"<br/>\n</div>\n";58775878print"<div class=\"log_body\">\n";5879 git_print_log($co{'comment'}, -final_empty_line=>1);5880print"</div>\n";5881}5882if($extra) {5883print"<div class=\"page_nav\">\n";5884print"$extra\n";5885print"</div>\n";5886}5887}58885889sub git_shortlog_body {5890# uses global variable $project5891my($commitlist,$from,$to,$refs,$extra) =@_;58925893$from=0unlessdefined$from;5894$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);58955896print"<table class=\"shortlog\">\n";5897my$alternate=1;5898for(my$i=$from;$i<=$to;$i++) {5899my%co= %{$commitlist->[$i]};5900my$commit=$co{'id'};5901my$ref= format_ref_marker($refs,$commit);5902if($alternate) {5903print"<tr class=\"dark\">\n";5904}else{5905print"<tr class=\"light\">\n";5906}5907$alternate^=1;5908# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .5909print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5910 format_author_html('td', \%co,10) ."<td>";5911print format_subject_html($co{'title'},$co{'title_short'},5912 href(action=>"commit", hash=>$commit),$ref);5913print"</td>\n".5914"<td class=\"link\">".5915$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".5916$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".5917$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");5918my$snapshot_links= format_snapshot_links($commit);5919if(defined$snapshot_links) {5920print" | ".$snapshot_links;5921}5922print"</td>\n".5923"</tr>\n";5924}5925if(defined$extra) {5926print"<tr>\n".5927"<td colspan=\"4\">$extra</td>\n".5928"</tr>\n";5929}5930print"</table>\n";5931}59325933sub git_history_body {5934# Warning: assumes constant type (blob or tree) during history5935my($commitlist,$from,$to,$refs,$extra,5936$file_name,$file_hash,$ftype) =@_;59375938$from=0unlessdefined$from;5939$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});59405941print"<table class=\"history\">\n";5942my$alternate=1;5943for(my$i=$from;$i<=$to;$i++) {5944my%co= %{$commitlist->[$i]};5945if(!%co) {5946next;5947}5948my$commit=$co{'id'};59495950my$ref= format_ref_marker($refs,$commit);59515952if($alternate) {5953print"<tr class=\"dark\">\n";5954}else{5955print"<tr class=\"light\">\n";5956}5957$alternate^=1;5958print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5959# shortlog: format_author_html('td', \%co, 10)5960 format_author_html('td', \%co,15,3) ."<td>";5961# originally git_history used chop_str($co{'title'}, 50)5962print format_subject_html($co{'title'},$co{'title_short'},5963 href(action=>"commit", hash=>$commit),$ref);5964print"</td>\n".5965"<td class=\"link\">".5966$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5967$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");59685969if($ftypeeq'blob') {5970print" | ".5971$cgi->a({-href => href(action=>"blob_plain", hash_base=>$commit, file_name=>$file_name)},"raw");59725973my$blob_current=$file_hash;5974my$blob_parent= git_get_hash_by_path($commit,$file_name);5975if(defined$blob_current&&defined$blob_parent&&5976$blob_currentne$blob_parent) {5977print" | ".5978$cgi->a({-href => href(action=>"blobdiff",5979 hash=>$blob_current, hash_parent=>$blob_parent,5980 hash_base=>$hash_base, hash_parent_base=>$commit,5981 file_name=>$file_name)},5982"diff to current");5983}5984}5985print"</td>\n".5986"</tr>\n";5987}5988if(defined$extra) {5989print"<tr>\n".5990"<td colspan=\"4\">$extra</td>\n".5991"</tr>\n";5992}5993print"</table>\n";5994}59955996sub git_tags_body {5997# uses global variable $project5998my($taglist,$from,$to,$extra) =@_;5999$from=0unlessdefined$from;6000$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);60016002print"<table class=\"tags\">\n";6003my$alternate=1;6004for(my$i=$from;$i<=$to;$i++) {6005my$entry=$taglist->[$i];6006my%tag=%$entry;6007my$comment=$tag{'subject'};6008my$comment_short;6009if(defined$comment) {6010$comment_short= chop_str($comment,30,5);6011}6012if($alternate) {6013print"<tr class=\"dark\">\n";6014}else{6015print"<tr class=\"light\">\n";6016}6017$alternate^=1;6018if(defined$tag{'age'}) {6019print"<td><i>$tag{'age'}</i></td>\n";6020}else{6021print"<td></td>\n";6022}6023print"<td>".6024$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),6025-class=>"list name"}, esc_html($tag{'name'})) .6026"</td>\n".6027"<td>";6028if(defined$comment) {6029print format_subject_html($comment,$comment_short,6030 href(action=>"tag", hash=>$tag{'id'}));6031}6032print"</td>\n".6033"<td class=\"selflink\">";6034if($tag{'type'}eq"tag") {6035print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");6036}else{6037print" ";6038}6039print"</td>\n".6040"<td class=\"link\">"." | ".6041$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});6042if($tag{'reftype'}eq"commit") {6043print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .6044" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");6045}elsif($tag{'reftype'}eq"blob") {6046print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");6047}6048print"</td>\n".6049"</tr>";6050}6051if(defined$extra) {6052print"<tr>\n".6053"<td colspan=\"5\">$extra</td>\n".6054"</tr>\n";6055}6056print"</table>\n";6057}60586059sub git_heads_body {6060# uses global variable $project6061my($headlist,$head_at,$from,$to,$extra) =@_;6062$from=0unlessdefined$from;6063$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);60646065print"<table class=\"heads\">\n";6066my$alternate=1;6067for(my$i=$from;$i<=$to;$i++) {6068my$entry=$headlist->[$i];6069my%ref=%$entry;6070my$curr=defined$head_at&&$ref{'id'}eq$head_at;6071if($alternate) {6072print"<tr class=\"dark\">\n";6073}else{6074print"<tr class=\"light\">\n";6075}6076$alternate^=1;6077print"<td><i>$ref{'age'}</i></td>\n".6078($curr?"<td class=\"current_head\">":"<td>") .6079$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),6080-class=>"list name"},esc_html($ref{'name'})) .6081"</td>\n".6082"<td class=\"link\">".6083$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".6084$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".6085$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .6086"</td>\n".6087"</tr>";6088}6089if(defined$extra) {6090print"<tr>\n".6091"<td colspan=\"3\">$extra</td>\n".6092"</tr>\n";6093}6094print"</table>\n";6095}60966097# Display a single remote block6098sub git_remote_block {6099my($remote,$rdata,$limit,$head) =@_;61006101my$heads=$rdata->{'heads'};6102my$fetch=$rdata->{'fetch'};6103my$push=$rdata->{'push'};61046105my$urls_table="<table class=\"projects_list\">\n";61066107if(defined$fetch) {6108if($fetcheq$push) {6109$urls_table.= format_repo_url("URL",$fetch);6110}else{6111$urls_table.= format_repo_url("Fetch URL",$fetch);6112$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;6113}6114}elsif(defined$push) {6115$urls_table.= format_repo_url("Push URL",$push);6116}else{6117$urls_table.= format_repo_url("","No remote URL");6118}61196120$urls_table.="</table>\n";61216122my$dots;6123if(defined$limit&&$limit<@$heads) {6124$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");6125}61266127print$urls_table;6128 git_heads_body($heads,$head,0,$limit,$dots);6129}61306131# Display a list of remote names with the respective fetch and push URLs6132sub git_remotes_list {6133my($remotedata,$limit) =@_;6134print"<table class=\"heads\">\n";6135my$alternate=1;6136my@remotes=sort keys%$remotedata;61376138my$limited=$limit&&$limit<@remotes;61396140$#remotes=$limit-1if$limited;61416142while(my$remote=shift@remotes) {6143my$rdata=$remotedata->{$remote};6144my$fetch=$rdata->{'fetch'};6145my$push=$rdata->{'push'};6146if($alternate) {6147print"<tr class=\"dark\">\n";6148}else{6149print"<tr class=\"light\">\n";6150}6151$alternate^=1;6152print"<td>".6153$cgi->a({-href=> href(action=>'remotes', hash=>$remote),6154-class=>"list name"},esc_html($remote)) .6155"</td>";6156print"<td class=\"link\">".6157(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .6158" | ".6159(defined$push?$cgi->a({-href=>$push},"push") :"push") .6160"</td>";61616162print"</tr>\n";6163}61646165if($limited) {6166print"<tr>\n".6167"<td colspan=\"3\">".6168$cgi->a({-href => href(action=>"remotes")},"...") .6169"</td>\n"."</tr>\n";6170}61716172print"</table>";6173}61746175# Display remote heads grouped by remote, unless there are too many6176# remotes, in which case we only display the remote names6177sub git_remotes_body {6178my($remotedata,$limit,$head) =@_;6179if($limitand$limit<keys%$remotedata) {6180 git_remotes_list($remotedata,$limit);6181}else{6182 fill_remote_heads($remotedata);6183while(my($remote,$rdata) =each%$remotedata) {6184 git_print_section({-class=>"remote", -id=>$remote},6185["remotes",$remote,$remote],sub{6186 git_remote_block($remote,$rdata,$limit,$head);6187});6188}6189}6190}61916192sub git_search_message {6193my%co=@_;61946195my$greptype;6196if($searchtypeeq'commit') {6197$greptype="--grep=";6198}elsif($searchtypeeq'author') {6199$greptype="--author=";6200}elsif($searchtypeeq'committer') {6201$greptype="--committer=";6202}6203$greptype.=$searchtext;6204my@commitlist= parse_commits($hash,101, (100*$page),undef,6205$greptype,'--regexp-ignore-case',6206$search_use_regexp?'--extended-regexp':'--fixed-strings');62076208my$paging_nav='';6209if($page>0) {6210$paging_nav.=6211$cgi->a({-href => href(-replay=>1, page=>undef)},6212"first") .6213" ⋅ ".6214$cgi->a({-href => href(-replay=>1, page=>$page-1),6215-accesskey =>"p", -title =>"Alt-p"},"prev");6216}else{6217$paging_nav.="first ⋅ prev";6218}6219my$next_link='';6220if($#commitlist>=100) {6221$next_link=6222$cgi->a({-href => href(-replay=>1, page=>$page+1),6223-accesskey =>"n", -title =>"Alt-n"},"next");6224$paging_nav.=" ⋅$next_link";6225}else{6226$paging_nav.=" ⋅ next";6227}62286229 git_header_html();62306231 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6232 git_print_header_div('commit', esc_html($co{'title'}),$hash);6233if($page==0&& !@commitlist) {6234print"<p>No match.</p>\n";6235}else{6236 git_search_grep_body(\@commitlist,0,99,$next_link);6237}62386239 git_footer_html();6240}62416242sub git_search_changes {6243my%co=@_;62446245local$/="\n";6246open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6247'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6248($search_use_regexp?'--pickaxe-regex': ())6249or die_error(500,"Open git-log failed");62506251 git_header_html();62526253 git_print_page_nav('','',$hash,$co{'tree'},$hash);6254 git_print_header_div('commit', esc_html($co{'title'}),$hash);62556256print"<table class=\"pickaxe search\">\n";6257my$alternate=1;6258undef%co;6259my@files;6260while(my$line= <$fd>) {6261chomp$line;6262next unless$line;62636264my%set= parse_difftree_raw_line($line);6265if(defined$set{'commit'}) {6266# finish previous commit6267if(%co) {6268print"</td>\n".6269"<td class=\"link\">".6270$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},6271"commit") .6272" | ".6273$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'},6274 hash_base=>$co{'id'})},6275"tree") .6276"</td>\n".6277"</tr>\n";6278}62796280if($alternate) {6281print"<tr class=\"dark\">\n";6282}else{6283print"<tr class=\"light\">\n";6284}6285$alternate^=1;6286%co= parse_commit($set{'commit'});6287my$author= chop_and_escape_str($co{'author_name'},15,5);6288print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6289"<td><i>$author</i></td>\n".6290"<td>".6291$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6292-class=>"list subject"},6293 chop_and_escape_str($co{'title'},50) ."<br/>");6294}elsif(defined$set{'to_id'}) {6295next if($set{'to_id'} =~m/^0{40}$/);62966297print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6298 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6299-class=>"list"},6300"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6301"<br/>\n";6302}6303}6304close$fd;63056306# finish last commit (warning: repetition!)6307if(%co) {6308print"</td>\n".6309"<td class=\"link\">".6310$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},6311"commit") .6312" | ".6313$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'},6314 hash_base=>$co{'id'})},6315"tree") .6316"</td>\n".6317"</tr>\n";6318}63196320print"</table>\n";63216322 git_footer_html();6323}63246325sub git_search_files {6326my%co=@_;63276328local$/="\n";6329open my$fd,"-|", git_cmd(),'grep','-n','-z',6330$search_use_regexp? ('-E','-i') :'-F',6331$searchtext,$co{'tree'}6332or die_error(500,"Open git-grep failed");63336334 git_header_html();63356336 git_print_page_nav('','',$hash,$co{'tree'},$hash);6337 git_print_header_div('commit', esc_html($co{'title'}),$hash);63386339print"<table class=\"grep_search\">\n";6340my$alternate=1;6341my$matches=0;6342my$lastfile='';6343my$file_href;6344while(my$line= <$fd>) {6345chomp$line;6346my($file,$lno,$ltext,$binary);6347last if($matches++>1000);6348if($line=~/^Binary file (.+) matches$/) {6349$file=$1;6350$binary=1;6351}else{6352($file,$lno,$ltext) =split(/\0/,$line,3);6353$file=~s/^$co{'tree'}://;6354}6355if($filene$lastfile) {6356$lastfileand print"</td></tr>\n";6357if($alternate++) {6358print"<tr class=\"dark\">\n";6359}else{6360print"<tr class=\"light\">\n";6361}6362$file_href= href(action=>"blob", hash_base=>$co{'id'},6363 file_name=>$file);6364print"<td class=\"list\">".6365$cgi->a({-href =>$file_href, -class=>"list"}, esc_path($file));6366print"</td><td>\n";6367$lastfile=$file;6368}6369if($binary) {6370print"<div class=\"binary\">Binary file</div>\n";6371}else{6372$ltext= untabify($ltext);6373if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6374$ltext= esc_html($1, -nbsp=>1);6375$ltext.='<span class="match">';6376$ltext.= esc_html($2, -nbsp=>1);6377$ltext.='</span>';6378$ltext.= esc_html($3, -nbsp=>1);6379}else{6380$ltext= esc_html($ltext, -nbsp=>1);6381}6382print"<div class=\"pre\">".6383$cgi->a({-href =>$file_href.'#l'.$lno,6384-class=>"linenr"},sprintf('%4i',$lno)) .6385' '.$ltext."</div>\n";6386}6387}6388if($lastfile) {6389print"</td></tr>\n";6390if($matches>1000) {6391print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6392}6393}else{6394print"<div class=\"diff nodifferences\">No matches found</div>\n";6395}6396close$fd;63976398print"</table>\n";63996400 git_footer_html();6401}64026403sub git_search_grep_body {6404my($commitlist,$from,$to,$extra) =@_;6405$from=0unlessdefined$from;6406$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);64076408print"<table class=\"commit_search\">\n";6409my$alternate=1;6410for(my$i=$from;$i<=$to;$i++) {6411my%co= %{$commitlist->[$i]};6412if(!%co) {6413next;6414}6415my$commit=$co{'id'};6416if($alternate) {6417print"<tr class=\"dark\">\n";6418}else{6419print"<tr class=\"light\">\n";6420}6421$alternate^=1;6422print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6423 format_author_html('td', \%co,15,5) .6424"<td>".6425$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6426-class=>"list subject"},6427 chop_and_escape_str($co{'title'},50) ."<br/>");6428my$comment=$co{'comment'};6429foreachmy$line(@$comment) {6430if($line=~m/^(.*?)($search_regexp)(.*)$/i) {6431my($lead,$match,$trail) = ($1,$2,$3);6432$match= chop_str($match,70,5,'center');6433my$contextlen=int((80-length($match))/2);6434$contextlen=30if($contextlen>30);6435$lead= chop_str($lead,$contextlen,10,'left');6436$trail= chop_str($trail,$contextlen,10,'right');64376438$lead= esc_html($lead);6439$match= esc_html($match);6440$trail= esc_html($trail);64416442print"$lead<span class=\"match\">$match</span>$trail<br />";6443}6444}6445print"</td>\n".6446"<td class=\"link\">".6447$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6448" | ".6449$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .6450" | ".6451$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6452print"</td>\n".6453"</tr>\n";6454}6455if(defined$extra) {6456print"<tr>\n".6457"<td colspan=\"3\">$extra</td>\n".6458"</tr>\n";6459}6460print"</table>\n";6461}64626463## ======================================================================6464## ======================================================================6465## actions64666467sub git_project_list {6468my$order=$input_params{'order'};6469if(defined$order&&$order!~m/none|project|descr|owner|age/) {6470 die_error(400,"Unknown order parameter");6471}64726473my@list= git_get_projects_list($project_filter,$strict_export);6474if(!@list) {6475 die_error(404,"No projects found");6476}64776478 git_header_html();6479if(defined$home_text&& -f $home_text) {6480print"<div class=\"index_include\">\n";6481 insert_file($home_text);6482print"</div>\n";6483}64846485 git_project_search_form($searchtext,$search_use_regexp);6486 git_project_list_body(\@list,$order);6487 git_footer_html();6488}64896490sub git_forks {6491my$order=$input_params{'order'};6492if(defined$order&&$order!~m/none|project|descr|owner|age/) {6493 die_error(400,"Unknown order parameter");6494}64956496my$filter=$project;6497$filter=~s/\.git$//;6498my@list= git_get_projects_list($filter);6499if(!@list) {6500 die_error(404,"No forks found");6501}65026503 git_header_html();6504 git_print_page_nav('','');6505 git_print_header_div('summary',"$projectforks");6506 git_project_list_body(\@list,$order);6507 git_footer_html();6508}65096510sub git_project_index {6511my@projects= git_get_projects_list($project_filter,$strict_export);6512if(!@projects) {6513 die_error(404,"No projects found");6514}65156516print$cgi->header(6517-type =>'text/plain',6518-charset =>'utf-8',6519-content_disposition =>'inline; filename="index.aux"');65206521foreachmy$pr(@projects) {6522if(!exists$pr->{'owner'}) {6523$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");6524}65256526my($path,$owner) = ($pr->{'path'},$pr->{'owner'});6527# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '6528$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;6529$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;6530$path=~s/ /\+/g;6531$owner=~s/ /\+/g;65326533print"$path$owner\n";6534}6535}65366537sub git_summary {6538my$descr= git_get_project_description($project) ||"none";6539my%co= parse_commit("HEAD");6540my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();6541my$head=$co{'id'};6542my$remote_heads= gitweb_check_feature('remote_heads');65436544my$owner= git_get_project_owner($project);65456546my$refs= git_get_references();6547# These get_*_list functions return one more to allow us to see if6548# there are more ...6549my@taglist= git_get_tags_list(16);6550my@headlist= git_get_heads_list(16);6551my%remotedata=$remote_heads? git_get_remotes_list() : ();6552my@forklist;6553my$check_forks= gitweb_check_feature('forks');65546555if($check_forks) {6556# find forks of a project6557my$filter=$project;6558$filter=~s/\.git$//;6559@forklist= git_get_projects_list($filter);6560# filter out forks of forks6561@forklist= filter_forks_from_projects_list(\@forklist)6562if(@forklist);6563}65646565 git_header_html();6566 git_print_page_nav('summary','',$head);65676568print"<div class=\"title\"> </div>\n";6569print"<table class=\"projects_list\">\n".6570"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n";6571if($ownerand not$omit_owner) {6572print"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";6573}6574if(defined$cd{'rfc2822'}) {6575print"<tr id=\"metadata_lchange\"><td>last change</td>".6576"<td>".format_timestamp_html(\%cd)."</td></tr>\n";6577}65786579# use per project git URL list in $projectroot/$project/cloneurl6580# or make project git URL from git base URL and project name6581my$url_tag="URL";6582my@url_list= git_get_project_url_list($project);6583@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;6584foreachmy$git_url(@url_list) {6585next unless$git_url;6586print format_repo_url($url_tag,$git_url);6587$url_tag="";6588}65896590# Tag cloud6591my$show_ctags= gitweb_check_feature('ctags');6592if($show_ctags) {6593my$ctags= git_get_project_ctags($project);6594if(%$ctags) {6595# without ability to add tags, don't show if there are none6596my$cloud= git_populate_project_tagcloud($ctags);6597print"<tr id=\"metadata_ctags\">".6598"<td>content tags</td>".6599"<td>".git_show_project_tagcloud($cloud,48)."</td>".6600"</tr>\n";6601}6602}66036604print"</table>\n";66056606# If XSS prevention is on, we don't include README.html.6607# TODO: Allow a readme in some safe format.6608if(!$prevent_xss&& -s "$projectroot/$project/README.html") {6609print"<div class=\"title\">readme</div>\n".6610"<div class=\"readme\">\n";6611 insert_file("$projectroot/$project/README.html");6612print"\n</div>\n";# class="readme"6613}66146615# we need to request one more than 16 (0..15) to check if6616# those 16 are all6617my@commitlist=$head? parse_commits($head,17) : ();6618if(@commitlist) {6619 git_print_header_div('shortlog');6620 git_shortlog_body(\@commitlist,0,15,$refs,6621$#commitlist<=15?undef:6622$cgi->a({-href => href(action=>"shortlog")},"..."));6623}66246625if(@taglist) {6626 git_print_header_div('tags');6627 git_tags_body(\@taglist,0,15,6628$#taglist<=15?undef:6629$cgi->a({-href => href(action=>"tags")},"..."));6630}66316632if(@headlist) {6633 git_print_header_div('heads');6634 git_heads_body(\@headlist,$head,0,15,6635$#headlist<=15?undef:6636$cgi->a({-href => href(action=>"heads")},"..."));6637}66386639if(%remotedata) {6640 git_print_header_div('remotes');6641 git_remotes_body(\%remotedata,15,$head);6642}66436644if(@forklist) {6645 git_print_header_div('forks');6646 git_project_list_body(\@forklist,'age',0,15,6647$#forklist<=15?undef:6648$cgi->a({-href => href(action=>"forks")},"..."),6649'no_header');6650}66516652 git_footer_html();6653}66546655sub git_tag {6656my%tag= parse_tag($hash);66576658if(!%tag) {6659 die_error(404,"Unknown tag object");6660}66616662my$head= git_get_head_hash($project);6663 git_header_html();6664 git_print_page_nav('','',$head,undef,$head);6665 git_print_header_div('commit', esc_html($tag{'name'}),$hash);6666print"<div class=\"title_text\">\n".6667"<table class=\"object_header\">\n".6668"<tr>\n".6669"<td>object</td>\n".6670"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},6671$tag{'object'}) ."</td>\n".6672"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},6673$tag{'type'}) ."</td>\n".6674"</tr>\n";6675if(defined($tag{'author'})) {6676 git_print_authorship_rows(\%tag,'author');6677}6678print"</table>\n\n".6679"</div>\n";6680print"<div class=\"page_body\">";6681my$comment=$tag{'comment'};6682foreachmy$line(@$comment) {6683chomp$line;6684print esc_html($line, -nbsp=>1) ."<br/>\n";6685}6686print"</div>\n";6687 git_footer_html();6688}66896690sub git_blame_common {6691my$format=shift||'porcelain';6692if($formateq'porcelain'&&$input_params{'javascript'}) {6693$format='incremental';6694$action='blame_incremental';# for page title etc6695}66966697# permissions6698 gitweb_check_feature('blame')6699or die_error(403,"Blame view not allowed");67006701# error checking6702 die_error(400,"No file name given")unless$file_name;6703$hash_base||= git_get_head_hash($project);6704 die_error(404,"Couldn't find base commit")unless$hash_base;6705my%co= parse_commit($hash_base)6706or die_error(404,"Commit not found");6707my$ftype="blob";6708if(!defined$hash) {6709$hash= git_get_hash_by_path($hash_base,$file_name,"blob")6710or die_error(404,"Error looking up file");6711}else{6712$ftype= git_get_type($hash);6713if($ftype!~"blob") {6714 die_error(400,"Object is not a blob");6715}6716}67176718my$fd;6719if($formateq'incremental') {6720# get file contents (as base)6721open$fd,"-|", git_cmd(),'cat-file','blob',$hash6722or die_error(500,"Open git-cat-file failed");6723}elsif($formateq'data') {6724# run git-blame --incremental6725open$fd,"-|", git_cmd(),"blame","--incremental",6726$hash_base,"--",$file_name6727or die_error(500,"Open git-blame --incremental failed");6728}else{6729# run git-blame --porcelain6730open$fd,"-|", git_cmd(),"blame",'-p',6731$hash_base,'--',$file_name6732or die_error(500,"Open git-blame --porcelain failed");6733}6734binmode$fd,':utf8';67356736# incremental blame data returns early6737if($formateq'data') {6738print$cgi->header(6739-type=>"text/plain", -charset =>"utf-8",6740-status=>"200 OK");6741local$| =1;# output autoflush6742while(my$line= <$fd>) {6743print to_utf8($line);6744}6745close$fd6746or print"ERROR$!\n";67476748print'END';6749if(defined$t0&& gitweb_check_feature('timed')) {6750print' '.6751 tv_interval($t0, [ gettimeofday() ]).6752' '.$number_of_git_cmds;6753}6754print"\n";67556756return;6757}67586759# page header6760 git_header_html();6761my$formats_nav=6762$cgi->a({-href => href(action=>"blob", -replay=>1)},6763"blob") .6764" | ";6765if($formateq'incremental') {6766$formats_nav.=6767$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},6768"blame") ." (non-incremental)";6769}else{6770$formats_nav.=6771$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},6772"blame") ." (incremental)";6773}6774$formats_nav.=6775" | ".6776$cgi->a({-href => href(action=>"history", -replay=>1)},6777"history") .6778" | ".6779$cgi->a({-href => href(action=>$action, file_name=>$file_name)},6780"HEAD");6781 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6782 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6783 git_print_page_path($file_name,$ftype,$hash_base);67846785# page body6786if($formateq'incremental') {6787print"<noscript>\n<div class=\"error\"><center><b>\n".6788"This page requires JavaScript to run.\nUse ".6789$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},6790'this page').6791" instead.\n".6792"</b></center></div>\n</noscript>\n";67936794print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;6795}67966797print qq!<div class="page_body">\n!;6798print qq!<div id="progress_info">.../ ...</div>\n!6799if($formateq'incremental');6800print qq!<table id="blame_table"class="blame" width="100%">\n!.6801#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.6802 qq!<thead>\n!.6803 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.6804 qq!</thead>\n!.6805 qq!<tbody>\n!;68066807my@rev_color=qw(light dark);6808my$num_colors=scalar(@rev_color);6809my$current_color=0;68106811if($formateq'incremental') {6812my$color_class=$rev_color[$current_color];68136814#contents of a file6815my$linenr=0;6816 LINE:6817while(my$line= <$fd>) {6818chomp$line;6819$linenr++;68206821print qq!<tr id="l$linenr"class="$color_class">!.6822 qq!<td class="sha1"><a href=""> </a></td>!.6823 qq!<td class="linenr">!.6824 qq!<a class="linenr" href="">$linenr</a></td>!;6825print qq!<td class="pre">! . esc_html($line) ."</td>\n";6826print qq!</tr>\n!;6827}68286829}else{# porcelain, i.e. ordinary blame6830my%metainfo= ();# saves information about commits68316832# blame data6833 LINE:6834while(my$line= <$fd>) {6835chomp$line;6836# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]6837# no <lines in group> for subsequent lines in group of lines6838my($full_rev,$orig_lineno,$lineno,$group_size) =6839($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);6840if(!exists$metainfo{$full_rev}) {6841$metainfo{$full_rev} = {'nprevious'=>0};6842}6843my$meta=$metainfo{$full_rev};6844my$data;6845while($data= <$fd>) {6846chomp$data;6847last if($data=~s/^\t//);# contents of line6848if($data=~/^(\S+)(?: (.*))?$/) {6849$meta->{$1} =$2unlessexists$meta->{$1};6850}6851if($data=~/^previous /) {6852$meta->{'nprevious'}++;6853}6854}6855my$short_rev=substr($full_rev,0,8);6856my$author=$meta->{'author'};6857my%date=6858 parse_date($meta->{'author-time'},$meta->{'author-tz'});6859my$date=$date{'iso-tz'};6860if($group_size) {6861$current_color= ($current_color+1) %$num_colors;6862}6863my$tr_class=$rev_color[$current_color];6864$tr_class.=' boundary'if(exists$meta->{'boundary'});6865$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);6866$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);6867print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";6868if($group_size) {6869print"<td class=\"sha1\"";6870print" title=\"". esc_html($author) .",$date\"";6871print" rowspan=\"$group_size\""if($group_size>1);6872print">";6873print$cgi->a({-href => href(action=>"commit",6874 hash=>$full_rev,6875 file_name=>$file_name)},6876 esc_html($short_rev));6877if($group_size>=2) {6878my@author_initials= ($author=~/\b([[:upper:]])\B/g);6879if(@author_initials) {6880print"<br />".6881 esc_html(join('',@author_initials));6882# or join('.', ...)6883}6884}6885print"</td>\n";6886}6887# 'previous' <sha1 of parent commit> <filename at commit>6888if(exists$meta->{'previous'} &&6889$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {6890$meta->{'parent'} =$1;6891$meta->{'file_parent'} = unquote($2);6892}6893my$linenr_commit=6894exists($meta->{'parent'}) ?6895$meta->{'parent'} :$full_rev;6896my$linenr_filename=6897exists($meta->{'file_parent'}) ?6898$meta->{'file_parent'} : unquote($meta->{'filename'});6899my$blamed= href(action =>'blame',6900 file_name =>$linenr_filename,6901 hash_base =>$linenr_commit);6902print"<td class=\"linenr\">";6903print$cgi->a({ -href =>"$blamed#l$orig_lineno",6904-class=>"linenr"},6905 esc_html($lineno));6906print"</td>";6907print"<td class=\"pre\">". esc_html($data) ."</td>\n";6908print"</tr>\n";6909}# end while69106911}69126913# footer6914print"</tbody>\n".6915"</table>\n";# class="blame"6916print"</div>\n";# class="blame_body"6917close$fd6918or print"Reading blob failed\n";69196920 git_footer_html();6921}69226923sub git_blame {6924 git_blame_common();6925}69266927sub git_blame_incremental {6928 git_blame_common('incremental');6929}69306931sub git_blame_data {6932 git_blame_common('data');6933}69346935sub git_tags {6936my$head= git_get_head_hash($project);6937 git_header_html();6938 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));6939 git_print_header_div('summary',$project);69406941my@tagslist= git_get_tags_list();6942if(@tagslist) {6943 git_tags_body(\@tagslist);6944}6945 git_footer_html();6946}69476948sub git_heads {6949my$head= git_get_head_hash($project);6950 git_header_html();6951 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));6952 git_print_header_div('summary',$project);69536954my@headslist= git_get_heads_list();6955if(@headslist) {6956 git_heads_body(\@headslist,$head);6957}6958 git_footer_html();6959}69606961# used both for single remote view and for list of all the remotes6962sub git_remotes {6963 gitweb_check_feature('remote_heads')6964or die_error(403,"Remote heads view is disabled");69656966my$head= git_get_head_hash($project);6967my$remote=$input_params{'hash'};69686969my$remotedata= git_get_remotes_list($remote);6970 die_error(500,"Unable to get remote information")unlessdefined$remotedata;69716972unless(%$remotedata) {6973 die_error(404,defined$remote?6974"Remote$remotenot found":6975"No remotes found");6976}69776978 git_header_html(undef,undef, -action_extra =>$remote);6979 git_print_page_nav('','',$head,undef,$head,6980 format_ref_views($remote?'':'remotes'));69816982 fill_remote_heads($remotedata);6983if(defined$remote) {6984 git_print_header_div('remotes',"$remoteremote for$project");6985 git_remote_block($remote,$remotedata->{$remote},undef,$head);6986}else{6987 git_print_header_div('summary',"$projectremotes");6988 git_remotes_body($remotedata,undef,$head);6989}69906991 git_footer_html();6992}69936994sub git_blob_plain {6995my$type=shift;6996my$expires;69976998if(!defined$hash) {6999if(defined$file_name) {7000my$base=$hash_base|| git_get_head_hash($project);7001$hash= git_get_hash_by_path($base,$file_name,"blob")7002or die_error(404,"Cannot find file");7003}else{7004 die_error(400,"No file name defined");7005}7006}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {7007# blobs defined by non-textual hash id's can be cached7008$expires="+1d";7009}70107011open my$fd,"-|", git_cmd(),"cat-file","blob",$hash7012or die_error(500,"Open git-cat-file blob '$hash' failed");70137014# content-type (can include charset)7015$type= blob_contenttype($fd,$file_name,$type);70167017# "save as" filename, even when no $file_name is given7018my$save_as="$hash";7019if(defined$file_name) {7020$save_as=$file_name;7021}elsif($type=~m/^text\//) {7022$save_as.='.txt';7023}70247025# With XSS prevention on, blobs of all types except a few known safe7026# ones are served with "Content-Disposition: attachment" to make sure7027# they don't run in our security domain. For certain image types,7028# blob view writes an <img> tag referring to blob_plain view, and we7029# want to be sure not to break that by serving the image as an7030# attachment (though Firefox 3 doesn't seem to care).7031my$sandbox=$prevent_xss&&7032$type!~m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;70337034# serve text/* as text/plain7035if($prevent_xss&&7036($type=~m!^text/[a-z]+\b(.*)$!||7037($type=~m!^[a-z]+/[a-z]\+xml\b(.*)$!&& -T $fd))) {7038my$rest=$1;7039$rest=defined$rest?$rest:'';7040$type="text/plain$rest";7041}70427043print$cgi->header(7044-type =>$type,7045-expires =>$expires,7046-content_disposition =>7047($sandbox?'attachment':'inline')7048.'; filename="'.$save_as.'"');7049local$/=undef;7050binmode STDOUT,':raw';7051print<$fd>;7052binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi7053close$fd;7054}70557056sub git_blob {7057my$expires;70587059if(!defined$hash) {7060if(defined$file_name) {7061my$base=$hash_base|| git_get_head_hash($project);7062$hash= git_get_hash_by_path($base,$file_name,"blob")7063or die_error(404,"Cannot find file");7064}else{7065 die_error(400,"No file name defined");7066}7067}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {7068# blobs defined by non-textual hash id's can be cached7069$expires="+1d";7070}70717072my$have_blame= gitweb_check_feature('blame');7073open my$fd,"-|", git_cmd(),"cat-file","blob",$hash7074or die_error(500,"Couldn't cat$file_name,$hash");7075my$mimetype= blob_mimetype($fd,$file_name);7076# use 'blob_plain' (aka 'raw') view for files that cannot be displayed7077if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {7078close$fd;7079return git_blob_plain($mimetype);7080}7081# we can have blame only for text/* mimetype7082$have_blame&&= ($mimetype=~m!^text/!);70837084my$highlight= gitweb_check_feature('highlight');7085my$syntax= guess_file_syntax($highlight,$file_name);7086$fd= run_highlighter($fd,$highlight,$syntax);70877088 git_header_html(undef,$expires);7089my$formats_nav='';7090if(defined$hash_base&& (my%co= parse_commit($hash_base))) {7091if(defined$file_name) {7092if($have_blame) {7093$formats_nav.=7094$cgi->a({-href => href(action=>"blame", -replay=>1)},7095"blame") .7096" | ";7097}7098$formats_nav.=7099$cgi->a({-href => href(action=>"history", -replay=>1)},7100"history") .7101" | ".7102$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},7103"raw") .7104" | ".7105$cgi->a({-href => href(action=>"blob",7106 hash_base=>"HEAD", file_name=>$file_name)},7107"HEAD");7108}else{7109$formats_nav.=7110$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},7111"raw");7112}7113 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);7114 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);7115}else{7116print"<div class=\"page_nav\">\n".7117"<br/><br/></div>\n".7118"<div class=\"title\">".esc_html($hash)."</div>\n";7119}7120 git_print_page_path($file_name,"blob",$hash_base);7121print"<div class=\"page_body\">\n";7122if($mimetype=~m!^image/!) {7123print qq!<img class="blob" type="!.esc_attr($mimetype).qq!"!;7124if($file_name) {7125print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;7126}7127print qq! src="! .7128 href(action=>"blob_plain", hash=>$hash,7129 hash_base=>$hash_base, file_name=>$file_name) .7130 qq!"/>\n!;7131}else{7132my$nr;7133while(my$line= <$fd>) {7134chomp$line;7135$nr++;7136$line= untabify($line);7137printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,7138$nr, esc_attr(href(-replay =>1)),$nr,$nr,7139$highlight? sanitize($line) : esc_html($line, -nbsp=>1);7140}7141}7142close$fd7143or print"Reading blob failed.\n";7144print"</div>";7145 git_footer_html();7146}71477148sub git_tree {7149if(!defined$hash_base) {7150$hash_base="HEAD";7151}7152if(!defined$hash) {7153if(defined$file_name) {7154$hash= git_get_hash_by_path($hash_base,$file_name,"tree");7155}else{7156$hash=$hash_base;7157}7158}7159 die_error(404,"No such tree")unlessdefined($hash);71607161my$show_sizes= gitweb_check_feature('show-sizes');7162my$have_blame= gitweb_check_feature('blame');71637164my@entries= ();7165{7166local$/="\0";7167open my$fd,"-|", git_cmd(),"ls-tree",'-z',7168($show_sizes?'-l': ()),@extra_options,$hash7169or die_error(500,"Open git-ls-tree failed");7170@entries=map{chomp;$_} <$fd>;7171close$fd7172or die_error(404,"Reading tree failed");7173}71747175my$refs= git_get_references();7176my$ref= format_ref_marker($refs,$hash_base);7177 git_header_html();7178my$basedir='';7179if(defined$hash_base&& (my%co= parse_commit($hash_base))) {7180my@views_nav= ();7181if(defined$file_name) {7182push@views_nav,7183$cgi->a({-href => href(action=>"history", -replay=>1)},7184"history"),7185$cgi->a({-href => href(action=>"tree",7186 hash_base=>"HEAD", file_name=>$file_name)},7187"HEAD"),7188}7189my$snapshot_links= format_snapshot_links($hash);7190if(defined$snapshot_links) {7191# FIXME: Should be available when we have no hash base as well.7192push@views_nav,$snapshot_links;7193}7194 git_print_page_nav('tree','',$hash_base,undef,undef,7195join(' | ',@views_nav));7196 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);7197}else{7198undef$hash_base;7199print"<div class=\"page_nav\">\n";7200print"<br/><br/></div>\n";7201print"<div class=\"title\">".esc_html($hash)."</div>\n";7202}7203if(defined$file_name) {7204$basedir=$file_name;7205if($basedirne''&&substr($basedir, -1)ne'/') {7206$basedir.='/';7207}7208 git_print_page_path($file_name,'tree',$hash_base);7209}7210print"<div class=\"page_body\">\n";7211print"<table class=\"tree\">\n";7212my$alternate=1;7213# '..' (top directory) link if possible7214if(defined$hash_base&&7215defined$file_name&&$file_name=~m![^/]+$!) {7216if($alternate) {7217print"<tr class=\"dark\">\n";7218}else{7219print"<tr class=\"light\">\n";7220}7221$alternate^=1;72227223my$up=$file_name;7224$up=~s!/?[^/]+$!!;7225undef$upunless$up;7226# based on git_print_tree_entry7227print'<td class="mode">'. mode_str('040000') ."</td>\n";7228print'<td class="size"> </td>'."\n"if$show_sizes;7229print'<td class="list">';7230print$cgi->a({-href => href(action=>"tree",7231 hash_base=>$hash_base,7232 file_name=>$up)},7233"..");7234print"</td>\n";7235print"<td class=\"link\"></td>\n";72367237print"</tr>\n";7238}7239foreachmy$line(@entries) {7240my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);72417242if($alternate) {7243print"<tr class=\"dark\">\n";7244}else{7245print"<tr class=\"light\">\n";7246}7247$alternate^=1;72487249 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);72507251print"</tr>\n";7252}7253print"</table>\n".7254"</div>";7255 git_footer_html();7256}72577258sub sanitize_for_filename {7259my$name=shift;72607261$name=~s!/!-!g;7262$name=~s/[^[:alnum:]_.-]//g;72637264return$name;7265}72667267sub snapshot_name {7268my($project,$hash) =@_;72697270# path/to/project.git -> project7271# path/to/project/.git -> project7272my$name= to_utf8($project);7273$name=~ s,([^/])/*\.git$,$1,;7274$name= sanitize_for_filename(basename($name));72757276my$ver=$hash;7277if($hash=~/^[0-9a-fA-F]+$/) {7278# shorten SHA-1 hash7279my$full_hash= git_get_full_hash($project,$hash);7280if($full_hash=~/^$hash/&&length($hash) >7) {7281$ver= git_get_short_hash($project,$hash);7282}7283}elsif($hash=~m!^refs/tags/(.*)$!) {7284# tags don't need shortened SHA-1 hash7285$ver=$1;7286}else{7287# branches and other need shortened SHA-1 hash7288my$strip_refs=join'|',map{quotemeta} get_branch_refs();7289if($hash=~m!^refs/($strip_refs|remotes)/(.*)$!) {7290my$ref_dir= (defined$1) ?$1:'';7291$ver=$2;72927293$ref_dir= sanitize_for_filename($ref_dir);7294# for refs neither in heads nor remotes we want to7295# add a ref dir to archive name7296if($ref_dirne''and$ref_dirne'heads'and$ref_dirne'remotes') {7297$ver=$ref_dir.'-'.$ver;7298}7299}7300$ver.='-'. git_get_short_hash($project,$hash);7301}7302# special case of sanitization for filename - we change7303# slashes to dots instead of dashes7304# in case of hierarchical branch names7305$ver=~s!/!.!g;7306$ver=~s/[^[:alnum:]_.-]//g;73077308# name = project-version_string7309$name="$name-$ver";73107311returnwantarray? ($name,$name) :$name;7312}73137314sub exit_if_unmodified_since {7315my($latest_epoch) =@_;7316our$cgi;73177318my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7319if(defined$if_modified) {7320my$since;7321if(eval{require HTTP::Date;1; }) {7322$since= HTTP::Date::str2time($if_modified);7323}elsif(eval{require Time::ParseDate;1; }) {7324$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7325}7326if(defined$since&&$latest_epoch<=$since) {7327my%latest_date= parse_date($latest_epoch);7328print$cgi->header(7329-last_modified =>$latest_date{'rfc2822'},7330-status =>'304 Not Modified');7331goto DONE_GITWEB;7332}7333}7334}73357336sub git_snapshot {7337my$format=$input_params{'snapshot_format'};7338if(!@snapshot_fmts) {7339 die_error(403,"Snapshots not allowed");7340}7341# default to first supported snapshot format7342$format||=$snapshot_fmts[0];7343if($format!~m/^[a-z0-9]+$/) {7344 die_error(400,"Invalid snapshot format parameter");7345}elsif(!exists($known_snapshot_formats{$format})) {7346 die_error(400,"Unknown snapshot format");7347}elsif($known_snapshot_formats{$format}{'disabled'}) {7348 die_error(403,"Snapshot format not allowed");7349}elsif(!grep($_eq$format,@snapshot_fmts)) {7350 die_error(403,"Unsupported snapshot format");7351}73527353my$type= git_get_type("$hash^{}");7354if(!$type) {7355 die_error(404,'Object does not exist');7356}elsif($typeeq'blob') {7357 die_error(400,'Object is not a tree-ish');7358}73597360my($name,$prefix) = snapshot_name($project,$hash);7361my$filename="$name$known_snapshot_formats{$format}{'suffix'}";73627363my%co= parse_commit($hash);7364 exit_if_unmodified_since($co{'committer_epoch'})if%co;73657366my$cmd= quote_command(7367 git_cmd(),'archive',7368"--format=$known_snapshot_formats{$format}{'format'}",7369"--prefix=$prefix/",$hash);7370if(exists$known_snapshot_formats{$format}{'compressor'}) {7371$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});7372}73737374$filename=~s/(["\\])/\\$1/g;7375my%latest_date;7376if(%co) {7377%latest_date= parse_date($co{'committer_epoch'},$co{'committer_tz'});7378}73797380print$cgi->header(7381-type =>$known_snapshot_formats{$format}{'type'},7382-content_disposition =>'inline; filename="'.$filename.'"',7383%co? (-last_modified =>$latest_date{'rfc2822'}) : (),7384-status =>'200 OK');73857386open my$fd,"-|",$cmd7387or die_error(500,"Execute git-archive failed");7388binmode STDOUT,':raw';7389print<$fd>;7390binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi7391close$fd;7392}73937394sub git_log_generic {7395my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;73967397my$head= git_get_head_hash($project);7398if(!defined$base) {7399$base=$head;7400}7401if(!defined$page) {7402$page=0;7403}7404my$refs= git_get_references();74057406my$commit_hash=$base;7407if(defined$parent) {7408$commit_hash="$parent..$base";7409}7410my@commitlist=7411 parse_commits($commit_hash,101, (100*$page),7412defined$file_name? ($file_name,"--full-history") : ());74137414my$ftype;7415if(!defined$file_hash&&defined$file_name) {7416# some commits could have deleted file in question,7417# and not have it in tree, but one of them has to have it7418for(my$i=0;$i<@commitlist;$i++) {7419$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);7420last ifdefined$file_hash;7421}7422}7423if(defined$file_hash) {7424$ftype= git_get_type($file_hash);7425}7426if(defined$file_name&& !defined$ftype) {7427 die_error(500,"Unknown type of object");7428}7429my%co;7430if(defined$file_name) {7431%co= parse_commit($base)7432or die_error(404,"Unknown commit object");7433}743474357436my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);7437my$next_link='';7438if($#commitlist>=100) {7439$next_link=7440$cgi->a({-href => href(-replay=>1, page=>$page+1),7441-accesskey =>"n", -title =>"Alt-n"},"next");7442}7443my$patch_max= gitweb_get_feature('patches');7444if($patch_max&& !defined$file_name) {7445if($patch_max<0||@commitlist<=$patch_max) {7446$paging_nav.=" ⋅ ".7447$cgi->a({-href => href(action=>"patches", -replay=>1)},7448"patches");7449}7450}74517452 git_header_html();7453 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);7454if(defined$file_name) {7455 git_print_header_div('commit', esc_html($co{'title'}),$base);7456}else{7457 git_print_header_div('summary',$project)7458}7459 git_print_page_path($file_name,$ftype,$hash_base)7460if(defined$file_name);74617462$body_subr->(\@commitlist,0,99,$refs,$next_link,7463$file_name,$file_hash,$ftype);74647465 git_footer_html();7466}74677468sub git_log {7469 git_log_generic('log', \&git_log_body,7470$hash,$hash_parent);7471}74727473sub git_commit {7474$hash||=$hash_base||"HEAD";7475my%co= parse_commit($hash)7476or die_error(404,"Unknown commit object");74777478my$parent=$co{'parent'};7479my$parents=$co{'parents'};# listref74807481# we need to prepare $formats_nav before any parameter munging7482my$formats_nav;7483if(!defined$parent) {7484# --root commitdiff7485$formats_nav.='(initial)';7486}elsif(@$parents==1) {7487# single parent commit7488$formats_nav.=7489'(parent: '.7490$cgi->a({-href => href(action=>"commit",7491 hash=>$parent)},7492 esc_html(substr($parent,0,7))) .7493')';7494}else{7495# merge commit7496$formats_nav.=7497'(merge: '.7498join(' ',map{7499$cgi->a({-href => href(action=>"commit",7500 hash=>$_)},7501 esc_html(substr($_,0,7)));7502}@$parents) .7503')';7504}7505if(gitweb_check_feature('patches') &&@$parents<=1) {7506$formats_nav.=" | ".7507$cgi->a({-href => href(action=>"patch", -replay=>1)},7508"patch");7509}75107511if(!defined$parent) {7512$parent="--root";7513}7514my@difftree;7515open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",7516@diff_opts,7517(@$parents<=1?$parent:'-c'),7518$hash,"--"7519or die_error(500,"Open git-diff-tree failed");7520@difftree=map{chomp;$_} <$fd>;7521close$fdor die_error(404,"Reading git-diff-tree failed");75227523# non-textual hash id's can be cached7524my$expires;7525if($hash=~m/^[0-9a-fA-F]{40}$/) {7526$expires="+1d";7527}7528my$refs= git_get_references();7529my$ref= format_ref_marker($refs,$co{'id'});75307531 git_header_html(undef,$expires);7532 git_print_page_nav('commit','',7533$hash,$co{'tree'},$hash,7534$formats_nav);75357536if(defined$co{'parent'}) {7537 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);7538}else{7539 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);7540}7541print"<div class=\"title_text\">\n".7542"<table class=\"object_header\">\n";7543 git_print_authorship_rows(\%co);7544print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";7545print"<tr>".7546"<td>tree</td>".7547"<td class=\"sha1\">".7548$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),7549class=>"list"},$co{'tree'}) .7550"</td>".7551"<td class=\"link\">".7552$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},7553"tree");7554my$snapshot_links= format_snapshot_links($hash);7555if(defined$snapshot_links) {7556print" | ".$snapshot_links;7557}7558print"</td>".7559"</tr>\n";75607561foreachmy$par(@$parents) {7562print"<tr>".7563"<td>parent</td>".7564"<td class=\"sha1\">".7565$cgi->a({-href => href(action=>"commit", hash=>$par),7566class=>"list"},$par) .7567"</td>".7568"<td class=\"link\">".7569$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .7570" | ".7571$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .7572"</td>".7573"</tr>\n";7574}7575print"</table>".7576"</div>\n";75777578print"<div class=\"page_body\">\n";7579 git_print_log($co{'comment'});7580print"</div>\n";75817582 git_difftree_body(\@difftree,$hash,@$parents);75837584 git_footer_html();7585}75867587sub git_object {7588# object is defined by:7589# - hash or hash_base alone7590# - hash_base and file_name7591my$type;75927593# - hash or hash_base alone7594if($hash|| ($hash_base&& !defined$file_name)) {7595my$object_id=$hash||$hash_base;75967597open my$fd,"-|", quote_command(7598 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'7599or die_error(404,"Object does not exist");7600$type= <$fd>;7601defined$type&&chomp$type;7602close$fd7603or die_error(404,"Object does not exist");76047605# - hash_base and file_name7606}elsif($hash_base&&defined$file_name) {7607$file_name=~ s,/+$,,;76087609system(git_cmd(),"cat-file",'-e',$hash_base) ==07610or die_error(404,"Base object does not exist");76117612# here errors should not happen7613open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name7614or die_error(500,"Open git-ls-tree failed");7615my$line= <$fd>;7616close$fd;76177618#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'7619unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {7620 die_error(404,"File or directory for given base does not exist");7621}7622$type=$2;7623$hash=$3;7624}else{7625 die_error(400,"Not enough information to find object");7626}76277628print$cgi->redirect(-uri => href(action=>$type, -full=>1,7629 hash=>$hash, hash_base=>$hash_base,7630 file_name=>$file_name),7631-status =>'302 Found');7632}76337634sub git_blobdiff {7635my$format=shift||'html';7636my$diff_style=$input_params{'diff_style'} ||'inline';76377638my$fd;7639my@difftree;7640my%diffinfo;7641my$expires;76427643# preparing $fd and %diffinfo for git_patchset_body7644# new style URI7645if(defined$hash_base&&defined$hash_parent_base) {7646if(defined$file_name) {7647# read raw output7648open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7649$hash_parent_base,$hash_base,7650"--", (defined$file_parent?$file_parent: ()),$file_name7651or die_error(500,"Open git-diff-tree failed");7652@difftree=map{chomp;$_} <$fd>;7653close$fd7654or die_error(404,"Reading git-diff-tree failed");7655@difftree7656or die_error(404,"Blob diff not found");76577658}elsif(defined$hash&&7659$hash=~/[0-9a-fA-F]{40}/) {7660# try to find filename from $hash76617662# read filtered raw output7663open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7664$hash_parent_base,$hash_base,"--"7665or die_error(500,"Open git-diff-tree failed");7666@difftree=7667# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'7668# $hash == to_id7669grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}7670map{chomp;$_} <$fd>;7671close$fd7672or die_error(404,"Reading git-diff-tree failed");7673@difftree7674or die_error(404,"Blob diff not found");76757676}else{7677 die_error(400,"Missing one of the blob diff parameters");7678}76797680if(@difftree>1) {7681 die_error(400,"Ambiguous blob diff specification");7682}76837684%diffinfo= parse_difftree_raw_line($difftree[0]);7685$file_parent||=$diffinfo{'from_file'} ||$file_name;7686$file_name||=$diffinfo{'to_file'};76877688$hash_parent||=$diffinfo{'from_id'};7689$hash||=$diffinfo{'to_id'};76907691# non-textual hash id's can be cached7692if($hash_base=~m/^[0-9a-fA-F]{40}$/&&7693$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {7694$expires='+1d';7695}76967697# open patch output7698open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7699'-p', ($formateq'html'?"--full-index": ()),7700$hash_parent_base,$hash_base,7701"--", (defined$file_parent?$file_parent: ()),$file_name7702or die_error(500,"Open git-diff-tree failed");7703}77047705# old/legacy style URI -- not generated anymore since 1.4.3.7706if(!%diffinfo) {7707 die_error('404 Not Found',"Missing one of the blob diff parameters")7708}77097710# header7711if($formateq'html') {7712my$formats_nav=7713$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},7714"raw");7715$formats_nav.= diff_style_nav($diff_style);7716 git_header_html(undef,$expires);7717if(defined$hash_base&& (my%co= parse_commit($hash_base))) {7718 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);7719 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);7720}else{7721print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";7722print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";7723}7724if(defined$file_name) {7725 git_print_page_path($file_name,"blob",$hash_base);7726}else{7727print"<div class=\"page_path\"></div>\n";7728}77297730}elsif($formateq'plain') {7731print$cgi->header(7732-type =>'text/plain',7733-charset =>'utf-8',7734-expires =>$expires,7735-content_disposition =>'inline; filename="'."$file_name".'.patch"');77367737print"X-Git-Url: ".$cgi->self_url() ."\n\n";77387739}else{7740 die_error(400,"Unknown blobdiff format");7741}77427743# patch7744if($formateq'html') {7745print"<div class=\"page_body\">\n";77467747 git_patchset_body($fd,$diff_style,7748[ \%diffinfo],$hash_base,$hash_parent_base);7749close$fd;77507751print"</div>\n";# class="page_body"7752 git_footer_html();77537754}else{7755while(my$line= <$fd>) {7756$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;7757$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;77587759print$line;77607761last if$line=~m!^\+\+\+!;7762}7763local$/=undef;7764print<$fd>;7765close$fd;7766}7767}77687769sub git_blobdiff_plain {7770 git_blobdiff('plain');7771}77727773# assumes that it is added as later part of already existing navigation,7774# so it returns "| foo | bar" rather than just "foo | bar"7775sub diff_style_nav {7776my($diff_style,$is_combined) =@_;7777$diff_style||='inline';77787779return""if($is_combined);77807781my@styles= (inline =>'inline','sidebyside'=>'side by side');7782my%styles=@styles;7783@styles=7784@styles[map{$_*2}0..$#styles/2];77857786returnjoin'',7787map{" | ".$_}7788map{7789$_eq$diff_style?$styles{$_} :7790$cgi->a({-href => href(-replay=>1, diff_style =>$_)},$styles{$_})7791}@styles;7792}77937794sub git_commitdiff {7795my%params=@_;7796my$format=$params{-format} ||'html';7797my$diff_style=$input_params{'diff_style'} ||'inline';77987799my($patch_max) = gitweb_get_feature('patches');7800if($formateq'patch') {7801 die_error(403,"Patch view not allowed")unless$patch_max;7802}78037804$hash||=$hash_base||"HEAD";7805my%co= parse_commit($hash)7806or die_error(404,"Unknown commit object");78077808# choose format for commitdiff for merge7809if(!defined$hash_parent&& @{$co{'parents'}} >1) {7810$hash_parent='--cc';7811}7812# we need to prepare $formats_nav before almost any parameter munging7813my$formats_nav;7814if($formateq'html') {7815$formats_nav=7816$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},7817"raw");7818if($patch_max&& @{$co{'parents'}} <=1) {7819$formats_nav.=" | ".7820$cgi->a({-href => href(action=>"patch", -replay=>1)},7821"patch");7822}7823$formats_nav.= diff_style_nav($diff_style, @{$co{'parents'}} >1);78247825if(defined$hash_parent&&7826$hash_parentne'-c'&&$hash_parentne'--cc') {7827# commitdiff with two commits given7828my$hash_parent_short=$hash_parent;7829if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {7830$hash_parent_short=substr($hash_parent,0,7);7831}7832$formats_nav.=7833' (from';7834for(my$i=0;$i< @{$co{'parents'}};$i++) {7835if($co{'parents'}[$i]eq$hash_parent) {7836$formats_nav.=' parent '. ($i+1);7837last;7838}7839}7840$formats_nav.=': '.7841$cgi->a({-href => href(-replay=>1,7842 hash=>$hash_parent, hash_base=>undef)},7843 esc_html($hash_parent_short)) .7844')';7845}elsif(!$co{'parent'}) {7846# --root commitdiff7847$formats_nav.=' (initial)';7848}elsif(scalar@{$co{'parents'}} ==1) {7849# single parent commit7850$formats_nav.=7851' (parent: '.7852$cgi->a({-href => href(-replay=>1,7853 hash=>$co{'parent'}, hash_base=>undef)},7854 esc_html(substr($co{'parent'},0,7))) .7855')';7856}else{7857# merge commit7858if($hash_parenteq'--cc') {7859$formats_nav.=' | '.7860$cgi->a({-href => href(-replay=>1,7861 hash=>$hash, hash_parent=>'-c')},7862'combined');7863}else{# $hash_parent eq '-c'7864$formats_nav.=' | '.7865$cgi->a({-href => href(-replay=>1,7866 hash=>$hash, hash_parent=>'--cc')},7867'compact');7868}7869$formats_nav.=7870' (merge: '.7871join(' ',map{7872$cgi->a({-href => href(-replay=>1,7873 hash=>$_, hash_base=>undef)},7874 esc_html(substr($_,0,7)));7875} @{$co{'parents'}} ) .7876')';7877}7878}78797880my$hash_parent_param=$hash_parent;7881if(!defined$hash_parent_param) {7882# --cc for multiple parents, --root for parentless7883$hash_parent_param=7884@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';7885}78867887# read commitdiff7888my$fd;7889my@difftree;7890if($formateq'html') {7891open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7892"--no-commit-id","--patch-with-raw","--full-index",7893$hash_parent_param,$hash,"--"7894or die_error(500,"Open git-diff-tree failed");78957896while(my$line= <$fd>) {7897chomp$line;7898# empty line ends raw part of diff-tree output7899last unless$line;7900push@difftree,scalar parse_difftree_raw_line($line);7901}79027903}elsif($formateq'plain') {7904open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7905'-p',$hash_parent_param,$hash,"--"7906or die_error(500,"Open git-diff-tree failed");7907}elsif($formateq'patch') {7908# For commit ranges, we limit the output to the number of7909# patches specified in the 'patches' feature.7910# For single commits, we limit the output to a single patch,7911# diverging from the git-format-patch default.7912my@commit_spec= ();7913if($hash_parent) {7914if($patch_max>0) {7915push@commit_spec,"-$patch_max";7916}7917push@commit_spec,'-n',"$hash_parent..$hash";7918}else{7919if($params{-single}) {7920push@commit_spec,'-1';7921}else{7922if($patch_max>0) {7923push@commit_spec,"-$patch_max";7924}7925push@commit_spec,"-n";7926}7927push@commit_spec,'--root',$hash;7928}7929open$fd,"-|", git_cmd(),"format-patch",@diff_opts,7930'--encoding=utf8','--stdout',@commit_spec7931or die_error(500,"Open git-format-patch failed");7932}else{7933 die_error(400,"Unknown commitdiff format");7934}79357936# non-textual hash id's can be cached7937my$expires;7938if($hash=~m/^[0-9a-fA-F]{40}$/) {7939$expires="+1d";7940}79417942# write commit message7943if($formateq'html') {7944my$refs= git_get_references();7945my$ref= format_ref_marker($refs,$co{'id'});79467947 git_header_html(undef,$expires);7948 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);7949 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);7950print"<div class=\"title_text\">\n".7951"<table class=\"object_header\">\n";7952 git_print_authorship_rows(\%co);7953print"</table>".7954"</div>\n";7955print"<div class=\"page_body\">\n";7956if(@{$co{'comment'}} >1) {7957print"<div class=\"log\">\n";7958 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);7959print"</div>\n";# class="log"7960}79617962}elsif($formateq'plain') {7963my$refs= git_get_references("tags");7964my$tagname= git_get_rev_name_tags($hash);7965my$filename= basename($project) ."-$hash.patch";79667967print$cgi->header(7968-type =>'text/plain',7969-charset =>'utf-8',7970-expires =>$expires,7971-content_disposition =>'inline; filename="'."$filename".'"');7972my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});7973print"From: ". to_utf8($co{'author'}) ."\n";7974print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";7975print"Subject: ". to_utf8($co{'title'}) ."\n";79767977print"X-Git-Tag:$tagname\n"if$tagname;7978print"X-Git-Url: ".$cgi->self_url() ."\n\n";79797980foreachmy$line(@{$co{'comment'}}) {7981print to_utf8($line) ."\n";7982}7983print"---\n\n";7984}elsif($formateq'patch') {7985my$filename= basename($project) ."-$hash.patch";79867987print$cgi->header(7988-type =>'text/plain',7989-charset =>'utf-8',7990-expires =>$expires,7991-content_disposition =>'inline; filename="'."$filename".'"');7992}79937994# write patch7995if($formateq'html') {7996my$use_parents= !defined$hash_parent||7997$hash_parenteq'-c'||$hash_parenteq'--cc';7998 git_difftree_body(\@difftree,$hash,7999$use_parents? @{$co{'parents'}} :$hash_parent);8000print"<br/>\n";80018002 git_patchset_body($fd,$diff_style,8003 \@difftree,$hash,8004$use_parents? @{$co{'parents'}} :$hash_parent);8005close$fd;8006print"</div>\n";# class="page_body"8007 git_footer_html();80088009}elsif($formateq'plain') {8010local$/=undef;8011print<$fd>;8012close$fd8013or print"Reading git-diff-tree failed\n";8014}elsif($formateq'patch') {8015local$/=undef;8016print<$fd>;8017close$fd8018or print"Reading git-format-patch failed\n";8019}8020}80218022sub git_commitdiff_plain {8023 git_commitdiff(-format =>'plain');8024}80258026# format-patch-style patches8027sub git_patch {8028 git_commitdiff(-format =>'patch', -single =>1);8029}80308031sub git_patches {8032 git_commitdiff(-format =>'patch');8033}80348035sub git_history {8036 git_log_generic('history', \&git_history_body,8037$hash_base,$hash_parent_base,8038$file_name,$hash);8039}80408041sub git_search {8042$searchtype||='commit';80438044# check if appropriate features are enabled8045 gitweb_check_feature('search')8046or die_error(403,"Search is disabled");8047if($searchtypeeq'pickaxe') {8048# pickaxe may take all resources of your box and run for several minutes8049# with every query - so decide by yourself how public you make this feature8050 gitweb_check_feature('pickaxe')8051or die_error(403,"Pickaxe search is disabled");8052}8053if($searchtypeeq'grep') {8054# grep search might be potentially CPU-intensive, too8055 gitweb_check_feature('grep')8056or die_error(403,"Grep search is disabled");8057}80588059if(!defined$searchtext) {8060 die_error(400,"Text field is empty");8061}8062if(!defined$hash) {8063$hash= git_get_head_hash($project);8064}8065my%co= parse_commit($hash);8066if(!%co) {8067 die_error(404,"Unknown commit object");8068}8069if(!defined$page) {8070$page=0;8071}80728073if($searchtypeeq'commit'||8074$searchtypeeq'author'||8075$searchtypeeq'committer') {8076 git_search_message(%co);8077}elsif($searchtypeeq'pickaxe') {8078 git_search_changes(%co);8079}elsif($searchtypeeq'grep') {8080 git_search_files(%co);8081}else{8082 die_error(400,"Unknown search type");8083}8084}80858086sub git_search_help {8087 git_header_html();8088 git_print_page_nav('','',$hash,$hash,$hash);8089print<<EOT;8090<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without8091regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,8092the pattern entered is recognized as the POSIX extended8093<a href="https://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case8094insensitive).</p>8095<dl>8096<dt><b>commit</b></dt>8097<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>8098EOT8099my$have_grep= gitweb_check_feature('grep');8100if($have_grep) {8101print<<EOT;8102<dt><b>grep</b></dt>8103<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing8104 a different one) are searched for the given pattern. On large trees, this search can take8105a while and put some strain on the server, so please use it with some consideration. Note that8106due to git-grep peculiarity, currently if regexp mode is turned off, the matches are8107case-sensitive.</dd>8108EOT8109}8110print<<EOT;8111<dt><b>author</b></dt>8112<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>8113<dt><b>committer</b></dt>8114<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>8115EOT8116my$have_pickaxe= gitweb_check_feature('pickaxe');8117if($have_pickaxe) {8118print<<EOT;8119<dt><b>pickaxe</b></dt>8120<dd>All commits that caused the string to appear or disappear from any file (changes that8121added, removed or "modified" the string) will be listed. This search can take a while and8122takes a lot of strain on the server, so please use it wisely. Note that since you may be8123interested even in changes just changing the case as well, this search is case sensitive.</dd>8124EOT8125}8126print"</dl>\n";8127 git_footer_html();8128}81298130sub git_shortlog {8131 git_log_generic('shortlog', \&git_shortlog_body,8132$hash,$hash_parent);8133}81348135## ......................................................................8136## feeds (RSS, Atom; OPML)81378138sub git_feed {8139my$format=shift||'atom';8140my$have_blame= gitweb_check_feature('blame');81418142# Atom: http://www.atomenabled.org/developers/syndication/8143# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ8144if($formatne'rss'&&$formatne'atom') {8145 die_error(400,"Unknown web feed format");8146}81478148# log/feed of current (HEAD) branch, log of given branch, history of file/directory8149my$head=$hash||'HEAD';8150my@commitlist= parse_commits($head,150,0,$file_name);81518152my%latest_commit;8153my%latest_date;8154my$content_type="application/$format+xml";8155if(defined$cgi->http('HTTP_ACCEPT') &&8156$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {8157# browser (feed reader) prefers text/xml8158$content_type='text/xml';8159}8160if(defined($commitlist[0])) {8161%latest_commit= %{$commitlist[0]};8162my$latest_epoch=$latest_commit{'committer_epoch'};8163 exit_if_unmodified_since($latest_epoch);8164%latest_date= parse_date($latest_epoch,$latest_commit{'committer_tz'});8165}8166print$cgi->header(8167-type =>$content_type,8168-charset =>'utf-8',8169%latest_date? (-last_modified =>$latest_date{'rfc2822'}) : (),8170-status =>'200 OK');81718172# Optimization: skip generating the body if client asks only8173# for Last-Modified date.8174return if($cgi->request_method()eq'HEAD');81758176# header variables8177my$title="$site_name-$project/$action";8178my$feed_type='log';8179if(defined$hash) {8180$title.=" - '$hash'";8181$feed_type='branch log';8182if(defined$file_name) {8183$title.=" ::$file_name";8184$feed_type='history';8185}8186}elsif(defined$file_name) {8187$title.=" -$file_name";8188$feed_type='history';8189}8190$title.="$feed_type";8191$title= esc_html($title);8192my$descr= git_get_project_description($project);8193if(defined$descr) {8194$descr= esc_html($descr);8195}else{8196$descr="$project".8197($formateq'rss'?'RSS':'Atom') .8198" feed";8199}8200my$owner= git_get_project_owner($project);8201$owner= esc_html($owner);82028203#header8204my$alt_url;8205if(defined$file_name) {8206$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);8207}elsif(defined$hash) {8208$alt_url= href(-full=>1, action=>"log", hash=>$hash);8209}else{8210$alt_url= href(-full=>1, action=>"summary");8211}8212print qq!<?xml version="1.0" encoding="utf-8"?>\n!;8213if($formateq'rss') {8214print<<XML;8215<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">8216<channel>8217XML8218print"<title>$title</title>\n".8219"<link>$alt_url</link>\n".8220"<description>$descr</description>\n".8221"<language>en</language>\n".8222# project owner is responsible for 'editorial' content8223"<managingEditor>$owner</managingEditor>\n";8224if(defined$logo||defined$favicon) {8225# prefer the logo to the favicon, since RSS8226# doesn't allow both8227my$img= esc_url($logo||$favicon);8228print"<image>\n".8229"<url>$img</url>\n".8230"<title>$title</title>\n".8231"<link>$alt_url</link>\n".8232"</image>\n";8233}8234if(%latest_date) {8235print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";8236print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";8237}8238print"<generator>gitweb v.$version/$git_version</generator>\n";8239}elsif($formateq'atom') {8240print<<XML;8241<feed xmlns="http://www.w3.org/2005/Atom">8242XML8243print"<title>$title</title>\n".8244"<subtitle>$descr</subtitle>\n".8245'<link rel="alternate" type="text/html" href="'.8246$alt_url.'" />'."\n".8247'<link rel="self" type="'.$content_type.'" href="'.8248$cgi->self_url() .'" />'."\n".8249"<id>". href(-full=>1) ."</id>\n".8250# use project owner for feed author8251"<author><name>$owner</name></author>\n";8252if(defined$favicon) {8253print"<icon>". esc_url($favicon) ."</icon>\n";8254}8255if(defined$logo) {8256# not twice as wide as tall: 72 x 27 pixels8257print"<logo>". esc_url($logo) ."</logo>\n";8258}8259if(!%latest_date) {8260# dummy date to keep the feed valid until commits trickle in:8261print"<updated>1970-01-01T00:00:00Z</updated>\n";8262}else{8263print"<updated>$latest_date{'iso-8601'}</updated>\n";8264}8265print"<generator version='$version/$git_version'>gitweb</generator>\n";8266}82678268# contents8269for(my$i=0;$i<=$#commitlist;$i++) {8270my%co= %{$commitlist[$i]};8271my$commit=$co{'id'};8272# we read 150, we always show 30 and the ones more recent than 48 hours8273if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {8274last;8275}8276my%cd= parse_date($co{'author_epoch'},$co{'author_tz'});82778278# get list of changed files8279open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,8280$co{'parent'} ||"--root",8281$co{'id'},"--", (defined$file_name?$file_name: ())8282ornext;8283my@difftree=map{chomp;$_} <$fd>;8284close$fd8285ornext;82868287# print element (entry, item)8288my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);8289if($formateq'rss') {8290print"<item>\n".8291"<title>". esc_html($co{'title'}) ."</title>\n".8292"<author>". esc_html($co{'author'}) ."</author>\n".8293"<pubDate>$cd{'rfc2822'}</pubDate>\n".8294"<guid isPermaLink=\"true\">$co_url</guid>\n".8295"<link>$co_url</link>\n".8296"<description>". esc_html($co{'title'}) ."</description>\n".8297"<content:encoded>".8298"<![CDATA[\n";8299}elsif($formateq'atom') {8300print"<entry>\n".8301"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".8302"<updated>$cd{'iso-8601'}</updated>\n".8303"<author>\n".8304" <name>". esc_html($co{'author_name'}) ."</name>\n";8305if($co{'author_email'}) {8306print" <email>". esc_html($co{'author_email'}) ."</email>\n";8307}8308print"</author>\n".8309# use committer for contributor8310"<contributor>\n".8311" <name>". esc_html($co{'committer_name'}) ."</name>\n";8312if($co{'committer_email'}) {8313print" <email>". esc_html($co{'committer_email'}) ."</email>\n";8314}8315print"</contributor>\n".8316"<published>$cd{'iso-8601'}</published>\n".8317"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".8318"<id>$co_url</id>\n".8319"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".8320"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";8321}8322my$comment=$co{'comment'};8323print"<pre>\n";8324foreachmy$line(@$comment) {8325$line= esc_html($line);8326print"$line\n";8327}8328print"</pre><ul>\n";8329foreachmy$difftree_line(@difftree) {8330my%difftree= parse_difftree_raw_line($difftree_line);8331next if!$difftree{'from_id'};83328333my$file=$difftree{'file'} ||$difftree{'to_file'};83348335print"<li>".8336"[".8337$cgi->a({-href => href(-full=>1, action=>"blobdiff",8338 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},8339 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},8340 file_name=>$file, file_parent=>$difftree{'from_file'}),8341-title =>"diff"},'D');8342if($have_blame) {8343print$cgi->a({-href => href(-full=>1, action=>"blame",8344 file_name=>$file, hash_base=>$commit),8345-title =>"blame"},'B');8346}8347# if this is not a feed of a file history8348if(!defined$file_name||$file_namene$file) {8349print$cgi->a({-href => href(-full=>1, action=>"history",8350 file_name=>$file, hash=>$commit),8351-title =>"history"},'H');8352}8353$file= esc_path($file);8354print"] ".8355"$file</li>\n";8356}8357if($formateq'rss') {8358print"</ul>]]>\n".8359"</content:encoded>\n".8360"</item>\n";8361}elsif($formateq'atom') {8362print"</ul>\n</div>\n".8363"</content>\n".8364"</entry>\n";8365}8366}83678368# end of feed8369if($formateq'rss') {8370print"</channel>\n</rss>\n";8371}elsif($formateq'atom') {8372print"</feed>\n";8373}8374}83758376sub git_rss {8377 git_feed('rss');8378}83798380sub git_atom {8381 git_feed('atom');8382}83838384sub git_opml {8385my@list= git_get_projects_list($project_filter,$strict_export);8386if(!@list) {8387 die_error(404,"No projects found");8388}83898390print$cgi->header(8391-type =>'text/xml',8392-charset =>'utf-8',8393-content_disposition =>'inline; filename="opml.xml"');83948395my$title= esc_html($site_name);8396my$filter=" within subdirectory ";8397if(defined$project_filter) {8398$filter.= esc_html($project_filter);8399}else{8400$filter="";8401}8402print<<XML;8403<?xml version="1.0" encoding="utf-8"?>8404<opml version="1.0">8405<head>8406 <title>$titleOPML Export$filter</title>8407</head>8408<body>8409<outline text="git RSS feeds">8410XML84118412foreachmy$pr(@list) {8413my%proj=%$pr;8414my$head= git_get_head_hash($proj{'path'});8415if(!defined$head) {8416next;8417}8418$git_dir="$projectroot/$proj{'path'}";8419my%co= parse_commit($head);8420if(!%co) {8421next;8422}84238424my$path= esc_html(chop_str($proj{'path'},25,5));8425my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);8426my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);8427print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";8428}8429print<<XML;8430</outline>8431</body>8432</opml>8433XML8434}