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); 20binmode STDOUT,':utf8'; 21 22our$t0; 23if(eval{require Time::HiRes;1; }) { 24$t0= [Time::HiRes::gettimeofday()]; 25} 26our$number_of_git_cmds=0; 27 28BEGIN{ 29 CGI->compile()if$ENV{'MOD_PERL'}; 30} 31 32our$version="++GIT_VERSION++"; 33 34our($my_url,$my_uri,$base_url,$path_info,$home_link); 35sub evaluate_uri { 36our$cgi; 37 38our$my_url=$cgi->url(); 39our$my_uri=$cgi->url(-absolute =>1); 40 41# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 42# needed and used only for URLs with nonempty PATH_INFO 43our$base_url=$my_url; 44 45# When the script is used as DirectoryIndex, the URL does not contain the name 46# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 47# have to do it ourselves. We make $path_info global because it's also used 48# later on. 49# 50# Another issue with the script being the DirectoryIndex is that the resulting 51# $my_url data is not the full script URL: this is good, because we want 52# generated links to keep implying the script name if it wasn't explicitly 53# indicated in the URL we're handling, but it means that $my_url cannot be used 54# as base URL. 55# Therefore, if we needed to strip PATH_INFO, then we know that we have 56# to build the base URL ourselves: 57our$path_info=$ENV{"PATH_INFO"}; 58if($path_info) { 59if($my_url=~ s,\Q$path_info\E$,, && 60$my_uri=~ s,\Q$path_info\E$,, && 61defined$ENV{'SCRIPT_NAME'}) { 62$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 63} 64} 65 66# target of the home link on top of all pages 67our$home_link=$my_uri||"/"; 68} 69 70# core git executable to use 71# this can just be "git" if your webserver has a sensible PATH 72our$GIT="++GIT_BINDIR++/git"; 73 74# absolute fs-path which will be prepended to the project path 75#our $projectroot = "/pub/scm"; 76our$projectroot="++GITWEB_PROJECTROOT++"; 77 78# fs traversing limit for getting project list 79# the number is relative to the projectroot 80our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 81 82# string of the home link on top of all pages 83our$home_link_str="++GITWEB_HOME_LINK_STR++"; 84 85# name of your site or organization to appear in page titles 86# replace this with something more descriptive for clearer bookmarks 87our$site_name="++GITWEB_SITENAME++" 88|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 89 90# filename of html text to include at top of each page 91our$site_header="++GITWEB_SITE_HEADER++"; 92# html text to include at home page 93our$home_text="++GITWEB_HOMETEXT++"; 94# filename of html text to include at bottom of each page 95our$site_footer="++GITWEB_SITE_FOOTER++"; 96 97# URI of stylesheets 98our@stylesheets= ("++GITWEB_CSS++"); 99# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 100our$stylesheet=undef; 101# URI of GIT logo (72x27 size) 102our$logo="++GITWEB_LOGO++"; 103# URI of GIT favicon, assumed to be image/png type 104our$favicon="++GITWEB_FAVICON++"; 105# URI of gitweb.js (JavaScript code for gitweb) 106our$javascript="++GITWEB_JS++"; 107 108# URI and label (title) of GIT logo link 109#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 110#our $logo_label = "git documentation"; 111our$logo_url="http://git-scm.com/"; 112our$logo_label="git homepage"; 113 114# source of projects list 115our$projects_list="++GITWEB_LIST++"; 116 117# the width (in characters) of the projects list "Description" column 118our$projects_list_description_width=25; 119 120# default order of projects list 121# valid values are none, project, descr, owner, and age 122our$default_projects_order="project"; 123 124# show repository only if this file exists 125# (only effective if this variable evaluates to true) 126our$export_ok="++GITWEB_EXPORT_OK++"; 127 128# show repository only if this subroutine returns true 129# when given the path to the project, for example: 130# sub { return -e "$_[0]/git-daemon-export-ok"; } 131our$export_auth_hook=undef; 132 133# only allow viewing of repositories also shown on the overview page 134our$strict_export="++GITWEB_STRICT_EXPORT++"; 135 136# list of git base URLs used for URL to where fetch project from, 137# i.e. full URL is "$git_base_url/$project" 138our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 139 140# default blob_plain mimetype and default charset for text/plain blob 141our$default_blob_plain_mimetype='text/plain'; 142our$default_text_plain_charset=undef; 143 144# file to use for guessing MIME types before trying /etc/mime.types 145# (relative to the current git repository) 146our$mimetypes_file=undef; 147 148# assume this charset if line contains non-UTF-8 characters; 149# it should be valid encoding (see Encoding::Supported(3pm) for list), 150# for which encoding all byte sequences are valid, for example 151# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 152# could be even 'utf-8' for the old behavior) 153our$fallback_encoding='latin1'; 154 155# rename detection options for git-diff and git-diff-tree 156# - default is '-M', with the cost proportional to 157# (number of removed files) * (number of new files). 158# - more costly is '-C' (which implies '-M'), with the cost proportional to 159# (number of changed files + number of removed files) * (number of new files) 160# - even more costly is '-C', '--find-copies-harder' with cost 161# (number of files in the original tree) * (number of new files) 162# - one might want to include '-B' option, e.g. '-B', '-M' 163our@diff_opts= ('-M');# taken from git_commit 164 165# Disables features that would allow repository owners to inject script into 166# the gitweb domain. 167our$prevent_xss=0; 168 169# information about snapshot formats that gitweb is capable of serving 170our%known_snapshot_formats= ( 171# name => { 172# 'display' => display name, 173# 'type' => mime type, 174# 'suffix' => filename suffix, 175# 'format' => --format for git-archive, 176# 'compressor' => [compressor command and arguments] 177# (array reference, optional) 178# 'disabled' => boolean (optional)} 179# 180'tgz'=> { 181'display'=>'tar.gz', 182'type'=>'application/x-gzip', 183'suffix'=>'.tar.gz', 184'format'=>'tar', 185'compressor'=> ['gzip']}, 186 187'tbz2'=> { 188'display'=>'tar.bz2', 189'type'=>'application/x-bzip2', 190'suffix'=>'.tar.bz2', 191'format'=>'tar', 192'compressor'=> ['bzip2']}, 193 194'txz'=> { 195'display'=>'tar.xz', 196'type'=>'application/x-xz', 197'suffix'=>'.tar.xz', 198'format'=>'tar', 199'compressor'=> ['xz'], 200'disabled'=>1}, 201 202'zip'=> { 203'display'=>'zip', 204'type'=>'application/x-zip', 205'suffix'=>'.zip', 206'format'=>'zip'}, 207); 208 209# Aliases so we understand old gitweb.snapshot values in repository 210# configuration. 211our%known_snapshot_format_aliases= ( 212'gzip'=>'tgz', 213'bzip2'=>'tbz2', 214'xz'=>'txz', 215 216# backward compatibility: legacy gitweb config support 217'x-gzip'=>undef,'gz'=>undef, 218'x-bzip2'=>undef,'bz2'=>undef, 219'x-zip'=>undef,''=>undef, 220); 221 222# Pixel sizes for icons and avatars. If the default font sizes or lineheights 223# are changed, it may be appropriate to change these values too via 224# $GITWEB_CONFIG. 225our%avatar_size= ( 226'default'=>16, 227'double'=>32 228); 229 230# Used to set the maximum load that we will still respond to gitweb queries. 231# If server load exceed this value then return "503 server busy" error. 232# If gitweb cannot determined server load, it is taken to be 0. 233# Leave it undefined (or set to 'undef') to turn off load checking. 234our$maxload=300; 235 236# configuration for 'highlight' (http://www.andre-simon.de/) 237# match by basename 238our%highlight_basename= ( 239#'Program' => 'py', 240#'Library' => 'py', 241'SConstruct'=>'py',# SCons equivalent of Makefile 242'Makefile'=>'make', 243); 244# match by extension 245our%highlight_ext= ( 246# main extensions, defining name of syntax; 247# see files in /usr/share/highlight/langDefs/ directory 248map{$_=>$_} 249qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl), 250# alternate extensions, see /etc/highlight/filetypes.conf 251'h'=>'c', 252map{$_=>'cpp'}qw(cxx c++ cc), 253map{$_=>'php'}qw(php3 php4), 254map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 255'mak'=>'make', 256map{$_=>'xml'}qw(xhtml html htm), 257); 258 259# You define site-wide feature defaults here; override them with 260# $GITWEB_CONFIG as necessary. 261our%feature= ( 262# feature => { 263# 'sub' => feature-sub (subroutine), 264# 'override' => allow-override (boolean), 265# 'default' => [ default options...] (array reference)} 266# 267# if feature is overridable (it means that allow-override has true value), 268# then feature-sub will be called with default options as parameters; 269# return value of feature-sub indicates if to enable specified feature 270# 271# if there is no 'sub' key (no feature-sub), then feature cannot be 272# overridden 273# 274# use gitweb_get_feature(<feature>) to retrieve the <feature> value 275# (an array) or gitweb_check_feature(<feature>) to check if <feature> 276# is enabled 277 278# Enable the 'blame' blob view, showing the last commit that modified 279# each line in the file. This can be very CPU-intensive. 280 281# To enable system wide have in $GITWEB_CONFIG 282# $feature{'blame'}{'default'} = [1]; 283# To have project specific config enable override in $GITWEB_CONFIG 284# $feature{'blame'}{'override'} = 1; 285# and in project config gitweb.blame = 0|1; 286'blame'=> { 287'sub'=>sub{ feature_bool('blame',@_) }, 288'override'=>0, 289'default'=> [0]}, 290 291# Enable the 'snapshot' link, providing a compressed archive of any 292# tree. This can potentially generate high traffic if you have large 293# project. 294 295# Value is a list of formats defined in %known_snapshot_formats that 296# you wish to offer. 297# To disable system wide have in $GITWEB_CONFIG 298# $feature{'snapshot'}{'default'} = []; 299# To have project specific config enable override in $GITWEB_CONFIG 300# $feature{'snapshot'}{'override'} = 1; 301# and in project config, a comma-separated list of formats or "none" 302# to disable. Example: gitweb.snapshot = tbz2,zip; 303'snapshot'=> { 304'sub'=> \&feature_snapshot, 305'override'=>0, 306'default'=> ['tgz']}, 307 308# Enable text search, which will list the commits which match author, 309# committer or commit text to a given string. Enabled by default. 310# Project specific override is not supported. 311'search'=> { 312'override'=>0, 313'default'=> [1]}, 314 315# Enable grep search, which will list the files in currently selected 316# tree containing the given string. Enabled by default. This can be 317# potentially CPU-intensive, of course. 318 319# To enable system wide have in $GITWEB_CONFIG 320# $feature{'grep'}{'default'} = [1]; 321# To have project specific config enable override in $GITWEB_CONFIG 322# $feature{'grep'}{'override'} = 1; 323# and in project config gitweb.grep = 0|1; 324'grep'=> { 325'sub'=>sub{ feature_bool('grep',@_) }, 326'override'=>0, 327'default'=> [1]}, 328 329# Enable the pickaxe search, which will list the commits that modified 330# a given string in a file. This can be practical and quite faster 331# alternative to 'blame', but still potentially CPU-intensive. 332 333# To enable system wide have in $GITWEB_CONFIG 334# $feature{'pickaxe'}{'default'} = [1]; 335# To have project specific config enable override in $GITWEB_CONFIG 336# $feature{'pickaxe'}{'override'} = 1; 337# and in project config gitweb.pickaxe = 0|1; 338'pickaxe'=> { 339'sub'=>sub{ feature_bool('pickaxe',@_) }, 340'override'=>0, 341'default'=> [1]}, 342 343# Enable showing size of blobs in a 'tree' view, in a separate 344# column, similar to what 'ls -l' does. This cost a bit of IO. 345 346# To disable system wide have in $GITWEB_CONFIG 347# $feature{'show-sizes'}{'default'} = [0]; 348# To have project specific config enable override in $GITWEB_CONFIG 349# $feature{'show-sizes'}{'override'} = 1; 350# and in project config gitweb.showsizes = 0|1; 351'show-sizes'=> { 352'sub'=>sub{ feature_bool('showsizes',@_) }, 353'override'=>0, 354'default'=> [1]}, 355 356# Make gitweb use an alternative format of the URLs which can be 357# more readable and natural-looking: project name is embedded 358# directly in the path and the query string contains other 359# auxiliary information. All gitweb installations recognize 360# URL in either format; this configures in which formats gitweb 361# generates links. 362 363# To enable system wide have in $GITWEB_CONFIG 364# $feature{'pathinfo'}{'default'} = [1]; 365# Project specific override is not supported. 366 367# Note that you will need to change the default location of CSS, 368# favicon, logo and possibly other files to an absolute URL. Also, 369# if gitweb.cgi serves as your indexfile, you will need to force 370# $my_uri to contain the script name in your $GITWEB_CONFIG. 371'pathinfo'=> { 372'override'=>0, 373'default'=> [0]}, 374 375# Make gitweb consider projects in project root subdirectories 376# to be forks of existing projects. Given project $projname.git, 377# projects matching $projname/*.git will not be shown in the main 378# projects list, instead a '+' mark will be added to $projname 379# there and a 'forks' view will be enabled for the project, listing 380# all the forks. If project list is taken from a file, forks have 381# to be listed after the main project. 382 383# To enable system wide have in $GITWEB_CONFIG 384# $feature{'forks'}{'default'} = [1]; 385# Project specific override is not supported. 386'forks'=> { 387'override'=>0, 388'default'=> [0]}, 389 390# Insert custom links to the action bar of all project pages. 391# This enables you mainly to link to third-party scripts integrating 392# into gitweb; e.g. git-browser for graphical history representation 393# or custom web-based repository administration interface. 394 395# The 'default' value consists of a list of triplets in the form 396# (label, link, position) where position is the label after which 397# to insert the link and link is a format string where %n expands 398# to the project name, %f to the project path within the filesystem, 399# %h to the current hash (h gitweb parameter) and %b to the current 400# hash base (hb gitweb parameter); %% expands to %. 401 402# To enable system wide have in $GITWEB_CONFIG e.g. 403# $feature{'actions'}{'default'} = [('graphiclog', 404# '/git-browser/by-commit.html?r=%n', 'summary')]; 405# Project specific override is not supported. 406'actions'=> { 407'override'=>0, 408'default'=> []}, 409 410# Allow gitweb scan project content tags described in ctags/ 411# of project repository, and display the popular Web 2.0-ish 412# "tag cloud" near the project list. Note that this is something 413# COMPLETELY different from the normal Git tags. 414 415# gitweb by itself can show existing tags, but it does not handle 416# tagging itself; you need an external application for that. 417# For an example script, check Girocco's cgi/tagproj.cgi. 418# You may want to install the HTML::TagCloud Perl module to get 419# a pretty tag cloud instead of just a list of tags. 420 421# To enable system wide have in $GITWEB_CONFIG 422# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 423# Project specific override is not supported. 424'ctags'=> { 425'override'=>0, 426'default'=> [0]}, 427 428# The maximum number of patches in a patchset generated in patch 429# view. Set this to 0 or undef to disable patch view, or to a 430# negative number to remove any limit. 431 432# To disable system wide have in $GITWEB_CONFIG 433# $feature{'patches'}{'default'} = [0]; 434# To have project specific config enable override in $GITWEB_CONFIG 435# $feature{'patches'}{'override'} = 1; 436# and in project config gitweb.patches = 0|n; 437# where n is the maximum number of patches allowed in a patchset. 438'patches'=> { 439'sub'=> \&feature_patches, 440'override'=>0, 441'default'=> [16]}, 442 443# Avatar support. When this feature is enabled, views such as 444# shortlog or commit will display an avatar associated with 445# the email of the committer(s) and/or author(s). 446 447# Currently available providers are gravatar and picon. 448# If an unknown provider is specified, the feature is disabled. 449 450# Gravatar depends on Digest::MD5. 451# Picon currently relies on the indiana.edu database. 452 453# To enable system wide have in $GITWEB_CONFIG 454# $feature{'avatar'}{'default'} = ['<provider>']; 455# where <provider> is either gravatar or picon. 456# To have project specific config enable override in $GITWEB_CONFIG 457# $feature{'avatar'}{'override'} = 1; 458# and in project config gitweb.avatar = <provider>; 459'avatar'=> { 460'sub'=> \&feature_avatar, 461'override'=>0, 462'default'=> ['']}, 463 464# Enable displaying how much time and how many git commands 465# it took to generate and display page. Disabled by default. 466# Project specific override is not supported. 467'timed'=> { 468'override'=>0, 469'default'=> [0]}, 470 471# Enable turning some links into links to actions which require 472# JavaScript to run (like 'blame_incremental'). Not enabled by 473# default. Project specific override is currently not supported. 474'javascript-actions'=> { 475'override'=>0, 476'default'=> [0]}, 477 478# Syntax highlighting support. This is based on Daniel Svensson's 479# and Sham Chukoury's work in gitweb-xmms2.git. 480# It requires the 'highlight' program present in $PATH, 481# and therefore is disabled by default. 482 483# To enable system wide have in $GITWEB_CONFIG 484# $feature{'highlight'}{'default'} = [1]; 485 486'highlight'=> { 487'sub'=>sub{ feature_bool('highlight',@_) }, 488'override'=>0, 489'default'=> [0]}, 490); 491 492sub gitweb_get_feature { 493my($name) =@_; 494return unlessexists$feature{$name}; 495my($sub,$override,@defaults) = ( 496$feature{$name}{'sub'}, 497$feature{$name}{'override'}, 498@{$feature{$name}{'default'}}); 499# project specific override is possible only if we have project 500our$git_dir;# global variable, declared later 501if(!$override|| !defined$git_dir) { 502return@defaults; 503} 504if(!defined$sub) { 505warn"feature$nameis not overridable"; 506return@defaults; 507} 508return$sub->(@defaults); 509} 510 511# A wrapper to check if a given feature is enabled. 512# With this, you can say 513# 514# my $bool_feat = gitweb_check_feature('bool_feat'); 515# gitweb_check_feature('bool_feat') or somecode; 516# 517# instead of 518# 519# my ($bool_feat) = gitweb_get_feature('bool_feat'); 520# (gitweb_get_feature('bool_feat'))[0] or somecode; 521# 522sub gitweb_check_feature { 523return(gitweb_get_feature(@_))[0]; 524} 525 526 527sub feature_bool { 528my$key=shift; 529my($val) = git_get_project_config($key,'--bool'); 530 531if(!defined$val) { 532return($_[0]); 533}elsif($valeq'true') { 534return(1); 535}elsif($valeq'false') { 536return(0); 537} 538} 539 540sub feature_snapshot { 541my(@fmts) =@_; 542 543my($val) = git_get_project_config('snapshot'); 544 545if($val) { 546@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 547} 548 549return@fmts; 550} 551 552sub feature_patches { 553my@val= (git_get_project_config('patches','--int')); 554 555if(@val) { 556return@val; 557} 558 559return($_[0]); 560} 561 562sub feature_avatar { 563my@val= (git_get_project_config('avatar')); 564 565return@val?@val:@_; 566} 567 568# checking HEAD file with -e is fragile if the repository was 569# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 570# and then pruned. 571sub check_head_link { 572my($dir) =@_; 573my$headfile="$dir/HEAD"; 574return((-e $headfile) || 575(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 576} 577 578sub check_export_ok { 579my($dir) =@_; 580return(check_head_link($dir) && 581(!$export_ok|| -e "$dir/$export_ok") && 582(!$export_auth_hook||$export_auth_hook->($dir))); 583} 584 585# process alternate names for backward compatibility 586# filter out unsupported (unknown) snapshot formats 587sub filter_snapshot_fmts { 588my@fmts=@_; 589 590@fmts=map{ 591exists$known_snapshot_format_aliases{$_} ? 592$known_snapshot_format_aliases{$_} :$_}@fmts; 593@fmts=grep{ 594exists$known_snapshot_formats{$_} && 595!$known_snapshot_formats{$_}{'disabled'}}@fmts; 596} 597 598our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 599sub evaluate_gitweb_config { 600our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 601our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 602# die if there are errors parsing config file 603if(-e $GITWEB_CONFIG) { 604do$GITWEB_CONFIG; 605die$@if$@; 606}elsif(-e $GITWEB_CONFIG_SYSTEM) { 607do$GITWEB_CONFIG_SYSTEM; 608die$@if$@; 609} 610} 611 612# Get loadavg of system, to compare against $maxload. 613# Currently it requires '/proc/loadavg' present to get loadavg; 614# if it is not present it returns 0, which means no load checking. 615sub get_loadavg { 616if( -e '/proc/loadavg'){ 617open my$fd,'<','/proc/loadavg' 618orreturn0; 619my@load=split(/\s+/,scalar<$fd>); 620close$fd; 621 622# The first three columns measure CPU and IO utilization of the last one, 623# five, and 10 minute periods. The fourth column shows the number of 624# currently running processes and the total number of processes in the m/n 625# format. The last column displays the last process ID used. 626return$load[0] ||0; 627} 628# additional checks for load average should go here for things that don't export 629# /proc/loadavg 630 631return0; 632} 633 634# version of the core git binary 635our$git_version; 636sub evaluate_git_version { 637our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 638$number_of_git_cmds++; 639} 640 641sub check_loadavg { 642if(defined$maxload&& get_loadavg() >$maxload) { 643 die_error(503,"The load average on the server is too high"); 644} 645} 646 647# ====================================================================== 648# input validation and dispatch 649 650# input parameters can be collected from a variety of sources (presently, CGI 651# and PATH_INFO), so we define an %input_params hash that collects them all 652# together during validation: this allows subsequent uses (e.g. href()) to be 653# agnostic of the parameter origin 654 655our%input_params= (); 656 657# input parameters are stored with the long parameter name as key. This will 658# also be used in the href subroutine to convert parameters to their CGI 659# equivalent, and since the href() usage is the most frequent one, we store 660# the name -> CGI key mapping here, instead of the reverse. 661# 662# XXX: Warning: If you touch this, check the search form for updating, 663# too. 664 665our@cgi_param_mapping= ( 666 project =>"p", 667 action =>"a", 668 file_name =>"f", 669 file_parent =>"fp", 670 hash =>"h", 671 hash_parent =>"hp", 672 hash_base =>"hb", 673 hash_parent_base =>"hpb", 674 page =>"pg", 675 order =>"o", 676 searchtext =>"s", 677 searchtype =>"st", 678 snapshot_format =>"sf", 679 extra_options =>"opt", 680 search_use_regexp =>"sr", 681# this must be last entry (for manipulation from JavaScript) 682 javascript =>"js" 683); 684our%cgi_param_mapping=@cgi_param_mapping; 685 686# we will also need to know the possible actions, for validation 687our%actions= ( 688"blame"=> \&git_blame, 689"blame_incremental"=> \&git_blame_incremental, 690"blame_data"=> \&git_blame_data, 691"blobdiff"=> \&git_blobdiff, 692"blobdiff_plain"=> \&git_blobdiff_plain, 693"blob"=> \&git_blob, 694"blob_plain"=> \&git_blob_plain, 695"commitdiff"=> \&git_commitdiff, 696"commitdiff_plain"=> \&git_commitdiff_plain, 697"commit"=> \&git_commit, 698"forks"=> \&git_forks, 699"heads"=> \&git_heads, 700"history"=> \&git_history, 701"log"=> \&git_log, 702"patch"=> \&git_patch, 703"patches"=> \&git_patches, 704"rss"=> \&git_rss, 705"atom"=> \&git_atom, 706"search"=> \&git_search, 707"search_help"=> \&git_search_help, 708"shortlog"=> \&git_shortlog, 709"summary"=> \&git_summary, 710"tag"=> \&git_tag, 711"tags"=> \&git_tags, 712"tree"=> \&git_tree, 713"snapshot"=> \&git_snapshot, 714"object"=> \&git_object, 715# those below don't need $project 716"opml"=> \&git_opml, 717"project_list"=> \&git_project_list, 718"project_index"=> \&git_project_index, 719); 720 721# finally, we have the hash of allowed extra_options for the commands that 722# allow them 723our%allowed_options= ( 724"--no-merges"=> [qw(rss atom log shortlog history)], 725); 726 727# fill %input_params with the CGI parameters. All values except for 'opt' 728# should be single values, but opt can be an array. We should probably 729# build an array of parameters that can be multi-valued, but since for the time 730# being it's only this one, we just single it out 731sub evaluate_query_params { 732our$cgi; 733 734while(my($name,$symbol) =each%cgi_param_mapping) { 735if($symboleq'opt') { 736$input_params{$name} = [$cgi->param($symbol) ]; 737}else{ 738$input_params{$name} =$cgi->param($symbol); 739} 740} 741} 742 743# now read PATH_INFO and update the parameter list for missing parameters 744sub evaluate_path_info { 745return ifdefined$input_params{'project'}; 746return if!$path_info; 747$path_info=~ s,^/+,,; 748return if!$path_info; 749 750# find which part of PATH_INFO is project 751my$project=$path_info; 752$project=~ s,/+$,,; 753while($project&& !check_head_link("$projectroot/$project")) { 754$project=~ s,/*[^/]*$,,; 755} 756return unless$project; 757$input_params{'project'} =$project; 758 759# do not change any parameters if an action is given using the query string 760return if$input_params{'action'}; 761$path_info=~ s,^\Q$project\E/*,,; 762 763# next, check if we have an action 764my$action=$path_info; 765$action=~ s,/.*$,,; 766if(exists$actions{$action}) { 767$path_info=~ s,^$action/*,,; 768$input_params{'action'} =$action; 769} 770 771# list of actions that want hash_base instead of hash, but can have no 772# pathname (f) parameter 773my@wants_base= ( 774'tree', 775'history', 776); 777 778# we want to catch 779# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 780my($parentrefname,$parentpathname,$refname,$pathname) = 781($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?(.+?)(?::(.+))?$/); 782 783# first, analyze the 'current' part 784if(defined$pathname) { 785# we got "branch:filename" or "branch:dir/" 786# we could use git_get_type(branch:pathname), but: 787# - it needs $git_dir 788# - it does a git() call 789# - the convention of terminating directories with a slash 790# makes it superfluous 791# - embedding the action in the PATH_INFO would make it even 792# more superfluous 793$pathname=~ s,^/+,,; 794if(!$pathname||substr($pathname, -1)eq"/") { 795$input_params{'action'} ||="tree"; 796$pathname=~ s,/$,,; 797}else{ 798# the default action depends on whether we had parent info 799# or not 800if($parentrefname) { 801$input_params{'action'} ||="blobdiff_plain"; 802}else{ 803$input_params{'action'} ||="blob_plain"; 804} 805} 806$input_params{'hash_base'} ||=$refname; 807$input_params{'file_name'} ||=$pathname; 808}elsif(defined$refname) { 809# we got "branch". In this case we have to choose if we have to 810# set hash or hash_base. 811# 812# Most of the actions without a pathname only want hash to be 813# set, except for the ones specified in @wants_base that want 814# hash_base instead. It should also be noted that hand-crafted 815# links having 'history' as an action and no pathname or hash 816# set will fail, but that happens regardless of PATH_INFO. 817$input_params{'action'} ||="shortlog"; 818if(grep{$_eq$input_params{'action'} }@wants_base) { 819$input_params{'hash_base'} ||=$refname; 820}else{ 821$input_params{'hash'} ||=$refname; 822} 823} 824 825# next, handle the 'parent' part, if present 826if(defined$parentrefname) { 827# a missing pathspec defaults to the 'current' filename, allowing e.g. 828# someproject/blobdiff/oldrev..newrev:/filename 829if($parentpathname) { 830$parentpathname=~ s,^/+,,; 831$parentpathname=~ s,/$,,; 832$input_params{'file_parent'} ||=$parentpathname; 833}else{ 834$input_params{'file_parent'} ||=$input_params{'file_name'}; 835} 836# we assume that hash_parent_base is wanted if a path was specified, 837# or if the action wants hash_base instead of hash 838if(defined$input_params{'file_parent'} || 839grep{$_eq$input_params{'action'} }@wants_base) { 840$input_params{'hash_parent_base'} ||=$parentrefname; 841}else{ 842$input_params{'hash_parent'} ||=$parentrefname; 843} 844} 845 846# for the snapshot action, we allow URLs in the form 847# $project/snapshot/$hash.ext 848# where .ext determines the snapshot and gets removed from the 849# passed $refname to provide the $hash. 850# 851# To be able to tell that $refname includes the format extension, we 852# require the following two conditions to be satisfied: 853# - the hash input parameter MUST have been set from the $refname part 854# of the URL (i.e. they must be equal) 855# - the snapshot format MUST NOT have been defined already (e.g. from 856# CGI parameter sf) 857# It's also useless to try any matching unless $refname has a dot, 858# so we check for that too 859if(defined$input_params{'action'} && 860$input_params{'action'}eq'snapshot'&& 861defined$refname&&index($refname,'.') != -1&& 862$refnameeq$input_params{'hash'} && 863!defined$input_params{'snapshot_format'}) { 864# We loop over the known snapshot formats, checking for 865# extensions. Allowed extensions are both the defined suffix 866# (which includes the initial dot already) and the snapshot 867# format key itself, with a prepended dot 868while(my($fmt,$opt) =each%known_snapshot_formats) { 869my$hash=$refname; 870unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 871next; 872} 873my$sfx=$1; 874# a valid suffix was found, so set the snapshot format 875# and reset the hash parameter 876$input_params{'snapshot_format'} =$fmt; 877$input_params{'hash'} =$hash; 878# we also set the format suffix to the one requested 879# in the URL: this way a request for e.g. .tgz returns 880# a .tgz instead of a .tar.gz 881$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 882last; 883} 884} 885} 886 887our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 888$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 889$searchtext,$search_regexp); 890sub evaluate_and_validate_params { 891our$action=$input_params{'action'}; 892if(defined$action) { 893if(!validate_action($action)) { 894 die_error(400,"Invalid action parameter"); 895} 896} 897 898# parameters which are pathnames 899our$project=$input_params{'project'}; 900if(defined$project) { 901if(!validate_project($project)) { 902undef$project; 903 die_error(404,"No such project"); 904} 905} 906 907our$file_name=$input_params{'file_name'}; 908if(defined$file_name) { 909if(!validate_pathname($file_name)) { 910 die_error(400,"Invalid file parameter"); 911} 912} 913 914our$file_parent=$input_params{'file_parent'}; 915if(defined$file_parent) { 916if(!validate_pathname($file_parent)) { 917 die_error(400,"Invalid file parent parameter"); 918} 919} 920 921# parameters which are refnames 922our$hash=$input_params{'hash'}; 923if(defined$hash) { 924if(!validate_refname($hash)) { 925 die_error(400,"Invalid hash parameter"); 926} 927} 928 929our$hash_parent=$input_params{'hash_parent'}; 930if(defined$hash_parent) { 931if(!validate_refname($hash_parent)) { 932 die_error(400,"Invalid hash parent parameter"); 933} 934} 935 936our$hash_base=$input_params{'hash_base'}; 937if(defined$hash_base) { 938if(!validate_refname($hash_base)) { 939 die_error(400,"Invalid hash base parameter"); 940} 941} 942 943our@extra_options= @{$input_params{'extra_options'}}; 944# @extra_options is always defined, since it can only be (currently) set from 945# CGI, and $cgi->param() returns the empty array in array context if the param 946# is not set 947foreachmy$opt(@extra_options) { 948if(not exists$allowed_options{$opt}) { 949 die_error(400,"Invalid option parameter"); 950} 951if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 952 die_error(400,"Invalid option parameter for this action"); 953} 954} 955 956our$hash_parent_base=$input_params{'hash_parent_base'}; 957if(defined$hash_parent_base) { 958if(!validate_refname($hash_parent_base)) { 959 die_error(400,"Invalid hash parent base parameter"); 960} 961} 962 963# other parameters 964our$page=$input_params{'page'}; 965if(defined$page) { 966if($page=~m/[^0-9]/) { 967 die_error(400,"Invalid page parameter"); 968} 969} 970 971our$searchtype=$input_params{'searchtype'}; 972if(defined$searchtype) { 973if($searchtype=~m/[^a-z]/) { 974 die_error(400,"Invalid searchtype parameter"); 975} 976} 977 978our$search_use_regexp=$input_params{'search_use_regexp'}; 979 980our$searchtext=$input_params{'searchtext'}; 981our$search_regexp; 982if(defined$searchtext) { 983if(length($searchtext) <2) { 984 die_error(403,"At least two characters are required for search parameter"); 985} 986$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext; 987} 988} 989 990# path to the current git repository 991our$git_dir; 992sub evaluate_git_dir { 993our$git_dir="$projectroot/$project"if$project; 994} 995 996our(@snapshot_fmts,$git_avatar); 997sub configure_gitweb_features { 998# list of supported snapshot formats 999our@snapshot_fmts= gitweb_get_feature('snapshot');1000@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10011002# check that the avatar feature is set to a known provider name,1003# and for each provider check if the dependencies are satisfied.1004# if the provider name is invalid or the dependencies are not met,1005# reset $git_avatar to the empty string.1006our($git_avatar) = gitweb_get_feature('avatar');1007if($git_avatareq'gravatar') {1008$git_avatar=''unless(eval{require Digest::MD5;1; });1009}elsif($git_avatareq'picon') {1010# no dependencies1011}else{1012$git_avatar='';1013}1014}10151016# custom error handler: 'die <message>' is Internal Server Error1017sub handle_errors_html {1018my$msg=shift;# it is already HTML escaped10191020# to avoid infinite loop where error occurs in die_error,1021# change handler to default handler, disabling handle_errors_html1022 set_message("Error occured when inside die_error:\n$msg");10231024# you cannot jump out of die_error when called as error handler;1025# the subroutine set via CGI::Carp::set_message is called _after_1026# HTTP headers are already written, so it cannot write them itself1027 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1028}1029set_message(\&handle_errors_html);10301031# dispatch1032sub dispatch {1033if(!defined$action) {1034if(defined$hash) {1035$action= git_get_type($hash);1036}elsif(defined$hash_base&&defined$file_name) {1037$action= git_get_type("$hash_base:$file_name");1038}elsif(defined$project) {1039$action='summary';1040}else{1041$action='project_list';1042}1043}1044if(!defined($actions{$action})) {1045 die_error(400,"Unknown action");1046}1047if($action!~m/^(?:opml|project_list|project_index)$/&&1048!$project) {1049 die_error(400,"Project needed");1050}1051$actions{$action}->();1052}10531054sub reset_timer {1055our$t0= [Time::HiRes::gettimeofday()]1056ifdefined$t0;1057our$number_of_git_cmds=0;1058}10591060sub run_request {1061 reset_timer();10621063 evaluate_uri();1064 evaluate_gitweb_config();1065 check_loadavg();10661067# $projectroot and $projects_list might be set in gitweb config file1068$projects_list||=$projectroot;10691070 evaluate_query_params();1071 evaluate_path_info();1072 evaluate_and_validate_params();1073 evaluate_git_dir();10741075 configure_gitweb_features();10761077 dispatch();1078}10791080our$is_last_request=sub{1};1081our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1082our$CGI='CGI';1083our$cgi;1084sub configure_as_fcgi {1085require CGI::Fast;1086our$CGI='CGI::Fast';10871088my$request_number=0;1089# let each child service 100 requests1090our$is_last_request=sub{ ++$request_number>100};1091}1092sub evaluate_argv {1093my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1094 configure_as_fcgi()1095if$script_name=~/\.fcgi$/;10961097return unless(@ARGV);10981099require Getopt::Long;1100 Getopt::Long::GetOptions(1101'fastcgi|fcgi|f'=> \&configure_as_fcgi,1102'nproc|n=i'=>sub{1103my($arg,$val) =@_;1104return unlesseval{require FCGI::ProcManager;1; };1105my$proc_manager= FCGI::ProcManager->new({1106 n_processes =>$val,1107});1108our$pre_listen_hook=sub{$proc_manager->pm_manage() };1109our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1110our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1111},1112);1113}11141115sub run {1116 evaluate_argv();1117 evaluate_git_version();11181119$pre_listen_hook->()1120if$pre_listen_hook;11211122 REQUEST:1123while($cgi=$CGI->new()) {1124$pre_dispatch_hook->()1125if$pre_dispatch_hook;11261127 run_request();11281129$post_dispatch_hook->()1130if$post_dispatch_hook;11311132last REQUEST if($is_last_request->());1133}11341135 DONE_GITWEB:11361;1137}11381139run();11401141if(defined caller) {1142# wrapped in a subroutine processing requests,1143# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1144return;1145}else{1146# pure CGI script, serving single request1147exit;1148}11491150## ======================================================================1151## action links11521153# possible values of extra options1154# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1155# -replay => 1 - start from a current view (replay with modifications)1156# -path_info => 0|1 - don't use/use path_info URL (if possible)1157sub href {1158my%params=@_;1159# default is to use -absolute url() i.e. $my_uri1160my$href=$params{-full} ?$my_url:$my_uri;11611162$params{'project'} =$projectunlessexists$params{'project'};11631164if($params{-replay}) {1165while(my($name,$symbol) =each%cgi_param_mapping) {1166if(!exists$params{$name}) {1167$params{$name} =$input_params{$name};1168}1169}1170}11711172my$use_pathinfo= gitweb_check_feature('pathinfo');1173if(defined$params{'project'} &&1174(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1175# try to put as many parameters as possible in PATH_INFO:1176# - project name1177# - action1178# - hash_parent or hash_parent_base:/file_parent1179# - hash or hash_base:/filename1180# - the snapshot_format as an appropriate suffix11811182# When the script is the root DirectoryIndex for the domain,1183# $href here would be something like http://gitweb.example.com/1184# Thus, we strip any trailing / from $href, to spare us double1185# slashes in the final URL1186$href=~ s,/$,,;11871188# Then add the project name, if present1189$href.="/".esc_path_info($params{'project'});1190delete$params{'project'};11911192# since we destructively absorb parameters, we keep this1193# boolean that remembers if we're handling a snapshot1194my$is_snapshot=$params{'action'}eq'snapshot';11951196# Summary just uses the project path URL, any other action is1197# added to the URL1198if(defined$params{'action'}) {1199$href.="/".esc_path_info($params{'action'})1200unless$params{'action'}eq'summary';1201delete$params{'action'};1202}12031204# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1205# stripping nonexistent or useless pieces1206$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1207||$params{'hash_parent'} ||$params{'hash'});1208if(defined$params{'hash_base'}) {1209if(defined$params{'hash_parent_base'}) {1210$href.= esc_path_info($params{'hash_parent_base'});1211# skip the file_parent if it's the same as the file_name1212if(defined$params{'file_parent'}) {1213if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1214delete$params{'file_parent'};1215}elsif($params{'file_parent'} !~/\.\./) {1216$href.=":/".esc_path_info($params{'file_parent'});1217delete$params{'file_parent'};1218}1219}1220$href.="..";1221delete$params{'hash_parent'};1222delete$params{'hash_parent_base'};1223}elsif(defined$params{'hash_parent'}) {1224$href.= esc_path_info($params{'hash_parent'})."..";1225delete$params{'hash_parent'};1226}12271228$href.= esc_path_info($params{'hash_base'});1229if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1230$href.=":/".esc_path_info($params{'file_name'});1231delete$params{'file_name'};1232}1233delete$params{'hash'};1234delete$params{'hash_base'};1235}elsif(defined$params{'hash'}) {1236$href.= esc_path_info($params{'hash'});1237delete$params{'hash'};1238}12391240# If the action was a snapshot, we can absorb the1241# snapshot_format parameter too1242if($is_snapshot) {1243my$fmt=$params{'snapshot_format'};1244# snapshot_format should always be defined when href()1245# is called, but just in case some code forgets, we1246# fall back to the default1247$fmt||=$snapshot_fmts[0];1248$href.=$known_snapshot_formats{$fmt}{'suffix'};1249delete$params{'snapshot_format'};1250}1251}12521253# now encode the parameters explicitly1254my@result= ();1255for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1256my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1257if(defined$params{$name}) {1258if(ref($params{$name})eq"ARRAY") {1259foreachmy$par(@{$params{$name}}) {1260push@result,$symbol."=". esc_param($par);1261}1262}else{1263push@result,$symbol."=". esc_param($params{$name});1264}1265}1266}1267$href.="?".join(';',@result)ifscalar@result;12681269# final transformation: trailing spaces must be escaped (URI-encoded)1270$href=~s/(\s+)$/CGI::escape($1)/e;12711272return$href;1273}127412751276## ======================================================================1277## validation, quoting/unquoting and escaping12781279sub validate_action {1280my$input=shift||returnundef;1281returnundefunlessexists$actions{$input};1282return$input;1283}12841285sub validate_project {1286my$input=shift||returnundef;1287if(!validate_pathname($input) ||1288!(-d "$projectroot/$input") ||1289!check_export_ok("$projectroot/$input") ||1290($strict_export&& !project_in_list($input))) {1291returnundef;1292}else{1293return$input;1294}1295}12961297sub validate_pathname {1298my$input=shift||returnundef;12991300# no '.' or '..' as elements of path, i.e. no '.' nor '..'1301# at the beginning, at the end, and between slashes.1302# also this catches doubled slashes1303if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1304returnundef;1305}1306# no null characters1307if($input=~m!\0!) {1308returnundef;1309}1310return$input;1311}13121313sub validate_refname {1314my$input=shift||returnundef;13151316# textual hashes are O.K.1317if($input=~m/^[0-9a-fA-F]{40}$/) {1318return$input;1319}1320# it must be correct pathname1321$input= validate_pathname($input)1322orreturnundef;1323# restrictions on ref name according to git-check-ref-format1324if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1325returnundef;1326}1327return$input;1328}13291330# decode sequences of octets in utf8 into Perl's internal form,1331# which is utf-8 with utf8 flag set if needed. gitweb writes out1332# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1333sub to_utf8 {1334my$str=shift;1335returnundefunlessdefined$str;1336if(utf8::valid($str)) {1337 utf8::decode($str);1338return$str;1339}else{1340return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1341}1342}13431344# quote unsafe chars, but keep the slash, even when it's not1345# correct, but quoted slashes look too horrible in bookmarks1346sub esc_param {1347my$str=shift;1348returnundefunlessdefined$str;1349$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1350$str=~s/ /\+/g;1351return$str;1352}13531354# the quoting rules for path_info fragment are slightly different1355sub esc_path_info {1356my$str=shift;1357returnundefunlessdefined$str;13581359# path_info doesn't treat '+' as space (specially), but '?' must be escaped1360$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;13611362return$str;1363}13641365# quote unsafe chars in whole URL, so some characters cannot be quoted1366sub esc_url {1367my$str=shift;1368returnundefunlessdefined$str;1369$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1370$str=~s/ /\+/g;1371return$str;1372}13731374# quote unsafe characters in HTML attributes1375sub esc_attr {13761377# for XHTML conformance escaping '"' to '"' is not enough1378return esc_html(@_);1379}13801381# replace invalid utf8 character with SUBSTITUTION sequence1382sub esc_html {1383my$str=shift;1384my%opts=@_;13851386returnundefunlessdefined$str;13871388$str= to_utf8($str);1389$str=$cgi->escapeHTML($str);1390if($opts{'-nbsp'}) {1391$str=~s/ / /g;1392}1393$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1394return$str;1395}13961397# quote control characters and escape filename to HTML1398sub esc_path {1399my$str=shift;1400my%opts=@_;14011402returnundefunlessdefined$str;14031404$str= to_utf8($str);1405$str=$cgi->escapeHTML($str);1406if($opts{'-nbsp'}) {1407$str=~s/ / /g;1408}1409$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1410return$str;1411}14121413# Make control characters "printable", using character escape codes (CEC)1414sub quot_cec {1415my$cntrl=shift;1416my%opts=@_;1417my%es= (# character escape codes, aka escape sequences1418"\t"=>'\t',# tab (HT)1419"\n"=>'\n',# line feed (LF)1420"\r"=>'\r',# carrige return (CR)1421"\f"=>'\f',# form feed (FF)1422"\b"=>'\b',# backspace (BS)1423"\a"=>'\a',# alarm (bell) (BEL)1424"\e"=>'\e',# escape (ESC)1425"\013"=>'\v',# vertical tab (VT)1426"\000"=>'\0',# nul character (NUL)1427);1428my$chr= ( (exists$es{$cntrl})1429?$es{$cntrl}1430:sprintf('\%2x',ord($cntrl)) );1431if($opts{-nohtml}) {1432return$chr;1433}else{1434return"<span class=\"cntrl\">$chr</span>";1435}1436}14371438# Alternatively use unicode control pictures codepoints,1439# Unicode "printable representation" (PR)1440sub quot_upr {1441my$cntrl=shift;1442my%opts=@_;14431444my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1445if($opts{-nohtml}) {1446return$chr;1447}else{1448return"<span class=\"cntrl\">$chr</span>";1449}1450}14511452# git may return quoted and escaped filenames1453sub unquote {1454my$str=shift;14551456sub unq {1457my$seq=shift;1458my%es= (# character escape codes, aka escape sequences1459't'=>"\t",# tab (HT, TAB)1460'n'=>"\n",# newline (NL)1461'r'=>"\r",# return (CR)1462'f'=>"\f",# form feed (FF)1463'b'=>"\b",# backspace (BS)1464'a'=>"\a",# alarm (bell) (BEL)1465'e'=>"\e",# escape (ESC)1466'v'=>"\013",# vertical tab (VT)1467);14681469if($seq=~m/^[0-7]{1,3}$/) {1470# octal char sequence1471returnchr(oct($seq));1472}elsif(exists$es{$seq}) {1473# C escape sequence, aka character escape code1474return$es{$seq};1475}1476# quoted ordinary character1477return$seq;1478}14791480if($str=~m/^"(.*)"$/) {1481# needs unquoting1482$str=$1;1483$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1484}1485return$str;1486}14871488# escape tabs (convert tabs to spaces)1489sub untabify {1490my$line=shift;14911492while((my$pos=index($line,"\t")) != -1) {1493if(my$count= (8- ($pos%8))) {1494my$spaces=' ' x $count;1495$line=~s/\t/$spaces/;1496}1497}14981499return$line;1500}15011502sub project_in_list {1503my$project=shift;1504my@list= git_get_projects_list();1505return@list&&scalar(grep{$_->{'path'}eq$project}@list);1506}15071508## ----------------------------------------------------------------------1509## HTML aware string manipulation15101511# Try to chop given string on a word boundary between position1512# $len and $len+$add_len. If there is no word boundary there,1513# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1514# (marking chopped part) would be longer than given string.1515sub chop_str {1516my$str=shift;1517my$len=shift;1518my$add_len=shift||10;1519my$where=shift||'right';# 'left' | 'center' | 'right'15201521# Make sure perl knows it is utf8 encoded so we don't1522# cut in the middle of a utf8 multibyte char.1523$str= to_utf8($str);15241525# allow only $len chars, but don't cut a word if it would fit in $add_len1526# if it doesn't fit, cut it if it's still longer than the dots we would add1527# remove chopped character entities entirely15281529# when chopping in the middle, distribute $len into left and right part1530# return early if chopping wouldn't make string shorter1531if($whereeq'center') {1532return$strif($len+5>=length($str));# filler is length 51533$len=int($len/2);1534}else{1535return$strif($len+4>=length($str));# filler is length 41536}15371538# regexps: ending and beginning with word part up to $add_len1539my$endre=qr/.{$len}\w{0,$add_len}/;1540my$begre=qr/\w{0,$add_len}.{$len}/;15411542if($whereeq'left') {1543$str=~m/^(.*?)($begre)$/;1544my($lead,$body) = ($1,$2);1545if(length($lead) >4) {1546$lead=" ...";1547}1548return"$lead$body";15491550}elsif($whereeq'center') {1551$str=~m/^($endre)(.*)$/;1552my($left,$str) = ($1,$2);1553$str=~m/^(.*?)($begre)$/;1554my($mid,$right) = ($1,$2);1555if(length($mid) >5) {1556$mid=" ... ";1557}1558return"$left$mid$right";15591560}else{1561$str=~m/^($endre)(.*)$/;1562my$body=$1;1563my$tail=$2;1564if(length($tail) >4) {1565$tail="... ";1566}1567return"$body$tail";1568}1569}15701571# takes the same arguments as chop_str, but also wraps a <span> around the1572# result with a title attribute if it does get chopped. Additionally, the1573# string is HTML-escaped.1574sub chop_and_escape_str {1575my($str) =@_;15761577my$chopped= chop_str(@_);1578if($choppedeq$str) {1579return esc_html($chopped);1580}else{1581$str=~s/[[:cntrl:]]/?/g;1582return$cgi->span({-title=>$str}, esc_html($chopped));1583}1584}15851586## ----------------------------------------------------------------------1587## functions returning short strings15881589# CSS class for given age value (in seconds)1590sub age_class {1591my$age=shift;15921593if(!defined$age) {1594return"noage";1595}elsif($age<60*60*2) {1596return"age0";1597}elsif($age<60*60*24*2) {1598return"age1";1599}else{1600return"age2";1601}1602}16031604# convert age in seconds to "nn units ago" string1605sub age_string {1606my$age=shift;1607my$age_str;16081609if($age>60*60*24*365*2) {1610$age_str= (int$age/60/60/24/365);1611$age_str.=" years ago";1612}elsif($age>60*60*24*(365/12)*2) {1613$age_str=int$age/60/60/24/(365/12);1614$age_str.=" months ago";1615}elsif($age>60*60*24*7*2) {1616$age_str=int$age/60/60/24/7;1617$age_str.=" weeks ago";1618}elsif($age>60*60*24*2) {1619$age_str=int$age/60/60/24;1620$age_str.=" days ago";1621}elsif($age>60*60*2) {1622$age_str=int$age/60/60;1623$age_str.=" hours ago";1624}elsif($age>60*2) {1625$age_str=int$age/60;1626$age_str.=" min ago";1627}elsif($age>2) {1628$age_str=int$age;1629$age_str.=" sec ago";1630}else{1631$age_str.=" right now";1632}1633return$age_str;1634}16351636useconstant{1637 S_IFINVALID =>0030000,1638 S_IFGITLINK =>0160000,1639};16401641# submodule/subproject, a commit object reference1642sub S_ISGITLINK {1643my$mode=shift;16441645return(($mode& S_IFMT) == S_IFGITLINK)1646}16471648# convert file mode in octal to symbolic file mode string1649sub mode_str {1650my$mode=oct shift;16511652if(S_ISGITLINK($mode)) {1653return'm---------';1654}elsif(S_ISDIR($mode& S_IFMT)) {1655return'drwxr-xr-x';1656}elsif(S_ISLNK($mode)) {1657return'lrwxrwxrwx';1658}elsif(S_ISREG($mode)) {1659# git cares only about the executable bit1660if($mode& S_IXUSR) {1661return'-rwxr-xr-x';1662}else{1663return'-rw-r--r--';1664};1665}else{1666return'----------';1667}1668}16691670# convert file mode in octal to file type string1671sub file_type {1672my$mode=shift;16731674if($mode!~m/^[0-7]+$/) {1675return$mode;1676}else{1677$mode=oct$mode;1678}16791680if(S_ISGITLINK($mode)) {1681return"submodule";1682}elsif(S_ISDIR($mode& S_IFMT)) {1683return"directory";1684}elsif(S_ISLNK($mode)) {1685return"symlink";1686}elsif(S_ISREG($mode)) {1687return"file";1688}else{1689return"unknown";1690}1691}16921693# convert file mode in octal to file type description string1694sub file_type_long {1695my$mode=shift;16961697if($mode!~m/^[0-7]+$/) {1698return$mode;1699}else{1700$mode=oct$mode;1701}17021703if(S_ISGITLINK($mode)) {1704return"submodule";1705}elsif(S_ISDIR($mode& S_IFMT)) {1706return"directory";1707}elsif(S_ISLNK($mode)) {1708return"symlink";1709}elsif(S_ISREG($mode)) {1710if($mode& S_IXUSR) {1711return"executable";1712}else{1713return"file";1714};1715}else{1716return"unknown";1717}1718}171917201721## ----------------------------------------------------------------------1722## functions returning short HTML fragments, or transforming HTML fragments1723## which don't belong to other sections17241725# format line of commit message.1726sub format_log_line_html {1727my$line=shift;17281729$line= esc_html($line, -nbsp=>1);1730$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1731$cgi->a({-href => href(action=>"object", hash=>$1),1732-class=>"text"},$1);1733}eg;17341735return$line;1736}17371738# format marker of refs pointing to given object17391740# the destination action is chosen based on object type and current context:1741# - for annotated tags, we choose the tag view unless it's the current view1742# already, in which case we go to shortlog view1743# - for other refs, we keep the current view if we're in history, shortlog or1744# log view, and select shortlog otherwise1745sub format_ref_marker {1746my($refs,$id) =@_;1747my$markers='';17481749if(defined$refs->{$id}) {1750foreachmy$ref(@{$refs->{$id}}) {1751# this code exploits the fact that non-lightweight tags are the1752# only indirect objects, and that they are the only objects for which1753# we want to use tag instead of shortlog as action1754my($type,$name) =qw();1755my$indirect= ($ref=~s/\^\{\}$//);1756# e.g. tags/v2.6.11 or heads/next1757if($ref=~m!^(.*?)s?/(.*)$!) {1758$type=$1;1759$name=$2;1760}else{1761$type="ref";1762$name=$ref;1763}17641765my$class=$type;1766$class.=" indirect"if$indirect;17671768my$dest_action="shortlog";17691770if($indirect) {1771$dest_action="tag"unless$actioneq"tag";1772}elsif($action=~/^(history|(short)?log)$/) {1773$dest_action=$action;1774}17751776my$dest="";1777$dest.="refs/"unless$ref=~ m!^refs/!;1778$dest.=$ref;17791780my$link=$cgi->a({1781-href => href(1782 action=>$dest_action,1783 hash=>$dest1784)},$name);17851786$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".1787$link."</span>";1788}1789}17901791if($markers) {1792return' <span class="refs">'.$markers.'</span>';1793}else{1794return"";1795}1796}17971798# format, perhaps shortened and with markers, title line1799sub format_subject_html {1800my($long,$short,$href,$extra) =@_;1801$extra=''unlessdefined($extra);18021803if(length($short) <length($long)) {1804$long=~s/[[:cntrl:]]/?/g;1805return$cgi->a({-href =>$href, -class=>"list subject",1806-title => to_utf8($long)},1807 esc_html($short)) .$extra;1808}else{1809return$cgi->a({-href =>$href, -class=>"list subject"},1810 esc_html($long)) .$extra;1811}1812}18131814# Rather than recomputing the url for an email multiple times, we cache it1815# after the first hit. This gives a visible benefit in views where the avatar1816# for the same email is used repeatedly (e.g. shortlog).1817# The cache is shared by all avatar engines (currently gravatar only), which1818# are free to use it as preferred. Since only one avatar engine is used for any1819# given page, there's no risk for cache conflicts.1820our%avatar_cache= ();18211822# Compute the picon url for a given email, by using the picon search service over at1823# http://www.cs.indiana.edu/picons/search.html1824sub picon_url {1825my$email=lc shift;1826if(!$avatar_cache{$email}) {1827my($user,$domain) =split('@',$email);1828$avatar_cache{$email} =1829"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1830"$domain/$user/".1831"users+domains+unknown/up/single";1832}1833return$avatar_cache{$email};1834}18351836# Compute the gravatar url for a given email, if it's not in the cache already.1837# Gravatar stores only the part of the URL before the size, since that's the1838# one computationally more expensive. This also allows reuse of the cache for1839# different sizes (for this particular engine).1840sub gravatar_url {1841my$email=lc shift;1842my$size=shift;1843$avatar_cache{$email} ||=1844"http://www.gravatar.com/avatar/".1845 Digest::MD5::md5_hex($email) ."?s=";1846return$avatar_cache{$email} .$size;1847}18481849# Insert an avatar for the given $email at the given $size if the feature1850# is enabled.1851sub git_get_avatar {1852my($email,%opts) =@_;1853my$pre_white= ($opts{-pad_before} ?" ":"");1854my$post_white= ($opts{-pad_after} ?" ":"");1855$opts{-size} ||='default';1856my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1857my$url="";1858if($git_avatareq'gravatar') {1859$url= gravatar_url($email,$size);1860}elsif($git_avatareq'picon') {1861$url= picon_url($email);1862}1863# Other providers can be added by extending the if chain, defining $url1864# as needed. If no variant puts something in $url, we assume avatars1865# are completely disabled/unavailable.1866if($url) {1867return$pre_white.1868"<img width=\"$size\"".1869"class=\"avatar\"".1870"src=\"".esc_url($url)."\"".1871"alt=\"\"".1872"/>".$post_white;1873}else{1874return"";1875}1876}18771878sub format_search_author {1879my($author,$searchtype,$displaytext) =@_;1880my$have_search= gitweb_check_feature('search');18811882if($have_search) {1883my$performed="";1884if($searchtypeeq'author') {1885$performed="authored";1886}elsif($searchtypeeq'committer') {1887$performed="committed";1888}18891890return$cgi->a({-href => href(action=>"search", hash=>$hash,1891 searchtext=>$author,1892 searchtype=>$searchtype),class=>"list",1893 title=>"Search for commits$performedby$author"},1894$displaytext);18951896}else{1897return$displaytext;1898}1899}19001901# format the author name of the given commit with the given tag1902# the author name is chopped and escaped according to the other1903# optional parameters (see chop_str).1904sub format_author_html {1905my$tag=shift;1906my$co=shift;1907my$author= chop_and_escape_str($co->{'author_name'},@_);1908return"<$tagclass=\"author\">".1909 format_search_author($co->{'author_name'},"author",1910 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1911$author) .1912"</$tag>";1913}19141915# format git diff header line, i.e. "diff --(git|combined|cc) ..."1916sub format_git_diff_header_line {1917my$line=shift;1918my$diffinfo=shift;1919my($from,$to) =@_;19201921if($diffinfo->{'nparents'}) {1922# combined diff1923$line=~s!^(diff (.*?) )"?.*$!$1!;1924if($to->{'href'}) {1925$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1926 esc_path($to->{'file'}));1927}else{# file was deleted (no href)1928$line.= esc_path($to->{'file'});1929}1930}else{1931# "ordinary" diff1932$line=~s!^(diff (.*?) )"?a/.*$!$1!;1933if($from->{'href'}) {1934$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1935'a/'. esc_path($from->{'file'}));1936}else{# file was added (no href)1937$line.='a/'. esc_path($from->{'file'});1938}1939$line.=' ';1940if($to->{'href'}) {1941$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1942'b/'. esc_path($to->{'file'}));1943}else{# file was deleted1944$line.='b/'. esc_path($to->{'file'});1945}1946}19471948return"<div class=\"diff header\">$line</div>\n";1949}19501951# format extended diff header line, before patch itself1952sub format_extended_diff_header_line {1953my$line=shift;1954my$diffinfo=shift;1955my($from,$to) =@_;19561957# match <path>1958if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {1959$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},1960 esc_path($from->{'file'}));1961}1962if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {1963$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},1964 esc_path($to->{'file'}));1965}1966# match single <mode>1967if($line=~m/\s(\d{6})$/) {1968$line.='<span class="info"> ('.1969 file_type_long($1) .1970')</span>';1971}1972# match <hash>1973if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {1974# can match only for combined diff1975$line='index ';1976for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1977if($from->{'href'}[$i]) {1978$line.=$cgi->a({-href=>$from->{'href'}[$i],1979-class=>"hash"},1980substr($diffinfo->{'from_id'}[$i],0,7));1981}else{1982$line.='0' x 7;1983}1984# separator1985$line.=','if($i<$diffinfo->{'nparents'} -1);1986}1987$line.='..';1988if($to->{'href'}) {1989$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1990substr($diffinfo->{'to_id'},0,7));1991}else{1992$line.='0' x 7;1993}19941995}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {1996# can match only for ordinary diff1997my($from_link,$to_link);1998if($from->{'href'}) {1999$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2000substr($diffinfo->{'from_id'},0,7));2001}else{2002$from_link='0' x 7;2003}2004if($to->{'href'}) {2005$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2006substr($diffinfo->{'to_id'},0,7));2007}else{2008$to_link='0' x 7;2009}2010my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2011$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2012}20132014return$line."<br/>\n";2015}20162017# format from-file/to-file diff header2018sub format_diff_from_to_header {2019my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2020my$line;2021my$result='';20222023$line=$from_line;2024#assert($line =~ m/^---/) if DEBUG;2025# no extra formatting for "^--- /dev/null"2026if(!$diffinfo->{'nparents'}) {2027# ordinary (single parent) diff2028if($line=~m!^--- "?a/!) {2029if($from->{'href'}) {2030$line='--- a/'.2031$cgi->a({-href=>$from->{'href'}, -class=>"path"},2032 esc_path($from->{'file'}));2033}else{2034$line='--- a/'.2035 esc_path($from->{'file'});2036}2037}2038$result.= qq!<div class="diff from_file">$line</div>\n!;20392040}else{2041# combined diff (merge commit)2042for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2043if($from->{'href'}[$i]) {2044$line='--- '.2045$cgi->a({-href=>href(action=>"blobdiff",2046 hash_parent=>$diffinfo->{'from_id'}[$i],2047 hash_parent_base=>$parents[$i],2048 file_parent=>$from->{'file'}[$i],2049 hash=>$diffinfo->{'to_id'},2050 hash_base=>$hash,2051 file_name=>$to->{'file'}),2052-class=>"path",2053-title=>"diff". ($i+1)},2054$i+1) .2055'/'.2056$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2057 esc_path($from->{'file'}[$i]));2058}else{2059$line='--- /dev/null';2060}2061$result.= qq!<div class="diff from_file">$line</div>\n!;2062}2063}20642065$line=$to_line;2066#assert($line =~ m/^\+\+\+/) if DEBUG;2067# no extra formatting for "^+++ /dev/null"2068if($line=~m!^\+\+\+ "?b/!) {2069if($to->{'href'}) {2070$line='+++ b/'.2071$cgi->a({-href=>$to->{'href'}, -class=>"path"},2072 esc_path($to->{'file'}));2073}else{2074$line='+++ b/'.2075 esc_path($to->{'file'});2076}2077}2078$result.= qq!<div class="diff to_file">$line</div>\n!;20792080return$result;2081}20822083# create note for patch simplified by combined diff2084sub format_diff_cc_simplified {2085my($diffinfo,@parents) =@_;2086my$result='';20872088$result.="<div class=\"diff header\">".2089"diff --cc ";2090if(!is_deleted($diffinfo)) {2091$result.=$cgi->a({-href => href(action=>"blob",2092 hash_base=>$hash,2093 hash=>$diffinfo->{'to_id'},2094 file_name=>$diffinfo->{'to_file'}),2095-class=>"path"},2096 esc_path($diffinfo->{'to_file'}));2097}else{2098$result.= esc_path($diffinfo->{'to_file'});2099}2100$result.="</div>\n".# class="diff header"2101"<div class=\"diff nodifferences\">".2102"Simple merge".2103"</div>\n";# class="diff nodifferences"21042105return$result;2106}21072108# format patch (diff) line (not to be used for diff headers)2109sub format_diff_line {2110my$line=shift;2111my($from,$to) =@_;2112my$diff_class="";21132114chomp$line;21152116if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2117# combined diff2118my$prefix=substr($line,0,scalar@{$from->{'href'}});2119if($line=~m/^\@{3}/) {2120$diff_class=" chunk_header";2121}elsif($line=~m/^\\/) {2122$diff_class=" incomplete";2123}elsif($prefix=~tr/+/+/) {2124$diff_class=" add";2125}elsif($prefix=~tr/-/-/) {2126$diff_class=" rem";2127}2128}else{2129# assume ordinary diff2130my$char=substr($line,0,1);2131if($chareq'+') {2132$diff_class=" add";2133}elsif($chareq'-') {2134$diff_class=" rem";2135}elsif($chareq'@') {2136$diff_class=" chunk_header";2137}elsif($chareq"\\") {2138$diff_class=" incomplete";2139}2140}2141$line= untabify($line);2142if($from&&$to&&$line=~m/^\@{2} /) {2143my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2144$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21452146$from_lines=0unlessdefined$from_lines;2147$to_lines=0unlessdefined$to_lines;21482149if($from->{'href'}) {2150$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2151-class=>"list"},$from_text);2152}2153if($to->{'href'}) {2154$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2155-class=>"list"},$to_text);2156}2157$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2158"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2159return"<div class=\"diff$diff_class\">$line</div>\n";2160}elsif($from&&$to&&$line=~m/^\@{3}/) {2161my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2162my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);21632164@from_text=split(' ',$ranges);2165for(my$i=0;$i<@from_text; ++$i) {2166($from_start[$i],$from_nlines[$i]) =2167(split(',',substr($from_text[$i],1)),0);2168}21692170$to_text=pop@from_text;2171$to_start=pop@from_start;2172$to_nlines=pop@from_nlines;21732174$line="<span class=\"chunk_info\">$prefix";2175for(my$i=0;$i<@from_text; ++$i) {2176if($from->{'href'}[$i]) {2177$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2178-class=>"list"},$from_text[$i]);2179}else{2180$line.=$from_text[$i];2181}2182$line.=" ";2183}2184if($to->{'href'}) {2185$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2186-class=>"list"},$to_text);2187}else{2188$line.=$to_text;2189}2190$line.="$prefix</span>".2191"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2192return"<div class=\"diff$diff_class\">$line</div>\n";2193}2194return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2195}21962197# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2198# linked. Pass the hash of the tree/commit to snapshot.2199sub format_snapshot_links {2200my($hash) =@_;2201my$num_fmts=@snapshot_fmts;2202if($num_fmts>1) {2203# A parenthesized list of links bearing format names.2204# e.g. "snapshot (_tar.gz_ _zip_)"2205return"snapshot (".join(' ',map2206$cgi->a({2207-href => href(2208 action=>"snapshot",2209 hash=>$hash,2210 snapshot_format=>$_2211)2212},$known_snapshot_formats{$_}{'display'})2213,@snapshot_fmts) .")";2214}elsif($num_fmts==1) {2215# A single "snapshot" link whose tooltip bears the format name.2216# i.e. "_snapshot_"2217my($fmt) =@snapshot_fmts;2218return2219$cgi->a({2220-href => href(2221 action=>"snapshot",2222 hash=>$hash,2223 snapshot_format=>$fmt2224),2225-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2226},"snapshot");2227}else{# $num_fmts == 02228returnundef;2229}2230}22312232## ......................................................................2233## functions returning values to be passed, perhaps after some2234## transformation, to other functions; e.g. returning arguments to href()22352236# returns hash to be passed to href to generate gitweb URL2237# in -title key it returns description of link2238sub get_feed_info {2239my$format=shift||'Atom';2240my%res= (action =>lc($format));22412242# feed links are possible only for project views2243return unless(defined$project);2244# some views should link to OPML, or to generic project feed,2245# or don't have specific feed yet (so they should use generic)2246return if($action=~/^(?:tags|heads|forks|tag|search)$/x);22472248my$branch;2249# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2250# from tag links; this also makes possible to detect branch links2251if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2252(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2253$branch=$1;2254}2255# find log type for feed description (title)2256my$type='log';2257if(defined$file_name) {2258$type="history of$file_name";2259$type.="/"if($actioneq'tree');2260$type.=" on '$branch'"if(defined$branch);2261}else{2262$type="log of$branch"if(defined$branch);2263}22642265$res{-title} =$type;2266$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2267$res{'file_name'} =$file_name;22682269return%res;2270}22712272## ----------------------------------------------------------------------2273## git utility subroutines, invoking git commands22742275# returns path to the core git executable and the --git-dir parameter as list2276sub git_cmd {2277$number_of_git_cmds++;2278return$GIT,'--git-dir='.$git_dir;2279}22802281# quote the given arguments for passing them to the shell2282# quote_command("command", "arg 1", "arg with ' and ! characters")2283# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2284# Try to avoid using this function wherever possible.2285sub quote_command {2286returnjoin(' ',2287map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2288}22892290# get HEAD ref of given project as hash2291sub git_get_head_hash {2292return git_get_full_hash(shift,'HEAD');2293}22942295sub git_get_full_hash {2296return git_get_hash(@_);2297}22982299sub git_get_short_hash {2300return git_get_hash(@_,'--short=7');2301}23022303sub git_get_hash {2304my($project,$hash,@options) =@_;2305my$o_git_dir=$git_dir;2306my$retval=undef;2307$git_dir="$projectroot/$project";2308if(open my$fd,'-|', git_cmd(),'rev-parse',2309'--verify','-q',@options,$hash) {2310$retval= <$fd>;2311chomp$retvalifdefined$retval;2312close$fd;2313}2314if(defined$o_git_dir) {2315$git_dir=$o_git_dir;2316}2317return$retval;2318}23192320# get type of given object2321sub git_get_type {2322my$hash=shift;23232324open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2325my$type= <$fd>;2326close$fdorreturn;2327chomp$type;2328return$type;2329}23302331# repository configuration2332our$config_file='';2333our%config;23342335# store multiple values for single key as anonymous array reference2336# single values stored directly in the hash, not as [ <value> ]2337sub hash_set_multi {2338my($hash,$key,$value) =@_;23392340if(!exists$hash->{$key}) {2341$hash->{$key} =$value;2342}elsif(!ref$hash->{$key}) {2343$hash->{$key} = [$hash->{$key},$value];2344}else{2345push@{$hash->{$key}},$value;2346}2347}23482349# return hash of git project configuration2350# optionally limited to some section, e.g. 'gitweb'2351sub git_parse_project_config {2352my$section_regexp=shift;2353my%config;23542355local$/="\0";23562357open my$fh,"-|", git_cmd(),"config",'-z','-l',2358orreturn;23592360while(my$keyval= <$fh>) {2361chomp$keyval;2362my($key,$value) =split(/\n/,$keyval,2);23632364 hash_set_multi(\%config,$key,$value)2365if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2366}2367close$fh;23682369return%config;2370}23712372# convert config value to boolean: 'true' or 'false'2373# no value, number > 0, 'true' and 'yes' values are true2374# rest of values are treated as false (never as error)2375sub config_to_bool {2376my$val=shift;23772378return1if!defined$val;# section.key23792380# strip leading and trailing whitespace2381$val=~s/^\s+//;2382$val=~s/\s+$//;23832384return(($val=~/^\d+$/&&$val) ||# section.key = 12385($val=~/^(?:true|yes)$/i));# section.key = true2386}23872388# convert config value to simple decimal number2389# an optional value suffix of 'k', 'm', or 'g' will cause the value2390# to be multiplied by 1024, 1048576, or 10737418242391sub config_to_int {2392my$val=shift;23932394# strip leading and trailing whitespace2395$val=~s/^\s+//;2396$val=~s/\s+$//;23972398if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2399$unit=lc($unit);2400# unknown unit is treated as 12401return$num* ($uniteq'g'?1073741824:2402$uniteq'm'?1048576:2403$uniteq'k'?1024:1);2404}2405return$val;2406}24072408# convert config value to array reference, if needed2409sub config_to_multi {2410my$val=shift;24112412returnref($val) ?$val: (defined($val) ? [$val] : []);2413}24142415sub git_get_project_config {2416my($key,$type) =@_;24172418return unlessdefined$git_dir;24192420# key sanity check2421return unless($key);2422$key=~s/^gitweb\.//;2423return if($key=~m/\W/);24242425# type sanity check2426if(defined$type) {2427$type=~s/^--//;2428$type=undef2429unless($typeeq'bool'||$typeeq'int');2430}24312432# get config2433if(!defined$config_file||2434$config_filene"$git_dir/config") {2435%config= git_parse_project_config('gitweb');2436$config_file="$git_dir/config";2437}24382439# check if config variable (key) exists2440return unlessexists$config{"gitweb.$key"};24412442# ensure given type2443if(!defined$type) {2444return$config{"gitweb.$key"};2445}elsif($typeeq'bool') {2446# backward compatibility: 'git config --bool' returns true/false2447return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2448}elsif($typeeq'int') {2449return config_to_int($config{"gitweb.$key"});2450}2451return$config{"gitweb.$key"};2452}24532454# get hash of given path at given ref2455sub git_get_hash_by_path {2456my$base=shift;2457my$path=shift||returnundef;2458my$type=shift;24592460$path=~ s,/+$,,;24612462open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2463or die_error(500,"Open git-ls-tree failed");2464my$line= <$fd>;2465close$fdorreturnundef;24662467if(!defined$line) {2468# there is no tree or hash given by $path at $base2469returnundef;2470}24712472#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2473$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2474if(defined$type&&$typene$2) {2475# type doesn't match2476returnundef;2477}2478return$3;2479}24802481# get path of entry with given hash at given tree-ish (ref)2482# used to get 'from' filename for combined diff (merge commit) for renames2483sub git_get_path_by_hash {2484my$base=shift||return;2485my$hash=shift||return;24862487local$/="\0";24882489open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2490orreturnundef;2491while(my$line= <$fd>) {2492chomp$line;24932494#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2495#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2496if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2497close$fd;2498return$1;2499}2500}2501close$fd;2502returnundef;2503}25042505## ......................................................................2506## git utility functions, directly accessing git repository25072508sub git_get_project_description {2509my$path=shift;25102511$git_dir="$projectroot/$path";2512open my$fd,'<',"$git_dir/description"2513orreturn git_get_project_config('description');2514my$descr= <$fd>;2515close$fd;2516if(defined$descr) {2517chomp$descr;2518}2519return$descr;2520}25212522sub git_get_project_ctags {2523my$path=shift;2524my$ctags= {};25252526$git_dir="$projectroot/$path";2527opendir my$dh,"$git_dir/ctags"2528orreturn$ctags;2529foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2530open my$ct,'<',$_ornext;2531my$val= <$ct>;2532chomp$val;2533close$ct;2534my$ctag=$_;$ctag=~ s#.*/##;2535$ctags->{$ctag} =$val;2536}2537closedir$dh;2538$ctags;2539}25402541sub git_populate_project_tagcloud {2542my$ctags=shift;25432544# First, merge different-cased tags; tags vote on casing2545my%ctags_lc;2546foreach(keys%$ctags) {2547$ctags_lc{lc$_}->{count} +=$ctags->{$_};2548if(not$ctags_lc{lc$_}->{topcount}2549or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2550$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2551$ctags_lc{lc$_}->{topname} =$_;2552}2553}25542555my$cloud;2556if(eval{require HTML::TagCloud;1; }) {2557$cloud= HTML::TagCloud->new;2558foreach(sort keys%ctags_lc) {2559# Pad the title with spaces so that the cloud looks2560# less crammed.2561my$title=$ctags_lc{$_}->{topname};2562$title=~s/ / /g;2563$title=~s/^/ /g;2564$title=~s/$/ /g;2565$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2566}2567}else{2568$cloud= \%ctags_lc;2569}2570$cloud;2571}25722573sub git_show_project_tagcloud {2574my($cloud,$count) =@_;2575print STDERR ref($cloud)."..\n";2576if(ref$cloudeq'HTML::TagCloud') {2577return$cloud->html_and_css($count);2578}else{2579my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2580return'<p align="center">'.join(', ',map{2581$cgi->a({-href=>"$home_link?by_tag=$_"},$cloud->{$_}->{topname})2582}splice(@tags,0,$count)) .'</p>';2583}2584}25852586sub git_get_project_url_list {2587my$path=shift;25882589$git_dir="$projectroot/$path";2590open my$fd,'<',"$git_dir/cloneurl"2591orreturnwantarray?2592@{ config_to_multi(git_get_project_config('url')) } :2593 config_to_multi(git_get_project_config('url'));2594my@git_project_url_list=map{chomp;$_} <$fd>;2595close$fd;25962597returnwantarray?@git_project_url_list: \@git_project_url_list;2598}25992600sub git_get_projects_list {2601my($filter) =@_;2602my@list;26032604$filter||='';2605$filter=~s/\.git$//;26062607my$check_forks= gitweb_check_feature('forks');26082609if(-d $projects_list) {2610# search in directory2611my$dir=$projects_list. ($filter?"/$filter":'');2612# remove the trailing "/"2613$dir=~s!/+$!!;2614my$pfxlen=length("$dir");2615my$pfxdepth= ($dir=~tr!/!!);26162617 File::Find::find({2618 follow_fast =>1,# follow symbolic links2619 follow_skip =>2,# ignore duplicates2620 dangling_symlinks =>0,# ignore dangling symlinks, silently2621 wanted =>sub{2622# global variables2623our$project_maxdepth;2624our$projectroot;2625# skip project-list toplevel, if we get it.2626return if(m!^[/.]$!);2627# only directories can be git repositories2628return unless(-d $_);2629# don't traverse too deep (Find is super slow on os x)2630if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2631$File::Find::prune =1;2632return;2633}26342635my$subdir=substr($File::Find::name,$pfxlen+1);2636# we check related file in $projectroot2637my$path= ($filter?"$filter/":'') .$subdir;2638if(check_export_ok("$projectroot/$path")) {2639push@list, { path =>$path};2640$File::Find::prune =1;2641}2642},2643},"$dir");26442645}elsif(-f $projects_list) {2646# read from file(url-encoded):2647# 'git%2Fgit.git Linus+Torvalds'2648# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2649# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2650my%paths;2651open my$fd,'<',$projects_listorreturn;2652 PROJECT:2653while(my$line= <$fd>) {2654chomp$line;2655my($path,$owner) =split' ',$line;2656$path= unescape($path);2657$owner= unescape($owner);2658if(!defined$path) {2659next;2660}2661if($filterne'') {2662# looking for forks;2663my$pfx=substr($path,0,length($filter));2664if($pfxne$filter) {2665next PROJECT;2666}2667my$sfx=substr($path,length($filter));2668if($sfx!~/^\/.*\.git$/) {2669next PROJECT;2670}2671}elsif($check_forks) {2672 PATH:2673foreachmy$filter(keys%paths) {2674# looking for forks;2675my$pfx=substr($path,0,length($filter));2676if($pfxne$filter) {2677next PATH;2678}2679my$sfx=substr($path,length($filter));2680if($sfx!~/^\/.*\.git$/) {2681next PATH;2682}2683# is a fork, don't include it in2684# the list2685next PROJECT;2686}2687}2688if(check_export_ok("$projectroot/$path")) {2689my$pr= {2690 path =>$path,2691 owner => to_utf8($owner),2692};2693push@list,$pr;2694(my$forks_path=$path) =~s/\.git$//;2695$paths{$forks_path}++;2696}2697}2698close$fd;2699}2700return@list;2701}27022703our$gitweb_project_owner=undef;2704sub git_get_project_list_from_file {27052706return if(defined$gitweb_project_owner);27072708$gitweb_project_owner= {};2709# read from file (url-encoded):2710# 'git%2Fgit.git Linus+Torvalds'2711# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2712# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2713if(-f $projects_list) {2714open(my$fd,'<',$projects_list);2715while(my$line= <$fd>) {2716chomp$line;2717my($pr,$ow) =split' ',$line;2718$pr= unescape($pr);2719$ow= unescape($ow);2720$gitweb_project_owner->{$pr} = to_utf8($ow);2721}2722close$fd;2723}2724}27252726sub git_get_project_owner {2727my$project=shift;2728my$owner;27292730returnundefunless$project;2731$git_dir="$projectroot/$project";27322733if(!defined$gitweb_project_owner) {2734 git_get_project_list_from_file();2735}27362737if(exists$gitweb_project_owner->{$project}) {2738$owner=$gitweb_project_owner->{$project};2739}2740if(!defined$owner){2741$owner= git_get_project_config('owner');2742}2743if(!defined$owner) {2744$owner= get_file_owner("$git_dir");2745}27462747return$owner;2748}27492750sub git_get_last_activity {2751my($path) =@_;2752my$fd;27532754$git_dir="$projectroot/$path";2755open($fd,"-|", git_cmd(),'for-each-ref',2756'--format=%(committer)',2757'--sort=-committerdate',2758'--count=1',2759'refs/heads')orreturn;2760my$most_recent= <$fd>;2761close$fdorreturn;2762if(defined$most_recent&&2763$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2764my$timestamp=$1;2765my$age=time-$timestamp;2766return($age, age_string($age));2767}2768return(undef,undef);2769}27702771sub git_get_references {2772my$type=shift||"";2773my%refs;2774# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112775# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2776open my$fd,"-|", git_cmd(),"show-ref","--dereference",2777($type? ("--","refs/$type") : ())# use -- <pattern> if $type2778orreturn;27792780while(my$line= <$fd>) {2781chomp$line;2782if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2783if(defined$refs{$1}) {2784push@{$refs{$1}},$2;2785}else{2786$refs{$1} = [$2];2787}2788}2789}2790close$fdorreturn;2791return \%refs;2792}27932794sub git_get_rev_name_tags {2795my$hash=shift||returnundef;27962797open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2798orreturn;2799my$name_rev= <$fd>;2800close$fd;28012802if($name_rev=~ m|^$hash tags/(.*)$|) {2803return$1;2804}else{2805# catches also '$hash undefined' output2806returnundef;2807}2808}28092810## ----------------------------------------------------------------------2811## parse to hash functions28122813sub parse_date {2814my$epoch=shift;2815my$tz=shift||"-0000";28162817my%date;2818my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2819my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2820my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2821$date{'hour'} =$hour;2822$date{'minute'} =$min;2823$date{'mday'} =$mday;2824$date{'day'} =$days[$wday];2825$date{'month'} =$months[$mon];2826$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2827$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2828$date{'mday-time'} =sprintf"%d%s%02d:%02d",2829$mday,$months[$mon],$hour,$min;2830$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",28311900+$year,1+$mon,$mday,$hour,$min,$sec;28322833$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2834my$local=$epoch+ ((int$1+ ($2/60)) *3600);2835($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2836$date{'hour_local'} =$hour;2837$date{'minute_local'} =$min;2838$date{'tz_local'} =$tz;2839$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",28401900+$year,$mon+1,$mday,2841$hour,$min,$sec,$tz);2842return%date;2843}28442845sub parse_tag {2846my$tag_id=shift;2847my%tag;2848my@comment;28492850open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2851$tag{'id'} =$tag_id;2852while(my$line= <$fd>) {2853chomp$line;2854if($line=~m/^object ([0-9a-fA-F]{40})$/) {2855$tag{'object'} =$1;2856}elsif($line=~m/^type (.+)$/) {2857$tag{'type'} =$1;2858}elsif($line=~m/^tag (.+)$/) {2859$tag{'name'} =$1;2860}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2861$tag{'author'} =$1;2862$tag{'author_epoch'} =$2;2863$tag{'author_tz'} =$3;2864if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2865$tag{'author_name'} =$1;2866$tag{'author_email'} =$2;2867}else{2868$tag{'author_name'} =$tag{'author'};2869}2870}elsif($line=~m/--BEGIN/) {2871push@comment,$line;2872last;2873}elsif($lineeq"") {2874last;2875}2876}2877push@comment, <$fd>;2878$tag{'comment'} = \@comment;2879close$fdorreturn;2880if(!defined$tag{'name'}) {2881return2882};2883return%tag2884}28852886sub parse_commit_text {2887my($commit_text,$withparents) =@_;2888my@commit_lines=split'\n',$commit_text;2889my%co;28902891pop@commit_lines;# Remove '\0'28922893if(!@commit_lines) {2894return;2895}28962897my$header=shift@commit_lines;2898if($header!~m/^[0-9a-fA-F]{40}/) {2899return;2900}2901($co{'id'},my@parents) =split' ',$header;2902while(my$line=shift@commit_lines) {2903last if$lineeq"\n";2904if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2905$co{'tree'} =$1;2906}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2907push@parents,$1;2908}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2909$co{'author'} = to_utf8($1);2910$co{'author_epoch'} =$2;2911$co{'author_tz'} =$3;2912if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2913$co{'author_name'} =$1;2914$co{'author_email'} =$2;2915}else{2916$co{'author_name'} =$co{'author'};2917}2918}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2919$co{'committer'} = to_utf8($1);2920$co{'committer_epoch'} =$2;2921$co{'committer_tz'} =$3;2922if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2923$co{'committer_name'} =$1;2924$co{'committer_email'} =$2;2925}else{2926$co{'committer_name'} =$co{'committer'};2927}2928}2929}2930if(!defined$co{'tree'}) {2931return;2932};2933$co{'parents'} = \@parents;2934$co{'parent'} =$parents[0];29352936foreachmy$title(@commit_lines) {2937$title=~s/^ //;2938if($titlene"") {2939$co{'title'} = chop_str($title,80,5);2940# remove leading stuff of merges to make the interesting part visible2941if(length($title) >50) {2942$title=~s/^Automatic //;2943$title=~s/^merge (of|with) /Merge ... /i;2944if(length($title) >50) {2945$title=~s/(http|rsync):\/\///;2946}2947if(length($title) >50) {2948$title=~s/(master|www|rsync)\.//;2949}2950if(length($title) >50) {2951$title=~s/kernel.org:?//;2952}2953if(length($title) >50) {2954$title=~s/\/pub\/scm//;2955}2956}2957$co{'title_short'} = chop_str($title,50,5);2958last;2959}2960}2961if(!defined$co{'title'} ||$co{'title'}eq"") {2962$co{'title'} =$co{'title_short'} ='(no commit message)';2963}2964# remove added spaces2965foreachmy$line(@commit_lines) {2966$line=~s/^ //;2967}2968$co{'comment'} = \@commit_lines;29692970my$age=time-$co{'committer_epoch'};2971$co{'age'} =$age;2972$co{'age_string'} = age_string($age);2973my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});2974if($age>60*60*24*7*2) {2975$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2976$co{'age_string_age'} =$co{'age_string'};2977}else{2978$co{'age_string_date'} =$co{'age_string'};2979$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2980}2981return%co;2982}29832984sub parse_commit {2985my($commit_id) =@_;2986my%co;29872988local$/="\0";29892990open my$fd,"-|", git_cmd(),"rev-list",2991"--parents",2992"--header",2993"--max-count=1",2994$commit_id,2995"--",2996or die_error(500,"Open git-rev-list failed");2997%co= parse_commit_text(<$fd>,1);2998close$fd;29993000return%co;3001}30023003sub parse_commits {3004my($commit_id,$maxcount,$skip,$filename,@args) =@_;3005my@cos;30063007$maxcount||=1;3008$skip||=0;30093010local$/="\0";30113012open my$fd,"-|", git_cmd(),"rev-list",3013"--header",3014@args,3015("--max-count=".$maxcount),3016("--skip=".$skip),3017@extra_options,3018$commit_id,3019"--",3020($filename? ($filename) : ())3021or die_error(500,"Open git-rev-list failed");3022while(my$line= <$fd>) {3023my%co= parse_commit_text($line);3024push@cos, \%co;3025}3026close$fd;30273028returnwantarray?@cos: \@cos;3029}30303031# parse line of git-diff-tree "raw" output3032sub parse_difftree_raw_line {3033my$line=shift;3034my%res;30353036# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3037# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3038if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3039$res{'from_mode'} =$1;3040$res{'to_mode'} =$2;3041$res{'from_id'} =$3;3042$res{'to_id'} =$4;3043$res{'status'} =$5;3044$res{'similarity'} =$6;3045if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3046($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3047}else{3048$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3049}3050}3051# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3052# combined diff (for merge commit)3053elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3054$res{'nparents'} =length($1);3055$res{'from_mode'} = [split(' ',$2) ];3056$res{'to_mode'} =pop@{$res{'from_mode'}};3057$res{'from_id'} = [split(' ',$3) ];3058$res{'to_id'} =pop@{$res{'from_id'}};3059$res{'status'} = [split('',$4) ];3060$res{'to_file'} = unquote($5);3061}3062# 'c512b523472485aef4fff9e57b229d9d243c967f'3063elsif($line=~m/^([0-9a-fA-F]{40})$/) {3064$res{'commit'} =$1;3065}30663067returnwantarray?%res: \%res;3068}30693070# wrapper: return parsed line of git-diff-tree "raw" output3071# (the argument might be raw line, or parsed info)3072sub parsed_difftree_line {3073my$line_or_ref=shift;30743075if(ref($line_or_ref)eq"HASH") {3076# pre-parsed (or generated by hand)3077return$line_or_ref;3078}else{3079return parse_difftree_raw_line($line_or_ref);3080}3081}30823083# parse line of git-ls-tree output3084sub parse_ls_tree_line {3085my$line=shift;3086my%opts=@_;3087my%res;30883089if($opts{'-l'}) {3090#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3091$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;30923093$res{'mode'} =$1;3094$res{'type'} =$2;3095$res{'hash'} =$3;3096$res{'size'} =$4;3097if($opts{'-z'}) {3098$res{'name'} =$5;3099}else{3100$res{'name'} = unquote($5);3101}3102}else{3103#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3104$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;31053106$res{'mode'} =$1;3107$res{'type'} =$2;3108$res{'hash'} =$3;3109if($opts{'-z'}) {3110$res{'name'} =$4;3111}else{3112$res{'name'} = unquote($4);3113}3114}31153116returnwantarray?%res: \%res;3117}31183119# generates _two_ hashes, references to which are passed as 2 and 3 argument3120sub parse_from_to_diffinfo {3121my($diffinfo,$from,$to,@parents) =@_;31223123if($diffinfo->{'nparents'}) {3124# combined diff3125$from->{'file'} = [];3126$from->{'href'} = [];3127 fill_from_file_info($diffinfo,@parents)3128unlessexists$diffinfo->{'from_file'};3129for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3130$from->{'file'}[$i] =3131defined$diffinfo->{'from_file'}[$i] ?3132$diffinfo->{'from_file'}[$i] :3133$diffinfo->{'to_file'};3134if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3135$from->{'href'}[$i] = href(action=>"blob",3136 hash_base=>$parents[$i],3137 hash=>$diffinfo->{'from_id'}[$i],3138 file_name=>$from->{'file'}[$i]);3139}else{3140$from->{'href'}[$i] =undef;3141}3142}3143}else{3144# ordinary (not combined) diff3145$from->{'file'} =$diffinfo->{'from_file'};3146if($diffinfo->{'status'}ne"A") {# not new (added) file3147$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3148 hash=>$diffinfo->{'from_id'},3149 file_name=>$from->{'file'});3150}else{3151delete$from->{'href'};3152}3153}31543155$to->{'file'} =$diffinfo->{'to_file'};3156if(!is_deleted($diffinfo)) {# file exists in result3157$to->{'href'} = href(action=>"blob", hash_base=>$hash,3158 hash=>$diffinfo->{'to_id'},3159 file_name=>$to->{'file'});3160}else{3161delete$to->{'href'};3162}3163}31643165## ......................................................................3166## parse to array of hashes functions31673168sub git_get_heads_list {3169my$limit=shift;3170my@headslist;31713172open my$fd,'-|', git_cmd(),'for-each-ref',3173($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3174'--format=%(objectname) %(refname) %(subject)%00%(committer)',3175'refs/heads'3176orreturn;3177while(my$line= <$fd>) {3178my%ref_item;31793180chomp$line;3181my($refinfo,$committerinfo) =split(/\0/,$line);3182my($hash,$name,$title) =split(' ',$refinfo,3);3183my($committer,$epoch,$tz) =3184($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3185$ref_item{'fullname'} =$name;3186$name=~s!^refs/heads/!!;31873188$ref_item{'name'} =$name;3189$ref_item{'id'} =$hash;3190$ref_item{'title'} =$title||'(no commit message)';3191$ref_item{'epoch'} =$epoch;3192if($epoch) {3193$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3194}else{3195$ref_item{'age'} ="unknown";3196}31973198push@headslist, \%ref_item;3199}3200close$fd;32013202returnwantarray?@headslist: \@headslist;3203}32043205sub git_get_tags_list {3206my$limit=shift;3207my@tagslist;32083209open my$fd,'-|', git_cmd(),'for-each-ref',3210($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3211'--format=%(objectname) %(objecttype) %(refname) '.3212'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3213'refs/tags'3214orreturn;3215while(my$line= <$fd>) {3216my%ref_item;32173218chomp$line;3219my($refinfo,$creatorinfo) =split(/\0/,$line);3220my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3221my($creator,$epoch,$tz) =3222($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3223$ref_item{'fullname'} =$name;3224$name=~s!^refs/tags/!!;32253226$ref_item{'type'} =$type;3227$ref_item{'id'} =$id;3228$ref_item{'name'} =$name;3229if($typeeq"tag") {3230$ref_item{'subject'} =$title;3231$ref_item{'reftype'} =$reftype;3232$ref_item{'refid'} =$refid;3233}else{3234$ref_item{'reftype'} =$type;3235$ref_item{'refid'} =$id;3236}32373238if($typeeq"tag"||$typeeq"commit") {3239$ref_item{'epoch'} =$epoch;3240if($epoch) {3241$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3242}else{3243$ref_item{'age'} ="unknown";3244}3245}32463247push@tagslist, \%ref_item;3248}3249close$fd;32503251returnwantarray?@tagslist: \@tagslist;3252}32533254## ----------------------------------------------------------------------3255## filesystem-related functions32563257sub get_file_owner {3258my$path=shift;32593260my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3261my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3262if(!defined$gcos) {3263returnundef;3264}3265my$owner=$gcos;3266$owner=~s/[,;].*$//;3267return to_utf8($owner);3268}32693270# assume that file exists3271sub insert_file {3272my$filename=shift;32733274open my$fd,'<',$filename;3275print map{ to_utf8($_) } <$fd>;3276close$fd;3277}32783279## ......................................................................3280## mimetype related functions32813282sub mimetype_guess_file {3283my$filename=shift;3284my$mimemap=shift;3285-r $mimemaporreturnundef;32863287my%mimemap;3288open(my$mh,'<',$mimemap)orreturnundef;3289while(<$mh>) {3290next ifm/^#/;# skip comments3291my($mimetype,$exts) =split(/\t+/);3292if(defined$exts) {3293my@exts=split(/\s+/,$exts);3294foreachmy$ext(@exts) {3295$mimemap{$ext} =$mimetype;3296}3297}3298}3299close($mh);33003301$filename=~/\.([^.]*)$/;3302return$mimemap{$1};3303}33043305sub mimetype_guess {3306my$filename=shift;3307my$mime;3308$filename=~/\./orreturnundef;33093310if($mimetypes_file) {3311my$file=$mimetypes_file;3312if($file!~m!^/!) {# if it is relative path3313# it is relative to project3314$file="$projectroot/$project/$file";3315}3316$mime= mimetype_guess_file($filename,$file);3317}3318$mime||= mimetype_guess_file($filename,'/etc/mime.types');3319return$mime;3320}33213322sub blob_mimetype {3323my$fd=shift;3324my$filename=shift;33253326if($filename) {3327my$mime= mimetype_guess($filename);3328$mimeandreturn$mime;3329}33303331# just in case3332return$default_blob_plain_mimetypeunless$fd;33333334if(-T $fd) {3335return'text/plain';3336}elsif(!$filename) {3337return'application/octet-stream';3338}elsif($filename=~m/\.png$/i) {3339return'image/png';3340}elsif($filename=~m/\.gif$/i) {3341return'image/gif';3342}elsif($filename=~m/\.jpe?g$/i) {3343return'image/jpeg';3344}else{3345return'application/octet-stream';3346}3347}33483349sub blob_contenttype {3350my($fd,$file_name,$type) =@_;33513352$type||= blob_mimetype($fd,$file_name);3353if($typeeq'text/plain'&&defined$default_text_plain_charset) {3354$type.="; charset=$default_text_plain_charset";3355}33563357return$type;3358}33593360# guess file syntax for syntax highlighting; return undef if no highlighting3361# the name of syntax can (in the future) depend on syntax highlighter used3362sub guess_file_syntax {3363my($highlight,$mimetype,$file_name) =@_;3364returnundefunless($highlight&&defined$file_name);3365my$basename= basename($file_name,'.in');3366return$highlight_basename{$basename}3367ifexists$highlight_basename{$basename};33683369$basename=~/\.([^.]*)$/;3370my$ext=$1orreturnundef;3371return$highlight_ext{$ext}3372ifexists$highlight_ext{$ext};33733374returnundef;3375}33763377# run highlighter and return FD of its output,3378# or return original FD if no highlighting3379sub run_highlighter {3380my($fd,$highlight,$syntax) =@_;3381return$fdunless($highlight&&defined$syntax);33823383close$fd3384or die_error(404,"Reading blob failed");3385open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3386"highlight --xhtml --fragment --syntax$syntax|"3387or die_error(500,"Couldn't open file or run syntax highlighter");3388return$fd;3389}33903391## ======================================================================3392## functions printing HTML: header, footer, error page33933394sub get_page_title {3395my$title= to_utf8($site_name);33963397return$titleunless(defined$project);3398$title.=" - ". to_utf8($project);33993400return$titleunless(defined$action);3401$title.="/$action";# $action is US-ASCII (7bit ASCII)34023403return$titleunless(defined$file_name);3404$title.=" - ". esc_path($file_name);3405if($actioneq"tree"&&$file_name!~ m|/$|) {3406$title.="/";3407}34083409return$title;3410}34113412sub print_feed_meta {3413if(defined$project) {3414my%href_params= get_feed_info();3415if(!exists$href_params{'-title'}) {3416$href_params{'-title'} ='log';3417}34183419foreachmy$formatqw(RSS Atom){3420my$type=lc($format);3421my%link_attr= (3422'-rel'=>'alternate',3423'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),3424'-type'=>"application/$type+xml"3425);34263427$href_params{'action'} =$type;3428$link_attr{'-href'} = href(%href_params);3429print"<link ".3430"rel=\"$link_attr{'-rel'}\"".3431"title=\"$link_attr{'-title'}\"".3432"href=\"$link_attr{'-href'}\"".3433"type=\"$link_attr{'-type'}\"".3434"/>\n";34353436$href_params{'extra_options'} ='--no-merges';3437$link_attr{'-href'} = href(%href_params);3438$link_attr{'-title'} .=' (no merges)';3439print"<link ".3440"rel=\"$link_attr{'-rel'}\"".3441"title=\"$link_attr{'-title'}\"".3442"href=\"$link_attr{'-href'}\"".3443"type=\"$link_attr{'-type'}\"".3444"/>\n";3445}34463447}else{3448printf('<link rel="alternate" title="%sprojects list" '.3449'href="%s" type="text/plain; charset=utf-8" />'."\n",3450 esc_attr($site_name), href(project=>undef, action=>"project_index"));3451printf('<link rel="alternate" title="%sprojects feeds" '.3452'href="%s" type="text/x-opml" />'."\n",3453 esc_attr($site_name), href(project=>undef, action=>"opml"));3454}3455}34563457sub git_header_html {3458my$status=shift||"200 OK";3459my$expires=shift;3460my%opts=@_;34613462my$title= get_page_title();3463my$content_type;3464# require explicit support from the UA if we are to send the page as3465# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3466# we have to do this because MSIE sometimes globs '*/*', pretending to3467# support xhtml+xml but choking when it gets what it asked for.3468if(defined$cgi->http('HTTP_ACCEPT') &&3469$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3470$cgi->Accept('application/xhtml+xml') !=0) {3471$content_type='application/xhtml+xml';3472}else{3473$content_type='text/html';3474}3475print$cgi->header(-type=>$content_type, -charset =>'utf-8',3476-status=>$status, -expires =>$expires)3477unless($opts{'-no_http_header'});3478my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3479print<<EOF;3480<?xml version="1.0" encoding="utf-8"?>3481<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3482<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3483<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3484<!-- git core binaries version$git_version-->3485<head>3486<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3487<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3488<meta name="robots" content="index, nofollow"/>3489<title>$title</title>3490EOF3491# the stylesheet, favicon etc urls won't work correctly with path_info3492# unless we set the appropriate base URL3493if($ENV{'PATH_INFO'}) {3494print"<base href=\"".esc_url($base_url)."\"/>\n";3495}3496# print out each stylesheet that exist, providing backwards capability3497# for those people who defined $stylesheet in a config file3498if(defined$stylesheet) {3499print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3500}else{3501foreachmy$stylesheet(@stylesheets) {3502next unless$stylesheet;3503print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3504}3505}3506 print_feed_meta()3507if($statuseq'200 OK');3508if(defined$favicon) {3509printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);3510}35113512print"</head>\n".3513"<body>\n";35143515if(defined$site_header&& -f $site_header) {3516 insert_file($site_header);3517}35183519print"<div class=\"page_header\">\n";3520if(defined$logo) {3521print$cgi->a({-href => esc_url($logo_url),3522-title =>$logo_label},3523$cgi->img({-src => esc_url($logo),3524-width =>72, -height =>27,3525-alt =>"git",3526-class=>"logo"}));3527}3528print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3529if(defined$project) {3530print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3531if(defined$action) {3532print" /$action";3533}3534print"\n";3535}3536print"</div>\n";35373538my$have_search= gitweb_check_feature('search');3539if(defined$project&&$have_search) {3540if(!defined$searchtext) {3541$searchtext="";3542}3543my$search_hash;3544if(defined$hash_base) {3545$search_hash=$hash_base;3546}elsif(defined$hash) {3547$search_hash=$hash;3548}else{3549$search_hash="HEAD";3550}3551my$action=$my_uri;3552my$use_pathinfo= gitweb_check_feature('pathinfo');3553if($use_pathinfo) {3554$action.="/".esc_url($project);3555}3556print$cgi->startform(-method=>"get", -action =>$action) .3557"<div class=\"search\">\n".3558(!$use_pathinfo&&3559$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3560$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3561$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3562$cgi->popup_menu(-name =>'st', -default=>'commit',3563-values=> ['commit','grep','author','committer','pickaxe']) .3564$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3565" search:\n",3566$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3567"<span title=\"Extended regular expression\">".3568$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3569-checked =>$search_use_regexp) .3570"</span>".3571"</div>".3572$cgi->end_form() ."\n";3573}3574}35753576sub git_footer_html {3577my$feed_class='rss_logo';35783579print"<div class=\"page_footer\">\n";3580if(defined$project) {3581my$descr= git_get_project_description($project);3582if(defined$descr) {3583print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3584}35853586my%href_params= get_feed_info();3587if(!%href_params) {3588$feed_class.=' generic';3589}3590$href_params{'-title'} ||='log';35913592foreachmy$formatqw(RSS Atom){3593$href_params{'action'} =lc($format);3594print$cgi->a({-href => href(%href_params),3595-title =>"$href_params{'-title'}$formatfeed",3596-class=>$feed_class},$format)."\n";3597}35983599}else{3600print$cgi->a({-href => href(project=>undef, action=>"opml"),3601-class=>$feed_class},"OPML") ." ";3602print$cgi->a({-href => href(project=>undef, action=>"project_index"),3603-class=>$feed_class},"TXT") ."\n";3604}3605print"</div>\n";# class="page_footer"36063607if(defined$t0&& gitweb_check_feature('timed')) {3608print"<div id=\"generating_info\">\n";3609print'This page took '.3610'<span id="generating_time" class="time_span">'.3611 Time::HiRes::tv_interval($t0, [Time::HiRes::gettimeofday()]).3612' seconds </span>'.3613' and '.3614'<span id="generating_cmd">'.3615$number_of_git_cmds.3616'</span> git commands '.3617" to generate.\n";3618print"</div>\n";# class="page_footer"3619}36203621if(defined$site_footer&& -f $site_footer) {3622 insert_file($site_footer);3623}36243625print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;3626if(defined$action&&3627$actioneq'blame_incremental') {3628print qq!<script type="text/javascript">\n!.3629 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3630 qq!"!. href() .qq!");\n!.3631 qq!</script>\n!;3632}elsif(gitweb_check_feature('javascript-actions')) {3633print qq!<script type="text/javascript">\n!.3634 qq!window.onload = fixLinks;\n!.3635 qq!</script>\n!;3636}36373638print"</body>\n".3639"</html>";3640}36413642# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3643# Example: die_error(404, 'Hash not found')3644# By convention, use the following status codes (as defined in RFC 2616):3645# 400: Invalid or missing CGI parameters, or3646# requested object exists but has wrong type.3647# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3648# this server or project.3649# 404: Requested object/revision/project doesn't exist.3650# 500: The server isn't configured properly, or3651# an internal error occurred (e.g. failed assertions caused by bugs), or3652# an unknown error occurred (e.g. the git binary died unexpectedly).3653# 503: The server is currently unavailable (because it is overloaded,3654# or down for maintenance). Generally, this is a temporary state.3655sub die_error {3656my$status=shift||500;3657my$error= esc_html(shift) ||"Internal Server Error";3658my$extra=shift;3659my%opts=@_;36603661my%http_responses= (3662400=>'400 Bad Request',3663403=>'403 Forbidden',3664404=>'404 Not Found',3665500=>'500 Internal Server Error',3666503=>'503 Service Unavailable',3667);3668 git_header_html($http_responses{$status},undef,%opts);3669print<<EOF;3670<div class="page_body">3671<br /><br />3672$status-$error3673<br />3674EOF3675if(defined$extra) {3676print"<hr />\n".3677"$extra\n";3678}3679print"</div>\n";36803681 git_footer_html();3682goto DONE_GITWEB3683unless($opts{'-error_handler'});3684}36853686## ----------------------------------------------------------------------3687## functions printing or outputting HTML: navigation36883689sub git_print_page_nav {3690my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3691$extra=''if!defined$extra;# pager or formats36923693my@navs=qw(summary shortlog log commit commitdiff tree);3694if($suppress) {3695@navs=grep{$_ne$suppress}@navs;3696}36973698my%arg=map{$_=> {action=>$_} }@navs;3699if(defined$head) {3700for(qw(commit commitdiff)) {3701$arg{$_}{'hash'} =$head;3702}3703if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3704for(qw(shortlog log)) {3705$arg{$_}{'hash'} =$head;3706}3707}3708}37093710$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3711$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;37123713my@actions= gitweb_get_feature('actions');3714my%repl= (3715'%'=>'%',3716'n'=>$project,# project name3717'f'=>$git_dir,# project path within filesystem3718'h'=>$treehead||'',# current hash ('h' parameter)3719'b'=>$treebase||'',# hash base ('hb' parameter)3720);3721while(@actions) {3722my($label,$link,$pos) =splice(@actions,0,3);3723# insert3724@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3725# munch munch3726$link=~s/%([%nfhb])/$repl{$1}/g;3727$arg{$label}{'_href'} =$link;3728}37293730print"<div class=\"page_nav\">\n".3731(join" | ",3732map{$_eq$current?3733$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3734}@navs);3735print"<br/>\n$extra<br/>\n".3736"</div>\n";3737}37383739sub format_paging_nav {3740my($action,$page,$has_next_link) =@_;3741my$paging_nav;374237433744if($page>0) {3745$paging_nav.=3746$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3747" ⋅ ".3748$cgi->a({-href => href(-replay=>1, page=>$page-1),3749-accesskey =>"p", -title =>"Alt-p"},"prev");3750}else{3751$paging_nav.="first ⋅ prev";3752}37533754if($has_next_link) {3755$paging_nav.=" ⋅ ".3756$cgi->a({-href => href(-replay=>1, page=>$page+1),3757-accesskey =>"n", -title =>"Alt-n"},"next");3758}else{3759$paging_nav.=" ⋅ next";3760}37613762return$paging_nav;3763}37643765## ......................................................................3766## functions printing or outputting HTML: div37673768sub git_print_header_div {3769my($action,$title,$hash,$hash_base) =@_;3770my%args= ();37713772$args{'action'} =$action;3773$args{'hash'} =$hashif$hash;3774$args{'hash_base'} =$hash_baseif$hash_base;37753776print"<div class=\"header\">\n".3777$cgi->a({-href => href(%args), -class=>"title"},3778$title?$title:$action) .3779"\n</div>\n";3780}37813782sub print_local_time {3783print format_local_time(@_);3784}37853786sub format_local_time {3787my$localtime='';3788my%date=@_;3789if($date{'hour_local'} <6) {3790$localtime.=sprintf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3791$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3792}else{3793$localtime.=sprintf(" (%02d:%02d%s)",3794$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3795}37963797return$localtime;3798}37993800# Outputs the author name and date in long form3801sub git_print_authorship {3802my$co=shift;3803my%opts=@_;3804my$tag=$opts{-tag} ||'div';3805my$author=$co->{'author_name'};38063807my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3808print"<$tagclass=\"author_date\">".3809 format_search_author($author,"author", esc_html($author)) .3810" [$ad{'rfc2822'}";3811 print_local_time(%ad)if($opts{-localtime});3812print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)3813."</$tag>\n";3814}38153816# Outputs table rows containing the full author or committer information,3817# in the format expected for 'commit' view (& similar).3818# Parameters are a commit hash reference, followed by the list of people3819# to output information for. If the list is empty it defaults to both3820# author and committer.3821sub git_print_authorship_rows {3822my$co=shift;3823# too bad we can't use @people = @_ || ('author', 'committer')3824my@people=@_;3825@people= ('author','committer')unless@people;3826foreachmy$who(@people) {3827my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3828print"<tr><td>$who</td><td>".3829 format_search_author($co->{"${who}_name"},$who,3830 esc_html($co->{"${who}_name"})) ." ".3831 format_search_author($co->{"${who}_email"},$who,3832 esc_html("<".$co->{"${who}_email"} .">")) .3833"</td><td rowspan=\"2\">".3834 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3835"</td></tr>\n".3836"<tr>".3837"<td></td><td>$wd{'rfc2822'}";3838 print_local_time(%wd);3839print"</td>".3840"</tr>\n";3841}3842}38433844sub git_print_page_path {3845my$name=shift;3846my$type=shift;3847my$hb=shift;384838493850print"<div class=\"page_path\">";3851print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),3852-title =>'tree root'}, to_utf8("[$project]"));3853print" / ";3854if(defined$name) {3855my@dirname=split'/',$name;3856my$basename=pop@dirname;3857my$fullname='';38583859foreachmy$dir(@dirname) {3860$fullname.= ($fullname?'/':'') .$dir;3861print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,3862 hash_base=>$hb),3863-title =>$fullname}, esc_path($dir));3864print" / ";3865}3866if(defined$type&&$typeeq'blob') {3867print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,3868 hash_base=>$hb),3869-title =>$name}, esc_path($basename));3870}elsif(defined$type&&$typeeq'tree') {3871print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,3872 hash_base=>$hb),3873-title =>$name}, esc_path($basename));3874print" / ";3875}else{3876print esc_path($basename);3877}3878}3879print"<br/></div>\n";3880}38813882sub git_print_log {3883my$log=shift;3884my%opts=@_;38853886if($opts{'-remove_title'}) {3887# remove title, i.e. first line of log3888shift@$log;3889}3890# remove leading empty lines3891while(defined$log->[0] &&$log->[0]eq"") {3892shift@$log;3893}38943895# print log3896my$signoff=0;3897my$empty=0;3898foreachmy$line(@$log) {3899if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {3900$signoff=1;3901$empty=0;3902if(!$opts{'-remove_signoff'}) {3903print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";3904next;3905}else{3906# remove signoff lines3907next;3908}3909}else{3910$signoff=0;3911}39123913# print only one empty line3914# do not print empty line after signoff3915if($lineeq"") {3916next if($empty||$signoff);3917$empty=1;3918}else{3919$empty=0;3920}39213922print format_log_line_html($line) ."<br/>\n";3923}39243925if($opts{'-final_empty_line'}) {3926# end with single empty line3927print"<br/>\n"unless$empty;3928}3929}39303931# return link target (what link points to)3932sub git_get_link_target {3933my$hash=shift;3934my$link_target;39353936# read link3937open my$fd,"-|", git_cmd(),"cat-file","blob",$hash3938orreturn;3939{3940local$/=undef;3941$link_target= <$fd>;3942}3943close$fd3944orreturn;39453946return$link_target;3947}39483949# given link target, and the directory (basedir) the link is in,3950# return target of link relative to top directory (top tree);3951# return undef if it is not possible (including absolute links).3952sub normalize_link_target {3953my($link_target,$basedir) =@_;39543955# absolute symlinks (beginning with '/') cannot be normalized3956return if(substr($link_target,0,1)eq'/');39573958# normalize link target to path from top (root) tree (dir)3959my$path;3960if($basedir) {3961$path=$basedir.'/'.$link_target;3962}else{3963# we are in top (root) tree (dir)3964$path=$link_target;3965}39663967# remove //, /./, and /../3968my@path_parts;3969foreachmy$part(split('/',$path)) {3970# discard '.' and ''3971next if(!$part||$parteq'.');3972# handle '..'3973if($parteq'..') {3974if(@path_parts) {3975pop@path_parts;3976}else{3977# link leads outside repository (outside top dir)3978return;3979}3980}else{3981push@path_parts,$part;3982}3983}3984$path=join('/',@path_parts);39853986return$path;3987}39883989# print tree entry (row of git_tree), but without encompassing <tr> element3990sub git_print_tree_entry {3991my($t,$basedir,$hash_base,$have_blame) =@_;39923993my%base_key= ();3994$base_key{'hash_base'} =$hash_baseifdefined$hash_base;39953996# The format of a table row is: mode list link. Where mode is3997# the mode of the entry, list is the name of the entry, an href,3998# and link is the action links of the entry.39994000print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4001if(exists$t->{'size'}) {4002print"<td class=\"size\">$t->{'size'}</td>\n";4003}4004if($t->{'type'}eq"blob") {4005print"<td class=\"list\">".4006$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4007 file_name=>"$basedir$t->{'name'}",%base_key),4008-class=>"list"}, esc_path($t->{'name'}));4009if(S_ISLNK(oct$t->{'mode'})) {4010my$link_target= git_get_link_target($t->{'hash'});4011if($link_target) {4012my$norm_target= normalize_link_target($link_target,$basedir);4013if(defined$norm_target) {4014print" -> ".4015$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4016 file_name=>$norm_target),4017-title =>$norm_target}, esc_path($link_target));4018}else{4019print" -> ". esc_path($link_target);4020}4021}4022}4023print"</td>\n";4024print"<td class=\"link\">";4025print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4026 file_name=>"$basedir$t->{'name'}",%base_key)},4027"blob");4028if($have_blame) {4029print" | ".4030$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4031 file_name=>"$basedir$t->{'name'}",%base_key)},4032"blame");4033}4034if(defined$hash_base) {4035print" | ".4036$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4037 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4038"history");4039}4040print" | ".4041$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4042 file_name=>"$basedir$t->{'name'}")},4043"raw");4044print"</td>\n";40454046}elsif($t->{'type'}eq"tree") {4047print"<td class=\"list\">";4048print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4049 file_name=>"$basedir$t->{'name'}",4050%base_key)},4051 esc_path($t->{'name'}));4052print"</td>\n";4053print"<td class=\"link\">";4054print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4055 file_name=>"$basedir$t->{'name'}",4056%base_key)},4057"tree");4058if(defined$hash_base) {4059print" | ".4060$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4061 file_name=>"$basedir$t->{'name'}")},4062"history");4063}4064print"</td>\n";4065}else{4066# unknown object: we can only present history for it4067# (this includes 'commit' object, i.e. submodule support)4068print"<td class=\"list\">".4069 esc_path($t->{'name'}) .4070"</td>\n";4071print"<td class=\"link\">";4072if(defined$hash_base) {4073print$cgi->a({-href => href(action=>"history",4074 hash_base=>$hash_base,4075 file_name=>"$basedir$t->{'name'}")},4076"history");4077}4078print"</td>\n";4079}4080}40814082## ......................................................................4083## functions printing large fragments of HTML40844085# get pre-image filenames for merge (combined) diff4086sub fill_from_file_info {4087my($diff,@parents) =@_;40884089$diff->{'from_file'} = [ ];4090$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4091for(my$i=0;$i<$diff->{'nparents'};$i++) {4092if($diff->{'status'}[$i]eq'R'||4093$diff->{'status'}[$i]eq'C') {4094$diff->{'from_file'}[$i] =4095 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4096}4097}40984099return$diff;4100}41014102# is current raw difftree line of file deletion4103sub is_deleted {4104my$diffinfo=shift;41054106return$diffinfo->{'to_id'}eq('0' x 40);4107}41084109# does patch correspond to [previous] difftree raw line4110# $diffinfo - hashref of parsed raw diff format4111# $patchinfo - hashref of parsed patch diff format4112# (the same keys as in $diffinfo)4113sub is_patch_split {4114my($diffinfo,$patchinfo) =@_;41154116returndefined$diffinfo&&defined$patchinfo4117&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4118}411941204121sub git_difftree_body {4122my($difftree,$hash,@parents) =@_;4123my($parent) =$parents[0];4124my$have_blame= gitweb_check_feature('blame');4125print"<div class=\"list_head\">\n";4126if($#{$difftree} >10) {4127print(($#{$difftree} +1) ." files changed:\n");4128}4129print"</div>\n";41304131print"<table class=\"".4132(@parents>1?"combined ":"") .4133"diff_tree\">\n";41344135# header only for combined diff in 'commitdiff' view4136my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4137if($has_header) {4138# table header4139print"<thead><tr>\n".4140"<th></th><th></th>\n";# filename, patchN link4141for(my$i=0;$i<@parents;$i++) {4142my$par=$parents[$i];4143print"<th>".4144$cgi->a({-href => href(action=>"commitdiff",4145 hash=>$hash, hash_parent=>$par),4146-title =>'commitdiff to parent number '.4147($i+1) .': '.substr($par,0,7)},4148$i+1) .4149" </th>\n";4150}4151print"</tr></thead>\n<tbody>\n";4152}41534154my$alternate=1;4155my$patchno=0;4156foreachmy$line(@{$difftree}) {4157my$diff= parsed_difftree_line($line);41584159if($alternate) {4160print"<tr class=\"dark\">\n";4161}else{4162print"<tr class=\"light\">\n";4163}4164$alternate^=1;41654166if(exists$diff->{'nparents'}) {# combined diff41674168 fill_from_file_info($diff,@parents)4169unlessexists$diff->{'from_file'};41704171if(!is_deleted($diff)) {4172# file exists in the result (child) commit4173print"<td>".4174$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4175 file_name=>$diff->{'to_file'},4176 hash_base=>$hash),4177-class=>"list"}, esc_path($diff->{'to_file'})) .4178"</td>\n";4179}else{4180print"<td>".4181 esc_path($diff->{'to_file'}) .4182"</td>\n";4183}41844185if($actioneq'commitdiff') {4186# link to patch4187$patchno++;4188print"<td class=\"link\">".4189$cgi->a({-href =>"#patch$patchno"},"patch") .4190" | ".4191"</td>\n";4192}41934194my$has_history=0;4195my$not_deleted=0;4196for(my$i=0;$i<$diff->{'nparents'};$i++) {4197my$hash_parent=$parents[$i];4198my$from_hash=$diff->{'from_id'}[$i];4199my$from_path=$diff->{'from_file'}[$i];4200my$status=$diff->{'status'}[$i];42014202$has_history||= ($statusne'A');4203$not_deleted||= ($statusne'D');42044205if($statuseq'A') {4206print"<td class=\"link\"align=\"right\"> | </td>\n";4207}elsif($statuseq'D') {4208print"<td class=\"link\">".4209$cgi->a({-href => href(action=>"blob",4210 hash_base=>$hash,4211 hash=>$from_hash,4212 file_name=>$from_path)},4213"blob". ($i+1)) .4214" | </td>\n";4215}else{4216if($diff->{'to_id'}eq$from_hash) {4217print"<td class=\"link nochange\">";4218}else{4219print"<td class=\"link\">";4220}4221print$cgi->a({-href => href(action=>"blobdiff",4222 hash=>$diff->{'to_id'},4223 hash_parent=>$from_hash,4224 hash_base=>$hash,4225 hash_parent_base=>$hash_parent,4226 file_name=>$diff->{'to_file'},4227 file_parent=>$from_path)},4228"diff". ($i+1)) .4229" | </td>\n";4230}4231}42324233print"<td class=\"link\">";4234if($not_deleted) {4235print$cgi->a({-href => href(action=>"blob",4236 hash=>$diff->{'to_id'},4237 file_name=>$diff->{'to_file'},4238 hash_base=>$hash)},4239"blob");4240print" | "if($has_history);4241}4242if($has_history) {4243print$cgi->a({-href => href(action=>"history",4244 file_name=>$diff->{'to_file'},4245 hash_base=>$hash)},4246"history");4247}4248print"</td>\n";42494250print"</tr>\n";4251next;# instead of 'else' clause, to avoid extra indent4252}4253# else ordinary diff42544255my($to_mode_oct,$to_mode_str,$to_file_type);4256my($from_mode_oct,$from_mode_str,$from_file_type);4257if($diff->{'to_mode'}ne('0' x 6)) {4258$to_mode_oct=oct$diff->{'to_mode'};4259if(S_ISREG($to_mode_oct)) {# only for regular file4260$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4261}4262$to_file_type= file_type($diff->{'to_mode'});4263}4264if($diff->{'from_mode'}ne('0' x 6)) {4265$from_mode_oct=oct$diff->{'from_mode'};4266if(S_ISREG($to_mode_oct)) {# only for regular file4267$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4268}4269$from_file_type= file_type($diff->{'from_mode'});4270}42714272if($diff->{'status'}eq"A") {# created4273my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4274$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4275$mode_chng.="]</span>";4276print"<td>";4277print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4278 hash_base=>$hash, file_name=>$diff->{'file'}),4279-class=>"list"}, esc_path($diff->{'file'}));4280print"</td>\n";4281print"<td>$mode_chng</td>\n";4282print"<td class=\"link\">";4283if($actioneq'commitdiff') {4284# link to patch4285$patchno++;4286print$cgi->a({-href =>"#patch$patchno"},"patch");4287print" | ";4288}4289print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4290 hash_base=>$hash, file_name=>$diff->{'file'})},4291"blob");4292print"</td>\n";42934294}elsif($diff->{'status'}eq"D") {# deleted4295my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4296print"<td>";4297print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4298 hash_base=>$parent, file_name=>$diff->{'file'}),4299-class=>"list"}, esc_path($diff->{'file'}));4300print"</td>\n";4301print"<td>$mode_chng</td>\n";4302print"<td class=\"link\">";4303if($actioneq'commitdiff') {4304# link to patch4305$patchno++;4306print$cgi->a({-href =>"#patch$patchno"},"patch");4307print" | ";4308}4309print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4310 hash_base=>$parent, file_name=>$diff->{'file'})},4311"blob") ." | ";4312if($have_blame) {4313print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4314 file_name=>$diff->{'file'})},4315"blame") ." | ";4316}4317print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4318 file_name=>$diff->{'file'})},4319"history");4320print"</td>\n";43214322}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4323my$mode_chnge="";4324if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4325$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4326if($from_file_typene$to_file_type) {4327$mode_chnge.=" from$from_file_typeto$to_file_type";4328}4329if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4330if($from_mode_str&&$to_mode_str) {4331$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4332}elsif($to_mode_str) {4333$mode_chnge.=" mode:$to_mode_str";4334}4335}4336$mode_chnge.="]</span>\n";4337}4338print"<td>";4339print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4340 hash_base=>$hash, file_name=>$diff->{'file'}),4341-class=>"list"}, esc_path($diff->{'file'}));4342print"</td>\n";4343print"<td>$mode_chnge</td>\n";4344print"<td class=\"link\">";4345if($actioneq'commitdiff') {4346# link to patch4347$patchno++;4348print$cgi->a({-href =>"#patch$patchno"},"patch") .4349" | ";4350}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4351# "commit" view and modified file (not onlu mode changed)4352print$cgi->a({-href => href(action=>"blobdiff",4353 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4354 hash_base=>$hash, hash_parent_base=>$parent,4355 file_name=>$diff->{'file'})},4356"diff") .4357" | ";4358}4359print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4360 hash_base=>$hash, file_name=>$diff->{'file'})},4361"blob") ." | ";4362if($have_blame) {4363print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4364 file_name=>$diff->{'file'})},4365"blame") ." | ";4366}4367print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4368 file_name=>$diff->{'file'})},4369"history");4370print"</td>\n";43714372}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4373my%status_name= ('R'=>'moved','C'=>'copied');4374my$nstatus=$status_name{$diff->{'status'}};4375my$mode_chng="";4376if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4377# mode also for directories, so we cannot use $to_mode_str4378$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4379}4380print"<td>".4381$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4382 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4383-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4384"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4385$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4386 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4387-class=>"list"}, esc_path($diff->{'from_file'})) .4388" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4389"<td class=\"link\">";4390if($actioneq'commitdiff') {4391# link to patch4392$patchno++;4393print$cgi->a({-href =>"#patch$patchno"},"patch") .4394" | ";4395}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4396# "commit" view and modified file (not only pure rename or copy)4397print$cgi->a({-href => href(action=>"blobdiff",4398 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4399 hash_base=>$hash, hash_parent_base=>$parent,4400 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4401"diff") .4402" | ";4403}4404print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4405 hash_base=>$parent, file_name=>$diff->{'to_file'})},4406"blob") ." | ";4407if($have_blame) {4408print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4409 file_name=>$diff->{'to_file'})},4410"blame") ." | ";4411}4412print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4413 file_name=>$diff->{'to_file'})},4414"history");4415print"</td>\n";44164417}# we should not encounter Unmerged (U) or Unknown (X) status4418print"</tr>\n";4419}4420print"</tbody>"if$has_header;4421print"</table>\n";4422}44234424sub git_patchset_body {4425my($fd,$difftree,$hash,@hash_parents) =@_;4426my($hash_parent) =$hash_parents[0];44274428my$is_combined= (@hash_parents>1);4429my$patch_idx=0;4430my$patch_number=0;4431my$patch_line;4432my$diffinfo;4433my$to_name;4434my(%from,%to);44354436print"<div class=\"patchset\">\n";44374438# skip to first patch4439while($patch_line= <$fd>) {4440chomp$patch_line;44414442last if($patch_line=~m/^diff /);4443}44444445 PATCH:4446while($patch_line) {44474448# parse "git diff" header line4449if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4450# $1 is from_name, which we do not use4451$to_name= unquote($2);4452$to_name=~s!^b/!!;4453}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4454# $1 is 'cc' or 'combined', which we do not use4455$to_name= unquote($2);4456}else{4457$to_name=undef;4458}44594460# check if current patch belong to current raw line4461# and parse raw git-diff line if needed4462if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4463# this is continuation of a split patch4464print"<div class=\"patch cont\">\n";4465}else{4466# advance raw git-diff output if needed4467$patch_idx++ifdefined$diffinfo;44684469# read and prepare patch information4470$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);44714472# compact combined diff output can have some patches skipped4473# find which patch (using pathname of result) we are at now;4474if($is_combined) {4475while($to_namene$diffinfo->{'to_file'}) {4476print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4477 format_diff_cc_simplified($diffinfo,@hash_parents) .4478"</div>\n";# class="patch"44794480$patch_idx++;4481$patch_number++;44824483last if$patch_idx>$#$difftree;4484$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4485}4486}44874488# modifies %from, %to hashes4489 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);44904491# this is first patch for raw difftree line with $patch_idx index4492# we index @$difftree array from 0, but number patches from 14493print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4494}44954496# git diff header4497#assert($patch_line =~ m/^diff /) if DEBUG;4498#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4499$patch_number++;4500# print "git diff" header4501print format_git_diff_header_line($patch_line,$diffinfo,4502 \%from, \%to);45034504# print extended diff header4505print"<div class=\"diff extended_header\">\n";4506 EXTENDED_HEADER:4507while($patch_line= <$fd>) {4508chomp$patch_line;45094510last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);45114512print format_extended_diff_header_line($patch_line,$diffinfo,4513 \%from, \%to);4514}4515print"</div>\n";# class="diff extended_header"45164517# from-file/to-file diff header4518if(!$patch_line) {4519print"</div>\n";# class="patch"4520last PATCH;4521}4522next PATCH if($patch_line=~m/^diff /);4523#assert($patch_line =~ m/^---/) if DEBUG;45244525my$last_patch_line=$patch_line;4526$patch_line= <$fd>;4527chomp$patch_line;4528#assert($patch_line =~ m/^\+\+\+/) if DEBUG;45294530print format_diff_from_to_header($last_patch_line,$patch_line,4531$diffinfo, \%from, \%to,4532@hash_parents);45334534# the patch itself4535 LINE:4536while($patch_line= <$fd>) {4537chomp$patch_line;45384539next PATCH if($patch_line=~m/^diff /);45404541print format_diff_line($patch_line, \%from, \%to);4542}45434544}continue{4545print"</div>\n";# class="patch"4546}45474548# for compact combined (--cc) format, with chunk and patch simplification4549# the patchset might be empty, but there might be unprocessed raw lines4550for(++$patch_idxif$patch_number>0;4551$patch_idx<@$difftree;4552++$patch_idx) {4553# read and prepare patch information4554$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);45554556# generate anchor for "patch" links in difftree / whatchanged part4557print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4558 format_diff_cc_simplified($diffinfo,@hash_parents) .4559"</div>\n";# class="patch"45604561$patch_number++;4562}45634564if($patch_number==0) {4565if(@hash_parents>1) {4566print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4567}else{4568print"<div class=\"diff nodifferences\">No differences found</div>\n";4569}4570}45714572print"</div>\n";# class="patchset"4573}45744575# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .45764577# fills project list info (age, description, owner, forks) for each4578# project in the list, removing invalid projects from returned list4579# NOTE: modifies $projlist, but does not remove entries from it4580sub fill_project_list_info {4581my($projlist,$check_forks) =@_;4582my@projects;45834584my$show_ctags= gitweb_check_feature('ctags');4585 PROJECT:4586foreachmy$pr(@$projlist) {4587my(@activity) = git_get_last_activity($pr->{'path'});4588unless(@activity) {4589next PROJECT;4590}4591($pr->{'age'},$pr->{'age_string'}) =@activity;4592if(!defined$pr->{'descr'}) {4593my$descr= git_get_project_description($pr->{'path'}) ||"";4594$descr= to_utf8($descr);4595$pr->{'descr_long'} =$descr;4596$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4597}4598if(!defined$pr->{'owner'}) {4599$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4600}4601if($check_forks) {4602my$pname=$pr->{'path'};4603if(($pname=~s/\.git$//) &&4604($pname!~/\/$/) &&4605(-d "$projectroot/$pname")) {4606$pr->{'forks'} ="-d$projectroot/$pname";4607}else{4608$pr->{'forks'} =0;4609}4610}4611$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4612push@projects,$pr;4613}46144615return@projects;4616}46174618# print 'sort by' <th> element, generating 'sort by $name' replay link4619# if that order is not selected4620sub print_sort_th {4621print format_sort_th(@_);4622}46234624sub format_sort_th {4625my($name,$order,$header) =@_;4626my$sort_th="";4627$header||=ucfirst($name);46284629if($ordereq$name) {4630$sort_th.="<th>$header</th>\n";4631}else{4632$sort_th.="<th>".4633$cgi->a({-href => href(-replay=>1, order=>$name),4634-class=>"header"},$header) .4635"</th>\n";4636}46374638return$sort_th;4639}46404641sub git_project_list_body {4642# actually uses global variable $project4643my($projlist,$order,$from,$to,$extra,$no_header) =@_;46444645my$check_forks= gitweb_check_feature('forks');4646my@projects= fill_project_list_info($projlist,$check_forks);46474648$order||=$default_projects_order;4649$from=0unlessdefined$from;4650$to=$#projectsif(!defined$to||$#projects<$to);46514652my%order_info= (4653 project => { key =>'path', type =>'str'},4654 descr => { key =>'descr_long', type =>'str'},4655 owner => { key =>'owner', type =>'str'},4656 age => { key =>'age', type =>'num'}4657);4658my$oi=$order_info{$order};4659if($oi->{'type'}eq'str') {4660@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4661}else{4662@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4663}46644665my$show_ctags= gitweb_check_feature('ctags');4666if($show_ctags) {4667my%ctags;4668foreachmy$p(@projects) {4669foreachmy$ct(keys%{$p->{'ctags'}}) {4670$ctags{$ct} +=$p->{'ctags'}->{$ct};4671}4672}4673my$cloud= git_populate_project_tagcloud(\%ctags);4674print git_show_project_tagcloud($cloud,64);4675}46764677print"<table class=\"project_list\">\n";4678unless($no_header) {4679print"<tr>\n";4680if($check_forks) {4681print"<th></th>\n";4682}4683 print_sort_th('project',$order,'Project');4684 print_sort_th('descr',$order,'Description');4685 print_sort_th('owner',$order,'Owner');4686 print_sort_th('age',$order,'Last Change');4687print"<th></th>\n".# for links4688"</tr>\n";4689}4690my$alternate=1;4691my$tagfilter=$cgi->param('by_tag');4692for(my$i=$from;$i<=$to;$i++) {4693my$pr=$projects[$i];46944695next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4696next if$searchtextand not$pr->{'path'} =~/$searchtext/4697and not$pr->{'descr_long'} =~/$searchtext/;4698# Weed out forks or non-matching entries of search4699if($check_forks) {4700my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4701$forkbase="^$forkbase"if$forkbase;4702next ifnot$searchtextand not$tagfilterand$show_ctags4703and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4704}47054706if($alternate) {4707print"<tr class=\"dark\">\n";4708}else{4709print"<tr class=\"light\">\n";4710}4711$alternate^=1;4712if($check_forks) {4713print"<td>";4714if($pr->{'forks'}) {4715print"<!--$pr->{'forks'} -->\n";4716print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4717}4718print"</td>\n";4719}4720print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4721-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4722"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4723-class=>"list", -title =>$pr->{'descr_long'}},4724 esc_html($pr->{'descr'})) ."</td>\n".4725"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4726print"<td class=\"". age_class($pr->{'age'}) ."\">".4727(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4728"<td class=\"link\">".4729$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4730$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4731$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4732$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4733($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4734"</td>\n".4735"</tr>\n";4736}4737if(defined$extra) {4738print"<tr>\n";4739if($check_forks) {4740print"<td></td>\n";4741}4742print"<td colspan=\"5\">$extra</td>\n".4743"</tr>\n";4744}4745print"</table>\n";4746}47474748sub git_log_body {4749# uses global variable $project4750my($commitlist,$from,$to,$refs,$extra) =@_;47514752$from=0unlessdefined$from;4753$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);47544755for(my$i=0;$i<=$to;$i++) {4756my%co= %{$commitlist->[$i]};4757next if!%co;4758my$commit=$co{'id'};4759my$ref= format_ref_marker($refs,$commit);4760my%ad= parse_date($co{'author_epoch'});4761 git_print_header_div('commit',4762"<span class=\"age\">$co{'age_string'}</span>".4763 esc_html($co{'title'}) .$ref,4764$commit);4765print"<div class=\"title_text\">\n".4766"<div class=\"log_link\">\n".4767$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4768" | ".4769$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4770" | ".4771$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4772"<br/>\n".4773"</div>\n";4774 git_print_authorship(\%co, -tag =>'span');4775print"<br/>\n</div>\n";47764777print"<div class=\"log_body\">\n";4778 git_print_log($co{'comment'}, -final_empty_line=>1);4779print"</div>\n";4780}4781if($extra) {4782print"<div class=\"page_nav\">\n";4783print"$extra\n";4784print"</div>\n";4785}4786}47874788sub git_shortlog_body {4789# uses global variable $project4790my($commitlist,$from,$to,$refs,$extra) =@_;47914792$from=0unlessdefined$from;4793$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);47944795print"<table class=\"shortlog\">\n";4796my$alternate=1;4797for(my$i=$from;$i<=$to;$i++) {4798my%co= %{$commitlist->[$i]};4799my$commit=$co{'id'};4800my$ref= format_ref_marker($refs,$commit);4801if($alternate) {4802print"<tr class=\"dark\">\n";4803}else{4804print"<tr class=\"light\">\n";4805}4806$alternate^=1;4807# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4808print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4809 format_author_html('td', \%co,10) ."<td>";4810print format_subject_html($co{'title'},$co{'title_short'},4811 href(action=>"commit", hash=>$commit),$ref);4812print"</td>\n".4813"<td class=\"link\">".4814$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4815$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4816$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4817my$snapshot_links= format_snapshot_links($commit);4818if(defined$snapshot_links) {4819print" | ".$snapshot_links;4820}4821print"</td>\n".4822"</tr>\n";4823}4824if(defined$extra) {4825print"<tr>\n".4826"<td colspan=\"4\">$extra</td>\n".4827"</tr>\n";4828}4829print"</table>\n";4830}48314832sub git_history_body {4833# Warning: assumes constant type (blob or tree) during history4834my($commitlist,$from,$to,$refs,$extra,4835$file_name,$file_hash,$ftype) =@_;48364837$from=0unlessdefined$from;4838$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});48394840print"<table class=\"history\">\n";4841my$alternate=1;4842for(my$i=$from;$i<=$to;$i++) {4843my%co= %{$commitlist->[$i]};4844if(!%co) {4845next;4846}4847my$commit=$co{'id'};48484849my$ref= format_ref_marker($refs,$commit);48504851if($alternate) {4852print"<tr class=\"dark\">\n";4853}else{4854print"<tr class=\"light\">\n";4855}4856$alternate^=1;4857print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4858# shortlog: format_author_html('td', \%co, 10)4859 format_author_html('td', \%co,15,3) ."<td>";4860# originally git_history used chop_str($co{'title'}, 50)4861print format_subject_html($co{'title'},$co{'title_short'},4862 href(action=>"commit", hash=>$commit),$ref);4863print"</td>\n".4864"<td class=\"link\">".4865$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".4866$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");48674868if($ftypeeq'blob') {4869my$blob_current=$file_hash;4870my$blob_parent= git_get_hash_by_path($commit,$file_name);4871if(defined$blob_current&&defined$blob_parent&&4872$blob_currentne$blob_parent) {4873print" | ".4874$cgi->a({-href => href(action=>"blobdiff",4875 hash=>$blob_current, hash_parent=>$blob_parent,4876 hash_base=>$hash_base, hash_parent_base=>$commit,4877 file_name=>$file_name)},4878"diff to current");4879}4880}4881print"</td>\n".4882"</tr>\n";4883}4884if(defined$extra) {4885print"<tr>\n".4886"<td colspan=\"4\">$extra</td>\n".4887"</tr>\n";4888}4889print"</table>\n";4890}48914892sub git_tags_body {4893# uses global variable $project4894my($taglist,$from,$to,$extra) =@_;4895$from=0unlessdefined$from;4896$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);48974898print"<table class=\"tags\">\n";4899my$alternate=1;4900for(my$i=$from;$i<=$to;$i++) {4901my$entry=$taglist->[$i];4902my%tag=%$entry;4903my$comment=$tag{'subject'};4904my$comment_short;4905if(defined$comment) {4906$comment_short= chop_str($comment,30,5);4907}4908if($alternate) {4909print"<tr class=\"dark\">\n";4910}else{4911print"<tr class=\"light\">\n";4912}4913$alternate^=1;4914if(defined$tag{'age'}) {4915print"<td><i>$tag{'age'}</i></td>\n";4916}else{4917print"<td></td>\n";4918}4919print"<td>".4920$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),4921-class=>"list name"}, esc_html($tag{'name'})) .4922"</td>\n".4923"<td>";4924if(defined$comment) {4925print format_subject_html($comment,$comment_short,4926 href(action=>"tag", hash=>$tag{'id'}));4927}4928print"</td>\n".4929"<td class=\"selflink\">";4930if($tag{'type'}eq"tag") {4931print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");4932}else{4933print" ";4934}4935print"</td>\n".4936"<td class=\"link\">"." | ".4937$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});4938if($tag{'reftype'}eq"commit") {4939print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .4940" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");4941}elsif($tag{'reftype'}eq"blob") {4942print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");4943}4944print"</td>\n".4945"</tr>";4946}4947if(defined$extra) {4948print"<tr>\n".4949"<td colspan=\"5\">$extra</td>\n".4950"</tr>\n";4951}4952print"</table>\n";4953}49544955sub git_heads_body {4956# uses global variable $project4957my($headlist,$head,$from,$to,$extra) =@_;4958$from=0unlessdefined$from;4959$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);49604961print"<table class=\"heads\">\n";4962my$alternate=1;4963for(my$i=$from;$i<=$to;$i++) {4964my$entry=$headlist->[$i];4965my%ref=%$entry;4966my$curr=$ref{'id'}eq$head;4967if($alternate) {4968print"<tr class=\"dark\">\n";4969}else{4970print"<tr class=\"light\">\n";4971}4972$alternate^=1;4973print"<td><i>$ref{'age'}</i></td>\n".4974($curr?"<td class=\"current_head\">":"<td>") .4975$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),4976-class=>"list name"},esc_html($ref{'name'})) .4977"</td>\n".4978"<td class=\"link\">".4979$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".4980$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".4981$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'name'})},"tree") .4982"</td>\n".4983"</tr>";4984}4985if(defined$extra) {4986print"<tr>\n".4987"<td colspan=\"3\">$extra</td>\n".4988"</tr>\n";4989}4990print"</table>\n";4991}49924993sub git_search_grep_body {4994my($commitlist,$from,$to,$extra) =@_;4995$from=0unlessdefined$from;4996$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49974998print"<table class=\"commit_search\">\n";4999my$alternate=1;5000for(my$i=$from;$i<=$to;$i++) {5001my%co= %{$commitlist->[$i]};5002if(!%co) {5003next;5004}5005my$commit=$co{'id'};5006if($alternate) {5007print"<tr class=\"dark\">\n";5008}else{5009print"<tr class=\"light\">\n";5010}5011$alternate^=1;5012print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5013 format_author_html('td', \%co,15,5) .5014"<td>".5015$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5016-class=>"list subject"},5017 chop_and_escape_str($co{'title'},50) ."<br/>");5018my$comment=$co{'comment'};5019foreachmy$line(@$comment) {5020if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5021my($lead,$match,$trail) = ($1,$2,$3);5022$match= chop_str($match,70,5,'center');5023my$contextlen=int((80-length($match))/2);5024$contextlen=30if($contextlen>30);5025$lead= chop_str($lead,$contextlen,10,'left');5026$trail= chop_str($trail,$contextlen,10,'right');50275028$lead= esc_html($lead);5029$match= esc_html($match);5030$trail= esc_html($trail);50315032print"$lead<span class=\"match\">$match</span>$trail<br />";5033}5034}5035print"</td>\n".5036"<td class=\"link\">".5037$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5038" | ".5039$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5040" | ".5041$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5042print"</td>\n".5043"</tr>\n";5044}5045if(defined$extra) {5046print"<tr>\n".5047"<td colspan=\"3\">$extra</td>\n".5048"</tr>\n";5049}5050print"</table>\n";5051}50525053## ======================================================================5054## ======================================================================5055## actions50565057sub git_project_list {5058my$order=$input_params{'order'};5059if(defined$order&&$order!~m/none|project|descr|owner|age/) {5060 die_error(400,"Unknown order parameter");5061}50625063my@list= git_get_projects_list();5064if(!@list) {5065 die_error(404,"No projects found");5066}50675068 git_header_html();5069if(defined$home_text&& -f $home_text) {5070print"<div class=\"index_include\">\n";5071 insert_file($home_text);5072print"</div>\n";5073}5074print$cgi->startform(-method=>"get") .5075"<p class=\"projsearch\">Search:\n".5076$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5077"</p>".5078$cgi->end_form() ."\n";5079 git_project_list_body(\@list,$order);5080 git_footer_html();5081}50825083sub git_forks {5084my$order=$input_params{'order'};5085if(defined$order&&$order!~m/none|project|descr|owner|age/) {5086 die_error(400,"Unknown order parameter");5087}50885089my@list= git_get_projects_list($project);5090if(!@list) {5091 die_error(404,"No forks found");5092}50935094 git_header_html();5095 git_print_page_nav('','');5096 git_print_header_div('summary',"$projectforks");5097 git_project_list_body(\@list,$order);5098 git_footer_html();5099}51005101sub git_project_index {5102my@projects= git_get_projects_list($project);51035104print$cgi->header(5105-type =>'text/plain',5106-charset =>'utf-8',5107-content_disposition =>'inline; filename="index.aux"');51085109foreachmy$pr(@projects) {5110if(!exists$pr->{'owner'}) {5111$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5112}51135114my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5115# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5116$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5117$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5118$path=~s/ /\+/g;5119$owner=~s/ /\+/g;51205121print"$path$owner\n";5122}5123}51245125sub git_summary {5126my$descr= git_get_project_description($project) ||"none";5127my%co= parse_commit("HEAD");5128my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5129my$head=$co{'id'};51305131my$owner= git_get_project_owner($project);51325133my$refs= git_get_references();5134# These get_*_list functions return one more to allow us to see if5135# there are more ...5136my@taglist= git_get_tags_list(16);5137my@headlist= git_get_heads_list(16);5138my@forklist;5139my$check_forks= gitweb_check_feature('forks');51405141if($check_forks) {5142@forklist= git_get_projects_list($project);5143}51445145 git_header_html();5146 git_print_page_nav('summary','',$head);51475148print"<div class=\"title\"> </div>\n";5149print"<table class=\"projects_list\">\n".5150"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5151"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5152if(defined$cd{'rfc2822'}) {5153print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";5154}51555156# use per project git URL list in $projectroot/$project/cloneurl5157# or make project git URL from git base URL and project name5158my$url_tag="URL";5159my@url_list= git_get_project_url_list($project);5160@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5161foreachmy$git_url(@url_list) {5162next unless$git_url;5163print"<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";5164$url_tag="";5165}51665167# Tag cloud5168my$show_ctags= gitweb_check_feature('ctags');5169if($show_ctags) {5170my$ctags= git_get_project_ctags($project);5171my$cloud= git_populate_project_tagcloud($ctags);5172print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5173print"</td>\n<td>"unless%$ctags;5174print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5175print"</td>\n<td>"if%$ctags;5176print git_show_project_tagcloud($cloud,48);5177print"</td></tr>";5178}51795180print"</table>\n";51815182# If XSS prevention is on, we don't include README.html.5183# TODO: Allow a readme in some safe format.5184if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5185print"<div class=\"title\">readme</div>\n".5186"<div class=\"readme\">\n";5187 insert_file("$projectroot/$project/README.html");5188print"\n</div>\n";# class="readme"5189}51905191# we need to request one more than 16 (0..15) to check if5192# those 16 are all5193my@commitlist=$head? parse_commits($head,17) : ();5194if(@commitlist) {5195 git_print_header_div('shortlog');5196 git_shortlog_body(\@commitlist,0,15,$refs,5197$#commitlist<=15?undef:5198$cgi->a({-href => href(action=>"shortlog")},"..."));5199}52005201if(@taglist) {5202 git_print_header_div('tags');5203 git_tags_body(\@taglist,0,15,5204$#taglist<=15?undef:5205$cgi->a({-href => href(action=>"tags")},"..."));5206}52075208if(@headlist) {5209 git_print_header_div('heads');5210 git_heads_body(\@headlist,$head,0,15,5211$#headlist<=15?undef:5212$cgi->a({-href => href(action=>"heads")},"..."));5213}52145215if(@forklist) {5216 git_print_header_div('forks');5217 git_project_list_body(\@forklist,'age',0,15,5218$#forklist<=15?undef:5219$cgi->a({-href => href(action=>"forks")},"..."),5220'no_header');5221}52225223 git_footer_html();5224}52255226sub git_tag {5227my%tag= parse_tag($hash);52285229if(!%tag) {5230 die_error(404,"Unknown tag object");5231}52325233my$head= git_get_head_hash($project);5234 git_header_html();5235 git_print_page_nav('','',$head,undef,$head);5236 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5237print"<div class=\"title_text\">\n".5238"<table class=\"object_header\">\n".5239"<tr>\n".5240"<td>object</td>\n".5241"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5242$tag{'object'}) ."</td>\n".5243"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5244$tag{'type'}) ."</td>\n".5245"</tr>\n";5246if(defined($tag{'author'})) {5247 git_print_authorship_rows(\%tag,'author');5248}5249print"</table>\n\n".5250"</div>\n";5251print"<div class=\"page_body\">";5252my$comment=$tag{'comment'};5253foreachmy$line(@$comment) {5254chomp$line;5255print esc_html($line, -nbsp=>1) ."<br/>\n";5256}5257print"</div>\n";5258 git_footer_html();5259}52605261sub git_blame_common {5262my$format=shift||'porcelain';5263if($formateq'porcelain'&&$cgi->param('js')) {5264$format='incremental';5265$action='blame_incremental';# for page title etc5266}52675268# permissions5269 gitweb_check_feature('blame')5270or die_error(403,"Blame view not allowed");52715272# error checking5273 die_error(400,"No file name given")unless$file_name;5274$hash_base||= git_get_head_hash($project);5275 die_error(404,"Couldn't find base commit")unless$hash_base;5276my%co= parse_commit($hash_base)5277or die_error(404,"Commit not found");5278my$ftype="blob";5279if(!defined$hash) {5280$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5281or die_error(404,"Error looking up file");5282}else{5283$ftype= git_get_type($hash);5284if($ftype!~"blob") {5285 die_error(400,"Object is not a blob");5286}5287}52885289my$fd;5290if($formateq'incremental') {5291# get file contents (as base)5292open$fd,"-|", git_cmd(),'cat-file','blob',$hash5293or die_error(500,"Open git-cat-file failed");5294}elsif($formateq'data') {5295# run git-blame --incremental5296open$fd,"-|", git_cmd(),"blame","--incremental",5297$hash_base,"--",$file_name5298or die_error(500,"Open git-blame --incremental failed");5299}else{5300# run git-blame --porcelain5301open$fd,"-|", git_cmd(),"blame",'-p',5302$hash_base,'--',$file_name5303or die_error(500,"Open git-blame --porcelain failed");5304}53055306# incremental blame data returns early5307if($formateq'data') {5308print$cgi->header(5309-type=>"text/plain", -charset =>"utf-8",5310-status=>"200 OK");5311local$| =1;# output autoflush5312printwhile<$fd>;5313close$fd5314or print"ERROR$!\n";53155316print'END';5317if(defined$t0&& gitweb_check_feature('timed')) {5318print' '.5319 Time::HiRes::tv_interval($t0, [Time::HiRes::gettimeofday()]).5320' '.$number_of_git_cmds;5321}5322print"\n";53235324return;5325}53265327# page header5328 git_header_html();5329my$formats_nav=5330$cgi->a({-href => href(action=>"blob", -replay=>1)},5331"blob") .5332" | ";5333if($formateq'incremental') {5334$formats_nav.=5335$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5336"blame") ." (non-incremental)";5337}else{5338$formats_nav.=5339$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5340"blame") ." (incremental)";5341}5342$formats_nav.=5343" | ".5344$cgi->a({-href => href(action=>"history", -replay=>1)},5345"history") .5346" | ".5347$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5348"HEAD");5349 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5350 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5351 git_print_page_path($file_name,$ftype,$hash_base);53525353# page body5354if($formateq'incremental') {5355print"<noscript>\n<div class=\"error\"><center><b>\n".5356"This page requires JavaScript to run.\nUse ".5357$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5358'this page').5359" instead.\n".5360"</b></center></div>\n</noscript>\n";53615362print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5363}53645365print qq!<div class="page_body">\n!;5366print qq!<div id="progress_info">.../ ...</div>\n!5367if($formateq'incremental');5368print qq!<table id="blame_table"class="blame" width="100%">\n!.5369#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5370 qq!<thead>\n!.5371 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5372 qq!</thead>\n!.5373 qq!<tbody>\n!;53745375my@rev_color=qw(light dark);5376my$num_colors=scalar(@rev_color);5377my$current_color=0;53785379if($formateq'incremental') {5380my$color_class=$rev_color[$current_color];53815382#contents of a file5383my$linenr=0;5384 LINE:5385while(my$line= <$fd>) {5386chomp$line;5387$linenr++;53885389print qq!<tr id="l$linenr"class="$color_class">!.5390 qq!<td class="sha1"><a href=""> </a></td>!.5391 qq!<td class="linenr">!.5392 qq!<a class="linenr" href="">$linenr</a></td>!;5393print qq!<td class="pre">! . esc_html($line) ."</td>\n";5394print qq!</tr>\n!;5395}53965397}else{# porcelain, i.e. ordinary blame5398my%metainfo= ();# saves information about commits53995400# blame data5401 LINE:5402while(my$line= <$fd>) {5403chomp$line;5404# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5405# no <lines in group> for subsequent lines in group of lines5406my($full_rev,$orig_lineno,$lineno,$group_size) =5407($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5408if(!exists$metainfo{$full_rev}) {5409$metainfo{$full_rev} = {'nprevious'=>0};5410}5411my$meta=$metainfo{$full_rev};5412my$data;5413while($data= <$fd>) {5414chomp$data;5415last if($data=~s/^\t//);# contents of line5416if($data=~/^(\S+)(?: (.*))?$/) {5417$meta->{$1} =$2unlessexists$meta->{$1};5418}5419if($data=~/^previous /) {5420$meta->{'nprevious'}++;5421}5422}5423my$short_rev=substr($full_rev,0,8);5424my$author=$meta->{'author'};5425my%date=5426 parse_date($meta->{'author-time'},$meta->{'author-tz'});5427my$date=$date{'iso-tz'};5428if($group_size) {5429$current_color= ($current_color+1) %$num_colors;5430}5431my$tr_class=$rev_color[$current_color];5432$tr_class.=' boundary'if(exists$meta->{'boundary'});5433$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5434$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5435print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5436if($group_size) {5437print"<td class=\"sha1\"";5438print" title=\"". esc_html($author) .",$date\"";5439print" rowspan=\"$group_size\""if($group_size>1);5440print">";5441print$cgi->a({-href => href(action=>"commit",5442 hash=>$full_rev,5443 file_name=>$file_name)},5444 esc_html($short_rev));5445if($group_size>=2) {5446my@author_initials= ($author=~/\b([[:upper:]])\B/g);5447if(@author_initials) {5448print"<br />".5449 esc_html(join('',@author_initials));5450# or join('.', ...)5451}5452}5453print"</td>\n";5454}5455# 'previous' <sha1 of parent commit> <filename at commit>5456if(exists$meta->{'previous'} &&5457$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5458$meta->{'parent'} =$1;5459$meta->{'file_parent'} = unquote($2);5460}5461my$linenr_commit=5462exists($meta->{'parent'}) ?5463$meta->{'parent'} :$full_rev;5464my$linenr_filename=5465exists($meta->{'file_parent'}) ?5466$meta->{'file_parent'} : unquote($meta->{'filename'});5467my$blamed= href(action =>'blame',5468 file_name =>$linenr_filename,5469 hash_base =>$linenr_commit);5470print"<td class=\"linenr\">";5471print$cgi->a({ -href =>"$blamed#l$orig_lineno",5472-class=>"linenr"},5473 esc_html($lineno));5474print"</td>";5475print"<td class=\"pre\">". esc_html($data) ."</td>\n";5476print"</tr>\n";5477}# end while54785479}54805481# footer5482print"</tbody>\n".5483"</table>\n";# class="blame"5484print"</div>\n";# class="blame_body"5485close$fd5486or print"Reading blob failed\n";54875488 git_footer_html();5489}54905491sub git_blame {5492 git_blame_common();5493}54945495sub git_blame_incremental {5496 git_blame_common('incremental');5497}54985499sub git_blame_data {5500 git_blame_common('data');5501}55025503sub git_tags {5504my$head= git_get_head_hash($project);5505 git_header_html();5506 git_print_page_nav('','',$head,undef,$head);5507 git_print_header_div('summary',$project);55085509my@tagslist= git_get_tags_list();5510if(@tagslist) {5511 git_tags_body(\@tagslist);5512}5513 git_footer_html();5514}55155516sub git_heads {5517my$head= git_get_head_hash($project);5518 git_header_html();5519 git_print_page_nav('','',$head,undef,$head);5520 git_print_header_div('summary',$project);55215522my@headslist= git_get_heads_list();5523if(@headslist) {5524 git_heads_body(\@headslist,$head);5525}5526 git_footer_html();5527}55285529sub git_blob_plain {5530my$type=shift;5531my$expires;55325533if(!defined$hash) {5534if(defined$file_name) {5535my$base=$hash_base|| git_get_head_hash($project);5536$hash= git_get_hash_by_path($base,$file_name,"blob")5537or die_error(404,"Cannot find file");5538}else{5539 die_error(400,"No file name defined");5540}5541}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5542# blobs defined by non-textual hash id's can be cached5543$expires="+1d";5544}55455546open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5547or die_error(500,"Open git-cat-file blob '$hash' failed");55485549# content-type (can include charset)5550$type= blob_contenttype($fd,$file_name,$type);55515552# "save as" filename, even when no $file_name is given5553my$save_as="$hash";5554if(defined$file_name) {5555$save_as=$file_name;5556}elsif($type=~m/^text\//) {5557$save_as.='.txt';5558}55595560# With XSS prevention on, blobs of all types except a few known safe5561# ones are served with "Content-Disposition: attachment" to make sure5562# they don't run in our security domain. For certain image types,5563# blob view writes an <img> tag referring to blob_plain view, and we5564# want to be sure not to break that by serving the image as an5565# attachment (though Firefox 3 doesn't seem to care).5566my$sandbox=$prevent_xss&&5567$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;55685569print$cgi->header(5570-type =>$type,5571-expires =>$expires,5572-content_disposition =>5573($sandbox?'attachment':'inline')5574.'; filename="'.$save_as.'"');5575local$/=undef;5576binmode STDOUT,':raw';5577print<$fd>;5578binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5579close$fd;5580}55815582sub git_blob {5583my$expires;55845585if(!defined$hash) {5586if(defined$file_name) {5587my$base=$hash_base|| git_get_head_hash($project);5588$hash= git_get_hash_by_path($base,$file_name,"blob")5589or die_error(404,"Cannot find file");5590}else{5591 die_error(400,"No file name defined");5592}5593}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5594# blobs defined by non-textual hash id's can be cached5595$expires="+1d";5596}55975598my$have_blame= gitweb_check_feature('blame');5599open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5600or die_error(500,"Couldn't cat$file_name,$hash");5601my$mimetype= blob_mimetype($fd,$file_name);5602# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5603if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5604close$fd;5605return git_blob_plain($mimetype);5606}5607# we can have blame only for text/* mimetype5608$have_blame&&= ($mimetype=~m!^text/!);56095610my$highlight= gitweb_check_feature('highlight');5611my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);5612$fd= run_highlighter($fd,$highlight,$syntax)5613if$syntax;56145615 git_header_html(undef,$expires);5616my$formats_nav='';5617if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5618if(defined$file_name) {5619if($have_blame) {5620$formats_nav.=5621$cgi->a({-href => href(action=>"blame", -replay=>1)},5622"blame") .5623" | ";5624}5625$formats_nav.=5626$cgi->a({-href => href(action=>"history", -replay=>1)},5627"history") .5628" | ".5629$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5630"raw") .5631" | ".5632$cgi->a({-href => href(action=>"blob",5633 hash_base=>"HEAD", file_name=>$file_name)},5634"HEAD");5635}else{5636$formats_nav.=5637$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5638"raw");5639}5640 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5641 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5642}else{5643print"<div class=\"page_nav\">\n".5644"<br/><br/></div>\n".5645"<div class=\"title\">".esc_html($hash)."</div>\n";5646}5647 git_print_page_path($file_name,"blob",$hash_base);5648print"<div class=\"page_body\">\n";5649if($mimetype=~m!^image/!) {5650print qq!<img type="!.esc_attr($mimetype).qq!"!;5651if($file_name) {5652print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;5653}5654print qq! src="! .5655 href(action=>"blob_plain", hash=>$hash,5656 hash_base=>$hash_base, file_name=>$file_name) .5657 qq!"/>\n!;5658}else{5659my$nr;5660while(my$line= <$fd>) {5661chomp$line;5662$nr++;5663$line= untabify($line);5664printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,5665$nr, esc_attr(href(-replay =>1)),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);5666}5667}5668close$fd5669or print"Reading blob failed.\n";5670print"</div>";5671 git_footer_html();5672}56735674sub git_tree {5675if(!defined$hash_base) {5676$hash_base="HEAD";5677}5678if(!defined$hash) {5679if(defined$file_name) {5680$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5681}else{5682$hash=$hash_base;5683}5684}5685 die_error(404,"No such tree")unlessdefined($hash);56865687my$show_sizes= gitweb_check_feature('show-sizes');5688my$have_blame= gitweb_check_feature('blame');56895690my@entries= ();5691{5692local$/="\0";5693open my$fd,"-|", git_cmd(),"ls-tree",'-z',5694($show_sizes?'-l': ()),@extra_options,$hash5695or die_error(500,"Open git-ls-tree failed");5696@entries=map{chomp;$_} <$fd>;5697close$fd5698or die_error(404,"Reading tree failed");5699}57005701my$refs= git_get_references();5702my$ref= format_ref_marker($refs,$hash_base);5703 git_header_html();5704my$basedir='';5705if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5706my@views_nav= ();5707if(defined$file_name) {5708push@views_nav,5709$cgi->a({-href => href(action=>"history", -replay=>1)},5710"history"),5711$cgi->a({-href => href(action=>"tree",5712 hash_base=>"HEAD", file_name=>$file_name)},5713"HEAD"),5714}5715my$snapshot_links= format_snapshot_links($hash);5716if(defined$snapshot_links) {5717# FIXME: Should be available when we have no hash base as well.5718push@views_nav,$snapshot_links;5719}5720 git_print_page_nav('tree','',$hash_base,undef,undef,5721join(' | ',@views_nav));5722 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);5723}else{5724undef$hash_base;5725print"<div class=\"page_nav\">\n";5726print"<br/><br/></div>\n";5727print"<div class=\"title\">".esc_html($hash)."</div>\n";5728}5729if(defined$file_name) {5730$basedir=$file_name;5731if($basedirne''&&substr($basedir, -1)ne'/') {5732$basedir.='/';5733}5734 git_print_page_path($file_name,'tree',$hash_base);5735}5736print"<div class=\"page_body\">\n";5737print"<table class=\"tree\">\n";5738my$alternate=1;5739# '..' (top directory) link if possible5740if(defined$hash_base&&5741defined$file_name&&$file_name=~m![^/]+$!) {5742if($alternate) {5743print"<tr class=\"dark\">\n";5744}else{5745print"<tr class=\"light\">\n";5746}5747$alternate^=1;57485749my$up=$file_name;5750$up=~s!/?[^/]+$!!;5751undef$upunless$up;5752# based on git_print_tree_entry5753print'<td class="mode">'. mode_str('040000') ."</td>\n";5754print'<td class="size"> </td>'."\n"if$show_sizes;5755print'<td class="list">';5756print$cgi->a({-href => href(action=>"tree",5757 hash_base=>$hash_base,5758 file_name=>$up)},5759"..");5760print"</td>\n";5761print"<td class=\"link\"></td>\n";57625763print"</tr>\n";5764}5765foreachmy$line(@entries) {5766my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);57675768if($alternate) {5769print"<tr class=\"dark\">\n";5770}else{5771print"<tr class=\"light\">\n";5772}5773$alternate^=1;57745775 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);57765777print"</tr>\n";5778}5779print"</table>\n".5780"</div>";5781 git_footer_html();5782}57835784sub snapshot_name {5785my($project,$hash) =@_;57865787# path/to/project.git -> project5788# path/to/project/.git -> project5789my$name= to_utf8($project);5790$name=~ s,([^/])/*\.git$,$1,;5791$name= basename($name);5792# sanitize name5793$name=~s/[[:cntrl:]]/?/g;57945795my$ver=$hash;5796if($hash=~/^[0-9a-fA-F]+$/) {5797# shorten SHA-1 hash5798my$full_hash= git_get_full_hash($project,$hash);5799if($full_hash=~/^$hash/&&length($hash) >7) {5800$ver= git_get_short_hash($project,$hash);5801}5802}elsif($hash=~m!^refs/tags/(.*)$!) {5803# tags don't need shortened SHA-1 hash5804$ver=$1;5805}else{5806# branches and other need shortened SHA-1 hash5807if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {5808$ver=$1;5809}5810$ver.='-'. git_get_short_hash($project,$hash);5811}5812# in case of hierarchical branch names5813$ver=~s!/!.!g;58145815# name = project-version_string5816$name="$name-$ver";58175818returnwantarray? ($name,$name) :$name;5819}58205821sub git_snapshot {5822my$format=$input_params{'snapshot_format'};5823if(!@snapshot_fmts) {5824 die_error(403,"Snapshots not allowed");5825}5826# default to first supported snapshot format5827$format||=$snapshot_fmts[0];5828if($format!~m/^[a-z0-9]+$/) {5829 die_error(400,"Invalid snapshot format parameter");5830}elsif(!exists($known_snapshot_formats{$format})) {5831 die_error(400,"Unknown snapshot format");5832}elsif($known_snapshot_formats{$format}{'disabled'}) {5833 die_error(403,"Snapshot format not allowed");5834}elsif(!grep($_eq$format,@snapshot_fmts)) {5835 die_error(403,"Unsupported snapshot format");5836}58375838my$type= git_get_type("$hash^{}");5839if(!$type) {5840 die_error(404,'Object does not exist');5841}elsif($typeeq'blob') {5842 die_error(400,'Object is not a tree-ish');5843}58445845my($name,$prefix) = snapshot_name($project,$hash);5846my$filename="$name$known_snapshot_formats{$format}{'suffix'}";5847my$cmd= quote_command(5848 git_cmd(),'archive',5849"--format=$known_snapshot_formats{$format}{'format'}",5850"--prefix=$prefix/",$hash);5851if(exists$known_snapshot_formats{$format}{'compressor'}) {5852$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});5853}58545855$filename=~s/(["\\])/\\$1/g;5856print$cgi->header(5857-type =>$known_snapshot_formats{$format}{'type'},5858-content_disposition =>'inline; filename="'.$filename.'"',5859-status =>'200 OK');58605861open my$fd,"-|",$cmd5862or die_error(500,"Execute git-archive failed");5863binmode STDOUT,':raw';5864print<$fd>;5865binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5866close$fd;5867}58685869sub git_log_generic {5870my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;58715872my$head= git_get_head_hash($project);5873if(!defined$base) {5874$base=$head;5875}5876if(!defined$page) {5877$page=0;5878}5879my$refs= git_get_references();58805881my$commit_hash=$base;5882if(defined$parent) {5883$commit_hash="$parent..$base";5884}5885my@commitlist=5886 parse_commits($commit_hash,101, (100*$page),5887defined$file_name? ($file_name,"--full-history") : ());58885889my$ftype;5890if(!defined$file_hash&&defined$file_name) {5891# some commits could have deleted file in question,5892# and not have it in tree, but one of them has to have it5893for(my$i=0;$i<@commitlist;$i++) {5894$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);5895last ifdefined$file_hash;5896}5897}5898if(defined$file_hash) {5899$ftype= git_get_type($file_hash);5900}5901if(defined$file_name&& !defined$ftype) {5902 die_error(500,"Unknown type of object");5903}5904my%co;5905if(defined$file_name) {5906%co= parse_commit($base)5907or die_error(404,"Unknown commit object");5908}590959105911my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);5912my$next_link='';5913if($#commitlist>=100) {5914$next_link=5915$cgi->a({-href => href(-replay=>1, page=>$page+1),5916-accesskey =>"n", -title =>"Alt-n"},"next");5917}5918my$patch_max= gitweb_get_feature('patches');5919if($patch_max&& !defined$file_name) {5920if($patch_max<0||@commitlist<=$patch_max) {5921$paging_nav.=" ⋅ ".5922$cgi->a({-href => href(action=>"patches", -replay=>1)},5923"patches");5924}5925}59265927 git_header_html();5928 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);5929if(defined$file_name) {5930 git_print_header_div('commit', esc_html($co{'title'}),$base);5931}else{5932 git_print_header_div('summary',$project)5933}5934 git_print_page_path($file_name,$ftype,$hash_base)5935if(defined$file_name);59365937$body_subr->(\@commitlist,0,99,$refs,$next_link,5938$file_name,$file_hash,$ftype);59395940 git_footer_html();5941}59425943sub git_log {5944 git_log_generic('log', \&git_log_body,5945$hash,$hash_parent);5946}59475948sub git_commit {5949$hash||=$hash_base||"HEAD";5950my%co= parse_commit($hash)5951or die_error(404,"Unknown commit object");59525953my$parent=$co{'parent'};5954my$parents=$co{'parents'};# listref59555956# we need to prepare $formats_nav before any parameter munging5957my$formats_nav;5958if(!defined$parent) {5959# --root commitdiff5960$formats_nav.='(initial)';5961}elsif(@$parents==1) {5962# single parent commit5963$formats_nav.=5964'(parent: '.5965$cgi->a({-href => href(action=>"commit",5966 hash=>$parent)},5967 esc_html(substr($parent,0,7))) .5968')';5969}else{5970# merge commit5971$formats_nav.=5972'(merge: '.5973join(' ',map{5974$cgi->a({-href => href(action=>"commit",5975 hash=>$_)},5976 esc_html(substr($_,0,7)));5977}@$parents) .5978')';5979}5980if(gitweb_check_feature('patches') &&@$parents<=1) {5981$formats_nav.=" | ".5982$cgi->a({-href => href(action=>"patch", -replay=>1)},5983"patch");5984}59855986if(!defined$parent) {5987$parent="--root";5988}5989my@difftree;5990open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",5991@diff_opts,5992(@$parents<=1?$parent:'-c'),5993$hash,"--"5994or die_error(500,"Open git-diff-tree failed");5995@difftree=map{chomp;$_} <$fd>;5996close$fdor die_error(404,"Reading git-diff-tree failed");59975998# non-textual hash id's can be cached5999my$expires;6000if($hash=~m/^[0-9a-fA-F]{40}$/) {6001$expires="+1d";6002}6003my$refs= git_get_references();6004my$ref= format_ref_marker($refs,$co{'id'});60056006 git_header_html(undef,$expires);6007 git_print_page_nav('commit','',6008$hash,$co{'tree'},$hash,6009$formats_nav);60106011if(defined$co{'parent'}) {6012 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6013}else{6014 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6015}6016print"<div class=\"title_text\">\n".6017"<table class=\"object_header\">\n";6018 git_print_authorship_rows(\%co);6019print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6020print"<tr>".6021"<td>tree</td>".6022"<td class=\"sha1\">".6023$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6024class=>"list"},$co{'tree'}) .6025"</td>".6026"<td class=\"link\">".6027$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6028"tree");6029my$snapshot_links= format_snapshot_links($hash);6030if(defined$snapshot_links) {6031print" | ".$snapshot_links;6032}6033print"</td>".6034"</tr>\n";60356036foreachmy$par(@$parents) {6037print"<tr>".6038"<td>parent</td>".6039"<td class=\"sha1\">".6040$cgi->a({-href => href(action=>"commit", hash=>$par),6041class=>"list"},$par) .6042"</td>".6043"<td class=\"link\">".6044$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6045" | ".6046$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6047"</td>".6048"</tr>\n";6049}6050print"</table>".6051"</div>\n";60526053print"<div class=\"page_body\">\n";6054 git_print_log($co{'comment'});6055print"</div>\n";60566057 git_difftree_body(\@difftree,$hash,@$parents);60586059 git_footer_html();6060}60616062sub git_object {6063# object is defined by:6064# - hash or hash_base alone6065# - hash_base and file_name6066my$type;60676068# - hash or hash_base alone6069if($hash|| ($hash_base&& !defined$file_name)) {6070my$object_id=$hash||$hash_base;60716072open my$fd,"-|", quote_command(6073 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6074or die_error(404,"Object does not exist");6075$type= <$fd>;6076chomp$type;6077close$fd6078or die_error(404,"Object does not exist");60796080# - hash_base and file_name6081}elsif($hash_base&&defined$file_name) {6082$file_name=~ s,/+$,,;60836084system(git_cmd(),"cat-file",'-e',$hash_base) ==06085or die_error(404,"Base object does not exist");60866087# here errors should not hapen6088open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6089or die_error(500,"Open git-ls-tree failed");6090my$line= <$fd>;6091close$fd;60926093#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6094unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6095 die_error(404,"File or directory for given base does not exist");6096}6097$type=$2;6098$hash=$3;6099}else{6100 die_error(400,"Not enough information to find object");6101}61026103print$cgi->redirect(-uri => href(action=>$type, -full=>1,6104 hash=>$hash, hash_base=>$hash_base,6105 file_name=>$file_name),6106-status =>'302 Found');6107}61086109sub git_blobdiff {6110my$format=shift||'html';61116112my$fd;6113my@difftree;6114my%diffinfo;6115my$expires;61166117# preparing $fd and %diffinfo for git_patchset_body6118# new style URI6119if(defined$hash_base&&defined$hash_parent_base) {6120if(defined$file_name) {6121# read raw output6122open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6123$hash_parent_base,$hash_base,6124"--", (defined$file_parent?$file_parent: ()),$file_name6125or die_error(500,"Open git-diff-tree failed");6126@difftree=map{chomp;$_} <$fd>;6127close$fd6128or die_error(404,"Reading git-diff-tree failed");6129@difftree6130or die_error(404,"Blob diff not found");61316132}elsif(defined$hash&&6133$hash=~/[0-9a-fA-F]{40}/) {6134# try to find filename from $hash61356136# read filtered raw output6137open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6138$hash_parent_base,$hash_base,"--"6139or die_error(500,"Open git-diff-tree failed");6140@difftree=6141# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6142# $hash == to_id6143grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6144map{chomp;$_} <$fd>;6145close$fd6146or die_error(404,"Reading git-diff-tree failed");6147@difftree6148or die_error(404,"Blob diff not found");61496150}else{6151 die_error(400,"Missing one of the blob diff parameters");6152}61536154if(@difftree>1) {6155 die_error(400,"Ambiguous blob diff specification");6156}61576158%diffinfo= parse_difftree_raw_line($difftree[0]);6159$file_parent||=$diffinfo{'from_file'} ||$file_name;6160$file_name||=$diffinfo{'to_file'};61616162$hash_parent||=$diffinfo{'from_id'};6163$hash||=$diffinfo{'to_id'};61646165# non-textual hash id's can be cached6166if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6167$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6168$expires='+1d';6169}61706171# open patch output6172open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6173'-p', ($formateq'html'?"--full-index": ()),6174$hash_parent_base,$hash_base,6175"--", (defined$file_parent?$file_parent: ()),$file_name6176or die_error(500,"Open git-diff-tree failed");6177}61786179# old/legacy style URI -- not generated anymore since 1.4.3.6180if(!%diffinfo) {6181 die_error('404 Not Found',"Missing one of the blob diff parameters")6182}61836184# header6185if($formateq'html') {6186my$formats_nav=6187$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6188"raw");6189 git_header_html(undef,$expires);6190if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6191 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6192 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6193}else{6194print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6195print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";6196}6197if(defined$file_name) {6198 git_print_page_path($file_name,"blob",$hash_base);6199}else{6200print"<div class=\"page_path\"></div>\n";6201}62026203}elsif($formateq'plain') {6204print$cgi->header(6205-type =>'text/plain',6206-charset =>'utf-8',6207-expires =>$expires,6208-content_disposition =>'inline; filename="'."$file_name".'.patch"');62096210print"X-Git-Url: ".$cgi->self_url() ."\n\n";62116212}else{6213 die_error(400,"Unknown blobdiff format");6214}62156216# patch6217if($formateq'html') {6218print"<div class=\"page_body\">\n";62196220 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6221close$fd;62226223print"</div>\n";# class="page_body"6224 git_footer_html();62256226}else{6227while(my$line= <$fd>) {6228$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6229$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;62306231print$line;62326233last if$line=~m!^\+\+\+!;6234}6235local$/=undef;6236print<$fd>;6237close$fd;6238}6239}62406241sub git_blobdiff_plain {6242 git_blobdiff('plain');6243}62446245sub git_commitdiff {6246my%params=@_;6247my$format=$params{-format} ||'html';62486249my($patch_max) = gitweb_get_feature('patches');6250if($formateq'patch') {6251 die_error(403,"Patch view not allowed")unless$patch_max;6252}62536254$hash||=$hash_base||"HEAD";6255my%co= parse_commit($hash)6256or die_error(404,"Unknown commit object");62576258# choose format for commitdiff for merge6259if(!defined$hash_parent&& @{$co{'parents'}} >1) {6260$hash_parent='--cc';6261}6262# we need to prepare $formats_nav before almost any parameter munging6263my$formats_nav;6264if($formateq'html') {6265$formats_nav=6266$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6267"raw");6268if($patch_max&& @{$co{'parents'}} <=1) {6269$formats_nav.=" | ".6270$cgi->a({-href => href(action=>"patch", -replay=>1)},6271"patch");6272}62736274if(defined$hash_parent&&6275$hash_parentne'-c'&&$hash_parentne'--cc') {6276# commitdiff with two commits given6277my$hash_parent_short=$hash_parent;6278if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6279$hash_parent_short=substr($hash_parent,0,7);6280}6281$formats_nav.=6282' (from';6283for(my$i=0;$i< @{$co{'parents'}};$i++) {6284if($co{'parents'}[$i]eq$hash_parent) {6285$formats_nav.=' parent '. ($i+1);6286last;6287}6288}6289$formats_nav.=': '.6290$cgi->a({-href => href(action=>"commitdiff",6291 hash=>$hash_parent)},6292 esc_html($hash_parent_short)) .6293')';6294}elsif(!$co{'parent'}) {6295# --root commitdiff6296$formats_nav.=' (initial)';6297}elsif(scalar@{$co{'parents'}} ==1) {6298# single parent commit6299$formats_nav.=6300' (parent: '.6301$cgi->a({-href => href(action=>"commitdiff",6302 hash=>$co{'parent'})},6303 esc_html(substr($co{'parent'},0,7))) .6304')';6305}else{6306# merge commit6307if($hash_parenteq'--cc') {6308$formats_nav.=' | '.6309$cgi->a({-href => href(action=>"commitdiff",6310 hash=>$hash, hash_parent=>'-c')},6311'combined');6312}else{# $hash_parent eq '-c'6313$formats_nav.=' | '.6314$cgi->a({-href => href(action=>"commitdiff",6315 hash=>$hash, hash_parent=>'--cc')},6316'compact');6317}6318$formats_nav.=6319' (merge: '.6320join(' ',map{6321$cgi->a({-href => href(action=>"commitdiff",6322 hash=>$_)},6323 esc_html(substr($_,0,7)));6324} @{$co{'parents'}} ) .6325')';6326}6327}63286329my$hash_parent_param=$hash_parent;6330if(!defined$hash_parent_param) {6331# --cc for multiple parents, --root for parentless6332$hash_parent_param=6333@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6334}63356336# read commitdiff6337my$fd;6338my@difftree;6339if($formateq'html') {6340open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6341"--no-commit-id","--patch-with-raw","--full-index",6342$hash_parent_param,$hash,"--"6343or die_error(500,"Open git-diff-tree failed");63446345while(my$line= <$fd>) {6346chomp$line;6347# empty line ends raw part of diff-tree output6348last unless$line;6349push@difftree,scalar parse_difftree_raw_line($line);6350}63516352}elsif($formateq'plain') {6353open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6354'-p',$hash_parent_param,$hash,"--"6355or die_error(500,"Open git-diff-tree failed");6356}elsif($formateq'patch') {6357# For commit ranges, we limit the output to the number of6358# patches specified in the 'patches' feature.6359# For single commits, we limit the output to a single patch,6360# diverging from the git-format-patch default.6361my@commit_spec= ();6362if($hash_parent) {6363if($patch_max>0) {6364push@commit_spec,"-$patch_max";6365}6366push@commit_spec,'-n',"$hash_parent..$hash";6367}else{6368if($params{-single}) {6369push@commit_spec,'-1';6370}else{6371if($patch_max>0) {6372push@commit_spec,"-$patch_max";6373}6374push@commit_spec,"-n";6375}6376push@commit_spec,'--root',$hash;6377}6378open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6379'--encoding=utf8','--stdout',@commit_spec6380or die_error(500,"Open git-format-patch failed");6381}else{6382 die_error(400,"Unknown commitdiff format");6383}63846385# non-textual hash id's can be cached6386my$expires;6387if($hash=~m/^[0-9a-fA-F]{40}$/) {6388$expires="+1d";6389}63906391# write commit message6392if($formateq'html') {6393my$refs= git_get_references();6394my$ref= format_ref_marker($refs,$co{'id'});63956396 git_header_html(undef,$expires);6397 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6398 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6399print"<div class=\"title_text\">\n".6400"<table class=\"object_header\">\n";6401 git_print_authorship_rows(\%co);6402print"</table>".6403"</div>\n";6404print"<div class=\"page_body\">\n";6405if(@{$co{'comment'}} >1) {6406print"<div class=\"log\">\n";6407 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6408print"</div>\n";# class="log"6409}64106411}elsif($formateq'plain') {6412my$refs= git_get_references("tags");6413my$tagname= git_get_rev_name_tags($hash);6414my$filename= basename($project) ."-$hash.patch";64156416print$cgi->header(6417-type =>'text/plain',6418-charset =>'utf-8',6419-expires =>$expires,6420-content_disposition =>'inline; filename="'."$filename".'"');6421my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6422print"From: ". to_utf8($co{'author'}) ."\n";6423print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6424print"Subject: ". to_utf8($co{'title'}) ."\n";64256426print"X-Git-Tag:$tagname\n"if$tagname;6427print"X-Git-Url: ".$cgi->self_url() ."\n\n";64286429foreachmy$line(@{$co{'comment'}}) {6430print to_utf8($line) ."\n";6431}6432print"---\n\n";6433}elsif($formateq'patch') {6434my$filename= basename($project) ."-$hash.patch";64356436print$cgi->header(6437-type =>'text/plain',6438-charset =>'utf-8',6439-expires =>$expires,6440-content_disposition =>'inline; filename="'."$filename".'"');6441}64426443# write patch6444if($formateq'html') {6445my$use_parents= !defined$hash_parent||6446$hash_parenteq'-c'||$hash_parenteq'--cc';6447 git_difftree_body(\@difftree,$hash,6448$use_parents? @{$co{'parents'}} :$hash_parent);6449print"<br/>\n";64506451 git_patchset_body($fd, \@difftree,$hash,6452$use_parents? @{$co{'parents'}} :$hash_parent);6453close$fd;6454print"</div>\n";# class="page_body"6455 git_footer_html();64566457}elsif($formateq'plain') {6458local$/=undef;6459print<$fd>;6460close$fd6461or print"Reading git-diff-tree failed\n";6462}elsif($formateq'patch') {6463local$/=undef;6464print<$fd>;6465close$fd6466or print"Reading git-format-patch failed\n";6467}6468}64696470sub git_commitdiff_plain {6471 git_commitdiff(-format =>'plain');6472}64736474# format-patch-style patches6475sub git_patch {6476 git_commitdiff(-format =>'patch', -single =>1);6477}64786479sub git_patches {6480 git_commitdiff(-format =>'patch');6481}64826483sub git_history {6484 git_log_generic('history', \&git_history_body,6485$hash_base,$hash_parent_base,6486$file_name,$hash);6487}64886489sub git_search {6490 gitweb_check_feature('search')or die_error(403,"Search is disabled");6491if(!defined$searchtext) {6492 die_error(400,"Text field is empty");6493}6494if(!defined$hash) {6495$hash= git_get_head_hash($project);6496}6497my%co= parse_commit($hash);6498if(!%co) {6499 die_error(404,"Unknown commit object");6500}6501if(!defined$page) {6502$page=0;6503}65046505$searchtype||='commit';6506if($searchtypeeq'pickaxe') {6507# pickaxe may take all resources of your box and run for several minutes6508# with every query - so decide by yourself how public you make this feature6509 gitweb_check_feature('pickaxe')6510or die_error(403,"Pickaxe is disabled");6511}6512if($searchtypeeq'grep') {6513 gitweb_check_feature('grep')6514or die_error(403,"Grep is disabled");6515}65166517 git_header_html();65186519if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6520my$greptype;6521if($searchtypeeq'commit') {6522$greptype="--grep=";6523}elsif($searchtypeeq'author') {6524$greptype="--author=";6525}elsif($searchtypeeq'committer') {6526$greptype="--committer=";6527}6528$greptype.=$searchtext;6529my@commitlist= parse_commits($hash,101, (100*$page),undef,6530$greptype,'--regexp-ignore-case',6531$search_use_regexp?'--extended-regexp':'--fixed-strings');65326533my$paging_nav='';6534if($page>0) {6535$paging_nav.=6536$cgi->a({-href => href(action=>"search", hash=>$hash,6537 searchtext=>$searchtext,6538 searchtype=>$searchtype)},6539"first");6540$paging_nav.=" ⋅ ".6541$cgi->a({-href => href(-replay=>1, page=>$page-1),6542-accesskey =>"p", -title =>"Alt-p"},"prev");6543}else{6544$paging_nav.="first";6545$paging_nav.=" ⋅ prev";6546}6547my$next_link='';6548if($#commitlist>=100) {6549$next_link=6550$cgi->a({-href => href(-replay=>1, page=>$page+1),6551-accesskey =>"n", -title =>"Alt-n"},"next");6552$paging_nav.=" ⋅$next_link";6553}else{6554$paging_nav.=" ⋅ next";6555}65566557 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6558 git_print_header_div('commit', esc_html($co{'title'}),$hash);6559if($page==0&& !@commitlist) {6560print"<p>No match.</p>\n";6561}else{6562 git_search_grep_body(\@commitlist,0,99,$next_link);6563}6564}65656566if($searchtypeeq'pickaxe') {6567 git_print_page_nav('','',$hash,$co{'tree'},$hash);6568 git_print_header_div('commit', esc_html($co{'title'}),$hash);65696570print"<table class=\"pickaxe search\">\n";6571my$alternate=1;6572local$/="\n";6573open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6574'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6575($search_use_regexp?'--pickaxe-regex': ());6576undef%co;6577my@files;6578while(my$line= <$fd>) {6579chomp$line;6580next unless$line;65816582my%set= parse_difftree_raw_line($line);6583if(defined$set{'commit'}) {6584# finish previous commit6585if(%co) {6586print"</td>\n".6587"<td class=\"link\">".6588$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6589" | ".6590$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6591print"</td>\n".6592"</tr>\n";6593}65946595if($alternate) {6596print"<tr class=\"dark\">\n";6597}else{6598print"<tr class=\"light\">\n";6599}6600$alternate^=1;6601%co= parse_commit($set{'commit'});6602my$author= chop_and_escape_str($co{'author_name'},15,5);6603print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6604"<td><i>$author</i></td>\n".6605"<td>".6606$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6607-class=>"list subject"},6608 chop_and_escape_str($co{'title'},50) ."<br/>");6609}elsif(defined$set{'to_id'}) {6610next if($set{'to_id'} =~m/^0{40}$/);66116612print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6613 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6614-class=>"list"},6615"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6616"<br/>\n";6617}6618}6619close$fd;66206621# finish last commit (warning: repetition!)6622if(%co) {6623print"</td>\n".6624"<td class=\"link\">".6625$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6626" | ".6627$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6628print"</td>\n".6629"</tr>\n";6630}66316632print"</table>\n";6633}66346635if($searchtypeeq'grep') {6636 git_print_page_nav('','',$hash,$co{'tree'},$hash);6637 git_print_header_div('commit', esc_html($co{'title'}),$hash);66386639print"<table class=\"grep_search\">\n";6640my$alternate=1;6641my$matches=0;6642local$/="\n";6643open my$fd,"-|", git_cmd(),'grep','-n',6644$search_use_regexp? ('-E','-i') :'-F',6645$searchtext,$co{'tree'};6646my$lastfile='';6647while(my$line= <$fd>) {6648chomp$line;6649my($file,$lno,$ltext,$binary);6650last if($matches++>1000);6651if($line=~/^Binary file (.+) matches$/) {6652$file=$1;6653$binary=1;6654}else{6655(undef,$file,$lno,$ltext) =split(/:/,$line,4);6656}6657if($filene$lastfile) {6658$lastfileand print"</td></tr>\n";6659if($alternate++) {6660print"<tr class=\"dark\">\n";6661}else{6662print"<tr class=\"light\">\n";6663}6664print"<td class=\"list\">".6665$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6666 file_name=>"$file"),6667-class=>"list"}, esc_path($file));6668print"</td><td>\n";6669$lastfile=$file;6670}6671if($binary) {6672print"<div class=\"binary\">Binary file</div>\n";6673}else{6674$ltext= untabify($ltext);6675if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6676$ltext= esc_html($1, -nbsp=>1);6677$ltext.='<span class="match">';6678$ltext.= esc_html($2, -nbsp=>1);6679$ltext.='</span>';6680$ltext.= esc_html($3, -nbsp=>1);6681}else{6682$ltext= esc_html($ltext, -nbsp=>1);6683}6684print"<div class=\"pre\">".6685$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6686 file_name=>"$file").'#l'.$lno,6687-class=>"linenr"},sprintf('%4i',$lno))6688.' '.$ltext."</div>\n";6689}6690}6691if($lastfile) {6692print"</td></tr>\n";6693if($matches>1000) {6694print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6695}6696}else{6697print"<div class=\"diff nodifferences\">No matches found</div>\n";6698}6699close$fd;67006701print"</table>\n";6702}6703 git_footer_html();6704}67056706sub git_search_help {6707 git_header_html();6708 git_print_page_nav('','',$hash,$hash,$hash);6709print<<EOT;6710<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without6711regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,6712the pattern entered is recognized as the POSIX extended6713<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case6714insensitive).</p>6715<dl>6716<dt><b>commit</b></dt>6717<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>6718EOT6719my$have_grep= gitweb_check_feature('grep');6720if($have_grep) {6721print<<EOT;6722<dt><b>grep</b></dt>6723<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing6724 a different one) are searched for the given pattern. On large trees, this search can take6725a while and put some strain on the server, so please use it with some consideration. Note that6726due to git-grep peculiarity, currently if regexp mode is turned off, the matches are6727case-sensitive.</dd>6728EOT6729}6730print<<EOT;6731<dt><b>author</b></dt>6732<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>6733<dt><b>committer</b></dt>6734<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>6735EOT6736my$have_pickaxe= gitweb_check_feature('pickaxe');6737if($have_pickaxe) {6738print<<EOT;6739<dt><b>pickaxe</b></dt>6740<dd>All commits that caused the string to appear or disappear from any file (changes that6741added, removed or "modified" the string) will be listed. This search can take a while and6742takes a lot of strain on the server, so please use it wisely. Note that since you may be6743interested even in changes just changing the case as well, this search is case sensitive.</dd>6744EOT6745}6746print"</dl>\n";6747 git_footer_html();6748}67496750sub git_shortlog {6751 git_log_generic('shortlog', \&git_shortlog_body,6752$hash,$hash_parent);6753}67546755## ......................................................................6756## feeds (RSS, Atom; OPML)67576758sub git_feed {6759my$format=shift||'atom';6760my$have_blame= gitweb_check_feature('blame');67616762# Atom: http://www.atomenabled.org/developers/syndication/6763# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ6764if($formatne'rss'&&$formatne'atom') {6765 die_error(400,"Unknown web feed format");6766}67676768# log/feed of current (HEAD) branch, log of given branch, history of file/directory6769my$head=$hash||'HEAD';6770my@commitlist= parse_commits($head,150,0,$file_name);67716772my%latest_commit;6773my%latest_date;6774my$content_type="application/$format+xml";6775if(defined$cgi->http('HTTP_ACCEPT') &&6776$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {6777# browser (feed reader) prefers text/xml6778$content_type='text/xml';6779}6780if(defined($commitlist[0])) {6781%latest_commit= %{$commitlist[0]};6782my$latest_epoch=$latest_commit{'committer_epoch'};6783%latest_date= parse_date($latest_epoch);6784my$if_modified=$cgi->http('IF_MODIFIED_SINCE');6785if(defined$if_modified) {6786my$since;6787if(eval{require HTTP::Date;1; }) {6788$since= HTTP::Date::str2time($if_modified);6789}elsif(eval{require Time::ParseDate;1; }) {6790$since= Time::ParseDate::parsedate($if_modified, GMT =>1);6791}6792if(defined$since&&$latest_epoch<=$since) {6793print$cgi->header(6794-type =>$content_type,6795-charset =>'utf-8',6796-last_modified =>$latest_date{'rfc2822'},6797-status =>'304 Not Modified');6798return;6799}6800}6801print$cgi->header(6802-type =>$content_type,6803-charset =>'utf-8',6804-last_modified =>$latest_date{'rfc2822'});6805}else{6806print$cgi->header(6807-type =>$content_type,6808-charset =>'utf-8');6809}68106811# Optimization: skip generating the body if client asks only6812# for Last-Modified date.6813return if($cgi->request_method()eq'HEAD');68146815# header variables6816my$title="$site_name-$project/$action";6817my$feed_type='log';6818if(defined$hash) {6819$title.=" - '$hash'";6820$feed_type='branch log';6821if(defined$file_name) {6822$title.=" ::$file_name";6823$feed_type='history';6824}6825}elsif(defined$file_name) {6826$title.=" -$file_name";6827$feed_type='history';6828}6829$title.="$feed_type";6830my$descr= git_get_project_description($project);6831if(defined$descr) {6832$descr= esc_html($descr);6833}else{6834$descr="$project".6835($formateq'rss'?'RSS':'Atom') .6836" feed";6837}6838my$owner= git_get_project_owner($project);6839$owner= esc_html($owner);68406841#header6842my$alt_url;6843if(defined$file_name) {6844$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);6845}elsif(defined$hash) {6846$alt_url= href(-full=>1, action=>"log", hash=>$hash);6847}else{6848$alt_url= href(-full=>1, action=>"summary");6849}6850print qq!<?xml version="1.0" encoding="utf-8"?>\n!;6851if($formateq'rss') {6852print<<XML;6853<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">6854<channel>6855XML6856print"<title>$title</title>\n".6857"<link>$alt_url</link>\n".6858"<description>$descr</description>\n".6859"<language>en</language>\n".6860# project owner is responsible for 'editorial' content6861"<managingEditor>$owner</managingEditor>\n";6862if(defined$logo||defined$favicon) {6863# prefer the logo to the favicon, since RSS6864# doesn't allow both6865my$img= esc_url($logo||$favicon);6866print"<image>\n".6867"<url>$img</url>\n".6868"<title>$title</title>\n".6869"<link>$alt_url</link>\n".6870"</image>\n";6871}6872if(%latest_date) {6873print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";6874print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";6875}6876print"<generator>gitweb v.$version/$git_version</generator>\n";6877}elsif($formateq'atom') {6878print<<XML;6879<feed xmlns="http://www.w3.org/2005/Atom">6880XML6881print"<title>$title</title>\n".6882"<subtitle>$descr</subtitle>\n".6883'<link rel="alternate" type="text/html" href="'.6884$alt_url.'" />'."\n".6885'<link rel="self" type="'.$content_type.'" href="'.6886$cgi->self_url() .'" />'."\n".6887"<id>". href(-full=>1) ."</id>\n".6888# use project owner for feed author6889"<author><name>$owner</name></author>\n";6890if(defined$favicon) {6891print"<icon>". esc_url($favicon) ."</icon>\n";6892}6893if(defined$logo) {6894# not twice as wide as tall: 72 x 27 pixels6895print"<logo>". esc_url($logo) ."</logo>\n";6896}6897if(!%latest_date) {6898# dummy date to keep the feed valid until commits trickle in:6899print"<updated>1970-01-01T00:00:00Z</updated>\n";6900}else{6901print"<updated>$latest_date{'iso-8601'}</updated>\n";6902}6903print"<generator version='$version/$git_version'>gitweb</generator>\n";6904}69056906# contents6907for(my$i=0;$i<=$#commitlist;$i++) {6908my%co= %{$commitlist[$i]};6909my$commit=$co{'id'};6910# we read 150, we always show 30 and the ones more recent than 48 hours6911if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {6912last;6913}6914my%cd= parse_date($co{'author_epoch'});69156916# get list of changed files6917open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6918$co{'parent'} ||"--root",6919$co{'id'},"--", (defined$file_name?$file_name: ())6920ornext;6921my@difftree=map{chomp;$_} <$fd>;6922close$fd6923ornext;69246925# print element (entry, item)6926my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);6927if($formateq'rss') {6928print"<item>\n".6929"<title>". esc_html($co{'title'}) ."</title>\n".6930"<author>". esc_html($co{'author'}) ."</author>\n".6931"<pubDate>$cd{'rfc2822'}</pubDate>\n".6932"<guid isPermaLink=\"true\">$co_url</guid>\n".6933"<link>$co_url</link>\n".6934"<description>". esc_html($co{'title'}) ."</description>\n".6935"<content:encoded>".6936"<![CDATA[\n";6937}elsif($formateq'atom') {6938print"<entry>\n".6939"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".6940"<updated>$cd{'iso-8601'}</updated>\n".6941"<author>\n".6942" <name>". esc_html($co{'author_name'}) ."</name>\n";6943if($co{'author_email'}) {6944print" <email>". esc_html($co{'author_email'}) ."</email>\n";6945}6946print"</author>\n".6947# use committer for contributor6948"<contributor>\n".6949" <name>". esc_html($co{'committer_name'}) ."</name>\n";6950if($co{'committer_email'}) {6951print" <email>". esc_html($co{'committer_email'}) ."</email>\n";6952}6953print"</contributor>\n".6954"<published>$cd{'iso-8601'}</published>\n".6955"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".6956"<id>$co_url</id>\n".6957"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".6958"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";6959}6960my$comment=$co{'comment'};6961print"<pre>\n";6962foreachmy$line(@$comment) {6963$line= esc_html($line);6964print"$line\n";6965}6966print"</pre><ul>\n";6967foreachmy$difftree_line(@difftree) {6968my%difftree= parse_difftree_raw_line($difftree_line);6969next if!$difftree{'from_id'};69706971my$file=$difftree{'file'} ||$difftree{'to_file'};69726973print"<li>".6974"[".6975$cgi->a({-href => href(-full=>1, action=>"blobdiff",6976 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},6977 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},6978 file_name=>$file, file_parent=>$difftree{'from_file'}),6979-title =>"diff"},'D');6980if($have_blame) {6981print$cgi->a({-href => href(-full=>1, action=>"blame",6982 file_name=>$file, hash_base=>$commit),6983-title =>"blame"},'B');6984}6985# if this is not a feed of a file history6986if(!defined$file_name||$file_namene$file) {6987print$cgi->a({-href => href(-full=>1, action=>"history",6988 file_name=>$file, hash=>$commit),6989-title =>"history"},'H');6990}6991$file= esc_path($file);6992print"] ".6993"$file</li>\n";6994}6995if($formateq'rss') {6996print"</ul>]]>\n".6997"</content:encoded>\n".6998"</item>\n";6999}elsif($formateq'atom') {7000print"</ul>\n</div>\n".7001"</content>\n".7002"</entry>\n";7003}7004}70057006# end of feed7007if($formateq'rss') {7008print"</channel>\n</rss>\n";7009}elsif($formateq'atom') {7010print"</feed>\n";7011}7012}70137014sub git_rss {7015 git_feed('rss');7016}70177018sub git_atom {7019 git_feed('atom');7020}70217022sub git_opml {7023my@list= git_get_projects_list();70247025print$cgi->header(7026-type =>'text/xml',7027-charset =>'utf-8',7028-content_disposition =>'inline; filename="opml.xml"');70297030print<<XML;7031<?xml version="1.0" encoding="utf-8"?>7032<opml version="1.0">7033<head>7034 <title>$site_nameOPML Export</title>7035</head>7036<body>7037<outline text="git RSS feeds">7038XML70397040foreachmy$pr(@list) {7041my%proj=%$pr;7042my$head= git_get_head_hash($proj{'path'});7043if(!defined$head) {7044next;7045}7046$git_dir="$projectroot/$proj{'path'}";7047my%co= parse_commit($head);7048if(!%co) {7049next;7050}70517052my$path= esc_html(chop_str($proj{'path'},25,5));7053my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7054my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7055print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7056}7057print<<XML;7058</outline>7059</body>7060</opml>7061XML7062}