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# Path to the highlight executable to use (must be the one from 170# http://www.andre-simon.de due to assumptions about parameters and output). 171# Useful if highlight is not installed on your webserver's PATH. 172# [Default: highlight] 173our$highlight_bin="++HIGHLIGHT_BIN++"; 174 175# information about snapshot formats that gitweb is capable of serving 176our%known_snapshot_formats= ( 177# name => { 178# 'display' => display name, 179# 'type' => mime type, 180# 'suffix' => filename suffix, 181# 'format' => --format for git-archive, 182# 'compressor' => [compressor command and arguments] 183# (array reference, optional) 184# 'disabled' => boolean (optional)} 185# 186'tgz'=> { 187'display'=>'tar.gz', 188'type'=>'application/x-gzip', 189'suffix'=>'.tar.gz', 190'format'=>'tar', 191'compressor'=> ['gzip']}, 192 193'tbz2'=> { 194'display'=>'tar.bz2', 195'type'=>'application/x-bzip2', 196'suffix'=>'.tar.bz2', 197'format'=>'tar', 198'compressor'=> ['bzip2']}, 199 200'txz'=> { 201'display'=>'tar.xz', 202'type'=>'application/x-xz', 203'suffix'=>'.tar.xz', 204'format'=>'tar', 205'compressor'=> ['xz'], 206'disabled'=>1}, 207 208'zip'=> { 209'display'=>'zip', 210'type'=>'application/x-zip', 211'suffix'=>'.zip', 212'format'=>'zip'}, 213); 214 215# Aliases so we understand old gitweb.snapshot values in repository 216# configuration. 217our%known_snapshot_format_aliases= ( 218'gzip'=>'tgz', 219'bzip2'=>'tbz2', 220'xz'=>'txz', 221 222# backward compatibility: legacy gitweb config support 223'x-gzip'=>undef,'gz'=>undef, 224'x-bzip2'=>undef,'bz2'=>undef, 225'x-zip'=>undef,''=>undef, 226); 227 228# Pixel sizes for icons and avatars. If the default font sizes or lineheights 229# are changed, it may be appropriate to change these values too via 230# $GITWEB_CONFIG. 231our%avatar_size= ( 232'default'=>16, 233'double'=>32 234); 235 236# Used to set the maximum load that we will still respond to gitweb queries. 237# If server load exceed this value then return "503 server busy" error. 238# If gitweb cannot determined server load, it is taken to be 0. 239# Leave it undefined (or set to 'undef') to turn off load checking. 240our$maxload=300; 241 242# configuration for 'highlight' (http://www.andre-simon.de/) 243# match by basename 244our%highlight_basename= ( 245#'Program' => 'py', 246#'Library' => 'py', 247'SConstruct'=>'py',# SCons equivalent of Makefile 248'Makefile'=>'make', 249); 250# match by extension 251our%highlight_ext= ( 252# main extensions, defining name of syntax; 253# see files in /usr/share/highlight/langDefs/ directory 254map{$_=>$_} 255qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl), 256# alternate extensions, see /etc/highlight/filetypes.conf 257'h'=>'c', 258map{$_=>'cpp'}qw(cxx c++ cc), 259map{$_=>'php'}qw(php3 php4), 260map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 261'mak'=>'make', 262map{$_=>'xml'}qw(xhtml html htm), 263); 264 265# You define site-wide feature defaults here; override them with 266# $GITWEB_CONFIG as necessary. 267our%feature= ( 268# feature => { 269# 'sub' => feature-sub (subroutine), 270# 'override' => allow-override (boolean), 271# 'default' => [ default options...] (array reference)} 272# 273# if feature is overridable (it means that allow-override has true value), 274# then feature-sub will be called with default options as parameters; 275# return value of feature-sub indicates if to enable specified feature 276# 277# if there is no 'sub' key (no feature-sub), then feature cannot be 278# overridden 279# 280# use gitweb_get_feature(<feature>) to retrieve the <feature> value 281# (an array) or gitweb_check_feature(<feature>) to check if <feature> 282# is enabled 283 284# Enable the 'blame' blob view, showing the last commit that modified 285# each line in the file. This can be very CPU-intensive. 286 287# To enable system wide have in $GITWEB_CONFIG 288# $feature{'blame'}{'default'} = [1]; 289# To have project specific config enable override in $GITWEB_CONFIG 290# $feature{'blame'}{'override'} = 1; 291# and in project config gitweb.blame = 0|1; 292'blame'=> { 293'sub'=>sub{ feature_bool('blame',@_) }, 294'override'=>0, 295'default'=> [0]}, 296 297# Enable the 'snapshot' link, providing a compressed archive of any 298# tree. This can potentially generate high traffic if you have large 299# project. 300 301# Value is a list of formats defined in %known_snapshot_formats that 302# you wish to offer. 303# To disable system wide have in $GITWEB_CONFIG 304# $feature{'snapshot'}{'default'} = []; 305# To have project specific config enable override in $GITWEB_CONFIG 306# $feature{'snapshot'}{'override'} = 1; 307# and in project config, a comma-separated list of formats or "none" 308# to disable. Example: gitweb.snapshot = tbz2,zip; 309'snapshot'=> { 310'sub'=> \&feature_snapshot, 311'override'=>0, 312'default'=> ['tgz']}, 313 314# Enable text search, which will list the commits which match author, 315# committer or commit text to a given string. Enabled by default. 316# Project specific override is not supported. 317'search'=> { 318'override'=>0, 319'default'=> [1]}, 320 321# Enable grep search, which will list the files in currently selected 322# tree containing the given string. Enabled by default. This can be 323# potentially CPU-intensive, of course. 324 325# To enable system wide have in $GITWEB_CONFIG 326# $feature{'grep'}{'default'} = [1]; 327# To have project specific config enable override in $GITWEB_CONFIG 328# $feature{'grep'}{'override'} = 1; 329# and in project config gitweb.grep = 0|1; 330'grep'=> { 331'sub'=>sub{ feature_bool('grep',@_) }, 332'override'=>0, 333'default'=> [1]}, 334 335# Enable the pickaxe search, which will list the commits that modified 336# a given string in a file. This can be practical and quite faster 337# alternative to 'blame', but still potentially CPU-intensive. 338 339# To enable system wide have in $GITWEB_CONFIG 340# $feature{'pickaxe'}{'default'} = [1]; 341# To have project specific config enable override in $GITWEB_CONFIG 342# $feature{'pickaxe'}{'override'} = 1; 343# and in project config gitweb.pickaxe = 0|1; 344'pickaxe'=> { 345'sub'=>sub{ feature_bool('pickaxe',@_) }, 346'override'=>0, 347'default'=> [1]}, 348 349# Enable showing size of blobs in a 'tree' view, in a separate 350# column, similar to what 'ls -l' does. This cost a bit of IO. 351 352# To disable system wide have in $GITWEB_CONFIG 353# $feature{'show-sizes'}{'default'} = [0]; 354# To have project specific config enable override in $GITWEB_CONFIG 355# $feature{'show-sizes'}{'override'} = 1; 356# and in project config gitweb.showsizes = 0|1; 357'show-sizes'=> { 358'sub'=>sub{ feature_bool('showsizes',@_) }, 359'override'=>0, 360'default'=> [1]}, 361 362# Make gitweb use an alternative format of the URLs which can be 363# more readable and natural-looking: project name is embedded 364# directly in the path and the query string contains other 365# auxiliary information. All gitweb installations recognize 366# URL in either format; this configures in which formats gitweb 367# generates links. 368 369# To enable system wide have in $GITWEB_CONFIG 370# $feature{'pathinfo'}{'default'} = [1]; 371# Project specific override is not supported. 372 373# Note that you will need to change the default location of CSS, 374# favicon, logo and possibly other files to an absolute URL. Also, 375# if gitweb.cgi serves as your indexfile, you will need to force 376# $my_uri to contain the script name in your $GITWEB_CONFIG. 377'pathinfo'=> { 378'override'=>0, 379'default'=> [0]}, 380 381# Make gitweb consider projects in project root subdirectories 382# to be forks of existing projects. Given project $projname.git, 383# projects matching $projname/*.git will not be shown in the main 384# projects list, instead a '+' mark will be added to $projname 385# there and a 'forks' view will be enabled for the project, listing 386# all the forks. If project list is taken from a file, forks have 387# to be listed after the main project. 388 389# To enable system wide have in $GITWEB_CONFIG 390# $feature{'forks'}{'default'} = [1]; 391# Project specific override is not supported. 392'forks'=> { 393'override'=>0, 394'default'=> [0]}, 395 396# Insert custom links to the action bar of all project pages. 397# This enables you mainly to link to third-party scripts integrating 398# into gitweb; e.g. git-browser for graphical history representation 399# or custom web-based repository administration interface. 400 401# The 'default' value consists of a list of triplets in the form 402# (label, link, position) where position is the label after which 403# to insert the link and link is a format string where %n expands 404# to the project name, %f to the project path within the filesystem, 405# %h to the current hash (h gitweb parameter) and %b to the current 406# hash base (hb gitweb parameter); %% expands to %. 407 408# To enable system wide have in $GITWEB_CONFIG e.g. 409# $feature{'actions'}{'default'} = [('graphiclog', 410# '/git-browser/by-commit.html?r=%n', 'summary')]; 411# Project specific override is not supported. 412'actions'=> { 413'override'=>0, 414'default'=> []}, 415 416# Allow gitweb scan project content tags described in ctags/ 417# of project repository, and display the popular Web 2.0-ish 418# "tag cloud" near the project list. Note that this is something 419# COMPLETELY different from the normal Git tags. 420 421# gitweb by itself can show existing tags, but it does not handle 422# tagging itself; you need an external application for that. 423# For an example script, check Girocco's cgi/tagproj.cgi. 424# You may want to install the HTML::TagCloud Perl module to get 425# a pretty tag cloud instead of just a list of tags. 426 427# To enable system wide have in $GITWEB_CONFIG 428# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 429# Project specific override is not supported. 430'ctags'=> { 431'override'=>0, 432'default'=> [0]}, 433 434# The maximum number of patches in a patchset generated in patch 435# view. Set this to 0 or undef to disable patch view, or to a 436# negative number to remove any limit. 437 438# To disable system wide have in $GITWEB_CONFIG 439# $feature{'patches'}{'default'} = [0]; 440# To have project specific config enable override in $GITWEB_CONFIG 441# $feature{'patches'}{'override'} = 1; 442# and in project config gitweb.patches = 0|n; 443# where n is the maximum number of patches allowed in a patchset. 444'patches'=> { 445'sub'=> \&feature_patches, 446'override'=>0, 447'default'=> [16]}, 448 449# Avatar support. When this feature is enabled, views such as 450# shortlog or commit will display an avatar associated with 451# the email of the committer(s) and/or author(s). 452 453# Currently available providers are gravatar and picon. 454# If an unknown provider is specified, the feature is disabled. 455 456# Gravatar depends on Digest::MD5. 457# Picon currently relies on the indiana.edu database. 458 459# To enable system wide have in $GITWEB_CONFIG 460# $feature{'avatar'}{'default'} = ['<provider>']; 461# where <provider> is either gravatar or picon. 462# To have project specific config enable override in $GITWEB_CONFIG 463# $feature{'avatar'}{'override'} = 1; 464# and in project config gitweb.avatar = <provider>; 465'avatar'=> { 466'sub'=> \&feature_avatar, 467'override'=>0, 468'default'=> ['']}, 469 470# Enable displaying how much time and how many git commands 471# it took to generate and display page. Disabled by default. 472# Project specific override is not supported. 473'timed'=> { 474'override'=>0, 475'default'=> [0]}, 476 477# Enable turning some links into links to actions which require 478# JavaScript to run (like 'blame_incremental'). Not enabled by 479# default. Project specific override is currently not supported. 480'javascript-actions'=> { 481'override'=>0, 482'default'=> [0]}, 483 484# Syntax highlighting support. This is based on Daniel Svensson's 485# and Sham Chukoury's work in gitweb-xmms2.git. 486# It requires the 'highlight' program present in $PATH, 487# and therefore is disabled by default. 488 489# To enable system wide have in $GITWEB_CONFIG 490# $feature{'highlight'}{'default'} = [1]; 491 492'highlight'=> { 493'sub'=>sub{ feature_bool('highlight',@_) }, 494'override'=>0, 495'default'=> [0]}, 496 497# Enable displaying of remote heads in the heads list 498 499# To enable system wide have in $GITWEB_CONFIG 500# $feature{'remote_heads'}{'default'} = [1]; 501# To have project specific config enable override in $GITWEB_CONFIG 502# $feature{'remote_heads'}{'override'} = 1; 503# and in project config gitweb.remote_heads = 0|1; 504'remote_heads'=> { 505'sub'=>sub{ feature_bool('remote_heads',@_) }, 506'override'=>0, 507'default'=> [0]}, 508); 509 510sub gitweb_get_feature { 511my($name) =@_; 512return unlessexists$feature{$name}; 513my($sub,$override,@defaults) = ( 514$feature{$name}{'sub'}, 515$feature{$name}{'override'}, 516@{$feature{$name}{'default'}}); 517# project specific override is possible only if we have project 518our$git_dir;# global variable, declared later 519if(!$override|| !defined$git_dir) { 520return@defaults; 521} 522if(!defined$sub) { 523warn"feature$nameis not overridable"; 524return@defaults; 525} 526return$sub->(@defaults); 527} 528 529# A wrapper to check if a given feature is enabled. 530# With this, you can say 531# 532# my $bool_feat = gitweb_check_feature('bool_feat'); 533# gitweb_check_feature('bool_feat') or somecode; 534# 535# instead of 536# 537# my ($bool_feat) = gitweb_get_feature('bool_feat'); 538# (gitweb_get_feature('bool_feat'))[0] or somecode; 539# 540sub gitweb_check_feature { 541return(gitweb_get_feature(@_))[0]; 542} 543 544 545sub feature_bool { 546my$key=shift; 547my($val) = git_get_project_config($key,'--bool'); 548 549if(!defined$val) { 550return($_[0]); 551}elsif($valeq'true') { 552return(1); 553}elsif($valeq'false') { 554return(0); 555} 556} 557 558sub feature_snapshot { 559my(@fmts) =@_; 560 561my($val) = git_get_project_config('snapshot'); 562 563if($val) { 564@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 565} 566 567return@fmts; 568} 569 570sub feature_patches { 571my@val= (git_get_project_config('patches','--int')); 572 573if(@val) { 574return@val; 575} 576 577return($_[0]); 578} 579 580sub feature_avatar { 581my@val= (git_get_project_config('avatar')); 582 583return@val?@val:@_; 584} 585 586# checking HEAD file with -e is fragile if the repository was 587# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 588# and then pruned. 589sub check_head_link { 590my($dir) =@_; 591my$headfile="$dir/HEAD"; 592return((-e $headfile) || 593(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 594} 595 596sub check_export_ok { 597my($dir) =@_; 598return(check_head_link($dir) && 599(!$export_ok|| -e "$dir/$export_ok") && 600(!$export_auth_hook||$export_auth_hook->($dir))); 601} 602 603# process alternate names for backward compatibility 604# filter out unsupported (unknown) snapshot formats 605sub filter_snapshot_fmts { 606my@fmts=@_; 607 608@fmts=map{ 609exists$known_snapshot_format_aliases{$_} ? 610$known_snapshot_format_aliases{$_} :$_}@fmts; 611@fmts=grep{ 612exists$known_snapshot_formats{$_} && 613!$known_snapshot_formats{$_}{'disabled'}}@fmts; 614} 615 616our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 617sub evaluate_gitweb_config { 618our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 619our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 620# die if there are errors parsing config file 621if(-e $GITWEB_CONFIG) { 622do$GITWEB_CONFIG; 623die$@if$@; 624}elsif(-e $GITWEB_CONFIG_SYSTEM) { 625do$GITWEB_CONFIG_SYSTEM; 626die$@if$@; 627} 628} 629 630# Get loadavg of system, to compare against $maxload. 631# Currently it requires '/proc/loadavg' present to get loadavg; 632# if it is not present it returns 0, which means no load checking. 633sub get_loadavg { 634if( -e '/proc/loadavg'){ 635open my$fd,'<','/proc/loadavg' 636orreturn0; 637my@load=split(/\s+/,scalar<$fd>); 638close$fd; 639 640# The first three columns measure CPU and IO utilization of the last one, 641# five, and 10 minute periods. The fourth column shows the number of 642# currently running processes and the total number of processes in the m/n 643# format. The last column displays the last process ID used. 644return$load[0] ||0; 645} 646# additional checks for load average should go here for things that don't export 647# /proc/loadavg 648 649return0; 650} 651 652# version of the core git binary 653our$git_version; 654sub evaluate_git_version { 655our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 656$number_of_git_cmds++; 657} 658 659sub check_loadavg { 660if(defined$maxload&& get_loadavg() >$maxload) { 661 die_error(503,"The load average on the server is too high"); 662} 663} 664 665# ====================================================================== 666# input validation and dispatch 667 668# input parameters can be collected from a variety of sources (presently, CGI 669# and PATH_INFO), so we define an %input_params hash that collects them all 670# together during validation: this allows subsequent uses (e.g. href()) to be 671# agnostic of the parameter origin 672 673our%input_params= (); 674 675# input parameters are stored with the long parameter name as key. This will 676# also be used in the href subroutine to convert parameters to their CGI 677# equivalent, and since the href() usage is the most frequent one, we store 678# the name -> CGI key mapping here, instead of the reverse. 679# 680# XXX: Warning: If you touch this, check the search form for updating, 681# too. 682 683our@cgi_param_mapping= ( 684 project =>"p", 685 action =>"a", 686 file_name =>"f", 687 file_parent =>"fp", 688 hash =>"h", 689 hash_parent =>"hp", 690 hash_base =>"hb", 691 hash_parent_base =>"hpb", 692 page =>"pg", 693 order =>"o", 694 searchtext =>"s", 695 searchtype =>"st", 696 snapshot_format =>"sf", 697 extra_options =>"opt", 698 search_use_regexp =>"sr", 699# this must be last entry (for manipulation from JavaScript) 700 javascript =>"js" 701); 702our%cgi_param_mapping=@cgi_param_mapping; 703 704# we will also need to know the possible actions, for validation 705our%actions= ( 706"blame"=> \&git_blame, 707"blame_incremental"=> \&git_blame_incremental, 708"blame_data"=> \&git_blame_data, 709"blobdiff"=> \&git_blobdiff, 710"blobdiff_plain"=> \&git_blobdiff_plain, 711"blob"=> \&git_blob, 712"blob_plain"=> \&git_blob_plain, 713"commitdiff"=> \&git_commitdiff, 714"commitdiff_plain"=> \&git_commitdiff_plain, 715"commit"=> \&git_commit, 716"forks"=> \&git_forks, 717"heads"=> \&git_heads, 718"history"=> \&git_history, 719"log"=> \&git_log, 720"patch"=> \&git_patch, 721"patches"=> \&git_patches, 722"rss"=> \&git_rss, 723"atom"=> \&git_atom, 724"search"=> \&git_search, 725"search_help"=> \&git_search_help, 726"shortlog"=> \&git_shortlog, 727"summary"=> \&git_summary, 728"tag"=> \&git_tag, 729"tags"=> \&git_tags, 730"tree"=> \&git_tree, 731"snapshot"=> \&git_snapshot, 732"object"=> \&git_object, 733# those below don't need $project 734"opml"=> \&git_opml, 735"project_list"=> \&git_project_list, 736"project_index"=> \&git_project_index, 737); 738 739# finally, we have the hash of allowed extra_options for the commands that 740# allow them 741our%allowed_options= ( 742"--no-merges"=> [qw(rss atom log shortlog history)], 743); 744 745# fill %input_params with the CGI parameters. All values except for 'opt' 746# should be single values, but opt can be an array. We should probably 747# build an array of parameters that can be multi-valued, but since for the time 748# being it's only this one, we just single it out 749sub evaluate_query_params { 750our$cgi; 751 752while(my($name,$symbol) =each%cgi_param_mapping) { 753if($symboleq'opt') { 754$input_params{$name} = [$cgi->param($symbol) ]; 755}else{ 756$input_params{$name} =$cgi->param($symbol); 757} 758} 759} 760 761# now read PATH_INFO and update the parameter list for missing parameters 762sub evaluate_path_info { 763return ifdefined$input_params{'project'}; 764return if!$path_info; 765$path_info=~ s,^/+,,; 766return if!$path_info; 767 768# find which part of PATH_INFO is project 769my$project=$path_info; 770$project=~ s,/+$,,; 771while($project&& !check_head_link("$projectroot/$project")) { 772$project=~ s,/*[^/]*$,,; 773} 774return unless$project; 775$input_params{'project'} =$project; 776 777# do not change any parameters if an action is given using the query string 778return if$input_params{'action'}; 779$path_info=~ s,^\Q$project\E/*,,; 780 781# next, check if we have an action 782my$action=$path_info; 783$action=~ s,/.*$,,; 784if(exists$actions{$action}) { 785$path_info=~ s,^$action/*,,; 786$input_params{'action'} =$action; 787} 788 789# list of actions that want hash_base instead of hash, but can have no 790# pathname (f) parameter 791my@wants_base= ( 792'tree', 793'history', 794); 795 796# we want to catch, among others 797# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 798my($parentrefname,$parentpathname,$refname,$pathname) = 799($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 800 801# first, analyze the 'current' part 802if(defined$pathname) { 803# we got "branch:filename" or "branch:dir/" 804# we could use git_get_type(branch:pathname), but: 805# - it needs $git_dir 806# - it does a git() call 807# - the convention of terminating directories with a slash 808# makes it superfluous 809# - embedding the action in the PATH_INFO would make it even 810# more superfluous 811$pathname=~ s,^/+,,; 812if(!$pathname||substr($pathname, -1)eq"/") { 813$input_params{'action'} ||="tree"; 814$pathname=~ s,/$,,; 815}else{ 816# the default action depends on whether we had parent info 817# or not 818if($parentrefname) { 819$input_params{'action'} ||="blobdiff_plain"; 820}else{ 821$input_params{'action'} ||="blob_plain"; 822} 823} 824$input_params{'hash_base'} ||=$refname; 825$input_params{'file_name'} ||=$pathname; 826}elsif(defined$refname) { 827# we got "branch". In this case we have to choose if we have to 828# set hash or hash_base. 829# 830# Most of the actions without a pathname only want hash to be 831# set, except for the ones specified in @wants_base that want 832# hash_base instead. It should also be noted that hand-crafted 833# links having 'history' as an action and no pathname or hash 834# set will fail, but that happens regardless of PATH_INFO. 835if(defined$parentrefname) { 836# if there is parent let the default be 'shortlog' action 837# (for http://git.example.com/repo.git/A..B links); if there 838# is no parent, dispatch will detect type of object and set 839# action appropriately if required (if action is not set) 840$input_params{'action'} ||="shortlog"; 841} 842if($input_params{'action'} && 843grep{$_eq$input_params{'action'} }@wants_base) { 844$input_params{'hash_base'} ||=$refname; 845}else{ 846$input_params{'hash'} ||=$refname; 847} 848} 849 850# next, handle the 'parent' part, if present 851if(defined$parentrefname) { 852# a missing pathspec defaults to the 'current' filename, allowing e.g. 853# someproject/blobdiff/oldrev..newrev:/filename 854if($parentpathname) { 855$parentpathname=~ s,^/+,,; 856$parentpathname=~ s,/$,,; 857$input_params{'file_parent'} ||=$parentpathname; 858}else{ 859$input_params{'file_parent'} ||=$input_params{'file_name'}; 860} 861# we assume that hash_parent_base is wanted if a path was specified, 862# or if the action wants hash_base instead of hash 863if(defined$input_params{'file_parent'} || 864grep{$_eq$input_params{'action'} }@wants_base) { 865$input_params{'hash_parent_base'} ||=$parentrefname; 866}else{ 867$input_params{'hash_parent'} ||=$parentrefname; 868} 869} 870 871# for the snapshot action, we allow URLs in the form 872# $project/snapshot/$hash.ext 873# where .ext determines the snapshot and gets removed from the 874# passed $refname to provide the $hash. 875# 876# To be able to tell that $refname includes the format extension, we 877# require the following two conditions to be satisfied: 878# - the hash input parameter MUST have been set from the $refname part 879# of the URL (i.e. they must be equal) 880# - the snapshot format MUST NOT have been defined already (e.g. from 881# CGI parameter sf) 882# It's also useless to try any matching unless $refname has a dot, 883# so we check for that too 884if(defined$input_params{'action'} && 885$input_params{'action'}eq'snapshot'&& 886defined$refname&&index($refname,'.') != -1&& 887$refnameeq$input_params{'hash'} && 888!defined$input_params{'snapshot_format'}) { 889# We loop over the known snapshot formats, checking for 890# extensions. Allowed extensions are both the defined suffix 891# (which includes the initial dot already) and the snapshot 892# format key itself, with a prepended dot 893while(my($fmt,$opt) =each%known_snapshot_formats) { 894my$hash=$refname; 895unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 896next; 897} 898my$sfx=$1; 899# a valid suffix was found, so set the snapshot format 900# and reset the hash parameter 901$input_params{'snapshot_format'} =$fmt; 902$input_params{'hash'} =$hash; 903# we also set the format suffix to the one requested 904# in the URL: this way a request for e.g. .tgz returns 905# a .tgz instead of a .tar.gz 906$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 907last; 908} 909} 910} 911 912our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 913$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 914$searchtext,$search_regexp); 915sub evaluate_and_validate_params { 916our$action=$input_params{'action'}; 917if(defined$action) { 918if(!validate_action($action)) { 919 die_error(400,"Invalid action parameter"); 920} 921} 922 923# parameters which are pathnames 924our$project=$input_params{'project'}; 925if(defined$project) { 926if(!validate_project($project)) { 927undef$project; 928 die_error(404,"No such project"); 929} 930} 931 932our$file_name=$input_params{'file_name'}; 933if(defined$file_name) { 934if(!validate_pathname($file_name)) { 935 die_error(400,"Invalid file parameter"); 936} 937} 938 939our$file_parent=$input_params{'file_parent'}; 940if(defined$file_parent) { 941if(!validate_pathname($file_parent)) { 942 die_error(400,"Invalid file parent parameter"); 943} 944} 945 946# parameters which are refnames 947our$hash=$input_params{'hash'}; 948if(defined$hash) { 949if(!validate_refname($hash)) { 950 die_error(400,"Invalid hash parameter"); 951} 952} 953 954our$hash_parent=$input_params{'hash_parent'}; 955if(defined$hash_parent) { 956if(!validate_refname($hash_parent)) { 957 die_error(400,"Invalid hash parent parameter"); 958} 959} 960 961our$hash_base=$input_params{'hash_base'}; 962if(defined$hash_base) { 963if(!validate_refname($hash_base)) { 964 die_error(400,"Invalid hash base parameter"); 965} 966} 967 968our@extra_options= @{$input_params{'extra_options'}}; 969# @extra_options is always defined, since it can only be (currently) set from 970# CGI, and $cgi->param() returns the empty array in array context if the param 971# is not set 972foreachmy$opt(@extra_options) { 973if(not exists$allowed_options{$opt}) { 974 die_error(400,"Invalid option parameter"); 975} 976if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 977 die_error(400,"Invalid option parameter for this action"); 978} 979} 980 981our$hash_parent_base=$input_params{'hash_parent_base'}; 982if(defined$hash_parent_base) { 983if(!validate_refname($hash_parent_base)) { 984 die_error(400,"Invalid hash parent base parameter"); 985} 986} 987 988# other parameters 989our$page=$input_params{'page'}; 990if(defined$page) { 991if($page=~m/[^0-9]/) { 992 die_error(400,"Invalid page parameter"); 993} 994} 995 996our$searchtype=$input_params{'searchtype'}; 997if(defined$searchtype) { 998if($searchtype=~m/[^a-z]/) { 999 die_error(400,"Invalid searchtype parameter");1000}1001}10021003our$search_use_regexp=$input_params{'search_use_regexp'};10041005our$searchtext=$input_params{'searchtext'};1006our$search_regexp;1007if(defined$searchtext) {1008if(length($searchtext) <2) {1009 die_error(403,"At least two characters are required for search parameter");1010}1011$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1012}1013}10141015# path to the current git repository1016our$git_dir;1017sub evaluate_git_dir {1018our$git_dir="$projectroot/$project"if$project;1019}10201021our(@snapshot_fmts,$git_avatar);1022sub configure_gitweb_features {1023# list of supported snapshot formats1024our@snapshot_fmts= gitweb_get_feature('snapshot');1025@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10261027# check that the avatar feature is set to a known provider name,1028# and for each provider check if the dependencies are satisfied.1029# if the provider name is invalid or the dependencies are not met,1030# reset $git_avatar to the empty string.1031our($git_avatar) = gitweb_get_feature('avatar');1032if($git_avatareq'gravatar') {1033$git_avatar=''unless(eval{require Digest::MD5;1; });1034}elsif($git_avatareq'picon') {1035# no dependencies1036}else{1037$git_avatar='';1038}1039}10401041# custom error handler: 'die <message>' is Internal Server Error1042sub handle_errors_html {1043my$msg=shift;# it is already HTML escaped10441045# to avoid infinite loop where error occurs in die_error,1046# change handler to default handler, disabling handle_errors_html1047 set_message("Error occured when inside die_error:\n$msg");10481049# you cannot jump out of die_error when called as error handler;1050# the subroutine set via CGI::Carp::set_message is called _after_1051# HTTP headers are already written, so it cannot write them itself1052 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1053}1054set_message(\&handle_errors_html);10551056# dispatch1057sub dispatch {1058if(!defined$action) {1059if(defined$hash) {1060$action= git_get_type($hash);1061}elsif(defined$hash_base&&defined$file_name) {1062$action= git_get_type("$hash_base:$file_name");1063}elsif(defined$project) {1064$action='summary';1065}else{1066$action='project_list';1067}1068}1069if(!defined($actions{$action})) {1070 die_error(400,"Unknown action");1071}1072if($action!~m/^(?:opml|project_list|project_index)$/&&1073!$project) {1074 die_error(400,"Project needed");1075}1076$actions{$action}->();1077}10781079sub reset_timer {1080our$t0= [Time::HiRes::gettimeofday()]1081ifdefined$t0;1082our$number_of_git_cmds=0;1083}10841085sub run_request {1086 reset_timer();10871088 evaluate_uri();1089 evaluate_gitweb_config();1090 check_loadavg();10911092# $projectroot and $projects_list might be set in gitweb config file1093$projects_list||=$projectroot;10941095 evaluate_query_params();1096 evaluate_path_info();1097 evaluate_and_validate_params();1098 evaluate_git_dir();10991100 configure_gitweb_features();11011102 dispatch();1103}11041105our$is_last_request=sub{1};1106our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1107our$CGI='CGI';1108our$cgi;1109sub configure_as_fcgi {1110require CGI::Fast;1111our$CGI='CGI::Fast';11121113my$request_number=0;1114# let each child service 100 requests1115our$is_last_request=sub{ ++$request_number>100};1116}1117sub evaluate_argv {1118my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1119 configure_as_fcgi()1120if$script_name=~/\.fcgi$/;11211122return unless(@ARGV);11231124require Getopt::Long;1125 Getopt::Long::GetOptions(1126'fastcgi|fcgi|f'=> \&configure_as_fcgi,1127'nproc|n=i'=>sub{1128my($arg,$val) =@_;1129return unlesseval{require FCGI::ProcManager;1; };1130my$proc_manager= FCGI::ProcManager->new({1131 n_processes =>$val,1132});1133our$pre_listen_hook=sub{$proc_manager->pm_manage() };1134our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1135our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1136},1137);1138}11391140sub run {1141 evaluate_argv();1142 evaluate_git_version();11431144$pre_listen_hook->()1145if$pre_listen_hook;11461147 REQUEST:1148while($cgi=$CGI->new()) {1149$pre_dispatch_hook->()1150if$pre_dispatch_hook;11511152 run_request();11531154$post_dispatch_hook->()1155if$post_dispatch_hook;11561157last REQUEST if($is_last_request->());1158}11591160 DONE_GITWEB:11611;1162}11631164run();11651166if(defined caller) {1167# wrapped in a subroutine processing requests,1168# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1169return;1170}else{1171# pure CGI script, serving single request1172exit;1173}11741175## ======================================================================1176## action links11771178# possible values of extra options1179# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1180# -replay => 1 - start from a current view (replay with modifications)1181# -path_info => 0|1 - don't use/use path_info URL (if possible)1182sub href {1183my%params=@_;1184# default is to use -absolute url() i.e. $my_uri1185my$href=$params{-full} ?$my_url:$my_uri;11861187$params{'project'} =$projectunlessexists$params{'project'};11881189if($params{-replay}) {1190while(my($name,$symbol) =each%cgi_param_mapping) {1191if(!exists$params{$name}) {1192$params{$name} =$input_params{$name};1193}1194}1195}11961197my$use_pathinfo= gitweb_check_feature('pathinfo');1198if(defined$params{'project'} &&1199(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1200# try to put as many parameters as possible in PATH_INFO:1201# - project name1202# - action1203# - hash_parent or hash_parent_base:/file_parent1204# - hash or hash_base:/filename1205# - the snapshot_format as an appropriate suffix12061207# When the script is the root DirectoryIndex for the domain,1208# $href here would be something like http://gitweb.example.com/1209# Thus, we strip any trailing / from $href, to spare us double1210# slashes in the final URL1211$href=~ s,/$,,;12121213# Then add the project name, if present1214$href.="/".esc_url($params{'project'});1215delete$params{'project'};12161217# since we destructively absorb parameters, we keep this1218# boolean that remembers if we're handling a snapshot1219my$is_snapshot=$params{'action'}eq'snapshot';12201221# Summary just uses the project path URL, any other action is1222# added to the URL1223if(defined$params{'action'}) {1224$href.="/".esc_url($params{'action'})unless$params{'action'}eq'summary';1225delete$params{'action'};1226}12271228# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1229# stripping nonexistent or useless pieces1230$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1231||$params{'hash_parent'} ||$params{'hash'});1232if(defined$params{'hash_base'}) {1233if(defined$params{'hash_parent_base'}) {1234$href.= esc_url($params{'hash_parent_base'});1235# skip the file_parent if it's the same as the file_name1236if(defined$params{'file_parent'}) {1237if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1238delete$params{'file_parent'};1239}elsif($params{'file_parent'} !~/\.\./) {1240$href.=":/".esc_url($params{'file_parent'});1241delete$params{'file_parent'};1242}1243}1244$href.="..";1245delete$params{'hash_parent'};1246delete$params{'hash_parent_base'};1247}elsif(defined$params{'hash_parent'}) {1248$href.= esc_url($params{'hash_parent'})."..";1249delete$params{'hash_parent'};1250}12511252$href.= esc_url($params{'hash_base'});1253if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1254$href.=":/".esc_url($params{'file_name'});1255delete$params{'file_name'};1256}1257delete$params{'hash'};1258delete$params{'hash_base'};1259}elsif(defined$params{'hash'}) {1260$href.= esc_url($params{'hash'});1261delete$params{'hash'};1262}12631264# If the action was a snapshot, we can absorb the1265# snapshot_format parameter too1266if($is_snapshot) {1267my$fmt=$params{'snapshot_format'};1268# snapshot_format should always be defined when href()1269# is called, but just in case some code forgets, we1270# fall back to the default1271$fmt||=$snapshot_fmts[0];1272$href.=$known_snapshot_formats{$fmt}{'suffix'};1273delete$params{'snapshot_format'};1274}1275}12761277# now encode the parameters explicitly1278my@result= ();1279for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1280my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1281if(defined$params{$name}) {1282if(ref($params{$name})eq"ARRAY") {1283foreachmy$par(@{$params{$name}}) {1284push@result,$symbol."=". esc_param($par);1285}1286}else{1287push@result,$symbol."=". esc_param($params{$name});1288}1289}1290}1291$href.="?".join(';',@result)ifscalar@result;12921293return$href;1294}129512961297## ======================================================================1298## validation, quoting/unquoting and escaping12991300sub validate_action {1301my$input=shift||returnundef;1302returnundefunlessexists$actions{$input};1303return$input;1304}13051306sub validate_project {1307my$input=shift||returnundef;1308if(!validate_pathname($input) ||1309!(-d "$projectroot/$input") ||1310!check_export_ok("$projectroot/$input") ||1311($strict_export&& !project_in_list($input))) {1312returnundef;1313}else{1314return$input;1315}1316}13171318sub validate_pathname {1319my$input=shift||returnundef;13201321# no '.' or '..' as elements of path, i.e. no '.' nor '..'1322# at the beginning, at the end, and between slashes.1323# also this catches doubled slashes1324if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1325returnundef;1326}1327# no null characters1328if($input=~m!\0!) {1329returnundef;1330}1331return$input;1332}13331334sub validate_refname {1335my$input=shift||returnundef;13361337# textual hashes are O.K.1338if($input=~m/^[0-9a-fA-F]{40}$/) {1339return$input;1340}1341# it must be correct pathname1342$input= validate_pathname($input)1343orreturnundef;1344# restrictions on ref name according to git-check-ref-format1345if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1346returnundef;1347}1348return$input;1349}13501351# decode sequences of octets in utf8 into Perl's internal form,1352# which is utf-8 with utf8 flag set if needed. gitweb writes out1353# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1354sub to_utf8 {1355my$str=shift;1356returnundefunlessdefined$str;1357if(utf8::valid($str)) {1358 utf8::decode($str);1359return$str;1360}else{1361return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1362}1363}13641365# quote unsafe chars, but keep the slash, even when it's not1366# correct, but quoted slashes look too horrible in bookmarks1367sub esc_param {1368my$str=shift;1369returnundefunlessdefined$str;1370$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1371$str=~s/ /\+/g;1372return$str;1373}13741375# quote unsafe chars in whole URL, so some characters cannot be quoted1376sub esc_url {1377my$str=shift;1378returnundefunlessdefined$str;1379$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1380$str=~s/ /\+/g;1381return$str;1382}13831384# replace invalid utf8 character with SUBSTITUTION sequence1385sub esc_html {1386my$str=shift;1387my%opts=@_;13881389returnundefunlessdefined$str;13901391$str= to_utf8($str);1392$str=$cgi->escapeHTML($str);1393if($opts{'-nbsp'}) {1394$str=~s/ / /g;1395}1396$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1397return$str;1398}13991400# quote control characters and escape filename to HTML1401sub esc_path {1402my$str=shift;1403my%opts=@_;14041405returnundefunlessdefined$str;14061407$str= to_utf8($str);1408$str=$cgi->escapeHTML($str);1409if($opts{'-nbsp'}) {1410$str=~s/ / /g;1411}1412$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1413return$str;1414}14151416# Make control characters "printable", using character escape codes (CEC)1417sub quot_cec {1418my$cntrl=shift;1419my%opts=@_;1420my%es= (# character escape codes, aka escape sequences1421"\t"=>'\t',# tab (HT)1422"\n"=>'\n',# line feed (LF)1423"\r"=>'\r',# carrige return (CR)1424"\f"=>'\f',# form feed (FF)1425"\b"=>'\b',# backspace (BS)1426"\a"=>'\a',# alarm (bell) (BEL)1427"\e"=>'\e',# escape (ESC)1428"\013"=>'\v',# vertical tab (VT)1429"\000"=>'\0',# nul character (NUL)1430);1431my$chr= ( (exists$es{$cntrl})1432?$es{$cntrl}1433:sprintf('\%2x',ord($cntrl)) );1434if($opts{-nohtml}) {1435return$chr;1436}else{1437return"<span class=\"cntrl\">$chr</span>";1438}1439}14401441# Alternatively use unicode control pictures codepoints,1442# Unicode "printable representation" (PR)1443sub quot_upr {1444my$cntrl=shift;1445my%opts=@_;14461447my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1448if($opts{-nohtml}) {1449return$chr;1450}else{1451return"<span class=\"cntrl\">$chr</span>";1452}1453}14541455# git may return quoted and escaped filenames1456sub unquote {1457my$str=shift;14581459sub unq {1460my$seq=shift;1461my%es= (# character escape codes, aka escape sequences1462't'=>"\t",# tab (HT, TAB)1463'n'=>"\n",# newline (NL)1464'r'=>"\r",# return (CR)1465'f'=>"\f",# form feed (FF)1466'b'=>"\b",# backspace (BS)1467'a'=>"\a",# alarm (bell) (BEL)1468'e'=>"\e",# escape (ESC)1469'v'=>"\013",# vertical tab (VT)1470);14711472if($seq=~m/^[0-7]{1,3}$/) {1473# octal char sequence1474returnchr(oct($seq));1475}elsif(exists$es{$seq}) {1476# C escape sequence, aka character escape code1477return$es{$seq};1478}1479# quoted ordinary character1480return$seq;1481}14821483if($str=~m/^"(.*)"$/) {1484# needs unquoting1485$str=$1;1486$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1487}1488return$str;1489}14901491# escape tabs (convert tabs to spaces)1492sub untabify {1493my$line=shift;14941495while((my$pos=index($line,"\t")) != -1) {1496if(my$count= (8- ($pos%8))) {1497my$spaces=' ' x $count;1498$line=~s/\t/$spaces/;1499}1500}15011502return$line;1503}15041505sub project_in_list {1506my$project=shift;1507my@list= git_get_projects_list();1508return@list&&scalar(grep{$_->{'path'}eq$project}@list);1509}15101511## ----------------------------------------------------------------------1512## HTML aware string manipulation15131514# Try to chop given string on a word boundary between position1515# $len and $len+$add_len. If there is no word boundary there,1516# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1517# (marking chopped part) would be longer than given string.1518sub chop_str {1519my$str=shift;1520my$len=shift;1521my$add_len=shift||10;1522my$where=shift||'right';# 'left' | 'center' | 'right'15231524# Make sure perl knows it is utf8 encoded so we don't1525# cut in the middle of a utf8 multibyte char.1526$str= to_utf8($str);15271528# allow only $len chars, but don't cut a word if it would fit in $add_len1529# if it doesn't fit, cut it if it's still longer than the dots we would add1530# remove chopped character entities entirely15311532# when chopping in the middle, distribute $len into left and right part1533# return early if chopping wouldn't make string shorter1534if($whereeq'center') {1535return$strif($len+5>=length($str));# filler is length 51536$len=int($len/2);1537}else{1538return$strif($len+4>=length($str));# filler is length 41539}15401541# regexps: ending and beginning with word part up to $add_len1542my$endre=qr/.{$len}\w{0,$add_len}/;1543my$begre=qr/\w{0,$add_len}.{$len}/;15441545if($whereeq'left') {1546$str=~m/^(.*?)($begre)$/;1547my($lead,$body) = ($1,$2);1548if(length($lead) >4) {1549$lead=" ...";1550}1551return"$lead$body";15521553}elsif($whereeq'center') {1554$str=~m/^($endre)(.*)$/;1555my($left,$str) = ($1,$2);1556$str=~m/^(.*?)($begre)$/;1557my($mid,$right) = ($1,$2);1558if(length($mid) >5) {1559$mid=" ... ";1560}1561return"$left$mid$right";15621563}else{1564$str=~m/^($endre)(.*)$/;1565my$body=$1;1566my$tail=$2;1567if(length($tail) >4) {1568$tail="... ";1569}1570return"$body$tail";1571}1572}15731574# takes the same arguments as chop_str, but also wraps a <span> around the1575# result with a title attribute if it does get chopped. Additionally, the1576# string is HTML-escaped.1577sub chop_and_escape_str {1578my($str) =@_;15791580my$chopped= chop_str(@_);1581if($choppedeq$str) {1582return esc_html($chopped);1583}else{1584$str=~s/[[:cntrl:]]/?/g;1585return$cgi->span({-title=>$str}, esc_html($chopped));1586}1587}15881589## ----------------------------------------------------------------------1590## functions returning short strings15911592# CSS class for given age value (in seconds)1593sub age_class {1594my$age=shift;15951596if(!defined$age) {1597return"noage";1598}elsif($age<60*60*2) {1599return"age0";1600}elsif($age<60*60*24*2) {1601return"age1";1602}else{1603return"age2";1604}1605}16061607# convert age in seconds to "nn units ago" string1608sub age_string {1609my$age=shift;1610my$age_str;16111612if($age>60*60*24*365*2) {1613$age_str= (int$age/60/60/24/365);1614$age_str.=" years ago";1615}elsif($age>60*60*24*(365/12)*2) {1616$age_str=int$age/60/60/24/(365/12);1617$age_str.=" months ago";1618}elsif($age>60*60*24*7*2) {1619$age_str=int$age/60/60/24/7;1620$age_str.=" weeks ago";1621}elsif($age>60*60*24*2) {1622$age_str=int$age/60/60/24;1623$age_str.=" days ago";1624}elsif($age>60*60*2) {1625$age_str=int$age/60/60;1626$age_str.=" hours ago";1627}elsif($age>60*2) {1628$age_str=int$age/60;1629$age_str.=" min ago";1630}elsif($age>2) {1631$age_str=int$age;1632$age_str.=" sec ago";1633}else{1634$age_str.=" right now";1635}1636return$age_str;1637}16381639useconstant{1640 S_IFINVALID =>0030000,1641 S_IFGITLINK =>0160000,1642};16431644# submodule/subproject, a commit object reference1645sub S_ISGITLINK {1646my$mode=shift;16471648return(($mode& S_IFMT) == S_IFGITLINK)1649}16501651# convert file mode in octal to symbolic file mode string1652sub mode_str {1653my$mode=oct shift;16541655if(S_ISGITLINK($mode)) {1656return'm---------';1657}elsif(S_ISDIR($mode& S_IFMT)) {1658return'drwxr-xr-x';1659}elsif(S_ISLNK($mode)) {1660return'lrwxrwxrwx';1661}elsif(S_ISREG($mode)) {1662# git cares only about the executable bit1663if($mode& S_IXUSR) {1664return'-rwxr-xr-x';1665}else{1666return'-rw-r--r--';1667};1668}else{1669return'----------';1670}1671}16721673# convert file mode in octal to file type string1674sub file_type {1675my$mode=shift;16761677if($mode!~m/^[0-7]+$/) {1678return$mode;1679}else{1680$mode=oct$mode;1681}16821683if(S_ISGITLINK($mode)) {1684return"submodule";1685}elsif(S_ISDIR($mode& S_IFMT)) {1686return"directory";1687}elsif(S_ISLNK($mode)) {1688return"symlink";1689}elsif(S_ISREG($mode)) {1690return"file";1691}else{1692return"unknown";1693}1694}16951696# convert file mode in octal to file type description string1697sub file_type_long {1698my$mode=shift;16991700if($mode!~m/^[0-7]+$/) {1701return$mode;1702}else{1703$mode=oct$mode;1704}17051706if(S_ISGITLINK($mode)) {1707return"submodule";1708}elsif(S_ISDIR($mode& S_IFMT)) {1709return"directory";1710}elsif(S_ISLNK($mode)) {1711return"symlink";1712}elsif(S_ISREG($mode)) {1713if($mode& S_IXUSR) {1714return"executable";1715}else{1716return"file";1717};1718}else{1719return"unknown";1720}1721}172217231724## ----------------------------------------------------------------------1725## functions returning short HTML fragments, or transforming HTML fragments1726## which don't belong to other sections17271728# format line of commit message.1729sub format_log_line_html {1730my$line=shift;17311732$line= esc_html($line, -nbsp=>1);1733$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1734$cgi->a({-href => href(action=>"object", hash=>$1),1735-class=>"text"},$1);1736}eg;17371738return$line;1739}17401741# format marker of refs pointing to given object17421743# the destination action is chosen based on object type and current context:1744# - for annotated tags, we choose the tag view unless it's the current view1745# already, in which case we go to shortlog view1746# - for other refs, we keep the current view if we're in history, shortlog or1747# log view, and select shortlog otherwise1748sub format_ref_marker {1749my($refs,$id) =@_;1750my$markers='';17511752if(defined$refs->{$id}) {1753foreachmy$ref(@{$refs->{$id}}) {1754# this code exploits the fact that non-lightweight tags are the1755# only indirect objects, and that they are the only objects for which1756# we want to use tag instead of shortlog as action1757my($type,$name) =qw();1758my$indirect= ($ref=~s/\^\{\}$//);1759# e.g. tags/v2.6.11 or heads/next1760if($ref=~m!^(.*?)s?/(.*)$!) {1761$type=$1;1762$name=$2;1763}else{1764$type="ref";1765$name=$ref;1766}17671768my$class=$type;1769$class.=" indirect"if$indirect;17701771my$dest_action="shortlog";17721773if($indirect) {1774$dest_action="tag"unless$actioneq"tag";1775}elsif($action=~/^(history|(short)?log)$/) {1776$dest_action=$action;1777}17781779my$dest="";1780$dest.="refs/"unless$ref=~ m!^refs/!;1781$dest.=$ref;17821783my$link=$cgi->a({1784-href => href(1785 action=>$dest_action,1786 hash=>$dest1787)},$name);17881789$markers.=" <span class=\"$class\"title=\"$ref\">".1790$link."</span>";1791}1792}17931794if($markers) {1795return' <span class="refs">'.$markers.'</span>';1796}else{1797return"";1798}1799}18001801# format, perhaps shortened and with markers, title line1802sub format_subject_html {1803my($long,$short,$href,$extra) =@_;1804$extra=''unlessdefined($extra);18051806if(length($short) <length($long)) {1807$long=~s/[[:cntrl:]]/?/g;1808return$cgi->a({-href =>$href, -class=>"list subject",1809-title => to_utf8($long)},1810 esc_html($short)) .$extra;1811}else{1812return$cgi->a({-href =>$href, -class=>"list subject"},1813 esc_html($long)) .$extra;1814}1815}18161817# Rather than recomputing the url for an email multiple times, we cache it1818# after the first hit. This gives a visible benefit in views where the avatar1819# for the same email is used repeatedly (e.g. shortlog).1820# The cache is shared by all avatar engines (currently gravatar only), which1821# are free to use it as preferred. Since only one avatar engine is used for any1822# given page, there's no risk for cache conflicts.1823our%avatar_cache= ();18241825# Compute the picon url for a given email, by using the picon search service over at1826# http://www.cs.indiana.edu/picons/search.html1827sub picon_url {1828my$email=lc shift;1829if(!$avatar_cache{$email}) {1830my($user,$domain) =split('@',$email);1831$avatar_cache{$email} =1832"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1833"$domain/$user/".1834"users+domains+unknown/up/single";1835}1836return$avatar_cache{$email};1837}18381839# Compute the gravatar url for a given email, if it's not in the cache already.1840# Gravatar stores only the part of the URL before the size, since that's the1841# one computationally more expensive. This also allows reuse of the cache for1842# different sizes (for this particular engine).1843sub gravatar_url {1844my$email=lc shift;1845my$size=shift;1846$avatar_cache{$email} ||=1847"http://www.gravatar.com/avatar/".1848 Digest::MD5::md5_hex($email) ."?s=";1849return$avatar_cache{$email} .$size;1850}18511852# Insert an avatar for the given $email at the given $size if the feature1853# is enabled.1854sub git_get_avatar {1855my($email,%opts) =@_;1856my$pre_white= ($opts{-pad_before} ?" ":"");1857my$post_white= ($opts{-pad_after} ?" ":"");1858$opts{-size} ||='default';1859my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1860my$url="";1861if($git_avatareq'gravatar') {1862$url= gravatar_url($email,$size);1863}elsif($git_avatareq'picon') {1864$url= picon_url($email);1865}1866# Other providers can be added by extending the if chain, defining $url1867# as needed. If no variant puts something in $url, we assume avatars1868# are completely disabled/unavailable.1869if($url) {1870return$pre_white.1871"<img width=\"$size\"".1872"class=\"avatar\"".1873"src=\"$url\"".1874"alt=\"\"".1875"/>".$post_white;1876}else{1877return"";1878}1879}18801881sub format_search_author {1882my($author,$searchtype,$displaytext) =@_;1883my$have_search= gitweb_check_feature('search');18841885if($have_search) {1886my$performed="";1887if($searchtypeeq'author') {1888$performed="authored";1889}elsif($searchtypeeq'committer') {1890$performed="committed";1891}18921893return$cgi->a({-href => href(action=>"search", hash=>$hash,1894 searchtext=>$author,1895 searchtype=>$searchtype),class=>"list",1896 title=>"Search for commits$performedby$author"},1897$displaytext);18981899}else{1900return$displaytext;1901}1902}19031904# format the author name of the given commit with the given tag1905# the author name is chopped and escaped according to the other1906# optional parameters (see chop_str).1907sub format_author_html {1908my$tag=shift;1909my$co=shift;1910my$author= chop_and_escape_str($co->{'author_name'},@_);1911return"<$tagclass=\"author\">".1912 format_search_author($co->{'author_name'},"author",1913 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1914$author) .1915"</$tag>";1916}19171918# format git diff header line, i.e. "diff --(git|combined|cc) ..."1919sub format_git_diff_header_line {1920my$line=shift;1921my$diffinfo=shift;1922my($from,$to) =@_;19231924if($diffinfo->{'nparents'}) {1925# combined diff1926$line=~s!^(diff (.*?) )"?.*$!$1!;1927if($to->{'href'}) {1928$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1929 esc_path($to->{'file'}));1930}else{# file was deleted (no href)1931$line.= esc_path($to->{'file'});1932}1933}else{1934# "ordinary" diff1935$line=~s!^(diff (.*?) )"?a/.*$!$1!;1936if($from->{'href'}) {1937$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1938'a/'. esc_path($from->{'file'}));1939}else{# file was added (no href)1940$line.='a/'. esc_path($from->{'file'});1941}1942$line.=' ';1943if($to->{'href'}) {1944$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1945'b/'. esc_path($to->{'file'}));1946}else{# file was deleted1947$line.='b/'. esc_path($to->{'file'});1948}1949}19501951return"<div class=\"diff header\">$line</div>\n";1952}19531954# format extended diff header line, before patch itself1955sub format_extended_diff_header_line {1956my$line=shift;1957my$diffinfo=shift;1958my($from,$to) =@_;19591960# match <path>1961if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {1962$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},1963 esc_path($from->{'file'}));1964}1965if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {1966$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},1967 esc_path($to->{'file'}));1968}1969# match single <mode>1970if($line=~m/\s(\d{6})$/) {1971$line.='<span class="info"> ('.1972 file_type_long($1) .1973')</span>';1974}1975# match <hash>1976if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {1977# can match only for combined diff1978$line='index ';1979for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1980if($from->{'href'}[$i]) {1981$line.=$cgi->a({-href=>$from->{'href'}[$i],1982-class=>"hash"},1983substr($diffinfo->{'from_id'}[$i],0,7));1984}else{1985$line.='0' x 7;1986}1987# separator1988$line.=','if($i<$diffinfo->{'nparents'} -1);1989}1990$line.='..';1991if($to->{'href'}) {1992$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1993substr($diffinfo->{'to_id'},0,7));1994}else{1995$line.='0' x 7;1996}19971998}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {1999# can match only for ordinary diff2000my($from_link,$to_link);2001if($from->{'href'}) {2002$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2003substr($diffinfo->{'from_id'},0,7));2004}else{2005$from_link='0' x 7;2006}2007if($to->{'href'}) {2008$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2009substr($diffinfo->{'to_id'},0,7));2010}else{2011$to_link='0' x 7;2012}2013my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2014$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2015}20162017return$line."<br/>\n";2018}20192020# format from-file/to-file diff header2021sub format_diff_from_to_header {2022my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2023my$line;2024my$result='';20252026$line=$from_line;2027#assert($line =~ m/^---/) if DEBUG;2028# no extra formatting for "^--- /dev/null"2029if(!$diffinfo->{'nparents'}) {2030# ordinary (single parent) diff2031if($line=~m!^--- "?a/!) {2032if($from->{'href'}) {2033$line='--- a/'.2034$cgi->a({-href=>$from->{'href'}, -class=>"path"},2035 esc_path($from->{'file'}));2036}else{2037$line='--- a/'.2038 esc_path($from->{'file'});2039}2040}2041$result.= qq!<div class="diff from_file">$line</div>\n!;20422043}else{2044# combined diff (merge commit)2045for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2046if($from->{'href'}[$i]) {2047$line='--- '.2048$cgi->a({-href=>href(action=>"blobdiff",2049 hash_parent=>$diffinfo->{'from_id'}[$i],2050 hash_parent_base=>$parents[$i],2051 file_parent=>$from->{'file'}[$i],2052 hash=>$diffinfo->{'to_id'},2053 hash_base=>$hash,2054 file_name=>$to->{'file'}),2055-class=>"path",2056-title=>"diff". ($i+1)},2057$i+1) .2058'/'.2059$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2060 esc_path($from->{'file'}[$i]));2061}else{2062$line='--- /dev/null';2063}2064$result.= qq!<div class="diff from_file">$line</div>\n!;2065}2066}20672068$line=$to_line;2069#assert($line =~ m/^\+\+\+/) if DEBUG;2070# no extra formatting for "^+++ /dev/null"2071if($line=~m!^\+\+\+ "?b/!) {2072if($to->{'href'}) {2073$line='+++ b/'.2074$cgi->a({-href=>$to->{'href'}, -class=>"path"},2075 esc_path($to->{'file'}));2076}else{2077$line='+++ b/'.2078 esc_path($to->{'file'});2079}2080}2081$result.= qq!<div class="diff to_file">$line</div>\n!;20822083return$result;2084}20852086# create note for patch simplified by combined diff2087sub format_diff_cc_simplified {2088my($diffinfo,@parents) =@_;2089my$result='';20902091$result.="<div class=\"diff header\">".2092"diff --cc ";2093if(!is_deleted($diffinfo)) {2094$result.=$cgi->a({-href => href(action=>"blob",2095 hash_base=>$hash,2096 hash=>$diffinfo->{'to_id'},2097 file_name=>$diffinfo->{'to_file'}),2098-class=>"path"},2099 esc_path($diffinfo->{'to_file'}));2100}else{2101$result.= esc_path($diffinfo->{'to_file'});2102}2103$result.="</div>\n".# class="diff header"2104"<div class=\"diff nodifferences\">".2105"Simple merge".2106"</div>\n";# class="diff nodifferences"21072108return$result;2109}21102111# format patch (diff) line (not to be used for diff headers)2112sub format_diff_line {2113my$line=shift;2114my($from,$to) =@_;2115my$diff_class="";21162117chomp$line;21182119if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2120# combined diff2121my$prefix=substr($line,0,scalar@{$from->{'href'}});2122if($line=~m/^\@{3}/) {2123$diff_class=" chunk_header";2124}elsif($line=~m/^\\/) {2125$diff_class=" incomplete";2126}elsif($prefix=~tr/+/+/) {2127$diff_class=" add";2128}elsif($prefix=~tr/-/-/) {2129$diff_class=" rem";2130}2131}else{2132# assume ordinary diff2133my$char=substr($line,0,1);2134if($chareq'+') {2135$diff_class=" add";2136}elsif($chareq'-') {2137$diff_class=" rem";2138}elsif($chareq'@') {2139$diff_class=" chunk_header";2140}elsif($chareq"\\") {2141$diff_class=" incomplete";2142}2143}2144$line= untabify($line);2145if($from&&$to&&$line=~m/^\@{2} /) {2146my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2147$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21482149$from_lines=0unlessdefined$from_lines;2150$to_lines=0unlessdefined$to_lines;21512152if($from->{'href'}) {2153$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2154-class=>"list"},$from_text);2155}2156if($to->{'href'}) {2157$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2158-class=>"list"},$to_text);2159}2160$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2161"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2162return"<div class=\"diff$diff_class\">$line</div>\n";2163}elsif($from&&$to&&$line=~m/^\@{3}/) {2164my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2165my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);21662167@from_text=split(' ',$ranges);2168for(my$i=0;$i<@from_text; ++$i) {2169($from_start[$i],$from_nlines[$i]) =2170(split(',',substr($from_text[$i],1)),0);2171}21722173$to_text=pop@from_text;2174$to_start=pop@from_start;2175$to_nlines=pop@from_nlines;21762177$line="<span class=\"chunk_info\">$prefix";2178for(my$i=0;$i<@from_text; ++$i) {2179if($from->{'href'}[$i]) {2180$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2181-class=>"list"},$from_text[$i]);2182}else{2183$line.=$from_text[$i];2184}2185$line.=" ";2186}2187if($to->{'href'}) {2188$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2189-class=>"list"},$to_text);2190}else{2191$line.=$to_text;2192}2193$line.="$prefix</span>".2194"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2195return"<div class=\"diff$diff_class\">$line</div>\n";2196}2197return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2198}21992200# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2201# linked. Pass the hash of the tree/commit to snapshot.2202sub format_snapshot_links {2203my($hash) =@_;2204my$num_fmts=@snapshot_fmts;2205if($num_fmts>1) {2206# A parenthesized list of links bearing format names.2207# e.g. "snapshot (_tar.gz_ _zip_)"2208return"snapshot (".join(' ',map2209$cgi->a({2210-href => href(2211 action=>"snapshot",2212 hash=>$hash,2213 snapshot_format=>$_2214)2215},$known_snapshot_formats{$_}{'display'})2216,@snapshot_fmts) .")";2217}elsif($num_fmts==1) {2218# A single "snapshot" link whose tooltip bears the format name.2219# i.e. "_snapshot_"2220my($fmt) =@snapshot_fmts;2221return2222$cgi->a({2223-href => href(2224 action=>"snapshot",2225 hash=>$hash,2226 snapshot_format=>$fmt2227),2228-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2229},"snapshot");2230}else{# $num_fmts == 02231returnundef;2232}2233}22342235## ......................................................................2236## functions returning values to be passed, perhaps after some2237## transformation, to other functions; e.g. returning arguments to href()22382239# returns hash to be passed to href to generate gitweb URL2240# in -title key it returns description of link2241sub get_feed_info {2242my$format=shift||'Atom';2243my%res= (action =>lc($format));22442245# feed links are possible only for project views2246return unless(defined$project);2247# some views should link to OPML, or to generic project feed,2248# or don't have specific feed yet (so they should use generic)2249return if($action=~/^(?:tags|heads|forks|tag|search)$/x);22502251my$branch;2252# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2253# from tag links; this also makes possible to detect branch links2254if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2255(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2256$branch=$1;2257}2258# find log type for feed description (title)2259my$type='log';2260if(defined$file_name) {2261$type="history of$file_name";2262$type.="/"if($actioneq'tree');2263$type.=" on '$branch'"if(defined$branch);2264}else{2265$type="log of$branch"if(defined$branch);2266}22672268$res{-title} =$type;2269$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2270$res{'file_name'} =$file_name;22712272return%res;2273}22742275## ----------------------------------------------------------------------2276## git utility subroutines, invoking git commands22772278# returns path to the core git executable and the --git-dir parameter as list2279sub git_cmd {2280$number_of_git_cmds++;2281return$GIT,'--git-dir='.$git_dir;2282}22832284# quote the given arguments for passing them to the shell2285# quote_command("command", "arg 1", "arg with ' and ! characters")2286# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2287# Try to avoid using this function wherever possible.2288sub quote_command {2289returnjoin(' ',2290map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2291}22922293# get HEAD ref of given project as hash2294sub git_get_head_hash {2295return git_get_full_hash(shift,'HEAD');2296}22972298sub git_get_full_hash {2299return git_get_hash(@_);2300}23012302sub git_get_short_hash {2303return git_get_hash(@_,'--short=7');2304}23052306sub git_get_hash {2307my($project,$hash,@options) =@_;2308my$o_git_dir=$git_dir;2309my$retval=undef;2310$git_dir="$projectroot/$project";2311if(open my$fd,'-|', git_cmd(),'rev-parse',2312'--verify','-q',@options,$hash) {2313$retval= <$fd>;2314chomp$retvalifdefined$retval;2315close$fd;2316}2317if(defined$o_git_dir) {2318$git_dir=$o_git_dir;2319}2320return$retval;2321}23222323# get type of given object2324sub git_get_type {2325my$hash=shift;23262327open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2328my$type= <$fd>;2329close$fdorreturn;2330chomp$type;2331return$type;2332}23332334# repository configuration2335our$config_file='';2336our%config;23372338# store multiple values for single key as anonymous array reference2339# single values stored directly in the hash, not as [ <value> ]2340sub hash_set_multi {2341my($hash,$key,$value) =@_;23422343if(!exists$hash->{$key}) {2344$hash->{$key} =$value;2345}elsif(!ref$hash->{$key}) {2346$hash->{$key} = [$hash->{$key},$value];2347}else{2348push@{$hash->{$key}},$value;2349}2350}23512352# return hash of git project configuration2353# optionally limited to some section, e.g. 'gitweb'2354sub git_parse_project_config {2355my$section_regexp=shift;2356my%config;23572358local$/="\0";23592360open my$fh,"-|", git_cmd(),"config",'-z','-l',2361orreturn;23622363while(my$keyval= <$fh>) {2364chomp$keyval;2365my($key,$value) =split(/\n/,$keyval,2);23662367 hash_set_multi(\%config,$key,$value)2368if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2369}2370close$fh;23712372return%config;2373}23742375# convert config value to boolean: 'true' or 'false'2376# no value, number > 0, 'true' and 'yes' values are true2377# rest of values are treated as false (never as error)2378sub config_to_bool {2379my$val=shift;23802381return1if!defined$val;# section.key23822383# strip leading and trailing whitespace2384$val=~s/^\s+//;2385$val=~s/\s+$//;23862387return(($val=~/^\d+$/&&$val) ||# section.key = 12388($val=~/^(?:true|yes)$/i));# section.key = true2389}23902391# convert config value to simple decimal number2392# an optional value suffix of 'k', 'm', or 'g' will cause the value2393# to be multiplied by 1024, 1048576, or 10737418242394sub config_to_int {2395my$val=shift;23962397# strip leading and trailing whitespace2398$val=~s/^\s+//;2399$val=~s/\s+$//;24002401if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2402$unit=lc($unit);2403# unknown unit is treated as 12404return$num* ($uniteq'g'?1073741824:2405$uniteq'm'?1048576:2406$uniteq'k'?1024:1);2407}2408return$val;2409}24102411# convert config value to array reference, if needed2412sub config_to_multi {2413my$val=shift;24142415returnref($val) ?$val: (defined($val) ? [$val] : []);2416}24172418sub git_get_project_config {2419my($key,$type) =@_;24202421return unlessdefined$git_dir;24222423# key sanity check2424return unless($key);2425$key=~s/^gitweb\.//;2426return if($key=~m/\W/);24272428# type sanity check2429if(defined$type) {2430$type=~s/^--//;2431$type=undef2432unless($typeeq'bool'||$typeeq'int');2433}24342435# get config2436if(!defined$config_file||2437$config_filene"$git_dir/config") {2438%config= git_parse_project_config('gitweb');2439$config_file="$git_dir/config";2440}24412442# check if config variable (key) exists2443return unlessexists$config{"gitweb.$key"};24442445# ensure given type2446if(!defined$type) {2447return$config{"gitweb.$key"};2448}elsif($typeeq'bool') {2449# backward compatibility: 'git config --bool' returns true/false2450return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2451}elsif($typeeq'int') {2452return config_to_int($config{"gitweb.$key"});2453}2454return$config{"gitweb.$key"};2455}24562457# get hash of given path at given ref2458sub git_get_hash_by_path {2459my$base=shift;2460my$path=shift||returnundef;2461my$type=shift;24622463$path=~ s,/+$,,;24642465open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2466or die_error(500,"Open git-ls-tree failed");2467my$line= <$fd>;2468close$fdorreturnundef;24692470if(!defined$line) {2471# there is no tree or hash given by $path at $base2472returnundef;2473}24742475#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2476$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2477if(defined$type&&$typene$2) {2478# type doesn't match2479returnundef;2480}2481return$3;2482}24832484# get path of entry with given hash at given tree-ish (ref)2485# used to get 'from' filename for combined diff (merge commit) for renames2486sub git_get_path_by_hash {2487my$base=shift||return;2488my$hash=shift||return;24892490local$/="\0";24912492open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2493orreturnundef;2494while(my$line= <$fd>) {2495chomp$line;24962497#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2498#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2499if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2500close$fd;2501return$1;2502}2503}2504close$fd;2505returnundef;2506}25072508## ......................................................................2509## git utility functions, directly accessing git repository25102511sub git_get_project_description {2512my$path=shift;25132514$git_dir="$projectroot/$path";2515open my$fd,'<',"$git_dir/description"2516orreturn git_get_project_config('description');2517my$descr= <$fd>;2518close$fd;2519if(defined$descr) {2520chomp$descr;2521}2522return$descr;2523}25242525sub git_get_project_ctags {2526my$path=shift;2527my$ctags= {};25282529$git_dir="$projectroot/$path";2530opendir my$dh,"$git_dir/ctags"2531orreturn$ctags;2532foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2533open my$ct,'<',$_ornext;2534my$val= <$ct>;2535chomp$val;2536close$ct;2537my$ctag=$_;$ctag=~ s#.*/##;2538$ctags->{$ctag} =$val;2539}2540closedir$dh;2541$ctags;2542}25432544sub git_populate_project_tagcloud {2545my$ctags=shift;25462547# First, merge different-cased tags; tags vote on casing2548my%ctags_lc;2549foreach(keys%$ctags) {2550$ctags_lc{lc$_}->{count} +=$ctags->{$_};2551if(not$ctags_lc{lc$_}->{topcount}2552or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2553$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2554$ctags_lc{lc$_}->{topname} =$_;2555}2556}25572558my$cloud;2559if(eval{require HTML::TagCloud;1; }) {2560$cloud= HTML::TagCloud->new;2561foreach(sort keys%ctags_lc) {2562# Pad the title with spaces so that the cloud looks2563# less crammed.2564my$title=$ctags_lc{$_}->{topname};2565$title=~s/ / /g;2566$title=~s/^/ /g;2567$title=~s/$/ /g;2568$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2569}2570}else{2571$cloud= \%ctags_lc;2572}2573$cloud;2574}25752576sub git_show_project_tagcloud {2577my($cloud,$count) =@_;2578print STDERR ref($cloud)."..\n";2579if(ref$cloudeq'HTML::TagCloud') {2580return$cloud->html_and_css($count);2581}else{2582my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2583return'<p align="center">'.join(', ',map{2584"<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"2585}splice(@tags,0,$count)) .'</p>';2586}2587}25882589sub git_get_project_url_list {2590my$path=shift;25912592$git_dir="$projectroot/$path";2593open my$fd,'<',"$git_dir/cloneurl"2594orreturnwantarray?2595@{ config_to_multi(git_get_project_config('url')) } :2596 config_to_multi(git_get_project_config('url'));2597my@git_project_url_list=map{chomp;$_} <$fd>;2598close$fd;25992600returnwantarray?@git_project_url_list: \@git_project_url_list;2601}26022603sub git_get_projects_list {2604my($filter) =@_;2605my@list;26062607$filter||='';2608$filter=~s/\.git$//;26092610my$check_forks= gitweb_check_feature('forks');26112612if(-d $projects_list) {2613# search in directory2614my$dir=$projects_list. ($filter?"/$filter":'');2615# remove the trailing "/"2616$dir=~s!/+$!!;2617my$pfxlen=length("$dir");2618my$pfxdepth= ($dir=~tr!/!!);26192620 File::Find::find({2621 follow_fast =>1,# follow symbolic links2622 follow_skip =>2,# ignore duplicates2623 dangling_symlinks =>0,# ignore dangling symlinks, silently2624 wanted =>sub{2625# global variables2626our$project_maxdepth;2627our$projectroot;2628# skip project-list toplevel, if we get it.2629return if(m!^[/.]$!);2630# only directories can be git repositories2631return unless(-d $_);2632# don't traverse too deep (Find is super slow on os x)2633if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2634$File::Find::prune =1;2635return;2636}26372638my$subdir=substr($File::Find::name,$pfxlen+1);2639# we check related file in $projectroot2640my$path= ($filter?"$filter/":'') .$subdir;2641if(check_export_ok("$projectroot/$path")) {2642push@list, { path =>$path};2643$File::Find::prune =1;2644}2645},2646},"$dir");26472648}elsif(-f $projects_list) {2649# read from file(url-encoded):2650# 'git%2Fgit.git Linus+Torvalds'2651# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2652# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2653my%paths;2654open my$fd,'<',$projects_listorreturn;2655 PROJECT:2656while(my$line= <$fd>) {2657chomp$line;2658my($path,$owner) =split' ',$line;2659$path= unescape($path);2660$owner= unescape($owner);2661if(!defined$path) {2662next;2663}2664if($filterne'') {2665# looking for forks;2666my$pfx=substr($path,0,length($filter));2667if($pfxne$filter) {2668next PROJECT;2669}2670my$sfx=substr($path,length($filter));2671if($sfx!~/^\/.*\.git$/) {2672next PROJECT;2673}2674}elsif($check_forks) {2675 PATH:2676foreachmy$filter(keys%paths) {2677# looking for forks;2678my$pfx=substr($path,0,length($filter));2679if($pfxne$filter) {2680next PATH;2681}2682my$sfx=substr($path,length($filter));2683if($sfx!~/^\/.*\.git$/) {2684next PATH;2685}2686# is a fork, don't include it in2687# the list2688next PROJECT;2689}2690}2691if(check_export_ok("$projectroot/$path")) {2692my$pr= {2693 path =>$path,2694 owner => to_utf8($owner),2695};2696push@list,$pr;2697(my$forks_path=$path) =~s/\.git$//;2698$paths{$forks_path}++;2699}2700}2701close$fd;2702}2703return@list;2704}27052706our$gitweb_project_owner=undef;2707sub git_get_project_list_from_file {27082709return if(defined$gitweb_project_owner);27102711$gitweb_project_owner= {};2712# read from file (url-encoded):2713# 'git%2Fgit.git Linus+Torvalds'2714# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2715# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2716if(-f $projects_list) {2717open(my$fd,'<',$projects_list);2718while(my$line= <$fd>) {2719chomp$line;2720my($pr,$ow) =split' ',$line;2721$pr= unescape($pr);2722$ow= unescape($ow);2723$gitweb_project_owner->{$pr} = to_utf8($ow);2724}2725close$fd;2726}2727}27282729sub git_get_project_owner {2730my$project=shift;2731my$owner;27322733returnundefunless$project;2734$git_dir="$projectroot/$project";27352736if(!defined$gitweb_project_owner) {2737 git_get_project_list_from_file();2738}27392740if(exists$gitweb_project_owner->{$project}) {2741$owner=$gitweb_project_owner->{$project};2742}2743if(!defined$owner){2744$owner= git_get_project_config('owner');2745}2746if(!defined$owner) {2747$owner= get_file_owner("$git_dir");2748}27492750return$owner;2751}27522753sub git_get_last_activity {2754my($path) =@_;2755my$fd;27562757$git_dir="$projectroot/$path";2758open($fd,"-|", git_cmd(),'for-each-ref',2759'--format=%(committer)',2760'--sort=-committerdate',2761'--count=1',2762'refs/heads')orreturn;2763my$most_recent= <$fd>;2764close$fdorreturn;2765if(defined$most_recent&&2766$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2767my$timestamp=$1;2768my$age=time-$timestamp;2769return($age, age_string($age));2770}2771return(undef,undef);2772}27732774sub git_get_references {2775my$type=shift||"";2776my%refs;2777# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112778# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2779open my$fd,"-|", git_cmd(),"show-ref","--dereference",2780($type? ("--","refs/$type") : ())# use -- <pattern> if $type2781orreturn;27822783while(my$line= <$fd>) {2784chomp$line;2785if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2786if(defined$refs{$1}) {2787push@{$refs{$1}},$2;2788}else{2789$refs{$1} = [$2];2790}2791}2792}2793close$fdorreturn;2794return \%refs;2795}27962797sub git_get_rev_name_tags {2798my$hash=shift||returnundef;27992800open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2801orreturn;2802my$name_rev= <$fd>;2803close$fd;28042805if($name_rev=~ m|^$hash tags/(.*)$|) {2806return$1;2807}else{2808# catches also '$hash undefined' output2809returnundef;2810}2811}28122813## ----------------------------------------------------------------------2814## parse to hash functions28152816sub parse_date {2817my$epoch=shift;2818my$tz=shift||"-0000";28192820my%date;2821my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2822my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2823my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2824$date{'hour'} =$hour;2825$date{'minute'} =$min;2826$date{'mday'} =$mday;2827$date{'day'} =$days[$wday];2828$date{'month'} =$months[$mon];2829$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2830$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2831$date{'mday-time'} =sprintf"%d%s%02d:%02d",2832$mday,$months[$mon],$hour,$min;2833$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",28341900+$year,1+$mon,$mday,$hour,$min,$sec;28352836$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2837my$local=$epoch+ ((int$1+ ($2/60)) *3600);2838($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2839$date{'hour_local'} =$hour;2840$date{'minute_local'} =$min;2841$date{'tz_local'} =$tz;2842$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",28431900+$year,$mon+1,$mday,2844$hour,$min,$sec,$tz);2845return%date;2846}28472848sub parse_tag {2849my$tag_id=shift;2850my%tag;2851my@comment;28522853open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2854$tag{'id'} =$tag_id;2855while(my$line= <$fd>) {2856chomp$line;2857if($line=~m/^object ([0-9a-fA-F]{40})$/) {2858$tag{'object'} =$1;2859}elsif($line=~m/^type (.+)$/) {2860$tag{'type'} =$1;2861}elsif($line=~m/^tag (.+)$/) {2862$tag{'name'} =$1;2863}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2864$tag{'author'} =$1;2865$tag{'author_epoch'} =$2;2866$tag{'author_tz'} =$3;2867if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2868$tag{'author_name'} =$1;2869$tag{'author_email'} =$2;2870}else{2871$tag{'author_name'} =$tag{'author'};2872}2873}elsif($line=~m/--BEGIN/) {2874push@comment,$line;2875last;2876}elsif($lineeq"") {2877last;2878}2879}2880push@comment, <$fd>;2881$tag{'comment'} = \@comment;2882close$fdorreturn;2883if(!defined$tag{'name'}) {2884return2885};2886return%tag2887}28882889sub parse_commit_text {2890my($commit_text,$withparents) =@_;2891my@commit_lines=split'\n',$commit_text;2892my%co;28932894pop@commit_lines;# Remove '\0'28952896if(!@commit_lines) {2897return;2898}28992900my$header=shift@commit_lines;2901if($header!~m/^[0-9a-fA-F]{40}/) {2902return;2903}2904($co{'id'},my@parents) =split' ',$header;2905while(my$line=shift@commit_lines) {2906last if$lineeq"\n";2907if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2908$co{'tree'} =$1;2909}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2910push@parents,$1;2911}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2912$co{'author'} = to_utf8($1);2913$co{'author_epoch'} =$2;2914$co{'author_tz'} =$3;2915if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2916$co{'author_name'} =$1;2917$co{'author_email'} =$2;2918}else{2919$co{'author_name'} =$co{'author'};2920}2921}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2922$co{'committer'} = to_utf8($1);2923$co{'committer_epoch'} =$2;2924$co{'committer_tz'} =$3;2925if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2926$co{'committer_name'} =$1;2927$co{'committer_email'} =$2;2928}else{2929$co{'committer_name'} =$co{'committer'};2930}2931}2932}2933if(!defined$co{'tree'}) {2934return;2935};2936$co{'parents'} = \@parents;2937$co{'parent'} =$parents[0];29382939foreachmy$title(@commit_lines) {2940$title=~s/^ //;2941if($titlene"") {2942$co{'title'} = chop_str($title,80,5);2943# remove leading stuff of merges to make the interesting part visible2944if(length($title) >50) {2945$title=~s/^Automatic //;2946$title=~s/^merge (of|with) /Merge ... /i;2947if(length($title) >50) {2948$title=~s/(http|rsync):\/\///;2949}2950if(length($title) >50) {2951$title=~s/(master|www|rsync)\.//;2952}2953if(length($title) >50) {2954$title=~s/kernel.org:?//;2955}2956if(length($title) >50) {2957$title=~s/\/pub\/scm//;2958}2959}2960$co{'title_short'} = chop_str($title,50,5);2961last;2962}2963}2964if(!defined$co{'title'} ||$co{'title'}eq"") {2965$co{'title'} =$co{'title_short'} ='(no commit message)';2966}2967# remove added spaces2968foreachmy$line(@commit_lines) {2969$line=~s/^ //;2970}2971$co{'comment'} = \@commit_lines;29722973my$age=time-$co{'committer_epoch'};2974$co{'age'} =$age;2975$co{'age_string'} = age_string($age);2976my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});2977if($age>60*60*24*7*2) {2978$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2979$co{'age_string_age'} =$co{'age_string'};2980}else{2981$co{'age_string_date'} =$co{'age_string'};2982$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2983}2984return%co;2985}29862987sub parse_commit {2988my($commit_id) =@_;2989my%co;29902991local$/="\0";29922993open my$fd,"-|", git_cmd(),"rev-list",2994"--parents",2995"--header",2996"--max-count=1",2997$commit_id,2998"--",2999or die_error(500,"Open git-rev-list failed");3000%co= parse_commit_text(<$fd>,1);3001close$fd;30023003return%co;3004}30053006sub parse_commits {3007my($commit_id,$maxcount,$skip,$filename,@args) =@_;3008my@cos;30093010$maxcount||=1;3011$skip||=0;30123013local$/="\0";30143015open my$fd,"-|", git_cmd(),"rev-list",3016"--header",3017@args,3018("--max-count=".$maxcount),3019("--skip=".$skip),3020@extra_options,3021$commit_id,3022"--",3023($filename? ($filename) : ())3024or die_error(500,"Open git-rev-list failed");3025while(my$line= <$fd>) {3026my%co= parse_commit_text($line);3027push@cos, \%co;3028}3029close$fd;30303031returnwantarray?@cos: \@cos;3032}30333034# parse line of git-diff-tree "raw" output3035sub parse_difftree_raw_line {3036my$line=shift;3037my%res;30383039# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3040# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3041if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3042$res{'from_mode'} =$1;3043$res{'to_mode'} =$2;3044$res{'from_id'} =$3;3045$res{'to_id'} =$4;3046$res{'status'} =$5;3047$res{'similarity'} =$6;3048if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3049($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3050}else{3051$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3052}3053}3054# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3055# combined diff (for merge commit)3056elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3057$res{'nparents'} =length($1);3058$res{'from_mode'} = [split(' ',$2) ];3059$res{'to_mode'} =pop@{$res{'from_mode'}};3060$res{'from_id'} = [split(' ',$3) ];3061$res{'to_id'} =pop@{$res{'from_id'}};3062$res{'status'} = [split('',$4) ];3063$res{'to_file'} = unquote($5);3064}3065# 'c512b523472485aef4fff9e57b229d9d243c967f'3066elsif($line=~m/^([0-9a-fA-F]{40})$/) {3067$res{'commit'} =$1;3068}30693070returnwantarray?%res: \%res;3071}30723073# wrapper: return parsed line of git-diff-tree "raw" output3074# (the argument might be raw line, or parsed info)3075sub parsed_difftree_line {3076my$line_or_ref=shift;30773078if(ref($line_or_ref)eq"HASH") {3079# pre-parsed (or generated by hand)3080return$line_or_ref;3081}else{3082return parse_difftree_raw_line($line_or_ref);3083}3084}30853086# parse line of git-ls-tree output3087sub parse_ls_tree_line {3088my$line=shift;3089my%opts=@_;3090my%res;30913092if($opts{'-l'}) {3093#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3094$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;30953096$res{'mode'} =$1;3097$res{'type'} =$2;3098$res{'hash'} =$3;3099$res{'size'} =$4;3100if($opts{'-z'}) {3101$res{'name'} =$5;3102}else{3103$res{'name'} = unquote($5);3104}3105}else{3106#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3107$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;31083109$res{'mode'} =$1;3110$res{'type'} =$2;3111$res{'hash'} =$3;3112if($opts{'-z'}) {3113$res{'name'} =$4;3114}else{3115$res{'name'} = unquote($4);3116}3117}31183119returnwantarray?%res: \%res;3120}31213122# generates _two_ hashes, references to which are passed as 2 and 3 argument3123sub parse_from_to_diffinfo {3124my($diffinfo,$from,$to,@parents) =@_;31253126if($diffinfo->{'nparents'}) {3127# combined diff3128$from->{'file'} = [];3129$from->{'href'} = [];3130 fill_from_file_info($diffinfo,@parents)3131unlessexists$diffinfo->{'from_file'};3132for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3133$from->{'file'}[$i] =3134defined$diffinfo->{'from_file'}[$i] ?3135$diffinfo->{'from_file'}[$i] :3136$diffinfo->{'to_file'};3137if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3138$from->{'href'}[$i] = href(action=>"blob",3139 hash_base=>$parents[$i],3140 hash=>$diffinfo->{'from_id'}[$i],3141 file_name=>$from->{'file'}[$i]);3142}else{3143$from->{'href'}[$i] =undef;3144}3145}3146}else{3147# ordinary (not combined) diff3148$from->{'file'} =$diffinfo->{'from_file'};3149if($diffinfo->{'status'}ne"A") {# not new (added) file3150$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3151 hash=>$diffinfo->{'from_id'},3152 file_name=>$from->{'file'});3153}else{3154delete$from->{'href'};3155}3156}31573158$to->{'file'} =$diffinfo->{'to_file'};3159if(!is_deleted($diffinfo)) {# file exists in result3160$to->{'href'} = href(action=>"blob", hash_base=>$hash,3161 hash=>$diffinfo->{'to_id'},3162 file_name=>$to->{'file'});3163}else{3164delete$to->{'href'};3165}3166}31673168## ......................................................................3169## parse to array of hashes functions31703171sub git_get_heads_list {3172my$limit=shift;3173my@headslist;31743175my$remote_heads= gitweb_check_feature('remote_heads');31763177open my$fd,'-|', git_cmd(),'for-each-ref',3178($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3179'--format=%(objectname) %(refname) %(subject)%00%(committer)',3180'refs/heads', ($remote_heads?'refs/remotes': ())3181orreturn;3182while(my$line= <$fd>) {3183my%ref_item;31843185chomp$line;3186my($refinfo,$committerinfo) =split(/\0/,$line);3187my($hash,$name,$title) =split(' ',$refinfo,3);3188my($committer,$epoch,$tz) =3189($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3190$ref_item{'fullname'} =$name;3191$name=~s!^refs/(?:head|remote)s/!!;31923193$ref_item{'name'} =$name;3194$ref_item{'id'} =$hash;3195$ref_item{'title'} =$title||'(no commit message)';3196$ref_item{'epoch'} =$epoch;3197if($epoch) {3198$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3199}else{3200$ref_item{'age'} ="unknown";3201}32023203push@headslist, \%ref_item;3204}3205close$fd;32063207returnwantarray?@headslist: \@headslist;3208}32093210sub git_get_tags_list {3211my$limit=shift;3212my@tagslist;32133214open my$fd,'-|', git_cmd(),'for-each-ref',3215($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3216'--format=%(objectname) %(objecttype) %(refname) '.3217'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3218'refs/tags'3219orreturn;3220while(my$line= <$fd>) {3221my%ref_item;32223223chomp$line;3224my($refinfo,$creatorinfo) =split(/\0/,$line);3225my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3226my($creator,$epoch,$tz) =3227($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3228$ref_item{'fullname'} =$name;3229$name=~s!^refs/tags/!!;32303231$ref_item{'type'} =$type;3232$ref_item{'id'} =$id;3233$ref_item{'name'} =$name;3234if($typeeq"tag") {3235$ref_item{'subject'} =$title;3236$ref_item{'reftype'} =$reftype;3237$ref_item{'refid'} =$refid;3238}else{3239$ref_item{'reftype'} =$type;3240$ref_item{'refid'} =$id;3241}32423243if($typeeq"tag"||$typeeq"commit") {3244$ref_item{'epoch'} =$epoch;3245if($epoch) {3246$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3247}else{3248$ref_item{'age'} ="unknown";3249}3250}32513252push@tagslist, \%ref_item;3253}3254close$fd;32553256returnwantarray?@tagslist: \@tagslist;3257}32583259## ----------------------------------------------------------------------3260## filesystem-related functions32613262sub get_file_owner {3263my$path=shift;32643265my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3266my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3267if(!defined$gcos) {3268returnundef;3269}3270my$owner=$gcos;3271$owner=~s/[,;].*$//;3272return to_utf8($owner);3273}32743275# assume that file exists3276sub insert_file {3277my$filename=shift;32783279open my$fd,'<',$filename;3280print map{ to_utf8($_) } <$fd>;3281close$fd;3282}32833284## ......................................................................3285## mimetype related functions32863287sub mimetype_guess_file {3288my$filename=shift;3289my$mimemap=shift;3290-r $mimemaporreturnundef;32913292my%mimemap;3293open(my$mh,'<',$mimemap)orreturnundef;3294while(<$mh>) {3295next ifm/^#/;# skip comments3296my($mimetype,$exts) =split(/\t+/);3297if(defined$exts) {3298my@exts=split(/\s+/,$exts);3299foreachmy$ext(@exts) {3300$mimemap{$ext} =$mimetype;3301}3302}3303}3304close($mh);33053306$filename=~/\.([^.]*)$/;3307return$mimemap{$1};3308}33093310sub mimetype_guess {3311my$filename=shift;3312my$mime;3313$filename=~/\./orreturnundef;33143315if($mimetypes_file) {3316my$file=$mimetypes_file;3317if($file!~m!^/!) {# if it is relative path3318# it is relative to project3319$file="$projectroot/$project/$file";3320}3321$mime= mimetype_guess_file($filename,$file);3322}3323$mime||= mimetype_guess_file($filename,'/etc/mime.types');3324return$mime;3325}33263327sub blob_mimetype {3328my$fd=shift;3329my$filename=shift;33303331if($filename) {3332my$mime= mimetype_guess($filename);3333$mimeandreturn$mime;3334}33353336# just in case3337return$default_blob_plain_mimetypeunless$fd;33383339if(-T $fd) {3340return'text/plain';3341}elsif(!$filename) {3342return'application/octet-stream';3343}elsif($filename=~m/\.png$/i) {3344return'image/png';3345}elsif($filename=~m/\.gif$/i) {3346return'image/gif';3347}elsif($filename=~m/\.jpe?g$/i) {3348return'image/jpeg';3349}else{3350return'application/octet-stream';3351}3352}33533354sub blob_contenttype {3355my($fd,$file_name,$type) =@_;33563357$type||= blob_mimetype($fd,$file_name);3358if($typeeq'text/plain'&&defined$default_text_plain_charset) {3359$type.="; charset=$default_text_plain_charset";3360}33613362return$type;3363}33643365# guess file syntax for syntax highlighting; return undef if no highlighting3366# the name of syntax can (in the future) depend on syntax highlighter used3367sub guess_file_syntax {3368my($highlight,$mimetype,$file_name) =@_;3369returnundefunless($highlight&&defined$file_name);3370my$basename= basename($file_name,'.in');3371return$highlight_basename{$basename}3372ifexists$highlight_basename{$basename};33733374$basename=~/\.([^.]*)$/;3375my$ext=$1orreturnundef;3376return$highlight_ext{$ext}3377ifexists$highlight_ext{$ext};33783379returnundef;3380}33813382# run highlighter and return FD of its output,3383# or return original FD if no highlighting3384sub run_highlighter {3385my($fd,$highlight,$syntax) =@_;3386return$fdunless($highlight&&defined$syntax);33873388close$fd3389or die_error(404,"Reading blob failed");3390open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3391 quote_command($highlight_bin).3392" --xhtml --fragment --syntax$syntax|"3393or die_error(500,"Couldn't open file or run syntax highlighter");3394return$fd;3395}33963397## ======================================================================3398## functions printing HTML: header, footer, error page33993400sub get_page_title {3401my$title= to_utf8($site_name);34023403return$titleunless(defined$project);3404$title.=" - ". to_utf8($project);34053406return$titleunless(defined$action);3407$title.="/$action";# $action is US-ASCII (7bit ASCII)34083409return$titleunless(defined$file_name);3410$title.=" - ". esc_path($file_name);3411if($actioneq"tree"&&$file_name!~ m|/$|) {3412$title.="/";3413}34143415return$title;3416}34173418sub git_header_html {3419my$status=shift||"200 OK";3420my$expires=shift;3421my%opts=@_;34223423my$title= get_page_title();3424my$content_type;3425# require explicit support from the UA if we are to send the page as3426# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3427# we have to do this because MSIE sometimes globs '*/*', pretending to3428# support xhtml+xml but choking when it gets what it asked for.3429if(defined$cgi->http('HTTP_ACCEPT') &&3430$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3431$cgi->Accept('application/xhtml+xml') !=0) {3432$content_type='application/xhtml+xml';3433}else{3434$content_type='text/html';3435}3436print$cgi->header(-type=>$content_type, -charset =>'utf-8',3437-status=>$status, -expires =>$expires)3438unless($opts{'-no_http_header'});3439my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3440print<<EOF;3441<?xml version="1.0" encoding="utf-8"?>3442<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3443<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3444<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3445<!-- git core binaries version$git_version-->3446<head>3447<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3448<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3449<meta name="robots" content="index, nofollow"/>3450<title>$title</title>3451EOF3452# the stylesheet, favicon etc urls won't work correctly with path_info3453# unless we set the appropriate base URL3454if($ENV{'PATH_INFO'}) {3455print"<base href=\"".esc_url($base_url)."\"/>\n";3456}3457# print out each stylesheet that exist, providing backwards capability3458# for those people who defined $stylesheet in a config file3459if(defined$stylesheet) {3460print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";3461}else{3462foreachmy$stylesheet(@stylesheets) {3463next unless$stylesheet;3464print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";3465}3466}3467if(defined$project) {3468my%href_params= get_feed_info();3469if(!exists$href_params{'-title'}) {3470$href_params{'-title'} ='log';3471}34723473foreachmy$formatqw(RSS Atom){3474my$type=lc($format);3475my%link_attr= (3476'-rel'=>'alternate',3477'-title'=>"$project-$href_params{'-title'} -$formatfeed",3478'-type'=>"application/$type+xml"3479);34803481$href_params{'action'} =$type;3482$link_attr{'-href'} = href(%href_params);3483print"<link ".3484"rel=\"$link_attr{'-rel'}\"".3485"title=\"$link_attr{'-title'}\"".3486"href=\"$link_attr{'-href'}\"".3487"type=\"$link_attr{'-type'}\"".3488"/>\n";34893490$href_params{'extra_options'} ='--no-merges';3491$link_attr{'-href'} = href(%href_params);3492$link_attr{'-title'} .=' (no merges)';3493print"<link ".3494"rel=\"$link_attr{'-rel'}\"".3495"title=\"$link_attr{'-title'}\"".3496"href=\"$link_attr{'-href'}\"".3497"type=\"$link_attr{'-type'}\"".3498"/>\n";3499}35003501}else{3502printf('<link rel="alternate" title="%sprojects list" '.3503'href="%s" type="text/plain; charset=utf-8" />'."\n",3504$site_name, href(project=>undef, action=>"project_index"));3505printf('<link rel="alternate" title="%sprojects feeds" '.3506'href="%s" type="text/x-opml" />'."\n",3507$site_name, href(project=>undef, action=>"opml"));3508}3509if(defined$favicon) {3510printqq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n);3511}35123513print"</head>\n".3514"<body>\n";35153516if(defined$site_header&& -f $site_header) {3517 insert_file($site_header);3518}35193520print"<div class=\"page_header\">\n".3521$cgi->a({-href => esc_url($logo_url),3522-title =>$logo_label},3523qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));3524print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3525if(defined$project) {3526print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3527if(defined$action) {3528print" /$action";3529}3530print"\n";3531}3532print"</div>\n";35333534my$have_search= gitweb_check_feature('search');3535if(defined$project&&$have_search) {3536if(!defined$searchtext) {3537$searchtext="";3538}3539my$search_hash;3540if(defined$hash_base) {3541$search_hash=$hash_base;3542}elsif(defined$hash) {3543$search_hash=$hash;3544}else{3545$search_hash="HEAD";3546}3547my$action=$my_uri;3548my$use_pathinfo= gitweb_check_feature('pathinfo');3549if($use_pathinfo) {3550$action.="/".esc_url($project);3551}3552print$cgi->startform(-method=>"get", -action =>$action) .3553"<div class=\"search\">\n".3554(!$use_pathinfo&&3555$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3556$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3557$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3558$cgi->popup_menu(-name =>'st', -default=>'commit',3559-values=> ['commit','grep','author','committer','pickaxe']) .3560$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3561" search:\n",3562$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3563"<span title=\"Extended regular expression\">".3564$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3565-checked =>$search_use_regexp) .3566"</span>".3567"</div>".3568$cgi->end_form() ."\n";3569}3570}35713572sub git_footer_html {3573my$feed_class='rss_logo';35743575print"<div class=\"page_footer\">\n";3576if(defined$project) {3577my$descr= git_get_project_description($project);3578if(defined$descr) {3579print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3580}35813582my%href_params= get_feed_info();3583if(!%href_params) {3584$feed_class.=' generic';3585}3586$href_params{'-title'} ||='log';35873588foreachmy$formatqw(RSS Atom){3589$href_params{'action'} =lc($format);3590print$cgi->a({-href => href(%href_params),3591-title =>"$href_params{'-title'}$formatfeed",3592-class=>$feed_class},$format)."\n";3593}35943595}else{3596print$cgi->a({-href => href(project=>undef, action=>"opml"),3597-class=>$feed_class},"OPML") ." ";3598print$cgi->a({-href => href(project=>undef, action=>"project_index"),3599-class=>$feed_class},"TXT") ."\n";3600}3601print"</div>\n";# class="page_footer"36023603if(defined$t0&& gitweb_check_feature('timed')) {3604print"<div id=\"generating_info\">\n";3605print'This page took '.3606'<span id="generating_time" class="time_span">'.3607 Time::HiRes::tv_interval($t0, [Time::HiRes::gettimeofday()]).3608' seconds </span>'.3609' and '.3610'<span id="generating_cmd">'.3611$number_of_git_cmds.3612'</span> git commands '.3613" to generate.\n";3614print"</div>\n";# class="page_footer"3615}36163617if(defined$site_footer&& -f $site_footer) {3618 insert_file($site_footer);3619}36203621print qq!<script type="text/javascript" src="$javascript"></script>\n!;3622if(defined$action&&3623$actioneq'blame_incremental') {3624print qq!<script type="text/javascript">\n!.3625 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3626 qq!"!. href() .qq!");\n!.3627 qq!</script>\n!;3628}elsif(gitweb_check_feature('javascript-actions')) {3629print qq!<script type="text/javascript">\n!.3630 qq!window.onload = fixLinks;\n!.3631 qq!</script>\n!;3632}36333634print"</body>\n".3635"</html>";3636}36373638# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3639# Example: die_error(404, 'Hash not found')3640# By convention, use the following status codes (as defined in RFC 2616):3641# 400: Invalid or missing CGI parameters, or3642# requested object exists but has wrong type.3643# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3644# this server or project.3645# 404: Requested object/revision/project doesn't exist.3646# 500: The server isn't configured properly, or3647# an internal error occurred (e.g. failed assertions caused by bugs), or3648# an unknown error occurred (e.g. the git binary died unexpectedly).3649# 503: The server is currently unavailable (because it is overloaded,3650# or down for maintenance). Generally, this is a temporary state.3651sub die_error {3652my$status=shift||500;3653my$error= esc_html(shift) ||"Internal Server Error";3654my$extra=shift;3655my%opts=@_;36563657my%http_responses= (3658400=>'400 Bad Request',3659403=>'403 Forbidden',3660404=>'404 Not Found',3661500=>'500 Internal Server Error',3662503=>'503 Service Unavailable',3663);3664 git_header_html($http_responses{$status},undef,%opts);3665print<<EOF;3666<div class="page_body">3667<br /><br />3668$status-$error3669<br />3670EOF3671if(defined$extra) {3672print"<hr />\n".3673"$extra\n";3674}3675print"</div>\n";36763677 git_footer_html();3678goto DONE_GITWEB3679unless($opts{'-error_handler'});3680}36813682## ----------------------------------------------------------------------3683## functions printing or outputting HTML: navigation36843685sub git_print_page_nav {3686my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3687$extra=''if!defined$extra;# pager or formats36883689my@navs=qw(summary shortlog log commit commitdiff tree);3690if($suppress) {3691@navs=grep{$_ne$suppress}@navs;3692}36933694my%arg=map{$_=> {action=>$_} }@navs;3695if(defined$head) {3696for(qw(commit commitdiff)) {3697$arg{$_}{'hash'} =$head;3698}3699if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3700for(qw(shortlog log)) {3701$arg{$_}{'hash'} =$head;3702}3703}3704}37053706$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3707$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;37083709my@actions= gitweb_get_feature('actions');3710my%repl= (3711'%'=>'%',3712'n'=>$project,# project name3713'f'=>$git_dir,# project path within filesystem3714'h'=>$treehead||'',# current hash ('h' parameter)3715'b'=>$treebase||'',# hash base ('hb' parameter)3716);3717while(@actions) {3718my($label,$link,$pos) =splice(@actions,0,3);3719# insert3720@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3721# munch munch3722$link=~s/%([%nfhb])/$repl{$1}/g;3723$arg{$label}{'_href'} =$link;3724}37253726print"<div class=\"page_nav\">\n".3727(join" | ",3728map{$_eq$current?3729$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3730}@navs);3731print"<br/>\n$extra<br/>\n".3732"</div>\n";3733}37343735sub format_paging_nav {3736my($action,$page,$has_next_link) =@_;3737my$paging_nav;373837393740if($page>0) {3741$paging_nav.=3742$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3743" ⋅ ".3744$cgi->a({-href => href(-replay=>1, page=>$page-1),3745-accesskey =>"p", -title =>"Alt-p"},"prev");3746}else{3747$paging_nav.="first ⋅ prev";3748}37493750if($has_next_link) {3751$paging_nav.=" ⋅ ".3752$cgi->a({-href => href(-replay=>1, page=>$page+1),3753-accesskey =>"n", -title =>"Alt-n"},"next");3754}else{3755$paging_nav.=" ⋅ next";3756}37573758return$paging_nav;3759}37603761## ......................................................................3762## functions printing or outputting HTML: div37633764sub git_print_header_div {3765my($action,$title,$hash,$hash_base) =@_;3766my%args= ();37673768$args{'action'} =$action;3769$args{'hash'} =$hashif$hash;3770$args{'hash_base'} =$hash_baseif$hash_base;37713772print"<div class=\"header\">\n".3773$cgi->a({-href => href(%args), -class=>"title"},3774$title?$title:$action) .3775"\n</div>\n";3776}37773778sub print_local_time {3779print format_local_time(@_);3780}37813782sub format_local_time {3783my$localtime='';3784my%date=@_;3785if($date{'hour_local'} <6) {3786$localtime.=sprintf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3787$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3788}else{3789$localtime.=sprintf(" (%02d:%02d%s)",3790$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3791}37923793return$localtime;3794}37953796# Outputs the author name and date in long form3797sub git_print_authorship {3798my$co=shift;3799my%opts=@_;3800my$tag=$opts{-tag} ||'div';3801my$author=$co->{'author_name'};38023803my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3804print"<$tagclass=\"author_date\">".3805 format_search_author($author,"author", esc_html($author)) .3806" [$ad{'rfc2822'}";3807 print_local_time(%ad)if($opts{-localtime});3808print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)3809."</$tag>\n";3810}38113812# Outputs table rows containing the full author or committer information,3813# in the format expected for 'commit' view (& similar).3814# Parameters are a commit hash reference, followed by the list of people3815# to output information for. If the list is empty it defaults to both3816# author and committer.3817sub git_print_authorship_rows {3818my$co=shift;3819# too bad we can't use @people = @_ || ('author', 'committer')3820my@people=@_;3821@people= ('author','committer')unless@people;3822foreachmy$who(@people) {3823my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3824print"<tr><td>$who</td><td>".3825 format_search_author($co->{"${who}_name"},$who,3826 esc_html($co->{"${who}_name"})) ." ".3827 format_search_author($co->{"${who}_email"},$who,3828 esc_html("<".$co->{"${who}_email"} .">")) .3829"</td><td rowspan=\"2\">".3830 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3831"</td></tr>\n".3832"<tr>".3833"<td></td><td>$wd{'rfc2822'}";3834 print_local_time(%wd);3835print"</td>".3836"</tr>\n";3837}3838}38393840sub git_print_page_path {3841my$name=shift;3842my$type=shift;3843my$hb=shift;384438453846print"<div class=\"page_path\">";3847print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),3848-title =>'tree root'}, to_utf8("[$project]"));3849print" / ";3850if(defined$name) {3851my@dirname=split'/',$name;3852my$basename=pop@dirname;3853my$fullname='';38543855foreachmy$dir(@dirname) {3856$fullname.= ($fullname?'/':'') .$dir;3857print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,3858 hash_base=>$hb),3859-title =>$fullname}, esc_path($dir));3860print" / ";3861}3862if(defined$type&&$typeeq'blob') {3863print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,3864 hash_base=>$hb),3865-title =>$name}, esc_path($basename));3866}elsif(defined$type&&$typeeq'tree') {3867print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,3868 hash_base=>$hb),3869-title =>$name}, esc_path($basename));3870print" / ";3871}else{3872print esc_path($basename);3873}3874}3875print"<br/></div>\n";3876}38773878sub git_print_log {3879my$log=shift;3880my%opts=@_;38813882if($opts{'-remove_title'}) {3883# remove title, i.e. first line of log3884shift@$log;3885}3886# remove leading empty lines3887while(defined$log->[0] &&$log->[0]eq"") {3888shift@$log;3889}38903891# print log3892my$signoff=0;3893my$empty=0;3894foreachmy$line(@$log) {3895if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {3896$signoff=1;3897$empty=0;3898if(!$opts{'-remove_signoff'}) {3899print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";3900next;3901}else{3902# remove signoff lines3903next;3904}3905}else{3906$signoff=0;3907}39083909# print only one empty line3910# do not print empty line after signoff3911if($lineeq"") {3912next if($empty||$signoff);3913$empty=1;3914}else{3915$empty=0;3916}39173918print format_log_line_html($line) ."<br/>\n";3919}39203921if($opts{'-final_empty_line'}) {3922# end with single empty line3923print"<br/>\n"unless$empty;3924}3925}39263927# return link target (what link points to)3928sub git_get_link_target {3929my$hash=shift;3930my$link_target;39313932# read link3933open my$fd,"-|", git_cmd(),"cat-file","blob",$hash3934orreturn;3935{3936local$/=undef;3937$link_target= <$fd>;3938}3939close$fd3940orreturn;39413942return$link_target;3943}39443945# given link target, and the directory (basedir) the link is in,3946# return target of link relative to top directory (top tree);3947# return undef if it is not possible (including absolute links).3948sub normalize_link_target {3949my($link_target,$basedir) =@_;39503951# absolute symlinks (beginning with '/') cannot be normalized3952return if(substr($link_target,0,1)eq'/');39533954# normalize link target to path from top (root) tree (dir)3955my$path;3956if($basedir) {3957$path=$basedir.'/'.$link_target;3958}else{3959# we are in top (root) tree (dir)3960$path=$link_target;3961}39623963# remove //, /./, and /../3964my@path_parts;3965foreachmy$part(split('/',$path)) {3966# discard '.' and ''3967next if(!$part||$parteq'.');3968# handle '..'3969if($parteq'..') {3970if(@path_parts) {3971pop@path_parts;3972}else{3973# link leads outside repository (outside top dir)3974return;3975}3976}else{3977push@path_parts,$part;3978}3979}3980$path=join('/',@path_parts);39813982return$path;3983}39843985# print tree entry (row of git_tree), but without encompassing <tr> element3986sub git_print_tree_entry {3987my($t,$basedir,$hash_base,$have_blame) =@_;39883989my%base_key= ();3990$base_key{'hash_base'} =$hash_baseifdefined$hash_base;39913992# The format of a table row is: mode list link. Where mode is3993# the mode of the entry, list is the name of the entry, an href,3994# and link is the action links of the entry.39953996print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";3997if(exists$t->{'size'}) {3998print"<td class=\"size\">$t->{'size'}</td>\n";3999}4000if($t->{'type'}eq"blob") {4001print"<td class=\"list\">".4002$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4003 file_name=>"$basedir$t->{'name'}",%base_key),4004-class=>"list"}, esc_path($t->{'name'}));4005if(S_ISLNK(oct$t->{'mode'})) {4006my$link_target= git_get_link_target($t->{'hash'});4007if($link_target) {4008my$norm_target= normalize_link_target($link_target,$basedir);4009if(defined$norm_target) {4010print" -> ".4011$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4012 file_name=>$norm_target),4013-title =>$norm_target}, esc_path($link_target));4014}else{4015print" -> ". esc_path($link_target);4016}4017}4018}4019print"</td>\n";4020print"<td class=\"link\">";4021print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4022 file_name=>"$basedir$t->{'name'}",%base_key)},4023"blob");4024if($have_blame) {4025print" | ".4026$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4027 file_name=>"$basedir$t->{'name'}",%base_key)},4028"blame");4029}4030if(defined$hash_base) {4031print" | ".4032$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4033 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4034"history");4035}4036print" | ".4037$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4038 file_name=>"$basedir$t->{'name'}")},4039"raw");4040print"</td>\n";40414042}elsif($t->{'type'}eq"tree") {4043print"<td class=\"list\">";4044print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4045 file_name=>"$basedir$t->{'name'}",4046%base_key)},4047 esc_path($t->{'name'}));4048print"</td>\n";4049print"<td class=\"link\">";4050print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4051 file_name=>"$basedir$t->{'name'}",4052%base_key)},4053"tree");4054if(defined$hash_base) {4055print" | ".4056$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4057 file_name=>"$basedir$t->{'name'}")},4058"history");4059}4060print"</td>\n";4061}else{4062# unknown object: we can only present history for it4063# (this includes 'commit' object, i.e. submodule support)4064print"<td class=\"list\">".4065 esc_path($t->{'name'}) .4066"</td>\n";4067print"<td class=\"link\">";4068if(defined$hash_base) {4069print$cgi->a({-href => href(action=>"history",4070 hash_base=>$hash_base,4071 file_name=>"$basedir$t->{'name'}")},4072"history");4073}4074print"</td>\n";4075}4076}40774078## ......................................................................4079## functions printing large fragments of HTML40804081# get pre-image filenames for merge (combined) diff4082sub fill_from_file_info {4083my($diff,@parents) =@_;40844085$diff->{'from_file'} = [ ];4086$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4087for(my$i=0;$i<$diff->{'nparents'};$i++) {4088if($diff->{'status'}[$i]eq'R'||4089$diff->{'status'}[$i]eq'C') {4090$diff->{'from_file'}[$i] =4091 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4092}4093}40944095return$diff;4096}40974098# is current raw difftree line of file deletion4099sub is_deleted {4100my$diffinfo=shift;41014102return$diffinfo->{'to_id'}eq('0' x 40);4103}41044105# does patch correspond to [previous] difftree raw line4106# $diffinfo - hashref of parsed raw diff format4107# $patchinfo - hashref of parsed patch diff format4108# (the same keys as in $diffinfo)4109sub is_patch_split {4110my($diffinfo,$patchinfo) =@_;41114112returndefined$diffinfo&&defined$patchinfo4113&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4114}411541164117sub git_difftree_body {4118my($difftree,$hash,@parents) =@_;4119my($parent) =$parents[0];4120my$have_blame= gitweb_check_feature('blame');4121print"<div class=\"list_head\">\n";4122if($#{$difftree} >10) {4123print(($#{$difftree} +1) ." files changed:\n");4124}4125print"</div>\n";41264127print"<table class=\"".4128(@parents>1?"combined ":"") .4129"diff_tree\">\n";41304131# header only for combined diff in 'commitdiff' view4132my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4133if($has_header) {4134# table header4135print"<thead><tr>\n".4136"<th></th><th></th>\n";# filename, patchN link4137for(my$i=0;$i<@parents;$i++) {4138my$par=$parents[$i];4139print"<th>".4140$cgi->a({-href => href(action=>"commitdiff",4141 hash=>$hash, hash_parent=>$par),4142-title =>'commitdiff to parent number '.4143($i+1) .': '.substr($par,0,7)},4144$i+1) .4145" </th>\n";4146}4147print"</tr></thead>\n<tbody>\n";4148}41494150my$alternate=1;4151my$patchno=0;4152foreachmy$line(@{$difftree}) {4153my$diff= parsed_difftree_line($line);41544155if($alternate) {4156print"<tr class=\"dark\">\n";4157}else{4158print"<tr class=\"light\">\n";4159}4160$alternate^=1;41614162if(exists$diff->{'nparents'}) {# combined diff41634164 fill_from_file_info($diff,@parents)4165unlessexists$diff->{'from_file'};41664167if(!is_deleted($diff)) {4168# file exists in the result (child) commit4169print"<td>".4170$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4171 file_name=>$diff->{'to_file'},4172 hash_base=>$hash),4173-class=>"list"}, esc_path($diff->{'to_file'})) .4174"</td>\n";4175}else{4176print"<td>".4177 esc_path($diff->{'to_file'}) .4178"</td>\n";4179}41804181if($actioneq'commitdiff') {4182# link to patch4183$patchno++;4184print"<td class=\"link\">".4185$cgi->a({-href =>"#patch$patchno"},"patch") .4186" | ".4187"</td>\n";4188}41894190my$has_history=0;4191my$not_deleted=0;4192for(my$i=0;$i<$diff->{'nparents'};$i++) {4193my$hash_parent=$parents[$i];4194my$from_hash=$diff->{'from_id'}[$i];4195my$from_path=$diff->{'from_file'}[$i];4196my$status=$diff->{'status'}[$i];41974198$has_history||= ($statusne'A');4199$not_deleted||= ($statusne'D');42004201if($statuseq'A') {4202print"<td class=\"link\"align=\"right\"> | </td>\n";4203}elsif($statuseq'D') {4204print"<td class=\"link\">".4205$cgi->a({-href => href(action=>"blob",4206 hash_base=>$hash,4207 hash=>$from_hash,4208 file_name=>$from_path)},4209"blob". ($i+1)) .4210" | </td>\n";4211}else{4212if($diff->{'to_id'}eq$from_hash) {4213print"<td class=\"link nochange\">";4214}else{4215print"<td class=\"link\">";4216}4217print$cgi->a({-href => href(action=>"blobdiff",4218 hash=>$diff->{'to_id'},4219 hash_parent=>$from_hash,4220 hash_base=>$hash,4221 hash_parent_base=>$hash_parent,4222 file_name=>$diff->{'to_file'},4223 file_parent=>$from_path)},4224"diff". ($i+1)) .4225" | </td>\n";4226}4227}42284229print"<td class=\"link\">";4230if($not_deleted) {4231print$cgi->a({-href => href(action=>"blob",4232 hash=>$diff->{'to_id'},4233 file_name=>$diff->{'to_file'},4234 hash_base=>$hash)},4235"blob");4236print" | "if($has_history);4237}4238if($has_history) {4239print$cgi->a({-href => href(action=>"history",4240 file_name=>$diff->{'to_file'},4241 hash_base=>$hash)},4242"history");4243}4244print"</td>\n";42454246print"</tr>\n";4247next;# instead of 'else' clause, to avoid extra indent4248}4249# else ordinary diff42504251my($to_mode_oct,$to_mode_str,$to_file_type);4252my($from_mode_oct,$from_mode_str,$from_file_type);4253if($diff->{'to_mode'}ne('0' x 6)) {4254$to_mode_oct=oct$diff->{'to_mode'};4255if(S_ISREG($to_mode_oct)) {# only for regular file4256$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4257}4258$to_file_type= file_type($diff->{'to_mode'});4259}4260if($diff->{'from_mode'}ne('0' x 6)) {4261$from_mode_oct=oct$diff->{'from_mode'};4262if(S_ISREG($to_mode_oct)) {# only for regular file4263$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4264}4265$from_file_type= file_type($diff->{'from_mode'});4266}42674268if($diff->{'status'}eq"A") {# created4269my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4270$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4271$mode_chng.="]</span>";4272print"<td>";4273print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4274 hash_base=>$hash, file_name=>$diff->{'file'}),4275-class=>"list"}, esc_path($diff->{'file'}));4276print"</td>\n";4277print"<td>$mode_chng</td>\n";4278print"<td class=\"link\">";4279if($actioneq'commitdiff') {4280# link to patch4281$patchno++;4282print$cgi->a({-href =>"#patch$patchno"},"patch");4283print" | ";4284}4285print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4286 hash_base=>$hash, file_name=>$diff->{'file'})},4287"blob");4288print"</td>\n";42894290}elsif($diff->{'status'}eq"D") {# deleted4291my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4292print"<td>";4293print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4294 hash_base=>$parent, file_name=>$diff->{'file'}),4295-class=>"list"}, esc_path($diff->{'file'}));4296print"</td>\n";4297print"<td>$mode_chng</td>\n";4298print"<td class=\"link\">";4299if($actioneq'commitdiff') {4300# link to patch4301$patchno++;4302print$cgi->a({-href =>"#patch$patchno"},"patch");4303print" | ";4304}4305print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4306 hash_base=>$parent, file_name=>$diff->{'file'})},4307"blob") ." | ";4308if($have_blame) {4309print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4310 file_name=>$diff->{'file'})},4311"blame") ." | ";4312}4313print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4314 file_name=>$diff->{'file'})},4315"history");4316print"</td>\n";43174318}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4319my$mode_chnge="";4320if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4321$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4322if($from_file_typene$to_file_type) {4323$mode_chnge.=" from$from_file_typeto$to_file_type";4324}4325if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4326if($from_mode_str&&$to_mode_str) {4327$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4328}elsif($to_mode_str) {4329$mode_chnge.=" mode:$to_mode_str";4330}4331}4332$mode_chnge.="]</span>\n";4333}4334print"<td>";4335print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4336 hash_base=>$hash, file_name=>$diff->{'file'}),4337-class=>"list"}, esc_path($diff->{'file'}));4338print"</td>\n";4339print"<td>$mode_chnge</td>\n";4340print"<td class=\"link\">";4341if($actioneq'commitdiff') {4342# link to patch4343$patchno++;4344print$cgi->a({-href =>"#patch$patchno"},"patch") .4345" | ";4346}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4347# "commit" view and modified file (not onlu mode changed)4348print$cgi->a({-href => href(action=>"blobdiff",4349 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4350 hash_base=>$hash, hash_parent_base=>$parent,4351 file_name=>$diff->{'file'})},4352"diff") .4353" | ";4354}4355print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4356 hash_base=>$hash, file_name=>$diff->{'file'})},4357"blob") ." | ";4358if($have_blame) {4359print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4360 file_name=>$diff->{'file'})},4361"blame") ." | ";4362}4363print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4364 file_name=>$diff->{'file'})},4365"history");4366print"</td>\n";43674368}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4369my%status_name= ('R'=>'moved','C'=>'copied');4370my$nstatus=$status_name{$diff->{'status'}};4371my$mode_chng="";4372if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4373# mode also for directories, so we cannot use $to_mode_str4374$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4375}4376print"<td>".4377$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4378 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4379-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4380"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4381$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4382 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4383-class=>"list"}, esc_path($diff->{'from_file'})) .4384" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4385"<td class=\"link\">";4386if($actioneq'commitdiff') {4387# link to patch4388$patchno++;4389print$cgi->a({-href =>"#patch$patchno"},"patch") .4390" | ";4391}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4392# "commit" view and modified file (not only pure rename or copy)4393print$cgi->a({-href => href(action=>"blobdiff",4394 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4395 hash_base=>$hash, hash_parent_base=>$parent,4396 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4397"diff") .4398" | ";4399}4400print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4401 hash_base=>$parent, file_name=>$diff->{'to_file'})},4402"blob") ." | ";4403if($have_blame) {4404print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4405 file_name=>$diff->{'to_file'})},4406"blame") ." | ";4407}4408print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4409 file_name=>$diff->{'to_file'})},4410"history");4411print"</td>\n";44124413}# we should not encounter Unmerged (U) or Unknown (X) status4414print"</tr>\n";4415}4416print"</tbody>"if$has_header;4417print"</table>\n";4418}44194420sub git_patchset_body {4421my($fd,$difftree,$hash,@hash_parents) =@_;4422my($hash_parent) =$hash_parents[0];44234424my$is_combined= (@hash_parents>1);4425my$patch_idx=0;4426my$patch_number=0;4427my$patch_line;4428my$diffinfo;4429my$to_name;4430my(%from,%to);44314432print"<div class=\"patchset\">\n";44334434# skip to first patch4435while($patch_line= <$fd>) {4436chomp$patch_line;44374438last if($patch_line=~m/^diff /);4439}44404441 PATCH:4442while($patch_line) {44434444# parse "git diff" header line4445if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4446# $1 is from_name, which we do not use4447$to_name= unquote($2);4448$to_name=~s!^b/!!;4449}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4450# $1 is 'cc' or 'combined', which we do not use4451$to_name= unquote($2);4452}else{4453$to_name=undef;4454}44554456# check if current patch belong to current raw line4457# and parse raw git-diff line if needed4458if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4459# this is continuation of a split patch4460print"<div class=\"patch cont\">\n";4461}else{4462# advance raw git-diff output if needed4463$patch_idx++ifdefined$diffinfo;44644465# read and prepare patch information4466$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);44674468# compact combined diff output can have some patches skipped4469# find which patch (using pathname of result) we are at now;4470if($is_combined) {4471while($to_namene$diffinfo->{'to_file'}) {4472print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4473 format_diff_cc_simplified($diffinfo,@hash_parents) .4474"</div>\n";# class="patch"44754476$patch_idx++;4477$patch_number++;44784479last if$patch_idx>$#$difftree;4480$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4481}4482}44834484# modifies %from, %to hashes4485 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);44864487# this is first patch for raw difftree line with $patch_idx index4488# we index @$difftree array from 0, but number patches from 14489print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4490}44914492# git diff header4493#assert($patch_line =~ m/^diff /) if DEBUG;4494#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4495$patch_number++;4496# print "git diff" header4497print format_git_diff_header_line($patch_line,$diffinfo,4498 \%from, \%to);44994500# print extended diff header4501print"<div class=\"diff extended_header\">\n";4502 EXTENDED_HEADER:4503while($patch_line= <$fd>) {4504chomp$patch_line;45054506last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);45074508print format_extended_diff_header_line($patch_line,$diffinfo,4509 \%from, \%to);4510}4511print"</div>\n";# class="diff extended_header"45124513# from-file/to-file diff header4514if(!$patch_line) {4515print"</div>\n";# class="patch"4516last PATCH;4517}4518next PATCH if($patch_line=~m/^diff /);4519#assert($patch_line =~ m/^---/) if DEBUG;45204521my$last_patch_line=$patch_line;4522$patch_line= <$fd>;4523chomp$patch_line;4524#assert($patch_line =~ m/^\+\+\+/) if DEBUG;45254526print format_diff_from_to_header($last_patch_line,$patch_line,4527$diffinfo, \%from, \%to,4528@hash_parents);45294530# the patch itself4531 LINE:4532while($patch_line= <$fd>) {4533chomp$patch_line;45344535next PATCH if($patch_line=~m/^diff /);45364537print format_diff_line($patch_line, \%from, \%to);4538}45394540}continue{4541print"</div>\n";# class="patch"4542}45434544# for compact combined (--cc) format, with chunk and patch simplification4545# the patchset might be empty, but there might be unprocessed raw lines4546for(++$patch_idxif$patch_number>0;4547$patch_idx<@$difftree;4548++$patch_idx) {4549# read and prepare patch information4550$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);45514552# generate anchor for "patch" links in difftree / whatchanged part4553print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4554 format_diff_cc_simplified($diffinfo,@hash_parents) .4555"</div>\n";# class="patch"45564557$patch_number++;4558}45594560if($patch_number==0) {4561if(@hash_parents>1) {4562print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4563}else{4564print"<div class=\"diff nodifferences\">No differences found</div>\n";4565}4566}45674568print"</div>\n";# class="patchset"4569}45704571# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .45724573# fills project list info (age, description, owner, forks) for each4574# project in the list, removing invalid projects from returned list4575# NOTE: modifies $projlist, but does not remove entries from it4576sub fill_project_list_info {4577my($projlist,$check_forks) =@_;4578my@projects;45794580my$show_ctags= gitweb_check_feature('ctags');4581 PROJECT:4582foreachmy$pr(@$projlist) {4583my(@activity) = git_get_last_activity($pr->{'path'});4584unless(@activity) {4585next PROJECT;4586}4587($pr->{'age'},$pr->{'age_string'}) =@activity;4588if(!defined$pr->{'descr'}) {4589my$descr= git_get_project_description($pr->{'path'}) ||"";4590$descr= to_utf8($descr);4591$pr->{'descr_long'} =$descr;4592$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4593}4594if(!defined$pr->{'owner'}) {4595$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4596}4597if($check_forks) {4598my$pname=$pr->{'path'};4599if(($pname=~s/\.git$//) &&4600($pname!~/\/$/) &&4601(-d "$projectroot/$pname")) {4602$pr->{'forks'} ="-d$projectroot/$pname";4603}else{4604$pr->{'forks'} =0;4605}4606}4607$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4608push@projects,$pr;4609}46104611return@projects;4612}46134614# print 'sort by' <th> element, generating 'sort by $name' replay link4615# if that order is not selected4616sub print_sort_th {4617print format_sort_th(@_);4618}46194620sub format_sort_th {4621my($name,$order,$header) =@_;4622my$sort_th="";4623$header||=ucfirst($name);46244625if($ordereq$name) {4626$sort_th.="<th>$header</th>\n";4627}else{4628$sort_th.="<th>".4629$cgi->a({-href => href(-replay=>1, order=>$name),4630-class=>"header"},$header) .4631"</th>\n";4632}46334634return$sort_th;4635}46364637sub git_project_list_body {4638# actually uses global variable $project4639my($projlist,$order,$from,$to,$extra,$no_header) =@_;46404641my$check_forks= gitweb_check_feature('forks');4642my@projects= fill_project_list_info($projlist,$check_forks);46434644$order||=$default_projects_order;4645$from=0unlessdefined$from;4646$to=$#projectsif(!defined$to||$#projects<$to);46474648my%order_info= (4649 project => { key =>'path', type =>'str'},4650 descr => { key =>'descr_long', type =>'str'},4651 owner => { key =>'owner', type =>'str'},4652 age => { key =>'age', type =>'num'}4653);4654my$oi=$order_info{$order};4655if($oi->{'type'}eq'str') {4656@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4657}else{4658@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4659}46604661my$show_ctags= gitweb_check_feature('ctags');4662if($show_ctags) {4663my%ctags;4664foreachmy$p(@projects) {4665foreachmy$ct(keys%{$p->{'ctags'}}) {4666$ctags{$ct} +=$p->{'ctags'}->{$ct};4667}4668}4669my$cloud= git_populate_project_tagcloud(\%ctags);4670print git_show_project_tagcloud($cloud,64);4671}46724673print"<table class=\"project_list\">\n";4674unless($no_header) {4675print"<tr>\n";4676if($check_forks) {4677print"<th></th>\n";4678}4679 print_sort_th('project',$order,'Project');4680 print_sort_th('descr',$order,'Description');4681 print_sort_th('owner',$order,'Owner');4682 print_sort_th('age',$order,'Last Change');4683print"<th></th>\n".# for links4684"</tr>\n";4685}4686my$alternate=1;4687my$tagfilter=$cgi->param('by_tag');4688for(my$i=$from;$i<=$to;$i++) {4689my$pr=$projects[$i];46904691next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4692next if$searchtextand not$pr->{'path'} =~/$searchtext/4693and not$pr->{'descr_long'} =~/$searchtext/;4694# Weed out forks or non-matching entries of search4695if($check_forks) {4696my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4697$forkbase="^$forkbase"if$forkbase;4698next ifnot$searchtextand not$tagfilterand$show_ctags4699and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4700}47014702if($alternate) {4703print"<tr class=\"dark\">\n";4704}else{4705print"<tr class=\"light\">\n";4706}4707$alternate^=1;4708if($check_forks) {4709print"<td>";4710if($pr->{'forks'}) {4711print"<!--$pr->{'forks'} -->\n";4712print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4713}4714print"</td>\n";4715}4716print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4717-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4718"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4719-class=>"list", -title =>$pr->{'descr_long'}},4720 esc_html($pr->{'descr'})) ."</td>\n".4721"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4722print"<td class=\"". age_class($pr->{'age'}) ."\">".4723(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4724"<td class=\"link\">".4725$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4726$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4727$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4728$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4729($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4730"</td>\n".4731"</tr>\n";4732}4733if(defined$extra) {4734print"<tr>\n";4735if($check_forks) {4736print"<td></td>\n";4737}4738print"<td colspan=\"5\">$extra</td>\n".4739"</tr>\n";4740}4741print"</table>\n";4742}47434744sub git_log_body {4745# uses global variable $project4746my($commitlist,$from,$to,$refs,$extra) =@_;47474748$from=0unlessdefined$from;4749$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);47504751for(my$i=0;$i<=$to;$i++) {4752my%co= %{$commitlist->[$i]};4753next if!%co;4754my$commit=$co{'id'};4755my$ref= format_ref_marker($refs,$commit);4756my%ad= parse_date($co{'author_epoch'});4757 git_print_header_div('commit',4758"<span class=\"age\">$co{'age_string'}</span>".4759 esc_html($co{'title'}) .$ref,4760$commit);4761print"<div class=\"title_text\">\n".4762"<div class=\"log_link\">\n".4763$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4764" | ".4765$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4766" | ".4767$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4768"<br/>\n".4769"</div>\n";4770 git_print_authorship(\%co, -tag =>'span');4771print"<br/>\n</div>\n";47724773print"<div class=\"log_body\">\n";4774 git_print_log($co{'comment'}, -final_empty_line=>1);4775print"</div>\n";4776}4777if($extra) {4778print"<div class=\"page_nav\">\n";4779print"$extra\n";4780print"</div>\n";4781}4782}47834784sub git_shortlog_body {4785# uses global variable $project4786my($commitlist,$from,$to,$refs,$extra) =@_;47874788$from=0unlessdefined$from;4789$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);47904791print"<table class=\"shortlog\">\n";4792my$alternate=1;4793for(my$i=$from;$i<=$to;$i++) {4794my%co= %{$commitlist->[$i]};4795my$commit=$co{'id'};4796my$ref= format_ref_marker($refs,$commit);4797if($alternate) {4798print"<tr class=\"dark\">\n";4799}else{4800print"<tr class=\"light\">\n";4801}4802$alternate^=1;4803# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4804print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4805 format_author_html('td', \%co,10) ."<td>";4806print format_subject_html($co{'title'},$co{'title_short'},4807 href(action=>"commit", hash=>$commit),$ref);4808print"</td>\n".4809"<td class=\"link\">".4810$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4811$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4812$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4813my$snapshot_links= format_snapshot_links($commit);4814if(defined$snapshot_links) {4815print" | ".$snapshot_links;4816}4817print"</td>\n".4818"</tr>\n";4819}4820if(defined$extra) {4821print"<tr>\n".4822"<td colspan=\"4\">$extra</td>\n".4823"</tr>\n";4824}4825print"</table>\n";4826}48274828sub git_history_body {4829# Warning: assumes constant type (blob or tree) during history4830my($commitlist,$from,$to,$refs,$extra,4831$file_name,$file_hash,$ftype) =@_;48324833$from=0unlessdefined$from;4834$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});48354836print"<table class=\"history\">\n";4837my$alternate=1;4838for(my$i=$from;$i<=$to;$i++) {4839my%co= %{$commitlist->[$i]};4840if(!%co) {4841next;4842}4843my$commit=$co{'id'};48444845my$ref= format_ref_marker($refs,$commit);48464847if($alternate) {4848print"<tr class=\"dark\">\n";4849}else{4850print"<tr class=\"light\">\n";4851}4852$alternate^=1;4853print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4854# shortlog: format_author_html('td', \%co, 10)4855 format_author_html('td', \%co,15,3) ."<td>";4856# originally git_history used chop_str($co{'title'}, 50)4857print format_subject_html($co{'title'},$co{'title_short'},4858 href(action=>"commit", hash=>$commit),$ref);4859print"</td>\n".4860"<td class=\"link\">".4861$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".4862$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");48634864if($ftypeeq'blob') {4865my$blob_current=$file_hash;4866my$blob_parent= git_get_hash_by_path($commit,$file_name);4867if(defined$blob_current&&defined$blob_parent&&4868$blob_currentne$blob_parent) {4869print" | ".4870$cgi->a({-href => href(action=>"blobdiff",4871 hash=>$blob_current, hash_parent=>$blob_parent,4872 hash_base=>$hash_base, hash_parent_base=>$commit,4873 file_name=>$file_name)},4874"diff to current");4875}4876}4877print"</td>\n".4878"</tr>\n";4879}4880if(defined$extra) {4881print"<tr>\n".4882"<td colspan=\"4\">$extra</td>\n".4883"</tr>\n";4884}4885print"</table>\n";4886}48874888sub git_tags_body {4889# uses global variable $project4890my($taglist,$from,$to,$extra) =@_;4891$from=0unlessdefined$from;4892$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);48934894print"<table class=\"tags\">\n";4895my$alternate=1;4896for(my$i=$from;$i<=$to;$i++) {4897my$entry=$taglist->[$i];4898my%tag=%$entry;4899my$comment=$tag{'subject'};4900my$comment_short;4901if(defined$comment) {4902$comment_short= chop_str($comment,30,5);4903}4904if($alternate) {4905print"<tr class=\"dark\">\n";4906}else{4907print"<tr class=\"light\">\n";4908}4909$alternate^=1;4910if(defined$tag{'age'}) {4911print"<td><i>$tag{'age'}</i></td>\n";4912}else{4913print"<td></td>\n";4914}4915print"<td>".4916$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),4917-class=>"list name"}, esc_html($tag{'name'})) .4918"</td>\n".4919"<td>";4920if(defined$comment) {4921print format_subject_html($comment,$comment_short,4922 href(action=>"tag", hash=>$tag{'id'}));4923}4924print"</td>\n".4925"<td class=\"selflink\">";4926if($tag{'type'}eq"tag") {4927print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");4928}else{4929print" ";4930}4931print"</td>\n".4932"<td class=\"link\">"." | ".4933$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});4934if($tag{'reftype'}eq"commit") {4935print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .4936" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");4937}elsif($tag{'reftype'}eq"blob") {4938print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");4939}4940print"</td>\n".4941"</tr>";4942}4943if(defined$extra) {4944print"<tr>\n".4945"<td colspan=\"5\">$extra</td>\n".4946"</tr>\n";4947}4948print"</table>\n";4949}49504951sub git_heads_body {4952# uses global variable $project4953my($headlist,$head,$from,$to,$extra) =@_;4954$from=0unlessdefined$from;4955$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);49564957print"<table class=\"heads\">\n";4958my$alternate=1;4959for(my$i=$from;$i<=$to;$i++) {4960my$entry=$headlist->[$i];4961my%ref=%$entry;4962my$curr=$ref{'id'}eq$head;4963if($alternate) {4964print"<tr class=\"dark\">\n";4965}else{4966print"<tr class=\"light\">\n";4967}4968$alternate^=1;4969print"<td><i>$ref{'age'}</i></td>\n".4970($curr?"<td class=\"current_head\">":"<td>") .4971$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),4972-class=>"list name"},esc_html($ref{'name'})) .4973"</td>\n".4974"<td class=\"link\">".4975$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".4976$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".4977$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .4978"</td>\n".4979"</tr>";4980}4981if(defined$extra) {4982print"<tr>\n".4983"<td colspan=\"3\">$extra</td>\n".4984"</tr>\n";4985}4986print"</table>\n";4987}49884989sub git_search_grep_body {4990my($commitlist,$from,$to,$extra) =@_;4991$from=0unlessdefined$from;4992$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49934994print"<table class=\"commit_search\">\n";4995my$alternate=1;4996for(my$i=$from;$i<=$to;$i++) {4997my%co= %{$commitlist->[$i]};4998if(!%co) {4999next;5000}5001my$commit=$co{'id'};5002if($alternate) {5003print"<tr class=\"dark\">\n";5004}else{5005print"<tr class=\"light\">\n";5006}5007$alternate^=1;5008print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5009 format_author_html('td', \%co,15,5) .5010"<td>".5011$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5012-class=>"list subject"},5013 chop_and_escape_str($co{'title'},50) ."<br/>");5014my$comment=$co{'comment'};5015foreachmy$line(@$comment) {5016if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5017my($lead,$match,$trail) = ($1,$2,$3);5018$match= chop_str($match,70,5,'center');5019my$contextlen=int((80-length($match))/2);5020$contextlen=30if($contextlen>30);5021$lead= chop_str($lead,$contextlen,10,'left');5022$trail= chop_str($trail,$contextlen,10,'right');50235024$lead= esc_html($lead);5025$match= esc_html($match);5026$trail= esc_html($trail);50275028print"$lead<span class=\"match\">$match</span>$trail<br />";5029}5030}5031print"</td>\n".5032"<td class=\"link\">".5033$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5034" | ".5035$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5036" | ".5037$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5038print"</td>\n".5039"</tr>\n";5040}5041if(defined$extra) {5042print"<tr>\n".5043"<td colspan=\"3\">$extra</td>\n".5044"</tr>\n";5045}5046print"</table>\n";5047}50485049## ======================================================================5050## ======================================================================5051## actions50525053sub git_project_list {5054my$order=$input_params{'order'};5055if(defined$order&&$order!~m/none|project|descr|owner|age/) {5056 die_error(400,"Unknown order parameter");5057}50585059my@list= git_get_projects_list();5060if(!@list) {5061 die_error(404,"No projects found");5062}50635064 git_header_html();5065if(defined$home_text&& -f $home_text) {5066print"<div class=\"index_include\">\n";5067 insert_file($home_text);5068print"</div>\n";5069}5070print$cgi->startform(-method=>"get") .5071"<p class=\"projsearch\">Search:\n".5072$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5073"</p>".5074$cgi->end_form() ."\n";5075 git_project_list_body(\@list,$order);5076 git_footer_html();5077}50785079sub git_forks {5080my$order=$input_params{'order'};5081if(defined$order&&$order!~m/none|project|descr|owner|age/) {5082 die_error(400,"Unknown order parameter");5083}50845085my@list= git_get_projects_list($project);5086if(!@list) {5087 die_error(404,"No forks found");5088}50895090 git_header_html();5091 git_print_page_nav('','');5092 git_print_header_div('summary',"$projectforks");5093 git_project_list_body(\@list,$order);5094 git_footer_html();5095}50965097sub git_project_index {5098my@projects= git_get_projects_list($project);50995100print$cgi->header(5101-type =>'text/plain',5102-charset =>'utf-8',5103-content_disposition =>'inline; filename="index.aux"');51045105foreachmy$pr(@projects) {5106if(!exists$pr->{'owner'}) {5107$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5108}51095110my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5111# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5112$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5113$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5114$path=~s/ /\+/g;5115$owner=~s/ /\+/g;51165117print"$path$owner\n";5118}5119}51205121sub git_summary {5122my$descr= git_get_project_description($project) ||"none";5123my%co= parse_commit("HEAD");5124my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5125my$head=$co{'id'};51265127my$owner= git_get_project_owner($project);51285129my$refs= git_get_references();5130# These get_*_list functions return one more to allow us to see if5131# there are more ...5132my@taglist= git_get_tags_list(16);5133my@headlist= git_get_heads_list(16);5134my@forklist;5135my$check_forks= gitweb_check_feature('forks');51365137if($check_forks) {5138@forklist= git_get_projects_list($project);5139}51405141 git_header_html();5142 git_print_page_nav('summary','',$head);51435144print"<div class=\"title\"> </div>\n";5145print"<table class=\"projects_list\">\n".5146"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5147"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5148if(defined$cd{'rfc2822'}) {5149print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";5150}51515152# use per project git URL list in $projectroot/$project/cloneurl5153# or make project git URL from git base URL and project name5154my$url_tag="URL";5155my@url_list= git_get_project_url_list($project);5156@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5157foreachmy$git_url(@url_list) {5158next unless$git_url;5159print"<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";5160$url_tag="";5161}51625163# Tag cloud5164my$show_ctags= gitweb_check_feature('ctags');5165if($show_ctags) {5166my$ctags= git_get_project_ctags($project);5167my$cloud= git_populate_project_tagcloud($ctags);5168print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5169print"</td>\n<td>"unless%$ctags;5170print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5171print"</td>\n<td>"if%$ctags;5172print git_show_project_tagcloud($cloud,48);5173print"</td></tr>";5174}51755176print"</table>\n";51775178# If XSS prevention is on, we don't include README.html.5179# TODO: Allow a readme in some safe format.5180if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5181print"<div class=\"title\">readme</div>\n".5182"<div class=\"readme\">\n";5183 insert_file("$projectroot/$project/README.html");5184print"\n</div>\n";# class="readme"5185}51865187# we need to request one more than 16 (0..15) to check if5188# those 16 are all5189my@commitlist=$head? parse_commits($head,17) : ();5190if(@commitlist) {5191 git_print_header_div('shortlog');5192 git_shortlog_body(\@commitlist,0,15,$refs,5193$#commitlist<=15?undef:5194$cgi->a({-href => href(action=>"shortlog")},"..."));5195}51965197if(@taglist) {5198 git_print_header_div('tags');5199 git_tags_body(\@taglist,0,15,5200$#taglist<=15?undef:5201$cgi->a({-href => href(action=>"tags")},"..."));5202}52035204if(@headlist) {5205 git_print_header_div('heads');5206 git_heads_body(\@headlist,$head,0,15,5207$#headlist<=15?undef:5208$cgi->a({-href => href(action=>"heads")},"..."));5209}52105211if(@forklist) {5212 git_print_header_div('forks');5213 git_project_list_body(\@forklist,'age',0,15,5214$#forklist<=15?undef:5215$cgi->a({-href => href(action=>"forks")},"..."),5216'no_header');5217}52185219 git_footer_html();5220}52215222sub git_tag {5223my%tag= parse_tag($hash);52245225if(!%tag) {5226 die_error(404,"Unknown tag object");5227}52285229my$head= git_get_head_hash($project);5230 git_header_html();5231 git_print_page_nav('','',$head,undef,$head);5232 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5233print"<div class=\"title_text\">\n".5234"<table class=\"object_header\">\n".5235"<tr>\n".5236"<td>object</td>\n".5237"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5238$tag{'object'}) ."</td>\n".5239"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5240$tag{'type'}) ."</td>\n".5241"</tr>\n";5242if(defined($tag{'author'})) {5243 git_print_authorship_rows(\%tag,'author');5244}5245print"</table>\n\n".5246"</div>\n";5247print"<div class=\"page_body\">";5248my$comment=$tag{'comment'};5249foreachmy$line(@$comment) {5250chomp$line;5251print esc_html($line, -nbsp=>1) ."<br/>\n";5252}5253print"</div>\n";5254 git_footer_html();5255}52565257sub git_blame_common {5258my$format=shift||'porcelain';5259if($formateq'porcelain'&&$cgi->param('js')) {5260$format='incremental';5261$action='blame_incremental';# for page title etc5262}52635264# permissions5265 gitweb_check_feature('blame')5266or die_error(403,"Blame view not allowed");52675268# error checking5269 die_error(400,"No file name given")unless$file_name;5270$hash_base||= git_get_head_hash($project);5271 die_error(404,"Couldn't find base commit")unless$hash_base;5272my%co= parse_commit($hash_base)5273or die_error(404,"Commit not found");5274my$ftype="blob";5275if(!defined$hash) {5276$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5277or die_error(404,"Error looking up file");5278}else{5279$ftype= git_get_type($hash);5280if($ftype!~"blob") {5281 die_error(400,"Object is not a blob");5282}5283}52845285my$fd;5286if($formateq'incremental') {5287# get file contents (as base)5288open$fd,"-|", git_cmd(),'cat-file','blob',$hash5289or die_error(500,"Open git-cat-file failed");5290}elsif($formateq'data') {5291# run git-blame --incremental5292open$fd,"-|", git_cmd(),"blame","--incremental",5293$hash_base,"--",$file_name5294or die_error(500,"Open git-blame --incremental failed");5295}else{5296# run git-blame --porcelain5297open$fd,"-|", git_cmd(),"blame",'-p',5298$hash_base,'--',$file_name5299or die_error(500,"Open git-blame --porcelain failed");5300}53015302# incremental blame data returns early5303if($formateq'data') {5304print$cgi->header(5305-type=>"text/plain", -charset =>"utf-8",5306-status=>"200 OK");5307local$| =1;# output autoflush5308printwhile<$fd>;5309close$fd5310or print"ERROR$!\n";53115312print'END';5313if(defined$t0&& gitweb_check_feature('timed')) {5314print' '.5315 Time::HiRes::tv_interval($t0, [Time::HiRes::gettimeofday()]).5316' '.$number_of_git_cmds;5317}5318print"\n";53195320return;5321}53225323# page header5324 git_header_html();5325my$formats_nav=5326$cgi->a({-href => href(action=>"blob", -replay=>1)},5327"blob") .5328" | ";5329if($formateq'incremental') {5330$formats_nav.=5331$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5332"blame") ." (non-incremental)";5333}else{5334$formats_nav.=5335$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5336"blame") ." (incremental)";5337}5338$formats_nav.=5339" | ".5340$cgi->a({-href => href(action=>"history", -replay=>1)},5341"history") .5342" | ".5343$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5344"HEAD");5345 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5346 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5347 git_print_page_path($file_name,$ftype,$hash_base);53485349# page body5350if($formateq'incremental') {5351print"<noscript>\n<div class=\"error\"><center><b>\n".5352"This page requires JavaScript to run.\nUse ".5353$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5354'this page').5355" instead.\n".5356"</b></center></div>\n</noscript>\n";53575358print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5359}53605361print qq!<div class="page_body">\n!;5362print qq!<div id="progress_info">.../ ...</div>\n!5363if($formateq'incremental');5364print qq!<table id="blame_table"class="blame" width="100%">\n!.5365#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5366 qq!<thead>\n!.5367 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5368 qq!</thead>\n!.5369 qq!<tbody>\n!;53705371my@rev_color=qw(light dark);5372my$num_colors=scalar(@rev_color);5373my$current_color=0;53745375if($formateq'incremental') {5376my$color_class=$rev_color[$current_color];53775378#contents of a file5379my$linenr=0;5380 LINE:5381while(my$line= <$fd>) {5382chomp$line;5383$linenr++;53845385print qq!<tr id="l$linenr"class="$color_class">!.5386 qq!<td class="sha1"><a href=""> </a></td>!.5387 qq!<td class="linenr">!.5388 qq!<a class="linenr" href="">$linenr</a></td>!;5389print qq!<td class="pre">! . esc_html($line) ."</td>\n";5390print qq!</tr>\n!;5391}53925393}else{# porcelain, i.e. ordinary blame5394my%metainfo= ();# saves information about commits53955396# blame data5397 LINE:5398while(my$line= <$fd>) {5399chomp$line;5400# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5401# no <lines in group> for subsequent lines in group of lines5402my($full_rev,$orig_lineno,$lineno,$group_size) =5403($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5404if(!exists$metainfo{$full_rev}) {5405$metainfo{$full_rev} = {'nprevious'=>0};5406}5407my$meta=$metainfo{$full_rev};5408my$data;5409while($data= <$fd>) {5410chomp$data;5411last if($data=~s/^\t//);# contents of line5412if($data=~/^(\S+)(?: (.*))?$/) {5413$meta->{$1} =$2unlessexists$meta->{$1};5414}5415if($data=~/^previous /) {5416$meta->{'nprevious'}++;5417}5418}5419my$short_rev=substr($full_rev,0,8);5420my$author=$meta->{'author'};5421my%date=5422 parse_date($meta->{'author-time'},$meta->{'author-tz'});5423my$date=$date{'iso-tz'};5424if($group_size) {5425$current_color= ($current_color+1) %$num_colors;5426}5427my$tr_class=$rev_color[$current_color];5428$tr_class.=' boundary'if(exists$meta->{'boundary'});5429$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5430$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5431print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5432if($group_size) {5433print"<td class=\"sha1\"";5434print" title=\"". esc_html($author) .",$date\"";5435print" rowspan=\"$group_size\""if($group_size>1);5436print">";5437print$cgi->a({-href => href(action=>"commit",5438 hash=>$full_rev,5439 file_name=>$file_name)},5440 esc_html($short_rev));5441if($group_size>=2) {5442my@author_initials= ($author=~/\b([[:upper:]])\B/g);5443if(@author_initials) {5444print"<br />".5445 esc_html(join('',@author_initials));5446# or join('.', ...)5447}5448}5449print"</td>\n";5450}5451# 'previous' <sha1 of parent commit> <filename at commit>5452if(exists$meta->{'previous'} &&5453$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5454$meta->{'parent'} =$1;5455$meta->{'file_parent'} = unquote($2);5456}5457my$linenr_commit=5458exists($meta->{'parent'}) ?5459$meta->{'parent'} :$full_rev;5460my$linenr_filename=5461exists($meta->{'file_parent'}) ?5462$meta->{'file_parent'} : unquote($meta->{'filename'});5463my$blamed= href(action =>'blame',5464 file_name =>$linenr_filename,5465 hash_base =>$linenr_commit);5466print"<td class=\"linenr\">";5467print$cgi->a({ -href =>"$blamed#l$orig_lineno",5468-class=>"linenr"},5469 esc_html($lineno));5470print"</td>";5471print"<td class=\"pre\">". esc_html($data) ."</td>\n";5472print"</tr>\n";5473}# end while54745475}54765477# footer5478print"</tbody>\n".5479"</table>\n";# class="blame"5480print"</div>\n";# class="blame_body"5481close$fd5482or print"Reading blob failed\n";54835484 git_footer_html();5485}54865487sub git_blame {5488 git_blame_common();5489}54905491sub git_blame_incremental {5492 git_blame_common('incremental');5493}54945495sub git_blame_data {5496 git_blame_common('data');5497}54985499sub git_tags {5500my$head= git_get_head_hash($project);5501 git_header_html();5502 git_print_page_nav('','',$head,undef,$head);5503 git_print_header_div('summary',$project);55045505my@tagslist= git_get_tags_list();5506if(@tagslist) {5507 git_tags_body(\@tagslist);5508}5509 git_footer_html();5510}55115512sub git_heads {5513my$head= git_get_head_hash($project);5514 git_header_html();5515 git_print_page_nav('','',$head,undef,$head);5516 git_print_header_div('summary',$project);55175518my@headslist= git_get_heads_list();5519if(@headslist) {5520 git_heads_body(\@headslist,$head);5521}5522 git_footer_html();5523}55245525sub git_blob_plain {5526my$type=shift;5527my$expires;55285529if(!defined$hash) {5530if(defined$file_name) {5531my$base=$hash_base|| git_get_head_hash($project);5532$hash= git_get_hash_by_path($base,$file_name,"blob")5533or die_error(404,"Cannot find file");5534}else{5535 die_error(400,"No file name defined");5536}5537}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5538# blobs defined by non-textual hash id's can be cached5539$expires="+1d";5540}55415542open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5543or die_error(500,"Open git-cat-file blob '$hash' failed");55445545# content-type (can include charset)5546$type= blob_contenttype($fd,$file_name,$type);55475548# "save as" filename, even when no $file_name is given5549my$save_as="$hash";5550if(defined$file_name) {5551$save_as=$file_name;5552}elsif($type=~m/^text\//) {5553$save_as.='.txt';5554}55555556# With XSS prevention on, blobs of all types except a few known safe5557# ones are served with "Content-Disposition: attachment" to make sure5558# they don't run in our security domain. For certain image types,5559# blob view writes an <img> tag referring to blob_plain view, and we5560# want to be sure not to break that by serving the image as an5561# attachment (though Firefox 3 doesn't seem to care).5562my$sandbox=$prevent_xss&&5563$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;55645565print$cgi->header(5566-type =>$type,5567-expires =>$expires,5568-content_disposition =>5569($sandbox?'attachment':'inline')5570.'; filename="'.$save_as.'"');5571local$/=undef;5572binmode STDOUT,':raw';5573print<$fd>;5574binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5575close$fd;5576}55775578sub git_blob {5579my$expires;55805581if(!defined$hash) {5582if(defined$file_name) {5583my$base=$hash_base|| git_get_head_hash($project);5584$hash= git_get_hash_by_path($base,$file_name,"blob")5585or die_error(404,"Cannot find file");5586}else{5587 die_error(400,"No file name defined");5588}5589}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5590# blobs defined by non-textual hash id's can be cached5591$expires="+1d";5592}55935594my$have_blame= gitweb_check_feature('blame');5595open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5596or die_error(500,"Couldn't cat$file_name,$hash");5597my$mimetype= blob_mimetype($fd,$file_name);5598# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5599if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5600close$fd;5601return git_blob_plain($mimetype);5602}5603# we can have blame only for text/* mimetype5604$have_blame&&= ($mimetype=~m!^text/!);56055606my$highlight= gitweb_check_feature('highlight');5607my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);5608$fd= run_highlighter($fd,$highlight,$syntax)5609if$syntax;56105611 git_header_html(undef,$expires);5612my$formats_nav='';5613if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5614if(defined$file_name) {5615if($have_blame) {5616$formats_nav.=5617$cgi->a({-href => href(action=>"blame", -replay=>1)},5618"blame") .5619" | ";5620}5621$formats_nav.=5622$cgi->a({-href => href(action=>"history", -replay=>1)},5623"history") .5624" | ".5625$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5626"raw") .5627" | ".5628$cgi->a({-href => href(action=>"blob",5629 hash_base=>"HEAD", file_name=>$file_name)},5630"HEAD");5631}else{5632$formats_nav.=5633$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5634"raw");5635}5636 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5637 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5638}else{5639print"<div class=\"page_nav\">\n".5640"<br/><br/></div>\n".5641"<div class=\"title\">$hash</div>\n";5642}5643 git_print_page_path($file_name,"blob",$hash_base);5644print"<div class=\"page_body\">\n";5645if($mimetype=~m!^image/!) {5646print qq!<img type="$mimetype"!;5647if($file_name) {5648print qq! alt="$file_name" title="$file_name"!;5649}5650print qq! src="! .5651 href(action=>"blob_plain", hash=>$hash,5652 hash_base=>$hash_base, file_name=>$file_name) .5653 qq!"/>\n!;5654}else{5655my$nr;5656while(my$line= <$fd>) {5657chomp$line;5658$nr++;5659$line= untabify($line);5660printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,5661$nr, href(-replay =>1),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);5662}5663}5664close$fd5665or print"Reading blob failed.\n";5666print"</div>";5667 git_footer_html();5668}56695670sub git_tree {5671if(!defined$hash_base) {5672$hash_base="HEAD";5673}5674if(!defined$hash) {5675if(defined$file_name) {5676$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5677}else{5678$hash=$hash_base;5679}5680}5681 die_error(404,"No such tree")unlessdefined($hash);56825683my$show_sizes= gitweb_check_feature('show-sizes');5684my$have_blame= gitweb_check_feature('blame');56855686my@entries= ();5687{5688local$/="\0";5689open my$fd,"-|", git_cmd(),"ls-tree",'-z',5690($show_sizes?'-l': ()),@extra_options,$hash5691or die_error(500,"Open git-ls-tree failed");5692@entries=map{chomp;$_} <$fd>;5693close$fd5694or die_error(404,"Reading tree failed");5695}56965697my$refs= git_get_references();5698my$ref= format_ref_marker($refs,$hash_base);5699 git_header_html();5700my$basedir='';5701if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5702my@views_nav= ();5703if(defined$file_name) {5704push@views_nav,5705$cgi->a({-href => href(action=>"history", -replay=>1)},5706"history"),5707$cgi->a({-href => href(action=>"tree",5708 hash_base=>"HEAD", file_name=>$file_name)},5709"HEAD"),5710}5711my$snapshot_links= format_snapshot_links($hash);5712if(defined$snapshot_links) {5713# FIXME: Should be available when we have no hash base as well.5714push@views_nav,$snapshot_links;5715}5716 git_print_page_nav('tree','',$hash_base,undef,undef,5717join(' | ',@views_nav));5718 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);5719}else{5720undef$hash_base;5721print"<div class=\"page_nav\">\n";5722print"<br/><br/></div>\n";5723print"<div class=\"title\">$hash</div>\n";5724}5725if(defined$file_name) {5726$basedir=$file_name;5727if($basedirne''&&substr($basedir, -1)ne'/') {5728$basedir.='/';5729}5730 git_print_page_path($file_name,'tree',$hash_base);5731}5732print"<div class=\"page_body\">\n";5733print"<table class=\"tree\">\n";5734my$alternate=1;5735# '..' (top directory) link if possible5736if(defined$hash_base&&5737defined$file_name&&$file_name=~m![^/]+$!) {5738if($alternate) {5739print"<tr class=\"dark\">\n";5740}else{5741print"<tr class=\"light\">\n";5742}5743$alternate^=1;57445745my$up=$file_name;5746$up=~s!/?[^/]+$!!;5747undef$upunless$up;5748# based on git_print_tree_entry5749print'<td class="mode">'. mode_str('040000') ."</td>\n";5750print'<td class="size"> </td>'."\n"if$show_sizes;5751print'<td class="list">';5752print$cgi->a({-href => href(action=>"tree",5753 hash_base=>$hash_base,5754 file_name=>$up)},5755"..");5756print"</td>\n";5757print"<td class=\"link\"></td>\n";57585759print"</tr>\n";5760}5761foreachmy$line(@entries) {5762my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);57635764if($alternate) {5765print"<tr class=\"dark\">\n";5766}else{5767print"<tr class=\"light\">\n";5768}5769$alternate^=1;57705771 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);57725773print"</tr>\n";5774}5775print"</table>\n".5776"</div>";5777 git_footer_html();5778}57795780sub snapshot_name {5781my($project,$hash) =@_;57825783# path/to/project.git -> project5784# path/to/project/.git -> project5785my$name= to_utf8($project);5786$name=~ s,([^/])/*\.git$,$1,;5787$name= basename($name);5788# sanitize name5789$name=~s/[[:cntrl:]]/?/g;57905791my$ver=$hash;5792if($hash=~/^[0-9a-fA-F]+$/) {5793# shorten SHA-1 hash5794my$full_hash= git_get_full_hash($project,$hash);5795if($full_hash=~/^$hash/&&length($hash) >7) {5796$ver= git_get_short_hash($project,$hash);5797}5798}elsif($hash=~m!^refs/tags/(.*)$!) {5799# tags don't need shortened SHA-1 hash5800$ver=$1;5801}else{5802# branches and other need shortened SHA-1 hash5803if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {5804$ver=$1;5805}5806$ver.='-'. git_get_short_hash($project,$hash);5807}5808# in case of hierarchical branch names5809$ver=~s!/!.!g;58105811# name = project-version_string5812$name="$name-$ver";58135814returnwantarray? ($name,$name) :$name;5815}58165817sub git_snapshot {5818my$format=$input_params{'snapshot_format'};5819if(!@snapshot_fmts) {5820 die_error(403,"Snapshots not allowed");5821}5822# default to first supported snapshot format5823$format||=$snapshot_fmts[0];5824if($format!~m/^[a-z0-9]+$/) {5825 die_error(400,"Invalid snapshot format parameter");5826}elsif(!exists($known_snapshot_formats{$format})) {5827 die_error(400,"Unknown snapshot format");5828}elsif($known_snapshot_formats{$format}{'disabled'}) {5829 die_error(403,"Snapshot format not allowed");5830}elsif(!grep($_eq$format,@snapshot_fmts)) {5831 die_error(403,"Unsupported snapshot format");5832}58335834my$type= git_get_type("$hash^{}");5835if(!$type) {5836 die_error(404,'Object does not exist');5837}elsif($typeeq'blob') {5838 die_error(400,'Object is not a tree-ish');5839}58405841my($name,$prefix) = snapshot_name($project,$hash);5842my$filename="$name$known_snapshot_formats{$format}{'suffix'}";5843my$cmd= quote_command(5844 git_cmd(),'archive',5845"--format=$known_snapshot_formats{$format}{'format'}",5846"--prefix=$prefix/",$hash);5847if(exists$known_snapshot_formats{$format}{'compressor'}) {5848$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});5849}58505851$filename=~s/(["\\])/\\$1/g;5852print$cgi->header(5853-type =>$known_snapshot_formats{$format}{'type'},5854-content_disposition =>'inline; filename="'.$filename.'"',5855-status =>'200 OK');58565857open my$fd,"-|",$cmd5858or die_error(500,"Execute git-archive failed");5859binmode STDOUT,':raw';5860print<$fd>;5861binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5862close$fd;5863}58645865sub git_log_generic {5866my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;58675868my$head= git_get_head_hash($project);5869if(!defined$base) {5870$base=$head;5871}5872if(!defined$page) {5873$page=0;5874}5875my$refs= git_get_references();58765877my$commit_hash=$base;5878if(defined$parent) {5879$commit_hash="$parent..$base";5880}5881my@commitlist=5882 parse_commits($commit_hash,101, (100*$page),5883defined$file_name? ($file_name,"--full-history") : ());58845885my$ftype;5886if(!defined$file_hash&&defined$file_name) {5887# some commits could have deleted file in question,5888# and not have it in tree, but one of them has to have it5889for(my$i=0;$i<@commitlist;$i++) {5890$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);5891last ifdefined$file_hash;5892}5893}5894if(defined$file_hash) {5895$ftype= git_get_type($file_hash);5896}5897if(defined$file_name&& !defined$ftype) {5898 die_error(500,"Unknown type of object");5899}5900my%co;5901if(defined$file_name) {5902%co= parse_commit($base)5903or die_error(404,"Unknown commit object");5904}590559065907my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);5908my$next_link='';5909if($#commitlist>=100) {5910$next_link=5911$cgi->a({-href => href(-replay=>1, page=>$page+1),5912-accesskey =>"n", -title =>"Alt-n"},"next");5913}5914my$patch_max= gitweb_get_feature('patches');5915if($patch_max&& !defined$file_name) {5916if($patch_max<0||@commitlist<=$patch_max) {5917$paging_nav.=" ⋅ ".5918$cgi->a({-href => href(action=>"patches", -replay=>1)},5919"patches");5920}5921}59225923 git_header_html();5924 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);5925if(defined$file_name) {5926 git_print_header_div('commit', esc_html($co{'title'}),$base);5927}else{5928 git_print_header_div('summary',$project)5929}5930 git_print_page_path($file_name,$ftype,$hash_base)5931if(defined$file_name);59325933$body_subr->(\@commitlist,0,99,$refs,$next_link,5934$file_name,$file_hash,$ftype);59355936 git_footer_html();5937}59385939sub git_log {5940 git_log_generic('log', \&git_log_body,5941$hash,$hash_parent);5942}59435944sub git_commit {5945$hash||=$hash_base||"HEAD";5946my%co= parse_commit($hash)5947or die_error(404,"Unknown commit object");59485949my$parent=$co{'parent'};5950my$parents=$co{'parents'};# listref59515952# we need to prepare $formats_nav before any parameter munging5953my$formats_nav;5954if(!defined$parent) {5955# --root commitdiff5956$formats_nav.='(initial)';5957}elsif(@$parents==1) {5958# single parent commit5959$formats_nav.=5960'(parent: '.5961$cgi->a({-href => href(action=>"commit",5962 hash=>$parent)},5963 esc_html(substr($parent,0,7))) .5964')';5965}else{5966# merge commit5967$formats_nav.=5968'(merge: '.5969join(' ',map{5970$cgi->a({-href => href(action=>"commit",5971 hash=>$_)},5972 esc_html(substr($_,0,7)));5973}@$parents) .5974')';5975}5976if(gitweb_check_feature('patches') &&@$parents<=1) {5977$formats_nav.=" | ".5978$cgi->a({-href => href(action=>"patch", -replay=>1)},5979"patch");5980}59815982if(!defined$parent) {5983$parent="--root";5984}5985my@difftree;5986open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",5987@diff_opts,5988(@$parents<=1?$parent:'-c'),5989$hash,"--"5990or die_error(500,"Open git-diff-tree failed");5991@difftree=map{chomp;$_} <$fd>;5992close$fdor die_error(404,"Reading git-diff-tree failed");59935994# non-textual hash id's can be cached5995my$expires;5996if($hash=~m/^[0-9a-fA-F]{40}$/) {5997$expires="+1d";5998}5999my$refs= git_get_references();6000my$ref= format_ref_marker($refs,$co{'id'});60016002 git_header_html(undef,$expires);6003 git_print_page_nav('commit','',6004$hash,$co{'tree'},$hash,6005$formats_nav);60066007if(defined$co{'parent'}) {6008 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6009}else{6010 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6011}6012print"<div class=\"title_text\">\n".6013"<table class=\"object_header\">\n";6014 git_print_authorship_rows(\%co);6015print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6016print"<tr>".6017"<td>tree</td>".6018"<td class=\"sha1\">".6019$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6020class=>"list"},$co{'tree'}) .6021"</td>".6022"<td class=\"link\">".6023$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6024"tree");6025my$snapshot_links= format_snapshot_links($hash);6026if(defined$snapshot_links) {6027print" | ".$snapshot_links;6028}6029print"</td>".6030"</tr>\n";60316032foreachmy$par(@$parents) {6033print"<tr>".6034"<td>parent</td>".6035"<td class=\"sha1\">".6036$cgi->a({-href => href(action=>"commit", hash=>$par),6037class=>"list"},$par) .6038"</td>".6039"<td class=\"link\">".6040$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6041" | ".6042$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6043"</td>".6044"</tr>\n";6045}6046print"</table>".6047"</div>\n";60486049print"<div class=\"page_body\">\n";6050 git_print_log($co{'comment'});6051print"</div>\n";60526053 git_difftree_body(\@difftree,$hash,@$parents);60546055 git_footer_html();6056}60576058sub git_object {6059# object is defined by:6060# - hash or hash_base alone6061# - hash_base and file_name6062my$type;60636064# - hash or hash_base alone6065if($hash|| ($hash_base&& !defined$file_name)) {6066my$object_id=$hash||$hash_base;60676068open my$fd,"-|", quote_command(6069 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6070or die_error(404,"Object does not exist");6071$type= <$fd>;6072chomp$type;6073close$fd6074or die_error(404,"Object does not exist");60756076# - hash_base and file_name6077}elsif($hash_base&&defined$file_name) {6078$file_name=~ s,/+$,,;60796080system(git_cmd(),"cat-file",'-e',$hash_base) ==06081or die_error(404,"Base object does not exist");60826083# here errors should not hapen6084open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6085or die_error(500,"Open git-ls-tree failed");6086my$line= <$fd>;6087close$fd;60886089#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6090unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6091 die_error(404,"File or directory for given base does not exist");6092}6093$type=$2;6094$hash=$3;6095}else{6096 die_error(400,"Not enough information to find object");6097}60986099print$cgi->redirect(-uri => href(action=>$type, -full=>1,6100 hash=>$hash, hash_base=>$hash_base,6101 file_name=>$file_name),6102-status =>'302 Found');6103}61046105sub git_blobdiff {6106my$format=shift||'html';61076108my$fd;6109my@difftree;6110my%diffinfo;6111my$expires;61126113# preparing $fd and %diffinfo for git_patchset_body6114# new style URI6115if(defined$hash_base&&defined$hash_parent_base) {6116if(defined$file_name) {6117# read raw output6118open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6119$hash_parent_base,$hash_base,6120"--", (defined$file_parent?$file_parent: ()),$file_name6121or die_error(500,"Open git-diff-tree failed");6122@difftree=map{chomp;$_} <$fd>;6123close$fd6124or die_error(404,"Reading git-diff-tree failed");6125@difftree6126or die_error(404,"Blob diff not found");61276128}elsif(defined$hash&&6129$hash=~/[0-9a-fA-F]{40}/) {6130# try to find filename from $hash61316132# read filtered raw output6133open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6134$hash_parent_base,$hash_base,"--"6135or die_error(500,"Open git-diff-tree failed");6136@difftree=6137# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6138# $hash == to_id6139grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6140map{chomp;$_} <$fd>;6141close$fd6142or die_error(404,"Reading git-diff-tree failed");6143@difftree6144or die_error(404,"Blob diff not found");61456146}else{6147 die_error(400,"Missing one of the blob diff parameters");6148}61496150if(@difftree>1) {6151 die_error(400,"Ambiguous blob diff specification");6152}61536154%diffinfo= parse_difftree_raw_line($difftree[0]);6155$file_parent||=$diffinfo{'from_file'} ||$file_name;6156$file_name||=$diffinfo{'to_file'};61576158$hash_parent||=$diffinfo{'from_id'};6159$hash||=$diffinfo{'to_id'};61606161# non-textual hash id's can be cached6162if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6163$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6164$expires='+1d';6165}61666167# open patch output6168open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6169'-p', ($formateq'html'?"--full-index": ()),6170$hash_parent_base,$hash_base,6171"--", (defined$file_parent?$file_parent: ()),$file_name6172or die_error(500,"Open git-diff-tree failed");6173}61746175# old/legacy style URI -- not generated anymore since 1.4.3.6176if(!%diffinfo) {6177 die_error('404 Not Found',"Missing one of the blob diff parameters")6178}61796180# header6181if($formateq'html') {6182my$formats_nav=6183$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6184"raw");6185 git_header_html(undef,$expires);6186if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6187 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6188 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6189}else{6190print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6191print"<div class=\"title\">$hashvs$hash_parent</div>\n";6192}6193if(defined$file_name) {6194 git_print_page_path($file_name,"blob",$hash_base);6195}else{6196print"<div class=\"page_path\"></div>\n";6197}61986199}elsif($formateq'plain') {6200print$cgi->header(6201-type =>'text/plain',6202-charset =>'utf-8',6203-expires =>$expires,6204-content_disposition =>'inline; filename="'."$file_name".'.patch"');62056206print"X-Git-Url: ".$cgi->self_url() ."\n\n";62076208}else{6209 die_error(400,"Unknown blobdiff format");6210}62116212# patch6213if($formateq'html') {6214print"<div class=\"page_body\">\n";62156216 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6217close$fd;62186219print"</div>\n";# class="page_body"6220 git_footer_html();62216222}else{6223while(my$line= <$fd>) {6224$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6225$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;62266227print$line;62286229last if$line=~m!^\+\+\+!;6230}6231local$/=undef;6232print<$fd>;6233close$fd;6234}6235}62366237sub git_blobdiff_plain {6238 git_blobdiff('plain');6239}62406241sub git_commitdiff {6242my%params=@_;6243my$format=$params{-format} ||'html';62446245my($patch_max) = gitweb_get_feature('patches');6246if($formateq'patch') {6247 die_error(403,"Patch view not allowed")unless$patch_max;6248}62496250$hash||=$hash_base||"HEAD";6251my%co= parse_commit($hash)6252or die_error(404,"Unknown commit object");62536254# choose format for commitdiff for merge6255if(!defined$hash_parent&& @{$co{'parents'}} >1) {6256$hash_parent='--cc';6257}6258# we need to prepare $formats_nav before almost any parameter munging6259my$formats_nav;6260if($formateq'html') {6261$formats_nav=6262$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6263"raw");6264if($patch_max&& @{$co{'parents'}} <=1) {6265$formats_nav.=" | ".6266$cgi->a({-href => href(action=>"patch", -replay=>1)},6267"patch");6268}62696270if(defined$hash_parent&&6271$hash_parentne'-c'&&$hash_parentne'--cc') {6272# commitdiff with two commits given6273my$hash_parent_short=$hash_parent;6274if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6275$hash_parent_short=substr($hash_parent,0,7);6276}6277$formats_nav.=6278' (from';6279for(my$i=0;$i< @{$co{'parents'}};$i++) {6280if($co{'parents'}[$i]eq$hash_parent) {6281$formats_nav.=' parent '. ($i+1);6282last;6283}6284}6285$formats_nav.=': '.6286$cgi->a({-href => href(action=>"commitdiff",6287 hash=>$hash_parent)},6288 esc_html($hash_parent_short)) .6289')';6290}elsif(!$co{'parent'}) {6291# --root commitdiff6292$formats_nav.=' (initial)';6293}elsif(scalar@{$co{'parents'}} ==1) {6294# single parent commit6295$formats_nav.=6296' (parent: '.6297$cgi->a({-href => href(action=>"commitdiff",6298 hash=>$co{'parent'})},6299 esc_html(substr($co{'parent'},0,7))) .6300')';6301}else{6302# merge commit6303if($hash_parenteq'--cc') {6304$formats_nav.=' | '.6305$cgi->a({-href => href(action=>"commitdiff",6306 hash=>$hash, hash_parent=>'-c')},6307'combined');6308}else{# $hash_parent eq '-c'6309$formats_nav.=' | '.6310$cgi->a({-href => href(action=>"commitdiff",6311 hash=>$hash, hash_parent=>'--cc')},6312'compact');6313}6314$formats_nav.=6315' (merge: '.6316join(' ',map{6317$cgi->a({-href => href(action=>"commitdiff",6318 hash=>$_)},6319 esc_html(substr($_,0,7)));6320} @{$co{'parents'}} ) .6321')';6322}6323}63246325my$hash_parent_param=$hash_parent;6326if(!defined$hash_parent_param) {6327# --cc for multiple parents, --root for parentless6328$hash_parent_param=6329@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6330}63316332# read commitdiff6333my$fd;6334my@difftree;6335if($formateq'html') {6336open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6337"--no-commit-id","--patch-with-raw","--full-index",6338$hash_parent_param,$hash,"--"6339or die_error(500,"Open git-diff-tree failed");63406341while(my$line= <$fd>) {6342chomp$line;6343# empty line ends raw part of diff-tree output6344last unless$line;6345push@difftree,scalar parse_difftree_raw_line($line);6346}63476348}elsif($formateq'plain') {6349open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6350'-p',$hash_parent_param,$hash,"--"6351or die_error(500,"Open git-diff-tree failed");6352}elsif($formateq'patch') {6353# For commit ranges, we limit the output to the number of6354# patches specified in the 'patches' feature.6355# For single commits, we limit the output to a single patch,6356# diverging from the git-format-patch default.6357my@commit_spec= ();6358if($hash_parent) {6359if($patch_max>0) {6360push@commit_spec,"-$patch_max";6361}6362push@commit_spec,'-n',"$hash_parent..$hash";6363}else{6364if($params{-single}) {6365push@commit_spec,'-1';6366}else{6367if($patch_max>0) {6368push@commit_spec,"-$patch_max";6369}6370push@commit_spec,"-n";6371}6372push@commit_spec,'--root',$hash;6373}6374open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6375'--encoding=utf8','--stdout',@commit_spec6376or die_error(500,"Open git-format-patch failed");6377}else{6378 die_error(400,"Unknown commitdiff format");6379}63806381# non-textual hash id's can be cached6382my$expires;6383if($hash=~m/^[0-9a-fA-F]{40}$/) {6384$expires="+1d";6385}63866387# write commit message6388if($formateq'html') {6389my$refs= git_get_references();6390my$ref= format_ref_marker($refs,$co{'id'});63916392 git_header_html(undef,$expires);6393 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6394 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6395print"<div class=\"title_text\">\n".6396"<table class=\"object_header\">\n";6397 git_print_authorship_rows(\%co);6398print"</table>".6399"</div>\n";6400print"<div class=\"page_body\">\n";6401if(@{$co{'comment'}} >1) {6402print"<div class=\"log\">\n";6403 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6404print"</div>\n";# class="log"6405}64066407}elsif($formateq'plain') {6408my$refs= git_get_references("tags");6409my$tagname= git_get_rev_name_tags($hash);6410my$filename= basename($project) ."-$hash.patch";64116412print$cgi->header(6413-type =>'text/plain',6414-charset =>'utf-8',6415-expires =>$expires,6416-content_disposition =>'inline; filename="'."$filename".'"');6417my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6418print"From: ". to_utf8($co{'author'}) ."\n";6419print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6420print"Subject: ". to_utf8($co{'title'}) ."\n";64216422print"X-Git-Tag:$tagname\n"if$tagname;6423print"X-Git-Url: ".$cgi->self_url() ."\n\n";64246425foreachmy$line(@{$co{'comment'}}) {6426print to_utf8($line) ."\n";6427}6428print"---\n\n";6429}elsif($formateq'patch') {6430my$filename= basename($project) ."-$hash.patch";64316432print$cgi->header(6433-type =>'text/plain',6434-charset =>'utf-8',6435-expires =>$expires,6436-content_disposition =>'inline; filename="'."$filename".'"');6437}64386439# write patch6440if($formateq'html') {6441my$use_parents= !defined$hash_parent||6442$hash_parenteq'-c'||$hash_parenteq'--cc';6443 git_difftree_body(\@difftree,$hash,6444$use_parents? @{$co{'parents'}} :$hash_parent);6445print"<br/>\n";64466447 git_patchset_body($fd, \@difftree,$hash,6448$use_parents? @{$co{'parents'}} :$hash_parent);6449close$fd;6450print"</div>\n";# class="page_body"6451 git_footer_html();64526453}elsif($formateq'plain') {6454local$/=undef;6455print<$fd>;6456close$fd6457or print"Reading git-diff-tree failed\n";6458}elsif($formateq'patch') {6459local$/=undef;6460print<$fd>;6461close$fd6462or print"Reading git-format-patch failed\n";6463}6464}64656466sub git_commitdiff_plain {6467 git_commitdiff(-format =>'plain');6468}64696470# format-patch-style patches6471sub git_patch {6472 git_commitdiff(-format =>'patch', -single =>1);6473}64746475sub git_patches {6476 git_commitdiff(-format =>'patch');6477}64786479sub git_history {6480 git_log_generic('history', \&git_history_body,6481$hash_base,$hash_parent_base,6482$file_name,$hash);6483}64846485sub git_search {6486 gitweb_check_feature('search')or die_error(403,"Search is disabled");6487if(!defined$searchtext) {6488 die_error(400,"Text field is empty");6489}6490if(!defined$hash) {6491$hash= git_get_head_hash($project);6492}6493my%co= parse_commit($hash);6494if(!%co) {6495 die_error(404,"Unknown commit object");6496}6497if(!defined$page) {6498$page=0;6499}65006501$searchtype||='commit';6502if($searchtypeeq'pickaxe') {6503# pickaxe may take all resources of your box and run for several minutes6504# with every query - so decide by yourself how public you make this feature6505 gitweb_check_feature('pickaxe')6506or die_error(403,"Pickaxe is disabled");6507}6508if($searchtypeeq'grep') {6509 gitweb_check_feature('grep')6510or die_error(403,"Grep is disabled");6511}65126513 git_header_html();65146515if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6516my$greptype;6517if($searchtypeeq'commit') {6518$greptype="--grep=";6519}elsif($searchtypeeq'author') {6520$greptype="--author=";6521}elsif($searchtypeeq'committer') {6522$greptype="--committer=";6523}6524$greptype.=$searchtext;6525my@commitlist= parse_commits($hash,101, (100*$page),undef,6526$greptype,'--regexp-ignore-case',6527$search_use_regexp?'--extended-regexp':'--fixed-strings');65286529my$paging_nav='';6530if($page>0) {6531$paging_nav.=6532$cgi->a({-href => href(action=>"search", hash=>$hash,6533 searchtext=>$searchtext,6534 searchtype=>$searchtype)},6535"first");6536$paging_nav.=" ⋅ ".6537$cgi->a({-href => href(-replay=>1, page=>$page-1),6538-accesskey =>"p", -title =>"Alt-p"},"prev");6539}else{6540$paging_nav.="first";6541$paging_nav.=" ⋅ prev";6542}6543my$next_link='';6544if($#commitlist>=100) {6545$next_link=6546$cgi->a({-href => href(-replay=>1, page=>$page+1),6547-accesskey =>"n", -title =>"Alt-n"},"next");6548$paging_nav.=" ⋅$next_link";6549}else{6550$paging_nav.=" ⋅ next";6551}65526553 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6554 git_print_header_div('commit', esc_html($co{'title'}),$hash);6555if($page==0&& !@commitlist) {6556print"<p>No match.</p>\n";6557}else{6558 git_search_grep_body(\@commitlist,0,99,$next_link);6559}6560}65616562if($searchtypeeq'pickaxe') {6563 git_print_page_nav('','',$hash,$co{'tree'},$hash);6564 git_print_header_div('commit', esc_html($co{'title'}),$hash);65656566print"<table class=\"pickaxe search\">\n";6567my$alternate=1;6568local$/="\n";6569open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6570'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6571($search_use_regexp?'--pickaxe-regex': ());6572undef%co;6573my@files;6574while(my$line= <$fd>) {6575chomp$line;6576next unless$line;65776578my%set= parse_difftree_raw_line($line);6579if(defined$set{'commit'}) {6580# finish previous commit6581if(%co) {6582print"</td>\n".6583"<td class=\"link\">".6584$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6585" | ".6586$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6587print"</td>\n".6588"</tr>\n";6589}65906591if($alternate) {6592print"<tr class=\"dark\">\n";6593}else{6594print"<tr class=\"light\">\n";6595}6596$alternate^=1;6597%co= parse_commit($set{'commit'});6598my$author= chop_and_escape_str($co{'author_name'},15,5);6599print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6600"<td><i>$author</i></td>\n".6601"<td>".6602$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6603-class=>"list subject"},6604 chop_and_escape_str($co{'title'},50) ."<br/>");6605}elsif(defined$set{'to_id'}) {6606next if($set{'to_id'} =~m/^0{40}$/);66076608print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6609 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6610-class=>"list"},6611"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6612"<br/>\n";6613}6614}6615close$fd;66166617# finish last commit (warning: repetition!)6618if(%co) {6619print"</td>\n".6620"<td class=\"link\">".6621$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6622" | ".6623$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6624print"</td>\n".6625"</tr>\n";6626}66276628print"</table>\n";6629}66306631if($searchtypeeq'grep') {6632 git_print_page_nav('','',$hash,$co{'tree'},$hash);6633 git_print_header_div('commit', esc_html($co{'title'}),$hash);66346635print"<table class=\"grep_search\">\n";6636my$alternate=1;6637my$matches=0;6638local$/="\n";6639open my$fd,"-|", git_cmd(),'grep','-n',6640$search_use_regexp? ('-E','-i') :'-F',6641$searchtext,$co{'tree'};6642my$lastfile='';6643while(my$line= <$fd>) {6644chomp$line;6645my($file,$lno,$ltext,$binary);6646last if($matches++>1000);6647if($line=~/^Binary file (.+) matches$/) {6648$file=$1;6649$binary=1;6650}else{6651(undef,$file,$lno,$ltext) =split(/:/,$line,4);6652}6653if($filene$lastfile) {6654$lastfileand print"</td></tr>\n";6655if($alternate++) {6656print"<tr class=\"dark\">\n";6657}else{6658print"<tr class=\"light\">\n";6659}6660print"<td class=\"list\">".6661$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6662 file_name=>"$file"),6663-class=>"list"}, esc_path($file));6664print"</td><td>\n";6665$lastfile=$file;6666}6667if($binary) {6668print"<div class=\"binary\">Binary file</div>\n";6669}else{6670$ltext= untabify($ltext);6671if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6672$ltext= esc_html($1, -nbsp=>1);6673$ltext.='<span class="match">';6674$ltext.= esc_html($2, -nbsp=>1);6675$ltext.='</span>';6676$ltext.= esc_html($3, -nbsp=>1);6677}else{6678$ltext= esc_html($ltext, -nbsp=>1);6679}6680print"<div class=\"pre\">".6681$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6682 file_name=>"$file").'#l'.$lno,6683-class=>"linenr"},sprintf('%4i',$lno))6684.' '.$ltext."</div>\n";6685}6686}6687if($lastfile) {6688print"</td></tr>\n";6689if($matches>1000) {6690print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6691}6692}else{6693print"<div class=\"diff nodifferences\">No matches found</div>\n";6694}6695close$fd;66966697print"</table>\n";6698}6699 git_footer_html();6700}67016702sub git_search_help {6703 git_header_html();6704 git_print_page_nav('','',$hash,$hash,$hash);6705print<<EOT;6706<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without6707regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,6708the pattern entered is recognized as the POSIX extended6709<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case6710insensitive).</p>6711<dl>6712<dt><b>commit</b></dt>6713<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>6714EOT6715my$have_grep= gitweb_check_feature('grep');6716if($have_grep) {6717print<<EOT;6718<dt><b>grep</b></dt>6719<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing6720 a different one) are searched for the given pattern. On large trees, this search can take6721a while and put some strain on the server, so please use it with some consideration. Note that6722due to git-grep peculiarity, currently if regexp mode is turned off, the matches are6723case-sensitive.</dd>6724EOT6725}6726print<<EOT;6727<dt><b>author</b></dt>6728<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>6729<dt><b>committer</b></dt>6730<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>6731EOT6732my$have_pickaxe= gitweb_check_feature('pickaxe');6733if($have_pickaxe) {6734print<<EOT;6735<dt><b>pickaxe</b></dt>6736<dd>All commits that caused the string to appear or disappear from any file (changes that6737added, removed or "modified" the string) will be listed. This search can take a while and6738takes a lot of strain on the server, so please use it wisely. Note that since you may be6739interested even in changes just changing the case as well, this search is case sensitive.</dd>6740EOT6741}6742print"</dl>\n";6743 git_footer_html();6744}67456746sub git_shortlog {6747 git_log_generic('shortlog', \&git_shortlog_body,6748$hash,$hash_parent);6749}67506751## ......................................................................6752## feeds (RSS, Atom; OPML)67536754sub git_feed {6755my$format=shift||'atom';6756my$have_blame= gitweb_check_feature('blame');67576758# Atom: http://www.atomenabled.org/developers/syndication/6759# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ6760if($formatne'rss'&&$formatne'atom') {6761 die_error(400,"Unknown web feed format");6762}67636764# log/feed of current (HEAD) branch, log of given branch, history of file/directory6765my$head=$hash||'HEAD';6766my@commitlist= parse_commits($head,150,0,$file_name);67676768my%latest_commit;6769my%latest_date;6770my$content_type="application/$format+xml";6771if(defined$cgi->http('HTTP_ACCEPT') &&6772$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {6773# browser (feed reader) prefers text/xml6774$content_type='text/xml';6775}6776if(defined($commitlist[0])) {6777%latest_commit= %{$commitlist[0]};6778my$latest_epoch=$latest_commit{'committer_epoch'};6779%latest_date= parse_date($latest_epoch);6780my$if_modified=$cgi->http('IF_MODIFIED_SINCE');6781if(defined$if_modified) {6782my$since;6783if(eval{require HTTP::Date;1; }) {6784$since= HTTP::Date::str2time($if_modified);6785}elsif(eval{require Time::ParseDate;1; }) {6786$since= Time::ParseDate::parsedate($if_modified, GMT =>1);6787}6788if(defined$since&&$latest_epoch<=$since) {6789print$cgi->header(6790-type =>$content_type,6791-charset =>'utf-8',6792-last_modified =>$latest_date{'rfc2822'},6793-status =>'304 Not Modified');6794return;6795}6796}6797print$cgi->header(6798-type =>$content_type,6799-charset =>'utf-8',6800-last_modified =>$latest_date{'rfc2822'});6801}else{6802print$cgi->header(6803-type =>$content_type,6804-charset =>'utf-8');6805}68066807# Optimization: skip generating the body if client asks only6808# for Last-Modified date.6809return if($cgi->request_method()eq'HEAD');68106811# header variables6812my$title="$site_name-$project/$action";6813my$feed_type='log';6814if(defined$hash) {6815$title.=" - '$hash'";6816$feed_type='branch log';6817if(defined$file_name) {6818$title.=" ::$file_name";6819$feed_type='history';6820}6821}elsif(defined$file_name) {6822$title.=" -$file_name";6823$feed_type='history';6824}6825$title.="$feed_type";6826my$descr= git_get_project_description($project);6827if(defined$descr) {6828$descr= esc_html($descr);6829}else{6830$descr="$project".6831($formateq'rss'?'RSS':'Atom') .6832" feed";6833}6834my$owner= git_get_project_owner($project);6835$owner= esc_html($owner);68366837#header6838my$alt_url;6839if(defined$file_name) {6840$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);6841}elsif(defined$hash) {6842$alt_url= href(-full=>1, action=>"log", hash=>$hash);6843}else{6844$alt_url= href(-full=>1, action=>"summary");6845}6846print qq!<?xml version="1.0" encoding="utf-8"?>\n!;6847if($formateq'rss') {6848print<<XML;6849<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">6850<channel>6851XML6852print"<title>$title</title>\n".6853"<link>$alt_url</link>\n".6854"<description>$descr</description>\n".6855"<language>en</language>\n".6856# project owner is responsible for 'editorial' content6857"<managingEditor>$owner</managingEditor>\n";6858if(defined$logo||defined$favicon) {6859# prefer the logo to the favicon, since RSS6860# doesn't allow both6861my$img= esc_url($logo||$favicon);6862print"<image>\n".6863"<url>$img</url>\n".6864"<title>$title</title>\n".6865"<link>$alt_url</link>\n".6866"</image>\n";6867}6868if(%latest_date) {6869print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";6870print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";6871}6872print"<generator>gitweb v.$version/$git_version</generator>\n";6873}elsif($formateq'atom') {6874print<<XML;6875<feed xmlns="http://www.w3.org/2005/Atom">6876XML6877print"<title>$title</title>\n".6878"<subtitle>$descr</subtitle>\n".6879'<link rel="alternate" type="text/html" href="'.6880$alt_url.'" />'."\n".6881'<link rel="self" type="'.$content_type.'" href="'.6882$cgi->self_url() .'" />'."\n".6883"<id>". href(-full=>1) ."</id>\n".6884# use project owner for feed author6885"<author><name>$owner</name></author>\n";6886if(defined$favicon) {6887print"<icon>". esc_url($favicon) ."</icon>\n";6888}6889if(defined$logo_url) {6890# not twice as wide as tall: 72 x 27 pixels6891print"<logo>". esc_url($logo) ."</logo>\n";6892}6893if(!%latest_date) {6894# dummy date to keep the feed valid until commits trickle in:6895print"<updated>1970-01-01T00:00:00Z</updated>\n";6896}else{6897print"<updated>$latest_date{'iso-8601'}</updated>\n";6898}6899print"<generator version='$version/$git_version'>gitweb</generator>\n";6900}69016902# contents6903for(my$i=0;$i<=$#commitlist;$i++) {6904my%co= %{$commitlist[$i]};6905my$commit=$co{'id'};6906# we read 150, we always show 30 and the ones more recent than 48 hours6907if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {6908last;6909}6910my%cd= parse_date($co{'author_epoch'});69116912# get list of changed files6913open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6914$co{'parent'} ||"--root",6915$co{'id'},"--", (defined$file_name?$file_name: ())6916ornext;6917my@difftree=map{chomp;$_} <$fd>;6918close$fd6919ornext;69206921# print element (entry, item)6922my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);6923if($formateq'rss') {6924print"<item>\n".6925"<title>". esc_html($co{'title'}) ."</title>\n".6926"<author>". esc_html($co{'author'}) ."</author>\n".6927"<pubDate>$cd{'rfc2822'}</pubDate>\n".6928"<guid isPermaLink=\"true\">$co_url</guid>\n".6929"<link>$co_url</link>\n".6930"<description>". esc_html($co{'title'}) ."</description>\n".6931"<content:encoded>".6932"<![CDATA[\n";6933}elsif($formateq'atom') {6934print"<entry>\n".6935"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".6936"<updated>$cd{'iso-8601'}</updated>\n".6937"<author>\n".6938" <name>". esc_html($co{'author_name'}) ."</name>\n";6939if($co{'author_email'}) {6940print" <email>". esc_html($co{'author_email'}) ."</email>\n";6941}6942print"</author>\n".6943# use committer for contributor6944"<contributor>\n".6945" <name>". esc_html($co{'committer_name'}) ."</name>\n";6946if($co{'committer_email'}) {6947print" <email>". esc_html($co{'committer_email'}) ."</email>\n";6948}6949print"</contributor>\n".6950"<published>$cd{'iso-8601'}</published>\n".6951"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".6952"<id>$co_url</id>\n".6953"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".6954"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";6955}6956my$comment=$co{'comment'};6957print"<pre>\n";6958foreachmy$line(@$comment) {6959$line= esc_html($line);6960print"$line\n";6961}6962print"</pre><ul>\n";6963foreachmy$difftree_line(@difftree) {6964my%difftree= parse_difftree_raw_line($difftree_line);6965next if!$difftree{'from_id'};69666967my$file=$difftree{'file'} ||$difftree{'to_file'};69686969print"<li>".6970"[".6971$cgi->a({-href => href(-full=>1, action=>"blobdiff",6972 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},6973 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},6974 file_name=>$file, file_parent=>$difftree{'from_file'}),6975-title =>"diff"},'D');6976if($have_blame) {6977print$cgi->a({-href => href(-full=>1, action=>"blame",6978 file_name=>$file, hash_base=>$commit),6979-title =>"blame"},'B');6980}6981# if this is not a feed of a file history6982if(!defined$file_name||$file_namene$file) {6983print$cgi->a({-href => href(-full=>1, action=>"history",6984 file_name=>$file, hash=>$commit),6985-title =>"history"},'H');6986}6987$file= esc_path($file);6988print"] ".6989"$file</li>\n";6990}6991if($formateq'rss') {6992print"</ul>]]>\n".6993"</content:encoded>\n".6994"</item>\n";6995}elsif($formateq'atom') {6996print"</ul>\n</div>\n".6997"</content>\n".6998"</entry>\n";6999}7000}70017002# end of feed7003if($formateq'rss') {7004print"</channel>\n</rss>\n";7005}elsif($formateq'atom') {7006print"</feed>\n";7007}7008}70097010sub git_rss {7011 git_feed('rss');7012}70137014sub git_atom {7015 git_feed('atom');7016}70177018sub git_opml {7019my@list= git_get_projects_list();70207021print$cgi->header(7022-type =>'text/xml',7023-charset =>'utf-8',7024-content_disposition =>'inline; filename="opml.xml"');70257026print<<XML;7027<?xml version="1.0" encoding="utf-8"?>7028<opml version="1.0">7029<head>7030 <title>$site_nameOPML Export</title>7031</head>7032<body>7033<outline text="git RSS feeds">7034XML70357036foreachmy$pr(@list) {7037my%proj=%$pr;7038my$head= git_get_head_hash($proj{'path'});7039if(!defined$head) {7040next;7041}7042$git_dir="$projectroot/$proj{'path'}";7043my%co= parse_commit($head);7044if(!%co) {7045next;7046}70477048my$path= esc_html(chop_str($proj{'path'},25,5));7049my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7050my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7051print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7052}7053print<<XML;7054</outline>7055</body>7056</opml>7057XML7058}