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 10use strict; 11use warnings; 12use CGI qw(:standard :escapeHTML -nosticky); 13use CGI::Util qw(unescape); 14use CGI::Carp qw(fatalsToBrowser); 15use Encode; 16use Fcntl ':mode'; 17use File::Find qw(); 18use File::Basename qw(basename); 19binmode STDOUT,':utf8'; 20 21BEGIN{ 22 CGI->compile()if$ENV{'MOD_PERL'}; 23} 24 25our$cgi= new CGI; 26our$version="++GIT_VERSION++"; 27our$my_url=$cgi->url(); 28our$my_uri=$cgi->url(-absolute =>1); 29 30# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 31# needed and used only for URLs with nonempty PATH_INFO 32our$base_url=$my_url; 33 34# When the script is used as DirectoryIndex, the URL does not contain the name 35# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 36# have to do it ourselves. We make $path_info global because it's also used 37# later on. 38# 39# Another issue with the script being the DirectoryIndex is that the resulting 40# $my_url data is not the full script URL: this is good, because we want 41# generated links to keep implying the script name if it wasn't explicitly 42# indicated in the URL we're handling, but it means that $my_url cannot be used 43# as base URL. 44# Therefore, if we needed to strip PATH_INFO, then we know that we have 45# to build the base URL ourselves: 46our$path_info=$ENV{"PATH_INFO"}; 47if($path_info) { 48if($my_url=~ s,\Q$path_info\E$,, && 49$my_uri=~ s,\Q$path_info\E$,, && 50defined$ENV{'SCRIPT_NAME'}) { 51$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 52} 53} 54 55# core git executable to use 56# this can just be "git" if your webserver has a sensible PATH 57our$GIT="++GIT_BINDIR++/git"; 58 59# absolute fs-path which will be prepended to the project path 60#our $projectroot = "/pub/scm"; 61our$projectroot="++GITWEB_PROJECTROOT++"; 62 63# fs traversing limit for getting project list 64# the number is relative to the projectroot 65our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 66 67# target of the home link on top of all pages 68our$home_link=$my_uri||"/"; 69 70# string of the home link on top of all pages 71our$home_link_str="++GITWEB_HOME_LINK_STR++"; 72 73# name of your site or organization to appear in page titles 74# replace this with something more descriptive for clearer bookmarks 75our$site_name="++GITWEB_SITENAME++" 76|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 77 78# filename of html text to include at top of each page 79our$site_header="++GITWEB_SITE_HEADER++"; 80# html text to include at home page 81our$home_text="++GITWEB_HOMETEXT++"; 82# filename of html text to include at bottom of each page 83our$site_footer="++GITWEB_SITE_FOOTER++"; 84 85# URI of stylesheets 86our@stylesheets= ("++GITWEB_CSS++"); 87# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 88our$stylesheet=undef; 89# URI of GIT logo (72x27 size) 90our$logo="++GITWEB_LOGO++"; 91# URI of GIT favicon, assumed to be image/png type 92our$favicon="++GITWEB_FAVICON++"; 93 94# URI and label (title) of GIT logo link 95#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 96#our $logo_label = "git documentation"; 97our$logo_url="http://git-scm.com/"; 98our$logo_label="git homepage"; 99 100# source of projects list 101our$projects_list="++GITWEB_LIST++"; 102 103# the width (in characters) of the projects list "Description" column 104our$projects_list_description_width=25; 105 106# default order of projects list 107# valid values are none, project, descr, owner, and age 108our$default_projects_order="project"; 109 110# show repository only if this file exists 111# (only effective if this variable evaluates to true) 112our$export_ok="++GITWEB_EXPORT_OK++"; 113 114# show repository only if this subroutine returns true 115# when given the path to the project, for example: 116# sub { return -e "$_[0]/git-daemon-export-ok"; } 117our$export_auth_hook=undef; 118 119# only allow viewing of repositories also shown on the overview page 120our$strict_export="++GITWEB_STRICT_EXPORT++"; 121 122# list of git base URLs used for URL to where fetch project from, 123# i.e. full URL is "$git_base_url/$project" 124our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 125 126# default blob_plain mimetype and default charset for text/plain blob 127our$default_blob_plain_mimetype='text/plain'; 128our$default_text_plain_charset=undef; 129 130# file to use for guessing MIME types before trying /etc/mime.types 131# (relative to the current git repository) 132our$mimetypes_file=undef; 133 134# assume this charset if line contains non-UTF-8 characters; 135# it should be valid encoding (see Encoding::Supported(3pm) for list), 136# for which encoding all byte sequences are valid, for example 137# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 138# could be even 'utf-8' for the old behavior) 139our$fallback_encoding='latin1'; 140 141# rename detection options for git-diff and git-diff-tree 142# - default is '-M', with the cost proportional to 143# (number of removed files) * (number of new files). 144# - more costly is '-C' (which implies '-M'), with the cost proportional to 145# (number of changed files + number of removed files) * (number of new files) 146# - even more costly is '-C', '--find-copies-harder' with cost 147# (number of files in the original tree) * (number of new files) 148# - one might want to include '-B' option, e.g. '-B', '-M' 149our@diff_opts= ('-M');# taken from git_commit 150 151# Disables features that would allow repository owners to inject script into 152# the gitweb domain. 153our$prevent_xss=0; 154 155# information about snapshot formats that gitweb is capable of serving 156our%known_snapshot_formats= ( 157# name => { 158# 'display' => display name, 159# 'type' => mime type, 160# 'suffix' => filename suffix, 161# 'format' => --format for git-archive, 162# 'compressor' => [compressor command and arguments] 163# (array reference, optional) 164# 'disabled' => boolean (optional)} 165# 166'tgz'=> { 167'display'=>'tar.gz', 168'type'=>'application/x-gzip', 169'suffix'=>'.tar.gz', 170'format'=>'tar', 171'compressor'=> ['gzip']}, 172 173'tbz2'=> { 174'display'=>'tar.bz2', 175'type'=>'application/x-bzip2', 176'suffix'=>'.tar.bz2', 177'format'=>'tar', 178'compressor'=> ['bzip2']}, 179 180'txz'=> { 181'display'=>'tar.xz', 182'type'=>'application/x-xz', 183'suffix'=>'.tar.xz', 184'format'=>'tar', 185'compressor'=> ['xz'], 186'disabled'=>1}, 187 188'zip'=> { 189'display'=>'zip', 190'type'=>'application/x-zip', 191'suffix'=>'.zip', 192'format'=>'zip'}, 193); 194 195# Aliases so we understand old gitweb.snapshot values in repository 196# configuration. 197our%known_snapshot_format_aliases= ( 198'gzip'=>'tgz', 199'bzip2'=>'tbz2', 200'xz'=>'txz', 201 202# backward compatibility: legacy gitweb config support 203'x-gzip'=>undef,'gz'=>undef, 204'x-bzip2'=>undef,'bz2'=>undef, 205'x-zip'=>undef,''=>undef, 206); 207 208# Pixel sizes for icons and avatars. If the default font sizes or lineheights 209# are changed, it may be appropriate to change these values too via 210# $GITWEB_CONFIG. 211our%avatar_size= ( 212'default'=>16, 213'double'=>32 214); 215 216# You define site-wide feature defaults here; override them with 217# $GITWEB_CONFIG as necessary. 218our%feature= ( 219# feature => { 220# 'sub' => feature-sub (subroutine), 221# 'override' => allow-override (boolean), 222# 'default' => [ default options...] (array reference)} 223# 224# if feature is overridable (it means that allow-override has true value), 225# then feature-sub will be called with default options as parameters; 226# return value of feature-sub indicates if to enable specified feature 227# 228# if there is no 'sub' key (no feature-sub), then feature cannot be 229# overriden 230# 231# use gitweb_get_feature(<feature>) to retrieve the <feature> value 232# (an array) or gitweb_check_feature(<feature>) to check if <feature> 233# is enabled 234 235# Enable the 'blame' blob view, showing the last commit that modified 236# each line in the file. This can be very CPU-intensive. 237 238# To enable system wide have in $GITWEB_CONFIG 239# $feature{'blame'}{'default'} = [1]; 240# To have project specific config enable override in $GITWEB_CONFIG 241# $feature{'blame'}{'override'} = 1; 242# and in project config gitweb.blame = 0|1; 243'blame'=> { 244'sub'=>sub{ feature_bool('blame',@_) }, 245'override'=>0, 246'default'=> [0]}, 247 248# Enable the 'snapshot' link, providing a compressed archive of any 249# tree. This can potentially generate high traffic if you have large 250# project. 251 252# Value is a list of formats defined in %known_snapshot_formats that 253# you wish to offer. 254# To disable system wide have in $GITWEB_CONFIG 255# $feature{'snapshot'}{'default'} = []; 256# To have project specific config enable override in $GITWEB_CONFIG 257# $feature{'snapshot'}{'override'} = 1; 258# and in project config, a comma-separated list of formats or "none" 259# to disable. Example: gitweb.snapshot = tbz2,zip; 260'snapshot'=> { 261'sub'=> \&feature_snapshot, 262'override'=>0, 263'default'=> ['tgz']}, 264 265# Enable text search, which will list the commits which match author, 266# committer or commit text to a given string. Enabled by default. 267# Project specific override is not supported. 268'search'=> { 269'override'=>0, 270'default'=> [1]}, 271 272# Enable grep search, which will list the files in currently selected 273# tree containing the given string. Enabled by default. This can be 274# potentially CPU-intensive, of course. 275 276# To enable system wide have in $GITWEB_CONFIG 277# $feature{'grep'}{'default'} = [1]; 278# To have project specific config enable override in $GITWEB_CONFIG 279# $feature{'grep'}{'override'} = 1; 280# and in project config gitweb.grep = 0|1; 281'grep'=> { 282'sub'=>sub{ feature_bool('grep',@_) }, 283'override'=>0, 284'default'=> [1]}, 285 286# Enable the pickaxe search, which will list the commits that modified 287# a given string in a file. This can be practical and quite faster 288# alternative to 'blame', but still potentially CPU-intensive. 289 290# To enable system wide have in $GITWEB_CONFIG 291# $feature{'pickaxe'}{'default'} = [1]; 292# To have project specific config enable override in $GITWEB_CONFIG 293# $feature{'pickaxe'}{'override'} = 1; 294# and in project config gitweb.pickaxe = 0|1; 295'pickaxe'=> { 296'sub'=>sub{ feature_bool('pickaxe',@_) }, 297'override'=>0, 298'default'=> [1]}, 299 300# Make gitweb use an alternative format of the URLs which can be 301# more readable and natural-looking: project name is embedded 302# directly in the path and the query string contains other 303# auxiliary information. All gitweb installations recognize 304# URL in either format; this configures in which formats gitweb 305# generates links. 306 307# To enable system wide have in $GITWEB_CONFIG 308# $feature{'pathinfo'}{'default'} = [1]; 309# Project specific override is not supported. 310 311# Note that you will need to change the default location of CSS, 312# favicon, logo and possibly other files to an absolute URL. Also, 313# if gitweb.cgi serves as your indexfile, you will need to force 314# $my_uri to contain the script name in your $GITWEB_CONFIG. 315'pathinfo'=> { 316'override'=>0, 317'default'=> [0]}, 318 319# Make gitweb consider projects in project root subdirectories 320# to be forks of existing projects. Given project $projname.git, 321# projects matching $projname/*.git will not be shown in the main 322# projects list, instead a '+' mark will be added to $projname 323# there and a 'forks' view will be enabled for the project, listing 324# all the forks. If project list is taken from a file, forks have 325# to be listed after the main project. 326 327# To enable system wide have in $GITWEB_CONFIG 328# $feature{'forks'}{'default'} = [1]; 329# Project specific override is not supported. 330'forks'=> { 331'override'=>0, 332'default'=> [0]}, 333 334# Insert custom links to the action bar of all project pages. 335# This enables you mainly to link to third-party scripts integrating 336# into gitweb; e.g. git-browser for graphical history representation 337# or custom web-based repository administration interface. 338 339# The 'default' value consists of a list of triplets in the form 340# (label, link, position) where position is the label after which 341# to insert the link and link is a format string where %n expands 342# to the project name, %f to the project path within the filesystem, 343# %h to the current hash (h gitweb parameter) and %b to the current 344# hash base (hb gitweb parameter); %% expands to %. 345 346# To enable system wide have in $GITWEB_CONFIG e.g. 347# $feature{'actions'}{'default'} = [('graphiclog', 348# '/git-browser/by-commit.html?r=%n', 'summary')]; 349# Project specific override is not supported. 350'actions'=> { 351'override'=>0, 352'default'=> []}, 353 354# Allow gitweb scan project content tags described in ctags/ 355# of project repository, and display the popular Web 2.0-ish 356# "tag cloud" near the project list. Note that this is something 357# COMPLETELY different from the normal Git tags. 358 359# gitweb by itself can show existing tags, but it does not handle 360# tagging itself; you need an external application for that. 361# For an example script, check Girocco's cgi/tagproj.cgi. 362# You may want to install the HTML::TagCloud Perl module to get 363# a pretty tag cloud instead of just a list of tags. 364 365# To enable system wide have in $GITWEB_CONFIG 366# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 367# Project specific override is not supported. 368'ctags'=> { 369'override'=>0, 370'default'=> [0]}, 371 372# The maximum number of patches in a patchset generated in patch 373# view. Set this to 0 or undef to disable patch view, or to a 374# negative number to remove any limit. 375 376# To disable system wide have in $GITWEB_CONFIG 377# $feature{'patches'}{'default'} = [0]; 378# To have project specific config enable override in $GITWEB_CONFIG 379# $feature{'patches'}{'override'} = 1; 380# and in project config gitweb.patches = 0|n; 381# where n is the maximum number of patches allowed in a patchset. 382'patches'=> { 383'sub'=> \&feature_patches, 384'override'=>0, 385'default'=> [16]}, 386 387# Avatar support. When this feature is enabled, views such as 388# shortlog or commit will display an avatar associated with 389# the email of the committer(s) and/or author(s). 390 391# Currently available providers are gravatar and picon. 392# If an unknown provider is specified, the feature is disabled. 393 394# Gravatar depends on Digest::MD5. 395# Picon currently relies on the indiana.edu database. 396 397# To enable system wide have in $GITWEB_CONFIG 398# $feature{'avatar'}{'default'} = ['<provider>']; 399# where <provider> is either gravatar or picon. 400# To have project specific config enable override in $GITWEB_CONFIG 401# $feature{'avatar'}{'override'} = 1; 402# and in project config gitweb.avatar = <provider>; 403'avatar'=> { 404'sub'=> \&feature_avatar, 405'override'=>0, 406'default'=> ['']}, 407); 408 409sub gitweb_get_feature { 410my($name) =@_; 411return unlessexists$feature{$name}; 412my($sub,$override,@defaults) = ( 413$feature{$name}{'sub'}, 414$feature{$name}{'override'}, 415@{$feature{$name}{'default'}}); 416if(!$override) {return@defaults; } 417if(!defined$sub) { 418warn"feature$nameis not overrideable"; 419return@defaults; 420} 421return$sub->(@defaults); 422} 423 424# A wrapper to check if a given feature is enabled. 425# With this, you can say 426# 427# my $bool_feat = gitweb_check_feature('bool_feat'); 428# gitweb_check_feature('bool_feat') or somecode; 429# 430# instead of 431# 432# my ($bool_feat) = gitweb_get_feature('bool_feat'); 433# (gitweb_get_feature('bool_feat'))[0] or somecode; 434# 435sub gitweb_check_feature { 436return(gitweb_get_feature(@_))[0]; 437} 438 439 440sub feature_bool { 441my$key=shift; 442my($val) = git_get_project_config($key,'--bool'); 443 444if(!defined$val) { 445return($_[0]); 446}elsif($valeq'true') { 447return(1); 448}elsif($valeq'false') { 449return(0); 450} 451} 452 453sub feature_snapshot { 454my(@fmts) =@_; 455 456my($val) = git_get_project_config('snapshot'); 457 458if($val) { 459@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 460} 461 462return@fmts; 463} 464 465sub feature_patches { 466my@val= (git_get_project_config('patches','--int')); 467 468if(@val) { 469return@val; 470} 471 472return($_[0]); 473} 474 475sub feature_avatar { 476my@val= (git_get_project_config('avatar')); 477 478return@val?@val:@_; 479} 480 481# checking HEAD file with -e is fragile if the repository was 482# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 483# and then pruned. 484sub check_head_link { 485my($dir) =@_; 486my$headfile="$dir/HEAD"; 487return((-e $headfile) || 488(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 489} 490 491sub check_export_ok { 492my($dir) =@_; 493return(check_head_link($dir) && 494(!$export_ok|| -e "$dir/$export_ok") && 495(!$export_auth_hook||$export_auth_hook->($dir))); 496} 497 498# process alternate names for backward compatibility 499# filter out unsupported (unknown) snapshot formats 500sub filter_snapshot_fmts { 501my@fmts=@_; 502 503@fmts=map{ 504exists$known_snapshot_format_aliases{$_} ? 505$known_snapshot_format_aliases{$_} :$_}@fmts; 506@fmts=grep{ 507exists$known_snapshot_formats{$_} && 508!$known_snapshot_formats{$_}{'disabled'}}@fmts; 509} 510 511our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 512if(-e $GITWEB_CONFIG) { 513do$GITWEB_CONFIG; 514}else{ 515our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 516do$GITWEB_CONFIG_SYSTEMif-e $GITWEB_CONFIG_SYSTEM; 517} 518 519# version of the core git binary 520our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 521 522$projects_list||=$projectroot; 523 524# ====================================================================== 525# input validation and dispatch 526 527# input parameters can be collected from a variety of sources (presently, CGI 528# and PATH_INFO), so we define an %input_params hash that collects them all 529# together during validation: this allows subsequent uses (e.g. href()) to be 530# agnostic of the parameter origin 531 532our%input_params= (); 533 534# input parameters are stored with the long parameter name as key. This will 535# also be used in the href subroutine to convert parameters to their CGI 536# equivalent, and since the href() usage is the most frequent one, we store 537# the name -> CGI key mapping here, instead of the reverse. 538# 539# XXX: Warning: If you touch this, check the search form for updating, 540# too. 541 542our@cgi_param_mapping= ( 543 project =>"p", 544 action =>"a", 545 file_name =>"f", 546 file_parent =>"fp", 547 hash =>"h", 548 hash_parent =>"hp", 549 hash_base =>"hb", 550 hash_parent_base =>"hpb", 551 page =>"pg", 552 order =>"o", 553 searchtext =>"s", 554 searchtype =>"st", 555 snapshot_format =>"sf", 556 extra_options =>"opt", 557 search_use_regexp =>"sr", 558); 559our%cgi_param_mapping=@cgi_param_mapping; 560 561# we will also need to know the possible actions, for validation 562our%actions= ( 563"blame"=> \&git_blame, 564"blobdiff"=> \&git_blobdiff, 565"blobdiff_plain"=> \&git_blobdiff_plain, 566"blob"=> \&git_blob, 567"blob_plain"=> \&git_blob_plain, 568"commitdiff"=> \&git_commitdiff, 569"commitdiff_plain"=> \&git_commitdiff_plain, 570"commit"=> \&git_commit, 571"forks"=> \&git_forks, 572"heads"=> \&git_heads, 573"history"=> \&git_history, 574"log"=> \&git_log, 575"patch"=> \&git_patch, 576"patches"=> \&git_patches, 577"rss"=> \&git_rss, 578"atom"=> \&git_atom, 579"search"=> \&git_search, 580"search_help"=> \&git_search_help, 581"shortlog"=> \&git_shortlog, 582"summary"=> \&git_summary, 583"tag"=> \&git_tag, 584"tags"=> \&git_tags, 585"tree"=> \&git_tree, 586"snapshot"=> \&git_snapshot, 587"object"=> \&git_object, 588# those below don't need $project 589"opml"=> \&git_opml, 590"project_list"=> \&git_project_list, 591"project_index"=> \&git_project_index, 592); 593 594# finally, we have the hash of allowed extra_options for the commands that 595# allow them 596our%allowed_options= ( 597"--no-merges"=> [qw(rss atom log shortlog history)], 598); 599 600# fill %input_params with the CGI parameters. All values except for 'opt' 601# should be single values, but opt can be an array. We should probably 602# build an array of parameters that can be multi-valued, but since for the time 603# being it's only this one, we just single it out 604while(my($name,$symbol) =each%cgi_param_mapping) { 605if($symboleq'opt') { 606$input_params{$name} = [$cgi->param($symbol) ]; 607}else{ 608$input_params{$name} =$cgi->param($symbol); 609} 610} 611 612# now read PATH_INFO and update the parameter list for missing parameters 613sub evaluate_path_info { 614return ifdefined$input_params{'project'}; 615return if!$path_info; 616$path_info=~ s,^/+,,; 617return if!$path_info; 618 619# find which part of PATH_INFO is project 620my$project=$path_info; 621$project=~ s,/+$,,; 622while($project&& !check_head_link("$projectroot/$project")) { 623$project=~ s,/*[^/]*$,,; 624} 625return unless$project; 626$input_params{'project'} =$project; 627 628# do not change any parameters if an action is given using the query string 629return if$input_params{'action'}; 630$path_info=~ s,^\Q$project\E/*,,; 631 632# next, check if we have an action 633my$action=$path_info; 634$action=~ s,/.*$,,; 635if(exists$actions{$action}) { 636$path_info=~ s,^$action/*,,; 637$input_params{'action'} =$action; 638} 639 640# list of actions that want hash_base instead of hash, but can have no 641# pathname (f) parameter 642my@wants_base= ( 643'tree', 644'history', 645); 646 647# we want to catch 648# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 649my($parentrefname,$parentpathname,$refname,$pathname) = 650($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?(.+?)(?::(.+))?$/); 651 652# first, analyze the 'current' part 653if(defined$pathname) { 654# we got "branch:filename" or "branch:dir/" 655# we could use git_get_type(branch:pathname), but: 656# - it needs $git_dir 657# - it does a git() call 658# - the convention of terminating directories with a slash 659# makes it superfluous 660# - embedding the action in the PATH_INFO would make it even 661# more superfluous 662$pathname=~ s,^/+,,; 663if(!$pathname||substr($pathname, -1)eq"/") { 664$input_params{'action'} ||="tree"; 665$pathname=~ s,/$,,; 666}else{ 667# the default action depends on whether we had parent info 668# or not 669if($parentrefname) { 670$input_params{'action'} ||="blobdiff_plain"; 671}else{ 672$input_params{'action'} ||="blob_plain"; 673} 674} 675$input_params{'hash_base'} ||=$refname; 676$input_params{'file_name'} ||=$pathname; 677}elsif(defined$refname) { 678# we got "branch". In this case we have to choose if we have to 679# set hash or hash_base. 680# 681# Most of the actions without a pathname only want hash to be 682# set, except for the ones specified in @wants_base that want 683# hash_base instead. It should also be noted that hand-crafted 684# links having 'history' as an action and no pathname or hash 685# set will fail, but that happens regardless of PATH_INFO. 686$input_params{'action'} ||="shortlog"; 687if(grep{$_eq$input_params{'action'} }@wants_base) { 688$input_params{'hash_base'} ||=$refname; 689}else{ 690$input_params{'hash'} ||=$refname; 691} 692} 693 694# next, handle the 'parent' part, if present 695if(defined$parentrefname) { 696# a missing pathspec defaults to the 'current' filename, allowing e.g. 697# someproject/blobdiff/oldrev..newrev:/filename 698if($parentpathname) { 699$parentpathname=~ s,^/+,,; 700$parentpathname=~ s,/$,,; 701$input_params{'file_parent'} ||=$parentpathname; 702}else{ 703$input_params{'file_parent'} ||=$input_params{'file_name'}; 704} 705# we assume that hash_parent_base is wanted if a path was specified, 706# or if the action wants hash_base instead of hash 707if(defined$input_params{'file_parent'} || 708grep{$_eq$input_params{'action'} }@wants_base) { 709$input_params{'hash_parent_base'} ||=$parentrefname; 710}else{ 711$input_params{'hash_parent'} ||=$parentrefname; 712} 713} 714 715# for the snapshot action, we allow URLs in the form 716# $project/snapshot/$hash.ext 717# where .ext determines the snapshot and gets removed from the 718# passed $refname to provide the $hash. 719# 720# To be able to tell that $refname includes the format extension, we 721# require the following two conditions to be satisfied: 722# - the hash input parameter MUST have been set from the $refname part 723# of the URL (i.e. they must be equal) 724# - the snapshot format MUST NOT have been defined already (e.g. from 725# CGI parameter sf) 726# It's also useless to try any matching unless $refname has a dot, 727# so we check for that too 728if(defined$input_params{'action'} && 729$input_params{'action'}eq'snapshot'&& 730defined$refname&&index($refname,'.') != -1&& 731$refnameeq$input_params{'hash'} && 732!defined$input_params{'snapshot_format'}) { 733# We loop over the known snapshot formats, checking for 734# extensions. Allowed extensions are both the defined suffix 735# (which includes the initial dot already) and the snapshot 736# format key itself, with a prepended dot 737while(my($fmt,$opt) =each%known_snapshot_formats) { 738my$hash=$refname; 739unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 740next; 741} 742my$sfx=$1; 743# a valid suffix was found, so set the snapshot format 744# and reset the hash parameter 745$input_params{'snapshot_format'} =$fmt; 746$input_params{'hash'} =$hash; 747# we also set the format suffix to the one requested 748# in the URL: this way a request for e.g. .tgz returns 749# a .tgz instead of a .tar.gz 750$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 751last; 752} 753} 754} 755evaluate_path_info(); 756 757our$action=$input_params{'action'}; 758if(defined$action) { 759if(!validate_action($action)) { 760 die_error(400,"Invalid action parameter"); 761} 762} 763 764# parameters which are pathnames 765our$project=$input_params{'project'}; 766if(defined$project) { 767if(!validate_project($project)) { 768undef$project; 769 die_error(404,"No such project"); 770} 771} 772 773our$file_name=$input_params{'file_name'}; 774if(defined$file_name) { 775if(!validate_pathname($file_name)) { 776 die_error(400,"Invalid file parameter"); 777} 778} 779 780our$file_parent=$input_params{'file_parent'}; 781if(defined$file_parent) { 782if(!validate_pathname($file_parent)) { 783 die_error(400,"Invalid file parent parameter"); 784} 785} 786 787# parameters which are refnames 788our$hash=$input_params{'hash'}; 789if(defined$hash) { 790if(!validate_refname($hash)) { 791 die_error(400,"Invalid hash parameter"); 792} 793} 794 795our$hash_parent=$input_params{'hash_parent'}; 796if(defined$hash_parent) { 797if(!validate_refname($hash_parent)) { 798 die_error(400,"Invalid hash parent parameter"); 799} 800} 801 802our$hash_base=$input_params{'hash_base'}; 803if(defined$hash_base) { 804if(!validate_refname($hash_base)) { 805 die_error(400,"Invalid hash base parameter"); 806} 807} 808 809our@extra_options= @{$input_params{'extra_options'}}; 810# @extra_options is always defined, since it can only be (currently) set from 811# CGI, and $cgi->param() returns the empty array in array context if the param 812# is not set 813foreachmy$opt(@extra_options) { 814if(not exists$allowed_options{$opt}) { 815 die_error(400,"Invalid option parameter"); 816} 817if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 818 die_error(400,"Invalid option parameter for this action"); 819} 820} 821 822our$hash_parent_base=$input_params{'hash_parent_base'}; 823if(defined$hash_parent_base) { 824if(!validate_refname($hash_parent_base)) { 825 die_error(400,"Invalid hash parent base parameter"); 826} 827} 828 829# other parameters 830our$page=$input_params{'page'}; 831if(defined$page) { 832if($page=~m/[^0-9]/) { 833 die_error(400,"Invalid page parameter"); 834} 835} 836 837our$searchtype=$input_params{'searchtype'}; 838if(defined$searchtype) { 839if($searchtype=~m/[^a-z]/) { 840 die_error(400,"Invalid searchtype parameter"); 841} 842} 843 844our$search_use_regexp=$input_params{'search_use_regexp'}; 845 846our$searchtext=$input_params{'searchtext'}; 847our$search_regexp; 848if(defined$searchtext) { 849if(length($searchtext) <2) { 850 die_error(403,"At least two characters are required for search parameter"); 851} 852$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext; 853} 854 855# path to the current git repository 856our$git_dir; 857$git_dir="$projectroot/$project"if$project; 858 859# list of supported snapshot formats 860our@snapshot_fmts= gitweb_get_feature('snapshot'); 861@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts); 862 863# check that the avatar feature is set to a known provider name, 864# and for each provider check if the dependencies are satisfied. 865# if the provider name is invalid or the dependencies are not met, 866# reset $git_avatar to the empty string. 867our($git_avatar) = gitweb_get_feature('avatar'); 868if($git_avatareq'gravatar') { 869$git_avatar=''unless(eval{require Digest::MD5;1; }); 870}elsif($git_avatareq'picon') { 871# no dependencies 872}else{ 873$git_avatar=''; 874} 875 876# dispatch 877if(!defined$action) { 878if(defined$hash) { 879$action= git_get_type($hash); 880}elsif(defined$hash_base&&defined$file_name) { 881$action= git_get_type("$hash_base:$file_name"); 882}elsif(defined$project) { 883$action='summary'; 884}else{ 885$action='project_list'; 886} 887} 888if(!defined($actions{$action})) { 889 die_error(400,"Unknown action"); 890} 891if($action!~m/^(?:opml|project_list|project_index)$/&& 892!$project) { 893 die_error(400,"Project needed"); 894} 895$actions{$action}->(); 896exit; 897 898## ====================================================================== 899## action links 900 901sub href { 902my%params=@_; 903# default is to use -absolute url() i.e. $my_uri 904my$href=$params{-full} ?$my_url:$my_uri; 905 906$params{'project'} =$projectunlessexists$params{'project'}; 907 908if($params{-replay}) { 909while(my($name,$symbol) =each%cgi_param_mapping) { 910if(!exists$params{$name}) { 911$params{$name} =$input_params{$name}; 912} 913} 914} 915 916my$use_pathinfo= gitweb_check_feature('pathinfo'); 917if($use_pathinfoand defined$params{'project'}) { 918# try to put as many parameters as possible in PATH_INFO: 919# - project name 920# - action 921# - hash_parent or hash_parent_base:/file_parent 922# - hash or hash_base:/filename 923# - the snapshot_format as an appropriate suffix 924 925# When the script is the root DirectoryIndex for the domain, 926# $href here would be something like http://gitweb.example.com/ 927# Thus, we strip any trailing / from $href, to spare us double 928# slashes in the final URL 929$href=~ s,/$,,; 930 931# Then add the project name, if present 932$href.="/".esc_url($params{'project'}); 933delete$params{'project'}; 934 935# since we destructively absorb parameters, we keep this 936# boolean that remembers if we're handling a snapshot 937my$is_snapshot=$params{'action'}eq'snapshot'; 938 939# Summary just uses the project path URL, any other action is 940# added to the URL 941if(defined$params{'action'}) { 942$href.="/".esc_url($params{'action'})unless$params{'action'}eq'summary'; 943delete$params{'action'}; 944} 945 946# Next, we put hash_parent_base:/file_parent..hash_base:/file_name, 947# stripping nonexistent or useless pieces 948$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'} 949||$params{'hash_parent'} ||$params{'hash'}); 950if(defined$params{'hash_base'}) { 951if(defined$params{'hash_parent_base'}) { 952$href.= esc_url($params{'hash_parent_base'}); 953# skip the file_parent if it's the same as the file_name 954if(defined$params{'file_parent'}) { 955if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) { 956delete$params{'file_parent'}; 957}elsif($params{'file_parent'} !~/\.\./) { 958$href.=":/".esc_url($params{'file_parent'}); 959delete$params{'file_parent'}; 960} 961} 962$href.=".."; 963delete$params{'hash_parent'}; 964delete$params{'hash_parent_base'}; 965}elsif(defined$params{'hash_parent'}) { 966$href.= esc_url($params{'hash_parent'}).".."; 967delete$params{'hash_parent'}; 968} 969 970$href.= esc_url($params{'hash_base'}); 971if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) { 972$href.=":/".esc_url($params{'file_name'}); 973delete$params{'file_name'}; 974} 975delete$params{'hash'}; 976delete$params{'hash_base'}; 977}elsif(defined$params{'hash'}) { 978$href.= esc_url($params{'hash'}); 979delete$params{'hash'}; 980} 981 982# If the action was a snapshot, we can absorb the 983# snapshot_format parameter too 984if($is_snapshot) { 985my$fmt=$params{'snapshot_format'}; 986# snapshot_format should always be defined when href() 987# is called, but just in case some code forgets, we 988# fall back to the default 989$fmt||=$snapshot_fmts[0]; 990$href.=$known_snapshot_formats{$fmt}{'suffix'}; 991delete$params{'snapshot_format'}; 992} 993} 994 995# now encode the parameters explicitly 996my@result= (); 997for(my$i=0;$i<@cgi_param_mapping;$i+=2) { 998my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]); 999if(defined$params{$name}) {1000if(ref($params{$name})eq"ARRAY") {1001foreachmy$par(@{$params{$name}}) {1002push@result,$symbol."=". esc_param($par);1003}1004}else{1005push@result,$symbol."=". esc_param($params{$name});1006}1007}1008}1009$href.="?".join(';',@result)ifscalar@result;10101011return$href;1012}101310141015## ======================================================================1016## validation, quoting/unquoting and escaping10171018sub validate_action {1019my$input=shift||returnundef;1020returnundefunlessexists$actions{$input};1021return$input;1022}10231024sub validate_project {1025my$input=shift||returnundef;1026if(!validate_pathname($input) ||1027!(-d "$projectroot/$input") ||1028!check_export_ok("$projectroot/$input") ||1029($strict_export&& !project_in_list($input))) {1030returnundef;1031}else{1032return$input;1033}1034}10351036sub validate_pathname {1037my$input=shift||returnundef;10381039# no '.' or '..' as elements of path, i.e. no '.' nor '..'1040# at the beginning, at the end, and between slashes.1041# also this catches doubled slashes1042if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1043returnundef;1044}1045# no null characters1046if($input=~m!\0!) {1047returnundef;1048}1049return$input;1050}10511052sub validate_refname {1053my$input=shift||returnundef;10541055# textual hashes are O.K.1056if($input=~m/^[0-9a-fA-F]{40}$/) {1057return$input;1058}1059# it must be correct pathname1060$input= validate_pathname($input)1061orreturnundef;1062# restrictions on ref name according to git-check-ref-format1063if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1064returnundef;1065}1066return$input;1067}10681069# decode sequences of octets in utf8 into Perl's internal form,1070# which is utf-8 with utf8 flag set if needed. gitweb writes out1071# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1072sub to_utf8 {1073my$str=shift;1074if(utf8::valid($str)) {1075 utf8::decode($str);1076return$str;1077}else{1078return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1079}1080}10811082# quote unsafe chars, but keep the slash, even when it's not1083# correct, but quoted slashes look too horrible in bookmarks1084sub esc_param {1085my$str=shift;1086$str=~s/([^A-Za-z0-9\-_.~()\/:@])/sprintf("%%%02X",ord($1))/eg;1087$str=~s/\+/%2B/g;1088$str=~s/ /\+/g;1089return$str;1090}10911092# quote unsafe chars in whole URL, so some charactrs cannot be quoted1093sub esc_url {1094my$str=shift;1095$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf("%%%02X",ord($1))/eg;1096$str=~s/\+/%2B/g;1097$str=~s/ /\+/g;1098return$str;1099}11001101# replace invalid utf8 character with SUBSTITUTION sequence1102sub esc_html {1103my$str=shift;1104my%opts=@_;11051106$str= to_utf8($str);1107$str=$cgi->escapeHTML($str);1108if($opts{'-nbsp'}) {1109$str=~s/ / /g;1110}1111$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1112return$str;1113}11141115# quote control characters and escape filename to HTML1116sub esc_path {1117my$str=shift;1118my%opts=@_;11191120$str= to_utf8($str);1121$str=$cgi->escapeHTML($str);1122if($opts{'-nbsp'}) {1123$str=~s/ / /g;1124}1125$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1126return$str;1127}11281129# Make control characters "printable", using character escape codes (CEC)1130sub quot_cec {1131my$cntrl=shift;1132my%opts=@_;1133my%es= (# character escape codes, aka escape sequences1134"\t"=>'\t',# tab (HT)1135"\n"=>'\n',# line feed (LF)1136"\r"=>'\r',# carrige return (CR)1137"\f"=>'\f',# form feed (FF)1138"\b"=>'\b',# backspace (BS)1139"\a"=>'\a',# alarm (bell) (BEL)1140"\e"=>'\e',# escape (ESC)1141"\013"=>'\v',# vertical tab (VT)1142"\000"=>'\0',# nul character (NUL)1143);1144my$chr= ( (exists$es{$cntrl})1145?$es{$cntrl}1146:sprintf('\%2x',ord($cntrl)) );1147if($opts{-nohtml}) {1148return$chr;1149}else{1150return"<span class=\"cntrl\">$chr</span>";1151}1152}11531154# Alternatively use unicode control pictures codepoints,1155# Unicode "printable representation" (PR)1156sub quot_upr {1157my$cntrl=shift;1158my%opts=@_;11591160my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1161if($opts{-nohtml}) {1162return$chr;1163}else{1164return"<span class=\"cntrl\">$chr</span>";1165}1166}11671168# git may return quoted and escaped filenames1169sub unquote {1170my$str=shift;11711172sub unq {1173my$seq=shift;1174my%es= (# character escape codes, aka escape sequences1175't'=>"\t",# tab (HT, TAB)1176'n'=>"\n",# newline (NL)1177'r'=>"\r",# return (CR)1178'f'=>"\f",# form feed (FF)1179'b'=>"\b",# backspace (BS)1180'a'=>"\a",# alarm (bell) (BEL)1181'e'=>"\e",# escape (ESC)1182'v'=>"\013",# vertical tab (VT)1183);11841185if($seq=~m/^[0-7]{1,3}$/) {1186# octal char sequence1187returnchr(oct($seq));1188}elsif(exists$es{$seq}) {1189# C escape sequence, aka character escape code1190return$es{$seq};1191}1192# quoted ordinary character1193return$seq;1194}11951196if($str=~m/^"(.*)"$/) {1197# needs unquoting1198$str=$1;1199$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1200}1201return$str;1202}12031204# escape tabs (convert tabs to spaces)1205sub untabify {1206my$line=shift;12071208while((my$pos=index($line,"\t")) != -1) {1209if(my$count= (8- ($pos%8))) {1210my$spaces=' ' x $count;1211$line=~s/\t/$spaces/;1212}1213}12141215return$line;1216}12171218sub project_in_list {1219my$project=shift;1220my@list= git_get_projects_list();1221return@list&&scalar(grep{$_->{'path'}eq$project}@list);1222}12231224## ----------------------------------------------------------------------1225## HTML aware string manipulation12261227# Try to chop given string on a word boundary between position1228# $len and $len+$add_len. If there is no word boundary there,1229# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1230# (marking chopped part) would be longer than given string.1231sub chop_str {1232my$str=shift;1233my$len=shift;1234my$add_len=shift||10;1235my$where=shift||'right';# 'left' | 'center' | 'right'12361237# Make sure perl knows it is utf8 encoded so we don't1238# cut in the middle of a utf8 multibyte char.1239$str= to_utf8($str);12401241# allow only $len chars, but don't cut a word if it would fit in $add_len1242# if it doesn't fit, cut it if it's still longer than the dots we would add1243# remove chopped character entities entirely12441245# when chopping in the middle, distribute $len into left and right part1246# return early if chopping wouldn't make string shorter1247if($whereeq'center') {1248return$strif($len+5>=length($str));# filler is length 51249$len=int($len/2);1250}else{1251return$strif($len+4>=length($str));# filler is length 41252}12531254# regexps: ending and beginning with word part up to $add_len1255my$endre=qr/.{$len}\w{0,$add_len}/;1256my$begre=qr/\w{0,$add_len}.{$len}/;12571258if($whereeq'left') {1259$str=~m/^(.*?)($begre)$/;1260my($lead,$body) = ($1,$2);1261if(length($lead) >4) {1262$body=~s/^[^;]*;//if($lead=~m/&[^;]*$/);1263$lead=" ...";1264}1265return"$lead$body";12661267}elsif($whereeq'center') {1268$str=~m/^($endre)(.*)$/;1269my($left,$str) = ($1,$2);1270$str=~m/^(.*?)($begre)$/;1271my($mid,$right) = ($1,$2);1272if(length($mid) >5) {1273$left=~s/&[^;]*$//;1274$right=~s/^[^;]*;//if($mid=~m/&[^;]*$/);1275$mid=" ... ";1276}1277return"$left$mid$right";12781279}else{1280$str=~m/^($endre)(.*)$/;1281my$body=$1;1282my$tail=$2;1283if(length($tail) >4) {1284$body=~s/&[^;]*$//;1285$tail="... ";1286}1287return"$body$tail";1288}1289}12901291# takes the same arguments as chop_str, but also wraps a <span> around the1292# result with a title attribute if it does get chopped. Additionally, the1293# string is HTML-escaped.1294sub chop_and_escape_str {1295my($str) =@_;12961297my$chopped= chop_str(@_);1298if($choppedeq$str) {1299return esc_html($chopped);1300}else{1301$str=~s/[[:cntrl:]]/?/g;1302return$cgi->span({-title=>$str}, esc_html($chopped));1303}1304}13051306## ----------------------------------------------------------------------1307## functions returning short strings13081309# CSS class for given age value (in seconds)1310sub age_class {1311my$age=shift;13121313if(!defined$age) {1314return"noage";1315}elsif($age<60*60*2) {1316return"age0";1317}elsif($age<60*60*24*2) {1318return"age1";1319}else{1320return"age2";1321}1322}13231324# convert age in seconds to "nn units ago" string1325sub age_string {1326my$age=shift;1327my$age_str;13281329if($age>60*60*24*365*2) {1330$age_str= (int$age/60/60/24/365);1331$age_str.=" years ago";1332}elsif($age>60*60*24*(365/12)*2) {1333$age_str=int$age/60/60/24/(365/12);1334$age_str.=" months ago";1335}elsif($age>60*60*24*7*2) {1336$age_str=int$age/60/60/24/7;1337$age_str.=" weeks ago";1338}elsif($age>60*60*24*2) {1339$age_str=int$age/60/60/24;1340$age_str.=" days ago";1341}elsif($age>60*60*2) {1342$age_str=int$age/60/60;1343$age_str.=" hours ago";1344}elsif($age>60*2) {1345$age_str=int$age/60;1346$age_str.=" min ago";1347}elsif($age>2) {1348$age_str=int$age;1349$age_str.=" sec ago";1350}else{1351$age_str.=" right now";1352}1353return$age_str;1354}13551356useconstant{1357 S_IFINVALID =>0030000,1358 S_IFGITLINK =>0160000,1359};13601361# submodule/subproject, a commit object reference1362sub S_ISGITLINK {1363my$mode=shift;13641365return(($mode& S_IFMT) == S_IFGITLINK)1366}13671368# convert file mode in octal to symbolic file mode string1369sub mode_str {1370my$mode=oct shift;13711372if(S_ISGITLINK($mode)) {1373return'm---------';1374}elsif(S_ISDIR($mode& S_IFMT)) {1375return'drwxr-xr-x';1376}elsif(S_ISLNK($mode)) {1377return'lrwxrwxrwx';1378}elsif(S_ISREG($mode)) {1379# git cares only about the executable bit1380if($mode& S_IXUSR) {1381return'-rwxr-xr-x';1382}else{1383return'-rw-r--r--';1384};1385}else{1386return'----------';1387}1388}13891390# convert file mode in octal to file type string1391sub file_type {1392my$mode=shift;13931394if($mode!~m/^[0-7]+$/) {1395return$mode;1396}else{1397$mode=oct$mode;1398}13991400if(S_ISGITLINK($mode)) {1401return"submodule";1402}elsif(S_ISDIR($mode& S_IFMT)) {1403return"directory";1404}elsif(S_ISLNK($mode)) {1405return"symlink";1406}elsif(S_ISREG($mode)) {1407return"file";1408}else{1409return"unknown";1410}1411}14121413# convert file mode in octal to file type description string1414sub file_type_long {1415my$mode=shift;14161417if($mode!~m/^[0-7]+$/) {1418return$mode;1419}else{1420$mode=oct$mode;1421}14221423if(S_ISGITLINK($mode)) {1424return"submodule";1425}elsif(S_ISDIR($mode& S_IFMT)) {1426return"directory";1427}elsif(S_ISLNK($mode)) {1428return"symlink";1429}elsif(S_ISREG($mode)) {1430if($mode& S_IXUSR) {1431return"executable";1432}else{1433return"file";1434};1435}else{1436return"unknown";1437}1438}143914401441## ----------------------------------------------------------------------1442## functions returning short HTML fragments, or transforming HTML fragments1443## which don't belong to other sections14441445# format line of commit message.1446sub format_log_line_html {1447my$line=shift;14481449$line= esc_html($line, -nbsp=>1);1450$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1451$cgi->a({-href => href(action=>"object", hash=>$1),1452-class=>"text"},$1);1453}eg;14541455return$line;1456}14571458# format marker of refs pointing to given object14591460# the destination action is chosen based on object type and current context:1461# - for annotated tags, we choose the tag view unless it's the current view1462# already, in which case we go to shortlog view1463# - for other refs, we keep the current view if we're in history, shortlog or1464# log view, and select shortlog otherwise1465sub format_ref_marker {1466my($refs,$id) =@_;1467my$markers='';14681469if(defined$refs->{$id}) {1470foreachmy$ref(@{$refs->{$id}}) {1471# this code exploits the fact that non-lightweight tags are the1472# only indirect objects, and that they are the only objects for which1473# we want to use tag instead of shortlog as action1474my($type,$name) =qw();1475my$indirect= ($ref=~s/\^\{\}$//);1476# e.g. tags/v2.6.11 or heads/next1477if($ref=~m!^(.*?)s?/(.*)$!) {1478$type=$1;1479$name=$2;1480}else{1481$type="ref";1482$name=$ref;1483}14841485my$class=$type;1486$class.=" indirect"if$indirect;14871488my$dest_action="shortlog";14891490if($indirect) {1491$dest_action="tag"unless$actioneq"tag";1492}elsif($action=~/^(history|(short)?log)$/) {1493$dest_action=$action;1494}14951496my$dest="";1497$dest.="refs/"unless$ref=~ m!^refs/!;1498$dest.=$ref;14991500my$link=$cgi->a({1501-href => href(1502 action=>$dest_action,1503 hash=>$dest1504)},$name);15051506$markers.=" <span class=\"$class\"title=\"$ref\">".1507$link."</span>";1508}1509}15101511if($markers) {1512return' <span class="refs">'.$markers.'</span>';1513}else{1514return"";1515}1516}15171518# format, perhaps shortened and with markers, title line1519sub format_subject_html {1520my($long,$short,$href,$extra) =@_;1521$extra=''unlessdefined($extra);15221523if(length($short) <length($long)) {1524$long=~s/[[:cntrl:]]/?/g;1525return$cgi->a({-href =>$href, -class=>"list subject",1526-title => to_utf8($long)},1527 esc_html($short) .$extra);1528}else{1529return$cgi->a({-href =>$href, -class=>"list subject"},1530 esc_html($long) .$extra);1531}1532}15331534# Rather than recomputing the url for an email multiple times, we cache it1535# after the first hit. This gives a visible benefit in views where the avatar1536# for the same email is used repeatedly (e.g. shortlog).1537# The cache is shared by all avatar engines (currently gravatar only), which1538# are free to use it as preferred. Since only one avatar engine is used for any1539# given page, there's no risk for cache conflicts.1540our%avatar_cache= ();15411542# Compute the picon url for a given email, by using the picon search service over at1543# http://www.cs.indiana.edu/picons/search.html1544sub picon_url {1545my$email=lc shift;1546if(!$avatar_cache{$email}) {1547my($user,$domain) =split('@',$email);1548$avatar_cache{$email} =1549"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1550"$domain/$user/".1551"users+domains+unknown/up/single";1552}1553return$avatar_cache{$email};1554}15551556# Compute the gravatar url for a given email, if it's not in the cache already.1557# Gravatar stores only the part of the URL before the size, since that's the1558# one computationally more expensive. This also allows reuse of the cache for1559# different sizes (for this particular engine).1560sub gravatar_url {1561my$email=lc shift;1562my$size=shift;1563$avatar_cache{$email} ||=1564"http://www.gravatar.com/avatar/".1565 Digest::MD5::md5_hex($email) ."?s=";1566return$avatar_cache{$email} .$size;1567}15681569# Insert an avatar for the given $email at the given $size if the feature1570# is enabled.1571sub git_get_avatar {1572my($email,%opts) =@_;1573my$pre_white= ($opts{-pad_before} ?" ":"");1574my$post_white= ($opts{-pad_after} ?" ":"");1575$opts{-size} ||='default';1576my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1577my$url="";1578if($git_avatareq'gravatar') {1579$url= gravatar_url($email,$size);1580}elsif($git_avatareq'picon') {1581$url= picon_url($email);1582}1583# Other providers can be added by extending the if chain, defining $url1584# as needed. If no variant puts something in $url, we assume avatars1585# are completely disabled/unavailable.1586if($url) {1587return$pre_white.1588"<img width=\"$size\"".1589"class=\"avatar\"".1590"src=\"$url\"".1591"alt=\"\"".1592"/>".$post_white;1593}else{1594return"";1595}1596}15971598# format the author name of the given commit with the given tag1599# the author name is chopped and escaped according to the other1600# optional parameters (see chop_str).1601sub format_author_html {1602my$tag=shift;1603my$co=shift;1604my$author= chop_and_escape_str($co->{'author_name'},@_);1605return"<$tagclass=\"author\">".1606 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1607$author."</$tag>";1608}16091610# format git diff header line, i.e. "diff --(git|combined|cc) ..."1611sub format_git_diff_header_line {1612my$line=shift;1613my$diffinfo=shift;1614my($from,$to) =@_;16151616if($diffinfo->{'nparents'}) {1617# combined diff1618$line=~s!^(diff (.*?) )"?.*$!$1!;1619if($to->{'href'}) {1620$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1621 esc_path($to->{'file'}));1622}else{# file was deleted (no href)1623$line.= esc_path($to->{'file'});1624}1625}else{1626# "ordinary" diff1627$line=~s!^(diff (.*?) )"?a/.*$!$1!;1628if($from->{'href'}) {1629$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1630'a/'. esc_path($from->{'file'}));1631}else{# file was added (no href)1632$line.='a/'. esc_path($from->{'file'});1633}1634$line.=' ';1635if($to->{'href'}) {1636$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1637'b/'. esc_path($to->{'file'}));1638}else{# file was deleted1639$line.='b/'. esc_path($to->{'file'});1640}1641}16421643return"<div class=\"diff header\">$line</div>\n";1644}16451646# format extended diff header line, before patch itself1647sub format_extended_diff_header_line {1648my$line=shift;1649my$diffinfo=shift;1650my($from,$to) =@_;16511652# match <path>1653if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {1654$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},1655 esc_path($from->{'file'}));1656}1657if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {1658$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},1659 esc_path($to->{'file'}));1660}1661# match single <mode>1662if($line=~m/\s(\d{6})$/) {1663$line.='<span class="info"> ('.1664 file_type_long($1) .1665')</span>';1666}1667# match <hash>1668if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {1669# can match only for combined diff1670$line='index ';1671for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1672if($from->{'href'}[$i]) {1673$line.=$cgi->a({-href=>$from->{'href'}[$i],1674-class=>"hash"},1675substr($diffinfo->{'from_id'}[$i],0,7));1676}else{1677$line.='0' x 7;1678}1679# separator1680$line.=','if($i<$diffinfo->{'nparents'} -1);1681}1682$line.='..';1683if($to->{'href'}) {1684$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1685substr($diffinfo->{'to_id'},0,7));1686}else{1687$line.='0' x 7;1688}16891690}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {1691# can match only for ordinary diff1692my($from_link,$to_link);1693if($from->{'href'}) {1694$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},1695substr($diffinfo->{'from_id'},0,7));1696}else{1697$from_link='0' x 7;1698}1699if($to->{'href'}) {1700$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1701substr($diffinfo->{'to_id'},0,7));1702}else{1703$to_link='0' x 7;1704}1705my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});1706$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;1707}17081709return$line."<br/>\n";1710}17111712# format from-file/to-file diff header1713sub format_diff_from_to_header {1714my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;1715my$line;1716my$result='';17171718$line=$from_line;1719#assert($line =~ m/^---/) if DEBUG;1720# no extra formatting for "^--- /dev/null"1721if(!$diffinfo->{'nparents'}) {1722# ordinary (single parent) diff1723if($line=~m!^--- "?a/!) {1724if($from->{'href'}) {1725$line='--- a/'.1726$cgi->a({-href=>$from->{'href'}, -class=>"path"},1727 esc_path($from->{'file'}));1728}else{1729$line='--- a/'.1730 esc_path($from->{'file'});1731}1732}1733$result.= qq!<div class="diff from_file">$line</div>\n!;17341735}else{1736# combined diff (merge commit)1737for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1738if($from->{'href'}[$i]) {1739$line='--- '.1740$cgi->a({-href=>href(action=>"blobdiff",1741 hash_parent=>$diffinfo->{'from_id'}[$i],1742 hash_parent_base=>$parents[$i],1743 file_parent=>$from->{'file'}[$i],1744 hash=>$diffinfo->{'to_id'},1745 hash_base=>$hash,1746 file_name=>$to->{'file'}),1747-class=>"path",1748-title=>"diff". ($i+1)},1749$i+1) .1750'/'.1751$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},1752 esc_path($from->{'file'}[$i]));1753}else{1754$line='--- /dev/null';1755}1756$result.= qq!<div class="diff from_file">$line</div>\n!;1757}1758}17591760$line=$to_line;1761#assert($line =~ m/^\+\+\+/) if DEBUG;1762# no extra formatting for "^+++ /dev/null"1763if($line=~m!^\+\+\+ "?b/!) {1764if($to->{'href'}) {1765$line='+++ b/'.1766$cgi->a({-href=>$to->{'href'}, -class=>"path"},1767 esc_path($to->{'file'}));1768}else{1769$line='+++ b/'.1770 esc_path($to->{'file'});1771}1772}1773$result.= qq!<div class="diff to_file">$line</div>\n!;17741775return$result;1776}17771778# create note for patch simplified by combined diff1779sub format_diff_cc_simplified {1780my($diffinfo,@parents) =@_;1781my$result='';17821783$result.="<div class=\"diff header\">".1784"diff --cc ";1785if(!is_deleted($diffinfo)) {1786$result.=$cgi->a({-href => href(action=>"blob",1787 hash_base=>$hash,1788 hash=>$diffinfo->{'to_id'},1789 file_name=>$diffinfo->{'to_file'}),1790-class=>"path"},1791 esc_path($diffinfo->{'to_file'}));1792}else{1793$result.= esc_path($diffinfo->{'to_file'});1794}1795$result.="</div>\n".# class="diff header"1796"<div class=\"diff nodifferences\">".1797"Simple merge".1798"</div>\n";# class="diff nodifferences"17991800return$result;1801}18021803# format patch (diff) line (not to be used for diff headers)1804sub format_diff_line {1805my$line=shift;1806my($from,$to) =@_;1807my$diff_class="";18081809chomp$line;18101811if($from&&$to&&ref($from->{'href'})eq"ARRAY") {1812# combined diff1813my$prefix=substr($line,0,scalar@{$from->{'href'}});1814if($line=~m/^\@{3}/) {1815$diff_class=" chunk_header";1816}elsif($line=~m/^\\/) {1817$diff_class=" incomplete";1818}elsif($prefix=~tr/+/+/) {1819$diff_class=" add";1820}elsif($prefix=~tr/-/-/) {1821$diff_class=" rem";1822}1823}else{1824# assume ordinary diff1825my$char=substr($line,0,1);1826if($chareq'+') {1827$diff_class=" add";1828}elsif($chareq'-') {1829$diff_class=" rem";1830}elsif($chareq'@') {1831$diff_class=" chunk_header";1832}elsif($chareq"\\") {1833$diff_class=" incomplete";1834}1835}1836$line= untabify($line);1837if($from&&$to&&$line=~m/^\@{2} /) {1838my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =1839$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;18401841$from_lines=0unlessdefined$from_lines;1842$to_lines=0unlessdefined$to_lines;18431844if($from->{'href'}) {1845$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",1846-class=>"list"},$from_text);1847}1848if($to->{'href'}) {1849$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",1850-class=>"list"},$to_text);1851}1852$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".1853"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";1854return"<div class=\"diff$diff_class\">$line</div>\n";1855}elsif($from&&$to&&$line=~m/^\@{3}/) {1856my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;1857my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);18581859@from_text=split(' ',$ranges);1860for(my$i=0;$i<@from_text; ++$i) {1861($from_start[$i],$from_nlines[$i]) =1862(split(',',substr($from_text[$i],1)),0);1863}18641865$to_text=pop@from_text;1866$to_start=pop@from_start;1867$to_nlines=pop@from_nlines;18681869$line="<span class=\"chunk_info\">$prefix";1870for(my$i=0;$i<@from_text; ++$i) {1871if($from->{'href'}[$i]) {1872$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",1873-class=>"list"},$from_text[$i]);1874}else{1875$line.=$from_text[$i];1876}1877$line.=" ";1878}1879if($to->{'href'}) {1880$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",1881-class=>"list"},$to_text);1882}else{1883$line.=$to_text;1884}1885$line.="$prefix</span>".1886"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";1887return"<div class=\"diff$diff_class\">$line</div>\n";1888}1889return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";1890}18911892# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",1893# linked. Pass the hash of the tree/commit to snapshot.1894sub format_snapshot_links {1895my($hash) =@_;1896my$num_fmts=@snapshot_fmts;1897if($num_fmts>1) {1898# A parenthesized list of links bearing format names.1899# e.g. "snapshot (_tar.gz_ _zip_)"1900return"snapshot (".join(' ',map1901$cgi->a({1902-href => href(1903 action=>"snapshot",1904 hash=>$hash,1905 snapshot_format=>$_1906)1907},$known_snapshot_formats{$_}{'display'})1908,@snapshot_fmts) .")";1909}elsif($num_fmts==1) {1910# A single "snapshot" link whose tooltip bears the format name.1911# i.e. "_snapshot_"1912my($fmt) =@snapshot_fmts;1913return1914$cgi->a({1915-href => href(1916 action=>"snapshot",1917 hash=>$hash,1918 snapshot_format=>$fmt1919),1920-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"1921},"snapshot");1922}else{# $num_fmts == 01923returnundef;1924}1925}19261927## ......................................................................1928## functions returning values to be passed, perhaps after some1929## transformation, to other functions; e.g. returning arguments to href()19301931# returns hash to be passed to href to generate gitweb URL1932# in -title key it returns description of link1933sub get_feed_info {1934my$format=shift||'Atom';1935my%res= (action =>lc($format));19361937# feed links are possible only for project views1938return unless(defined$project);1939# some views should link to OPML, or to generic project feed,1940# or don't have specific feed yet (so they should use generic)1941return if($action=~/^(?:tags|heads|forks|tag|search)$/x);19421943my$branch;1944# branches refs uses 'refs/heads/' prefix (fullname) to differentiate1945# from tag links; this also makes possible to detect branch links1946if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||1947(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {1948$branch=$1;1949}1950# find log type for feed description (title)1951my$type='log';1952if(defined$file_name) {1953$type="history of$file_name";1954$type.="/"if($actioneq'tree');1955$type.=" on '$branch'"if(defined$branch);1956}else{1957$type="log of$branch"if(defined$branch);1958}19591960$res{-title} =$type;1961$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);1962$res{'file_name'} =$file_name;19631964return%res;1965}19661967## ----------------------------------------------------------------------1968## git utility subroutines, invoking git commands19691970# returns path to the core git executable and the --git-dir parameter as list1971sub git_cmd {1972return$GIT,'--git-dir='.$git_dir;1973}19741975# quote the given arguments for passing them to the shell1976# quote_command("command", "arg 1", "arg with ' and ! characters")1977# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"1978# Try to avoid using this function wherever possible.1979sub quote_command {1980returnjoin(' ',1981map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);1982}19831984# get HEAD ref of given project as hash1985sub git_get_head_hash {1986my$project=shift;1987my$o_git_dir=$git_dir;1988my$retval=undef;1989$git_dir="$projectroot/$project";1990if(open my$fd,"-|", git_cmd(),"rev-parse","--verify","HEAD") {1991my$head= <$fd>;1992close$fd;1993if(defined$head&&$head=~/^([0-9a-fA-F]{40})$/) {1994$retval=$1;1995}1996}1997if(defined$o_git_dir) {1998$git_dir=$o_git_dir;1999}2000return$retval;2001}20022003# get type of given object2004sub git_get_type {2005my$hash=shift;20062007open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2008my$type= <$fd>;2009close$fdorreturn;2010chomp$type;2011return$type;2012}20132014# repository configuration2015our$config_file='';2016our%config;20172018# store multiple values for single key as anonymous array reference2019# single values stored directly in the hash, not as [ <value> ]2020sub hash_set_multi {2021my($hash,$key,$value) =@_;20222023if(!exists$hash->{$key}) {2024$hash->{$key} =$value;2025}elsif(!ref$hash->{$key}) {2026$hash->{$key} = [$hash->{$key},$value];2027}else{2028push@{$hash->{$key}},$value;2029}2030}20312032# return hash of git project configuration2033# optionally limited to some section, e.g. 'gitweb'2034sub git_parse_project_config {2035my$section_regexp=shift;2036my%config;20372038local$/="\0";20392040open my$fh,"-|", git_cmd(),"config",'-z','-l',2041orreturn;20422043while(my$keyval= <$fh>) {2044chomp$keyval;2045my($key,$value) =split(/\n/,$keyval,2);20462047 hash_set_multi(\%config,$key,$value)2048if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2049}2050close$fh;20512052return%config;2053}20542055# convert config value to boolean: 'true' or 'false'2056# no value, number > 0, 'true' and 'yes' values are true2057# rest of values are treated as false (never as error)2058sub config_to_bool {2059my$val=shift;20602061return1if!defined$val;# section.key20622063# strip leading and trailing whitespace2064$val=~s/^\s+//;2065$val=~s/\s+$//;20662067return(($val=~/^\d+$/&&$val) ||# section.key = 12068($val=~/^(?:true|yes)$/i));# section.key = true2069}20702071# convert config value to simple decimal number2072# an optional value suffix of 'k', 'm', or 'g' will cause the value2073# to be multiplied by 1024, 1048576, or 10737418242074sub config_to_int {2075my$val=shift;20762077# strip leading and trailing whitespace2078$val=~s/^\s+//;2079$val=~s/\s+$//;20802081if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2082$unit=lc($unit);2083# unknown unit is treated as 12084return$num* ($uniteq'g'?1073741824:2085$uniteq'm'?1048576:2086$uniteq'k'?1024:1);2087}2088return$val;2089}20902091# convert config value to array reference, if needed2092sub config_to_multi {2093my$val=shift;20942095returnref($val) ?$val: (defined($val) ? [$val] : []);2096}20972098sub git_get_project_config {2099my($key,$type) =@_;21002101# key sanity check2102return unless($key);2103$key=~s/^gitweb\.//;2104return if($key=~m/\W/);21052106# type sanity check2107if(defined$type) {2108$type=~s/^--//;2109$type=undef2110unless($typeeq'bool'||$typeeq'int');2111}21122113# get config2114if(!defined$config_file||2115$config_filene"$git_dir/config") {2116%config= git_parse_project_config('gitweb');2117$config_file="$git_dir/config";2118}21192120# check if config variable (key) exists2121return unlessexists$config{"gitweb.$key"};21222123# ensure given type2124if(!defined$type) {2125return$config{"gitweb.$key"};2126}elsif($typeeq'bool') {2127# backward compatibility: 'git config --bool' returns true/false2128return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2129}elsif($typeeq'int') {2130return config_to_int($config{"gitweb.$key"});2131}2132return$config{"gitweb.$key"};2133}21342135# get hash of given path at given ref2136sub git_get_hash_by_path {2137my$base=shift;2138my$path=shift||returnundef;2139my$type=shift;21402141$path=~ s,/+$,,;21422143open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2144or die_error(500,"Open git-ls-tree failed");2145my$line= <$fd>;2146close$fdorreturnundef;21472148if(!defined$line) {2149# there is no tree or hash given by $path at $base2150returnundef;2151}21522153#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2154$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2155if(defined$type&&$typene$2) {2156# type doesn't match2157returnundef;2158}2159return$3;2160}21612162# get path of entry with given hash at given tree-ish (ref)2163# used to get 'from' filename for combined diff (merge commit) for renames2164sub git_get_path_by_hash {2165my$base=shift||return;2166my$hash=shift||return;21672168local$/="\0";21692170open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2171orreturnundef;2172while(my$line= <$fd>) {2173chomp$line;21742175#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2176#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2177if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2178close$fd;2179return$1;2180}2181}2182close$fd;2183returnundef;2184}21852186## ......................................................................2187## git utility functions, directly accessing git repository21882189sub git_get_project_description {2190my$path=shift;21912192$git_dir="$projectroot/$path";2193open my$fd,'<',"$git_dir/description"2194orreturn git_get_project_config('description');2195my$descr= <$fd>;2196close$fd;2197if(defined$descr) {2198chomp$descr;2199}2200return$descr;2201}22022203sub git_get_project_ctags {2204my$path=shift;2205my$ctags= {};22062207$git_dir="$projectroot/$path";2208opendir my$dh,"$git_dir/ctags"2209orreturn$ctags;2210foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2211open my$ct,'<',$_ornext;2212my$val= <$ct>;2213chomp$val;2214close$ct;2215my$ctag=$_;$ctag=~ s#.*/##;2216$ctags->{$ctag} =$val;2217}2218closedir$dh;2219$ctags;2220}22212222sub git_populate_project_tagcloud {2223my$ctags=shift;22242225# First, merge different-cased tags; tags vote on casing2226my%ctags_lc;2227foreach(keys%$ctags) {2228$ctags_lc{lc$_}->{count} +=$ctags->{$_};2229if(not$ctags_lc{lc$_}->{topcount}2230or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2231$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2232$ctags_lc{lc$_}->{topname} =$_;2233}2234}22352236my$cloud;2237if(eval{require HTML::TagCloud;1; }) {2238$cloud= HTML::TagCloud->new;2239foreach(sort keys%ctags_lc) {2240# Pad the title with spaces so that the cloud looks2241# less crammed.2242my$title=$ctags_lc{$_}->{topname};2243$title=~s/ / /g;2244$title=~s/^/ /g;2245$title=~s/$/ /g;2246$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2247}2248}else{2249$cloud= \%ctags_lc;2250}2251$cloud;2252}22532254sub git_show_project_tagcloud {2255my($cloud,$count) =@_;2256print STDERR ref($cloud)."..\n";2257if(ref$cloudeq'HTML::TagCloud') {2258return$cloud->html_and_css($count);2259}else{2260my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2261return'<p align="center">'.join(', ',map{2262"<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"2263}splice(@tags,0,$count)) .'</p>';2264}2265}22662267sub git_get_project_url_list {2268my$path=shift;22692270$git_dir="$projectroot/$path";2271open my$fd,'<',"$git_dir/cloneurl"2272orreturnwantarray?2273@{ config_to_multi(git_get_project_config('url')) } :2274 config_to_multi(git_get_project_config('url'));2275my@git_project_url_list=map{chomp;$_} <$fd>;2276close$fd;22772278returnwantarray?@git_project_url_list: \@git_project_url_list;2279}22802281sub git_get_projects_list {2282my($filter) =@_;2283my@list;22842285$filter||='';2286$filter=~s/\.git$//;22872288my$check_forks= gitweb_check_feature('forks');22892290if(-d $projects_list) {2291# search in directory2292my$dir=$projects_list. ($filter?"/$filter":'');2293# remove the trailing "/"2294$dir=~s!/+$!!;2295my$pfxlen=length("$dir");2296my$pfxdepth= ($dir=~tr!/!!);22972298 File::Find::find({2299 follow_fast =>1,# follow symbolic links2300 follow_skip =>2,# ignore duplicates2301 dangling_symlinks =>0,# ignore dangling symlinks, silently2302 wanted =>sub{2303# skip project-list toplevel, if we get it.2304return if(m!^[/.]$!);2305# only directories can be git repositories2306return unless(-d $_);2307# don't traverse too deep (Find is super slow on os x)2308if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2309$File::Find::prune =1;2310return;2311}23122313my$subdir=substr($File::Find::name,$pfxlen+1);2314# we check related file in $projectroot2315my$path= ($filter?"$filter/":'') .$subdir;2316if(check_export_ok("$projectroot/$path")) {2317push@list, { path =>$path};2318$File::Find::prune =1;2319}2320},2321},"$dir");23222323}elsif(-f $projects_list) {2324# read from file(url-encoded):2325# 'git%2Fgit.git Linus+Torvalds'2326# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2327# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2328my%paths;2329open my$fd,'<',$projects_listorreturn;2330 PROJECT:2331while(my$line= <$fd>) {2332chomp$line;2333my($path,$owner) =split' ',$line;2334$path= unescape($path);2335$owner= unescape($owner);2336if(!defined$path) {2337next;2338}2339if($filterne'') {2340# looking for forks;2341my$pfx=substr($path,0,length($filter));2342if($pfxne$filter) {2343next PROJECT;2344}2345my$sfx=substr($path,length($filter));2346if($sfx!~/^\/.*\.git$/) {2347next PROJECT;2348}2349}elsif($check_forks) {2350 PATH:2351foreachmy$filter(keys%paths) {2352# looking for forks;2353my$pfx=substr($path,0,length($filter));2354if($pfxne$filter) {2355next PATH;2356}2357my$sfx=substr($path,length($filter));2358if($sfx!~/^\/.*\.git$/) {2359next PATH;2360}2361# is a fork, don't include it in2362# the list2363next PROJECT;2364}2365}2366if(check_export_ok("$projectroot/$path")) {2367my$pr= {2368 path =>$path,2369 owner => to_utf8($owner),2370};2371push@list,$pr;2372(my$forks_path=$path) =~s/\.git$//;2373$paths{$forks_path}++;2374}2375}2376close$fd;2377}2378return@list;2379}23802381our$gitweb_project_owner=undef;2382sub git_get_project_list_from_file {23832384return if(defined$gitweb_project_owner);23852386$gitweb_project_owner= {};2387# read from file (url-encoded):2388# 'git%2Fgit.git Linus+Torvalds'2389# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2390# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2391if(-f $projects_list) {2392open(my$fd,'<',$projects_list);2393while(my$line= <$fd>) {2394chomp$line;2395my($pr,$ow) =split' ',$line;2396$pr= unescape($pr);2397$ow= unescape($ow);2398$gitweb_project_owner->{$pr} = to_utf8($ow);2399}2400close$fd;2401}2402}24032404sub git_get_project_owner {2405my$project=shift;2406my$owner;24072408returnundefunless$project;2409$git_dir="$projectroot/$project";24102411if(!defined$gitweb_project_owner) {2412 git_get_project_list_from_file();2413}24142415if(exists$gitweb_project_owner->{$project}) {2416$owner=$gitweb_project_owner->{$project};2417}2418if(!defined$owner){2419$owner= git_get_project_config('owner');2420}2421if(!defined$owner) {2422$owner= get_file_owner("$git_dir");2423}24242425return$owner;2426}24272428sub git_get_last_activity {2429my($path) =@_;2430my$fd;24312432$git_dir="$projectroot/$path";2433open($fd,"-|", git_cmd(),'for-each-ref',2434'--format=%(committer)',2435'--sort=-committerdate',2436'--count=1',2437'refs/heads')orreturn;2438my$most_recent= <$fd>;2439close$fdorreturn;2440if(defined$most_recent&&2441$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2442my$timestamp=$1;2443my$age=time-$timestamp;2444return($age, age_string($age));2445}2446return(undef,undef);2447}24482449sub git_get_references {2450my$type=shift||"";2451my%refs;2452# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112453# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2454open my$fd,"-|", git_cmd(),"show-ref","--dereference",2455($type? ("--","refs/$type") : ())# use -- <pattern> if $type2456orreturn;24572458while(my$line= <$fd>) {2459chomp$line;2460if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2461if(defined$refs{$1}) {2462push@{$refs{$1}},$2;2463}else{2464$refs{$1} = [$2];2465}2466}2467}2468close$fdorreturn;2469return \%refs;2470}24712472sub git_get_rev_name_tags {2473my$hash=shift||returnundef;24742475open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2476orreturn;2477my$name_rev= <$fd>;2478close$fd;24792480if($name_rev=~ m|^$hash tags/(.*)$|) {2481return$1;2482}else{2483# catches also '$hash undefined' output2484returnundef;2485}2486}24872488## ----------------------------------------------------------------------2489## parse to hash functions24902491sub parse_date {2492my$epoch=shift;2493my$tz=shift||"-0000";24942495my%date;2496my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2497my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2498my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2499$date{'hour'} =$hour;2500$date{'minute'} =$min;2501$date{'mday'} =$mday;2502$date{'day'} =$days[$wday];2503$date{'month'} =$months[$mon];2504$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2505$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2506$date{'mday-time'} =sprintf"%d%s%02d:%02d",2507$mday,$months[$mon],$hour,$min;2508$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",25091900+$year,1+$mon,$mday,$hour,$min,$sec;25102511$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2512my$local=$epoch+ ((int$1+ ($2/60)) *3600);2513($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2514$date{'hour_local'} =$hour;2515$date{'minute_local'} =$min;2516$date{'tz_local'} =$tz;2517$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",25181900+$year,$mon+1,$mday,2519$hour,$min,$sec,$tz);2520return%date;2521}25222523sub parse_tag {2524my$tag_id=shift;2525my%tag;2526my@comment;25272528open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2529$tag{'id'} =$tag_id;2530while(my$line= <$fd>) {2531chomp$line;2532if($line=~m/^object ([0-9a-fA-F]{40})$/) {2533$tag{'object'} =$1;2534}elsif($line=~m/^type (.+)$/) {2535$tag{'type'} =$1;2536}elsif($line=~m/^tag (.+)$/) {2537$tag{'name'} =$1;2538}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2539$tag{'author'} =$1;2540$tag{'author_epoch'} =$2;2541$tag{'author_tz'} =$3;2542if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2543$tag{'author_name'} =$1;2544$tag{'author_email'} =$2;2545}else{2546$tag{'author_name'} =$tag{'author'};2547}2548}elsif($line=~m/--BEGIN/) {2549push@comment,$line;2550last;2551}elsif($lineeq"") {2552last;2553}2554}2555push@comment, <$fd>;2556$tag{'comment'} = \@comment;2557close$fdorreturn;2558if(!defined$tag{'name'}) {2559return2560};2561return%tag2562}25632564sub parse_commit_text {2565my($commit_text,$withparents) =@_;2566my@commit_lines=split'\n',$commit_text;2567my%co;25682569pop@commit_lines;# Remove '\0'25702571if(!@commit_lines) {2572return;2573}25742575my$header=shift@commit_lines;2576if($header!~m/^[0-9a-fA-F]{40}/) {2577return;2578}2579($co{'id'},my@parents) =split' ',$header;2580while(my$line=shift@commit_lines) {2581last if$lineeq"\n";2582if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2583$co{'tree'} =$1;2584}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2585push@parents,$1;2586}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2587$co{'author'} =$1;2588$co{'author_epoch'} =$2;2589$co{'author_tz'} =$3;2590if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2591$co{'author_name'} =$1;2592$co{'author_email'} =$2;2593}else{2594$co{'author_name'} =$co{'author'};2595}2596}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2597$co{'committer'} =$1;2598$co{'committer_epoch'} =$2;2599$co{'committer_tz'} =$3;2600$co{'committer_name'} =$co{'committer'};2601if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2602$co{'committer_name'} =$1;2603$co{'committer_email'} =$2;2604}else{2605$co{'committer_name'} =$co{'committer'};2606}2607}2608}2609if(!defined$co{'tree'}) {2610return;2611};2612$co{'parents'} = \@parents;2613$co{'parent'} =$parents[0];26142615foreachmy$title(@commit_lines) {2616$title=~s/^ //;2617if($titlene"") {2618$co{'title'} = chop_str($title,80,5);2619# remove leading stuff of merges to make the interesting part visible2620if(length($title) >50) {2621$title=~s/^Automatic //;2622$title=~s/^merge (of|with) /Merge ... /i;2623if(length($title) >50) {2624$title=~s/(http|rsync):\/\///;2625}2626if(length($title) >50) {2627$title=~s/(master|www|rsync)\.//;2628}2629if(length($title) >50) {2630$title=~s/kernel.org:?//;2631}2632if(length($title) >50) {2633$title=~s/\/pub\/scm//;2634}2635}2636$co{'title_short'} = chop_str($title,50,5);2637last;2638}2639}2640if(!defined$co{'title'} ||$co{'title'}eq"") {2641$co{'title'} =$co{'title_short'} ='(no commit message)';2642}2643# remove added spaces2644foreachmy$line(@commit_lines) {2645$line=~s/^ //;2646}2647$co{'comment'} = \@commit_lines;26482649my$age=time-$co{'committer_epoch'};2650$co{'age'} =$age;2651$co{'age_string'} = age_string($age);2652my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});2653if($age>60*60*24*7*2) {2654$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2655$co{'age_string_age'} =$co{'age_string'};2656}else{2657$co{'age_string_date'} =$co{'age_string'};2658$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2659}2660return%co;2661}26622663sub parse_commit {2664my($commit_id) =@_;2665my%co;26662667local$/="\0";26682669open my$fd,"-|", git_cmd(),"rev-list",2670"--parents",2671"--header",2672"--max-count=1",2673$commit_id,2674"--",2675or die_error(500,"Open git-rev-list failed");2676%co= parse_commit_text(<$fd>,1);2677close$fd;26782679return%co;2680}26812682sub parse_commits {2683my($commit_id,$maxcount,$skip,$filename,@args) =@_;2684my@cos;26852686$maxcount||=1;2687$skip||=0;26882689local$/="\0";26902691open my$fd,"-|", git_cmd(),"rev-list",2692"--header",2693@args,2694("--max-count=".$maxcount),2695("--skip=".$skip),2696@extra_options,2697$commit_id,2698"--",2699($filename? ($filename) : ())2700or die_error(500,"Open git-rev-list failed");2701while(my$line= <$fd>) {2702my%co= parse_commit_text($line);2703push@cos, \%co;2704}2705close$fd;27062707returnwantarray?@cos: \@cos;2708}27092710# parse line of git-diff-tree "raw" output2711sub parse_difftree_raw_line {2712my$line=shift;2713my%res;27142715# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'2716# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'2717if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {2718$res{'from_mode'} =$1;2719$res{'to_mode'} =$2;2720$res{'from_id'} =$3;2721$res{'to_id'} =$4;2722$res{'status'} =$5;2723$res{'similarity'} =$6;2724if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied2725($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);2726}else{2727$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);2728}2729}2730# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'2731# combined diff (for merge commit)2732elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {2733$res{'nparents'} =length($1);2734$res{'from_mode'} = [split(' ',$2) ];2735$res{'to_mode'} =pop@{$res{'from_mode'}};2736$res{'from_id'} = [split(' ',$3) ];2737$res{'to_id'} =pop@{$res{'from_id'}};2738$res{'status'} = [split('',$4) ];2739$res{'to_file'} = unquote($5);2740}2741# 'c512b523472485aef4fff9e57b229d9d243c967f'2742elsif($line=~m/^([0-9a-fA-F]{40})$/) {2743$res{'commit'} =$1;2744}27452746returnwantarray?%res: \%res;2747}27482749# wrapper: return parsed line of git-diff-tree "raw" output2750# (the argument might be raw line, or parsed info)2751sub parsed_difftree_line {2752my$line_or_ref=shift;27532754if(ref($line_or_ref)eq"HASH") {2755# pre-parsed (or generated by hand)2756return$line_or_ref;2757}else{2758return parse_difftree_raw_line($line_or_ref);2759}2760}27612762# parse line of git-ls-tree output2763sub parse_ls_tree_line {2764my$line=shift;2765my%opts=@_;2766my%res;27672768#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2769$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;27702771$res{'mode'} =$1;2772$res{'type'} =$2;2773$res{'hash'} =$3;2774if($opts{'-z'}) {2775$res{'name'} =$4;2776}else{2777$res{'name'} = unquote($4);2778}27792780returnwantarray?%res: \%res;2781}27822783# generates _two_ hashes, references to which are passed as 2 and 3 argument2784sub parse_from_to_diffinfo {2785my($diffinfo,$from,$to,@parents) =@_;27862787if($diffinfo->{'nparents'}) {2788# combined diff2789$from->{'file'} = [];2790$from->{'href'} = [];2791 fill_from_file_info($diffinfo,@parents)2792unlessexists$diffinfo->{'from_file'};2793for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2794$from->{'file'}[$i] =2795defined$diffinfo->{'from_file'}[$i] ?2796$diffinfo->{'from_file'}[$i] :2797$diffinfo->{'to_file'};2798if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file2799$from->{'href'}[$i] = href(action=>"blob",2800 hash_base=>$parents[$i],2801 hash=>$diffinfo->{'from_id'}[$i],2802 file_name=>$from->{'file'}[$i]);2803}else{2804$from->{'href'}[$i] =undef;2805}2806}2807}else{2808# ordinary (not combined) diff2809$from->{'file'} =$diffinfo->{'from_file'};2810if($diffinfo->{'status'}ne"A") {# not new (added) file2811$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,2812 hash=>$diffinfo->{'from_id'},2813 file_name=>$from->{'file'});2814}else{2815delete$from->{'href'};2816}2817}28182819$to->{'file'} =$diffinfo->{'to_file'};2820if(!is_deleted($diffinfo)) {# file exists in result2821$to->{'href'} = href(action=>"blob", hash_base=>$hash,2822 hash=>$diffinfo->{'to_id'},2823 file_name=>$to->{'file'});2824}else{2825delete$to->{'href'};2826}2827}28282829## ......................................................................2830## parse to array of hashes functions28312832sub git_get_heads_list {2833my$limit=shift;2834my@headslist;28352836open my$fd,'-|', git_cmd(),'for-each-ref',2837($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',2838'--format=%(objectname) %(refname) %(subject)%00%(committer)',2839'refs/heads'2840orreturn;2841while(my$line= <$fd>) {2842my%ref_item;28432844chomp$line;2845my($refinfo,$committerinfo) =split(/\0/,$line);2846my($hash,$name,$title) =split(' ',$refinfo,3);2847my($committer,$epoch,$tz) =2848($committerinfo=~/^(.*) ([0-9]+) (.*)$/);2849$ref_item{'fullname'} =$name;2850$name=~s!^refs/heads/!!;28512852$ref_item{'name'} =$name;2853$ref_item{'id'} =$hash;2854$ref_item{'title'} =$title||'(no commit message)';2855$ref_item{'epoch'} =$epoch;2856if($epoch) {2857$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2858}else{2859$ref_item{'age'} ="unknown";2860}28612862push@headslist, \%ref_item;2863}2864close$fd;28652866returnwantarray?@headslist: \@headslist;2867}28682869sub git_get_tags_list {2870my$limit=shift;2871my@tagslist;28722873open my$fd,'-|', git_cmd(),'for-each-ref',2874($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',2875'--format=%(objectname) %(objecttype) %(refname) '.2876'%(*objectname) %(*objecttype) %(subject)%00%(creator)',2877'refs/tags'2878orreturn;2879while(my$line= <$fd>) {2880my%ref_item;28812882chomp$line;2883my($refinfo,$creatorinfo) =split(/\0/,$line);2884my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);2885my($creator,$epoch,$tz) =2886($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);2887$ref_item{'fullname'} =$name;2888$name=~s!^refs/tags/!!;28892890$ref_item{'type'} =$type;2891$ref_item{'id'} =$id;2892$ref_item{'name'} =$name;2893if($typeeq"tag") {2894$ref_item{'subject'} =$title;2895$ref_item{'reftype'} =$reftype;2896$ref_item{'refid'} =$refid;2897}else{2898$ref_item{'reftype'} =$type;2899$ref_item{'refid'} =$id;2900}29012902if($typeeq"tag"||$typeeq"commit") {2903$ref_item{'epoch'} =$epoch;2904if($epoch) {2905$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2906}else{2907$ref_item{'age'} ="unknown";2908}2909}29102911push@tagslist, \%ref_item;2912}2913close$fd;29142915returnwantarray?@tagslist: \@tagslist;2916}29172918## ----------------------------------------------------------------------2919## filesystem-related functions29202921sub get_file_owner {2922my$path=shift;29232924my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);2925my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);2926if(!defined$gcos) {2927returnundef;2928}2929my$owner=$gcos;2930$owner=~s/[,;].*$//;2931return to_utf8($owner);2932}29332934# assume that file exists2935sub insert_file {2936my$filename=shift;29372938open my$fd,'<',$filename;2939print map{ to_utf8($_) } <$fd>;2940close$fd;2941}29422943## ......................................................................2944## mimetype related functions29452946sub mimetype_guess_file {2947my$filename=shift;2948my$mimemap=shift;2949-r $mimemaporreturnundef;29502951my%mimemap;2952open(my$mh,'<',$mimemap)orreturnundef;2953while(<$mh>) {2954next ifm/^#/;# skip comments2955my($mimetype,$exts) =split(/\t+/);2956if(defined$exts) {2957my@exts=split(/\s+/,$exts);2958foreachmy$ext(@exts) {2959$mimemap{$ext} =$mimetype;2960}2961}2962}2963close($mh);29642965$filename=~/\.([^.]*)$/;2966return$mimemap{$1};2967}29682969sub mimetype_guess {2970my$filename=shift;2971my$mime;2972$filename=~/\./orreturnundef;29732974if($mimetypes_file) {2975my$file=$mimetypes_file;2976if($file!~m!^/!) {# if it is relative path2977# it is relative to project2978$file="$projectroot/$project/$file";2979}2980$mime= mimetype_guess_file($filename,$file);2981}2982$mime||= mimetype_guess_file($filename,'/etc/mime.types');2983return$mime;2984}29852986sub blob_mimetype {2987my$fd=shift;2988my$filename=shift;29892990if($filename) {2991my$mime= mimetype_guess($filename);2992$mimeandreturn$mime;2993}29942995# just in case2996return$default_blob_plain_mimetypeunless$fd;29972998if(-T $fd) {2999return'text/plain';3000}elsif(!$filename) {3001return'application/octet-stream';3002}elsif($filename=~m/\.png$/i) {3003return'image/png';3004}elsif($filename=~m/\.gif$/i) {3005return'image/gif';3006}elsif($filename=~m/\.jpe?g$/i) {3007return'image/jpeg';3008}else{3009return'application/octet-stream';3010}3011}30123013sub blob_contenttype {3014my($fd,$file_name,$type) =@_;30153016$type||= blob_mimetype($fd,$file_name);3017if($typeeq'text/plain'&&defined$default_text_plain_charset) {3018$type.="; charset=$default_text_plain_charset";3019}30203021return$type;3022}30233024## ======================================================================3025## functions printing HTML: header, footer, error page30263027sub git_header_html {3028my$status=shift||"200 OK";3029my$expires=shift;30303031my$title="$site_name";3032if(defined$project) {3033$title.=" - ". to_utf8($project);3034if(defined$action) {3035$title.="/$action";3036if(defined$file_name) {3037$title.=" - ". esc_path($file_name);3038if($actioneq"tree"&&$file_name!~ m|/$|) {3039$title.="/";3040}3041}3042}3043}3044my$content_type;3045# require explicit support from the UA if we are to send the page as3046# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3047# we have to do this because MSIE sometimes globs '*/*', pretending to3048# support xhtml+xml but choking when it gets what it asked for.3049if(defined$cgi->http('HTTP_ACCEPT') &&3050$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3051$cgi->Accept('application/xhtml+xml') !=0) {3052$content_type='application/xhtml+xml';3053}else{3054$content_type='text/html';3055}3056print$cgi->header(-type=>$content_type, -charset =>'utf-8',3057-status=>$status, -expires =>$expires);3058my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3059print<<EOF;3060<?xml version="1.0" encoding="utf-8"?>3061<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3062<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3063<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3064<!-- git core binaries version$git_version-->3065<head>3066<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3067<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3068<meta name="robots" content="index, nofollow"/>3069<title>$title</title>3070EOF3071# the stylesheet, favicon etc urls won't work correctly with path_info3072# unless we set the appropriate base URL3073if($ENV{'PATH_INFO'}) {3074print"<base href=\"".esc_url($base_url)."\"/>\n";3075}3076# print out each stylesheet that exist, providing backwards capability3077# for those people who defined $stylesheet in a config file3078if(defined$stylesheet) {3079print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";3080}else{3081foreachmy$stylesheet(@stylesheets) {3082next unless$stylesheet;3083print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";3084}3085}3086if(defined$project) {3087my%href_params= get_feed_info();3088if(!exists$href_params{'-title'}) {3089$href_params{'-title'} ='log';3090}30913092foreachmy$formatqw(RSS Atom){3093my$type=lc($format);3094my%link_attr= (3095'-rel'=>'alternate',3096'-title'=>"$project-$href_params{'-title'} -$formatfeed",3097'-type'=>"application/$type+xml"3098);30993100$href_params{'action'} =$type;3101$link_attr{'-href'} = href(%href_params);3102print"<link ".3103"rel=\"$link_attr{'-rel'}\"".3104"title=\"$link_attr{'-title'}\"".3105"href=\"$link_attr{'-href'}\"".3106"type=\"$link_attr{'-type'}\"".3107"/>\n";31083109$href_params{'extra_options'} ='--no-merges';3110$link_attr{'-href'} = href(%href_params);3111$link_attr{'-title'} .=' (no merges)';3112print"<link ".3113"rel=\"$link_attr{'-rel'}\"".3114"title=\"$link_attr{'-title'}\"".3115"href=\"$link_attr{'-href'}\"".3116"type=\"$link_attr{'-type'}\"".3117"/>\n";3118}31193120}else{3121printf('<link rel="alternate" title="%sprojects list" '.3122'href="%s" type="text/plain; charset=utf-8" />'."\n",3123$site_name, href(project=>undef, action=>"project_index"));3124printf('<link rel="alternate" title="%sprojects feeds" '.3125'href="%s" type="text/x-opml" />'."\n",3126$site_name, href(project=>undef, action=>"opml"));3127}3128if(defined$favicon) {3129printqq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n);3130}31313132print"</head>\n".3133"<body>\n";31343135if(-f $site_header) {3136 insert_file($site_header);3137}31383139print"<div class=\"page_header\">\n".3140$cgi->a({-href => esc_url($logo_url),3141-title =>$logo_label},3142qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));3143print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3144if(defined$project) {3145print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3146if(defined$action) {3147print" /$action";3148}3149print"\n";3150}3151print"</div>\n";31523153my$have_search= gitweb_check_feature('search');3154if(defined$project&&$have_search) {3155if(!defined$searchtext) {3156$searchtext="";3157}3158my$search_hash;3159if(defined$hash_base) {3160$search_hash=$hash_base;3161}elsif(defined$hash) {3162$search_hash=$hash;3163}else{3164$search_hash="HEAD";3165}3166my$action=$my_uri;3167my$use_pathinfo= gitweb_check_feature('pathinfo');3168if($use_pathinfo) {3169$action.="/".esc_url($project);3170}3171print$cgi->startform(-method=>"get", -action =>$action) .3172"<div class=\"search\">\n".3173(!$use_pathinfo&&3174$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3175$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3176$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3177$cgi->popup_menu(-name =>'st', -default=>'commit',3178-values=> ['commit','grep','author','committer','pickaxe']) .3179$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3180" search:\n",3181$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3182"<span title=\"Extended regular expression\">".3183$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3184-checked =>$search_use_regexp) .3185"</span>".3186"</div>".3187$cgi->end_form() ."\n";3188}3189}31903191sub git_footer_html {3192my$feed_class='rss_logo';31933194print"<div class=\"page_footer\">\n";3195if(defined$project) {3196my$descr= git_get_project_description($project);3197if(defined$descr) {3198print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3199}32003201my%href_params= get_feed_info();3202if(!%href_params) {3203$feed_class.=' generic';3204}3205$href_params{'-title'} ||='log';32063207foreachmy$formatqw(RSS Atom){3208$href_params{'action'} =lc($format);3209print$cgi->a({-href => href(%href_params),3210-title =>"$href_params{'-title'}$formatfeed",3211-class=>$feed_class},$format)."\n";3212}32133214}else{3215print$cgi->a({-href => href(project=>undef, action=>"opml"),3216-class=>$feed_class},"OPML") ." ";3217print$cgi->a({-href => href(project=>undef, action=>"project_index"),3218-class=>$feed_class},"TXT") ."\n";3219}3220print"</div>\n";# class="page_footer"32213222if(-f $site_footer) {3223 insert_file($site_footer);3224}32253226print"</body>\n".3227"</html>";3228}32293230# die_error(<http_status_code>, <error_message>)3231# Example: die_error(404, 'Hash not found')3232# By convention, use the following status codes (as defined in RFC 2616):3233# 400: Invalid or missing CGI parameters, or3234# requested object exists but has wrong type.3235# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3236# this server or project.3237# 404: Requested object/revision/project doesn't exist.3238# 500: The server isn't configured properly, or3239# an internal error occurred (e.g. failed assertions caused by bugs), or3240# an unknown error occurred (e.g. the git binary died unexpectedly).3241sub die_error {3242my$status=shift||500;3243my$error=shift||"Internal server error";32443245my%http_responses= (400=>'400 Bad Request',3246403=>'403 Forbidden',3247404=>'404 Not Found',3248500=>'500 Internal Server Error');3249 git_header_html($http_responses{$status});3250print<<EOF;3251<div class="page_body">3252<br /><br />3253$status-$error3254<br />3255</div>3256EOF3257 git_footer_html();3258exit;3259}32603261## ----------------------------------------------------------------------3262## functions printing or outputting HTML: navigation32633264sub git_print_page_nav {3265my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3266$extra=''if!defined$extra;# pager or formats32673268my@navs=qw(summary shortlog log commit commitdiff tree);3269if($suppress) {3270@navs=grep{$_ne$suppress}@navs;3271}32723273my%arg=map{$_=> {action=>$_} }@navs;3274if(defined$head) {3275for(qw(commit commitdiff)) {3276$arg{$_}{'hash'} =$head;3277}3278if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3279for(qw(shortlog log)) {3280$arg{$_}{'hash'} =$head;3281}3282}3283}32843285$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3286$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;32873288my@actions= gitweb_get_feature('actions');3289my%repl= (3290'%'=>'%',3291'n'=>$project,# project name3292'f'=>$git_dir,# project path within filesystem3293'h'=>$treehead||'',# current hash ('h' parameter)3294'b'=>$treebase||'',# hash base ('hb' parameter)3295);3296while(@actions) {3297my($label,$link,$pos) =splice(@actions,0,3);3298# insert3299@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3300# munch munch3301$link=~s/%([%nfhb])/$repl{$1}/g;3302$arg{$label}{'_href'} =$link;3303}33043305print"<div class=\"page_nav\">\n".3306(join" | ",3307map{$_eq$current?3308$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3309}@navs);3310print"<br/>\n$extra<br/>\n".3311"</div>\n";3312}33133314sub format_paging_nav {3315my($action,$hash,$head,$page,$has_next_link) =@_;3316my$paging_nav;331733183319if($hashne$head||$page) {3320$paging_nav.=$cgi->a({-href => href(action=>$action)},"HEAD");3321}else{3322$paging_nav.="HEAD";3323}33243325if($page>0) {3326$paging_nav.=" ⋅ ".3327$cgi->a({-href => href(-replay=>1, page=>$page-1),3328-accesskey =>"p", -title =>"Alt-p"},"prev");3329}else{3330$paging_nav.=" ⋅ prev";3331}33323333if($has_next_link) {3334$paging_nav.=" ⋅ ".3335$cgi->a({-href => href(-replay=>1, page=>$page+1),3336-accesskey =>"n", -title =>"Alt-n"},"next");3337}else{3338$paging_nav.=" ⋅ next";3339}33403341return$paging_nav;3342}33433344## ......................................................................3345## functions printing or outputting HTML: div33463347sub git_print_header_div {3348my($action,$title,$hash,$hash_base) =@_;3349my%args= ();33503351$args{'action'} =$action;3352$args{'hash'} =$hashif$hash;3353$args{'hash_base'} =$hash_baseif$hash_base;33543355print"<div class=\"header\">\n".3356$cgi->a({-href => href(%args), -class=>"title"},3357$title?$title:$action) .3358"\n</div>\n";3359}33603361sub print_local_time {3362my%date=@_;3363if($date{'hour_local'} <6) {3364printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3365$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3366}else{3367printf(" (%02d:%02d%s)",3368$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3369}3370}33713372# Outputs the author name and date in long form3373sub git_print_authorship {3374my$co=shift;3375my%opts=@_;3376my$tag=$opts{-tag} ||'div';33773378my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3379print"<$tagclass=\"author_date\">".3380 esc_html($co->{'author_name'}) .3381" [$ad{'rfc2822'}";3382 print_local_time(%ad)if($opts{-localtime});3383print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)3384."</$tag>\n";3385}33863387# Outputs table rows containing the full author or committer information,3388# in the format expected for 'commit' view (& similia).3389# Parameters are a commit hash reference, followed by the list of people3390# to output information for. If the list is empty it defalts to both3391# author and committer.3392sub git_print_authorship_rows {3393my$co=shift;3394# too bad we can't use @people = @_ || ('author', 'committer')3395my@people=@_;3396@people= ('author','committer')unless@people;3397foreachmy$who(@people) {3398my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3399print"<tr><td>$who</td><td>". esc_html($co->{$who}) ."</td>".3400"<td rowspan=\"2\">".3401 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3402"</td></tr>\n".3403"<tr>".3404"<td></td><td>$wd{'rfc2822'}";3405 print_local_time(%wd);3406print"</td>".3407"</tr>\n";3408}3409}34103411sub git_print_page_path {3412my$name=shift;3413my$type=shift;3414my$hb=shift;341534163417print"<div class=\"page_path\">";3418print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),3419-title =>'tree root'}, to_utf8("[$project]"));3420print" / ";3421if(defined$name) {3422my@dirname=split'/',$name;3423my$basename=pop@dirname;3424my$fullname='';34253426foreachmy$dir(@dirname) {3427$fullname.= ($fullname?'/':'') .$dir;3428print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,3429 hash_base=>$hb),3430-title =>$fullname}, esc_path($dir));3431print" / ";3432}3433if(defined$type&&$typeeq'blob') {3434print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,3435 hash_base=>$hb),3436-title =>$name}, esc_path($basename));3437}elsif(defined$type&&$typeeq'tree') {3438print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,3439 hash_base=>$hb),3440-title =>$name}, esc_path($basename));3441print" / ";3442}else{3443print esc_path($basename);3444}3445}3446print"<br/></div>\n";3447}34483449sub git_print_log {3450my$log=shift;3451my%opts=@_;34523453if($opts{'-remove_title'}) {3454# remove title, i.e. first line of log3455shift@$log;3456}3457# remove leading empty lines3458while(defined$log->[0] &&$log->[0]eq"") {3459shift@$log;3460}34613462# print log3463my$signoff=0;3464my$empty=0;3465foreachmy$line(@$log) {3466if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {3467$signoff=1;3468$empty=0;3469if(!$opts{'-remove_signoff'}) {3470print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";3471next;3472}else{3473# remove signoff lines3474next;3475}3476}else{3477$signoff=0;3478}34793480# print only one empty line3481# do not print empty line after signoff3482if($lineeq"") {3483next if($empty||$signoff);3484$empty=1;3485}else{3486$empty=0;3487}34883489print format_log_line_html($line) ."<br/>\n";3490}34913492if($opts{'-final_empty_line'}) {3493# end with single empty line3494print"<br/>\n"unless$empty;3495}3496}34973498# return link target (what link points to)3499sub git_get_link_target {3500my$hash=shift;3501my$link_target;35023503# read link3504open my$fd,"-|", git_cmd(),"cat-file","blob",$hash3505orreturn;3506{3507local$/=undef;3508$link_target= <$fd>;3509}3510close$fd3511orreturn;35123513return$link_target;3514}35153516# given link target, and the directory (basedir) the link is in,3517# return target of link relative to top directory (top tree);3518# return undef if it is not possible (including absolute links).3519sub normalize_link_target {3520my($link_target,$basedir) =@_;35213522# absolute symlinks (beginning with '/') cannot be normalized3523return if(substr($link_target,0,1)eq'/');35243525# normalize link target to path from top (root) tree (dir)3526my$path;3527if($basedir) {3528$path=$basedir.'/'.$link_target;3529}else{3530# we are in top (root) tree (dir)3531$path=$link_target;3532}35333534# remove //, /./, and /../3535my@path_parts;3536foreachmy$part(split('/',$path)) {3537# discard '.' and ''3538next if(!$part||$parteq'.');3539# handle '..'3540if($parteq'..') {3541if(@path_parts) {3542pop@path_parts;3543}else{3544# link leads outside repository (outside top dir)3545return;3546}3547}else{3548push@path_parts,$part;3549}3550}3551$path=join('/',@path_parts);35523553return$path;3554}35553556# print tree entry (row of git_tree), but without encompassing <tr> element3557sub git_print_tree_entry {3558my($t,$basedir,$hash_base,$have_blame) =@_;35593560my%base_key= ();3561$base_key{'hash_base'} =$hash_baseifdefined$hash_base;35623563# The format of a table row is: mode list link. Where mode is3564# the mode of the entry, list is the name of the entry, an href,3565# and link is the action links of the entry.35663567print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";3568if($t->{'type'}eq"blob") {3569print"<td class=\"list\">".3570$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3571 file_name=>"$basedir$t->{'name'}",%base_key),3572-class=>"list"}, esc_path($t->{'name'}));3573if(S_ISLNK(oct$t->{'mode'})) {3574my$link_target= git_get_link_target($t->{'hash'});3575if($link_target) {3576my$norm_target= normalize_link_target($link_target,$basedir);3577if(defined$norm_target) {3578print" -> ".3579$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,3580 file_name=>$norm_target),3581-title =>$norm_target}, esc_path($link_target));3582}else{3583print" -> ". esc_path($link_target);3584}3585}3586}3587print"</td>\n";3588print"<td class=\"link\">";3589print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3590 file_name=>"$basedir$t->{'name'}",%base_key)},3591"blob");3592if($have_blame) {3593print" | ".3594$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},3595 file_name=>"$basedir$t->{'name'}",%base_key)},3596"blame");3597}3598if(defined$hash_base) {3599print" | ".3600$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3601 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},3602"history");3603}3604print" | ".3605$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,3606 file_name=>"$basedir$t->{'name'}")},3607"raw");3608print"</td>\n";36093610}elsif($t->{'type'}eq"tree") {3611print"<td class=\"list\">";3612print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3613 file_name=>"$basedir$t->{'name'}",%base_key)},3614 esc_path($t->{'name'}));3615print"</td>\n";3616print"<td class=\"link\">";3617print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3618 file_name=>"$basedir$t->{'name'}",%base_key)},3619"tree");3620if(defined$hash_base) {3621print" | ".3622$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3623 file_name=>"$basedir$t->{'name'}")},3624"history");3625}3626print"</td>\n";3627}else{3628# unknown object: we can only present history for it3629# (this includes 'commit' object, i.e. submodule support)3630print"<td class=\"list\">".3631 esc_path($t->{'name'}) .3632"</td>\n";3633print"<td class=\"link\">";3634if(defined$hash_base) {3635print$cgi->a({-href => href(action=>"history",3636 hash_base=>$hash_base,3637 file_name=>"$basedir$t->{'name'}")},3638"history");3639}3640print"</td>\n";3641}3642}36433644## ......................................................................3645## functions printing large fragments of HTML36463647# get pre-image filenames for merge (combined) diff3648sub fill_from_file_info {3649my($diff,@parents) =@_;36503651$diff->{'from_file'} = [ ];3652$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;3653for(my$i=0;$i<$diff->{'nparents'};$i++) {3654if($diff->{'status'}[$i]eq'R'||3655$diff->{'status'}[$i]eq'C') {3656$diff->{'from_file'}[$i] =3657 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);3658}3659}36603661return$diff;3662}36633664# is current raw difftree line of file deletion3665sub is_deleted {3666my$diffinfo=shift;36673668return$diffinfo->{'to_id'}eq('0' x 40);3669}36703671# does patch correspond to [previous] difftree raw line3672# $diffinfo - hashref of parsed raw diff format3673# $patchinfo - hashref of parsed patch diff format3674# (the same keys as in $diffinfo)3675sub is_patch_split {3676my($diffinfo,$patchinfo) =@_;36773678returndefined$diffinfo&&defined$patchinfo3679&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};3680}368136823683sub git_difftree_body {3684my($difftree,$hash,@parents) =@_;3685my($parent) =$parents[0];3686my$have_blame= gitweb_check_feature('blame');3687print"<div class=\"list_head\">\n";3688if($#{$difftree} >10) {3689print(($#{$difftree} +1) ." files changed:\n");3690}3691print"</div>\n";36923693print"<table class=\"".3694(@parents>1?"combined ":"") .3695"diff_tree\">\n";36963697# header only for combined diff in 'commitdiff' view3698my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';3699if($has_header) {3700# table header3701print"<thead><tr>\n".3702"<th></th><th></th>\n";# filename, patchN link3703for(my$i=0;$i<@parents;$i++) {3704my$par=$parents[$i];3705print"<th>".3706$cgi->a({-href => href(action=>"commitdiff",3707 hash=>$hash, hash_parent=>$par),3708-title =>'commitdiff to parent number '.3709($i+1) .': '.substr($par,0,7)},3710$i+1) .3711" </th>\n";3712}3713print"</tr></thead>\n<tbody>\n";3714}37153716my$alternate=1;3717my$patchno=0;3718foreachmy$line(@{$difftree}) {3719my$diff= parsed_difftree_line($line);37203721if($alternate) {3722print"<tr class=\"dark\">\n";3723}else{3724print"<tr class=\"light\">\n";3725}3726$alternate^=1;37273728if(exists$diff->{'nparents'}) {# combined diff37293730 fill_from_file_info($diff,@parents)3731unlessexists$diff->{'from_file'};37323733if(!is_deleted($diff)) {3734# file exists in the result (child) commit3735print"<td>".3736$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3737 file_name=>$diff->{'to_file'},3738 hash_base=>$hash),3739-class=>"list"}, esc_path($diff->{'to_file'})) .3740"</td>\n";3741}else{3742print"<td>".3743 esc_path($diff->{'to_file'}) .3744"</td>\n";3745}37463747if($actioneq'commitdiff') {3748# link to patch3749$patchno++;3750print"<td class=\"link\">".3751$cgi->a({-href =>"#patch$patchno"},"patch") .3752" | ".3753"</td>\n";3754}37553756my$has_history=0;3757my$not_deleted=0;3758for(my$i=0;$i<$diff->{'nparents'};$i++) {3759my$hash_parent=$parents[$i];3760my$from_hash=$diff->{'from_id'}[$i];3761my$from_path=$diff->{'from_file'}[$i];3762my$status=$diff->{'status'}[$i];37633764$has_history||= ($statusne'A');3765$not_deleted||= ($statusne'D');37663767if($statuseq'A') {3768print"<td class=\"link\"align=\"right\"> | </td>\n";3769}elsif($statuseq'D') {3770print"<td class=\"link\">".3771$cgi->a({-href => href(action=>"blob",3772 hash_base=>$hash,3773 hash=>$from_hash,3774 file_name=>$from_path)},3775"blob". ($i+1)) .3776" | </td>\n";3777}else{3778if($diff->{'to_id'}eq$from_hash) {3779print"<td class=\"link nochange\">";3780}else{3781print"<td class=\"link\">";3782}3783print$cgi->a({-href => href(action=>"blobdiff",3784 hash=>$diff->{'to_id'},3785 hash_parent=>$from_hash,3786 hash_base=>$hash,3787 hash_parent_base=>$hash_parent,3788 file_name=>$diff->{'to_file'},3789 file_parent=>$from_path)},3790"diff". ($i+1)) .3791" | </td>\n";3792}3793}37943795print"<td class=\"link\">";3796if($not_deleted) {3797print$cgi->a({-href => href(action=>"blob",3798 hash=>$diff->{'to_id'},3799 file_name=>$diff->{'to_file'},3800 hash_base=>$hash)},3801"blob");3802print" | "if($has_history);3803}3804if($has_history) {3805print$cgi->a({-href => href(action=>"history",3806 file_name=>$diff->{'to_file'},3807 hash_base=>$hash)},3808"history");3809}3810print"</td>\n";38113812print"</tr>\n";3813next;# instead of 'else' clause, to avoid extra indent3814}3815# else ordinary diff38163817my($to_mode_oct,$to_mode_str,$to_file_type);3818my($from_mode_oct,$from_mode_str,$from_file_type);3819if($diff->{'to_mode'}ne('0' x 6)) {3820$to_mode_oct=oct$diff->{'to_mode'};3821if(S_ISREG($to_mode_oct)) {# only for regular file3822$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits3823}3824$to_file_type= file_type($diff->{'to_mode'});3825}3826if($diff->{'from_mode'}ne('0' x 6)) {3827$from_mode_oct=oct$diff->{'from_mode'};3828if(S_ISREG($to_mode_oct)) {# only for regular file3829$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits3830}3831$from_file_type= file_type($diff->{'from_mode'});3832}38333834if($diff->{'status'}eq"A") {# created3835my$mode_chng="<span class=\"file_status new\">[new$to_file_type";3836$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;3837$mode_chng.="]</span>";3838print"<td>";3839print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3840 hash_base=>$hash, file_name=>$diff->{'file'}),3841-class=>"list"}, esc_path($diff->{'file'}));3842print"</td>\n";3843print"<td>$mode_chng</td>\n";3844print"<td class=\"link\">";3845if($actioneq'commitdiff') {3846# link to patch3847$patchno++;3848print$cgi->a({-href =>"#patch$patchno"},"patch");3849print" | ";3850}3851print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3852 hash_base=>$hash, file_name=>$diff->{'file'})},3853"blob");3854print"</td>\n";38553856}elsif($diff->{'status'}eq"D") {# deleted3857my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";3858print"<td>";3859print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3860 hash_base=>$parent, file_name=>$diff->{'file'}),3861-class=>"list"}, esc_path($diff->{'file'}));3862print"</td>\n";3863print"<td>$mode_chng</td>\n";3864print"<td class=\"link\">";3865if($actioneq'commitdiff') {3866# link to patch3867$patchno++;3868print$cgi->a({-href =>"#patch$patchno"},"patch");3869print" | ";3870}3871print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3872 hash_base=>$parent, file_name=>$diff->{'file'})},3873"blob") ." | ";3874if($have_blame) {3875print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,3876 file_name=>$diff->{'file'})},3877"blame") ." | ";3878}3879print$cgi->a({-href => href(action=>"history", hash_base=>$parent,3880 file_name=>$diff->{'file'})},3881"history");3882print"</td>\n";38833884}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed3885my$mode_chnge="";3886if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3887$mode_chnge="<span class=\"file_status mode_chnge\">[changed";3888if($from_file_typene$to_file_type) {3889$mode_chnge.=" from$from_file_typeto$to_file_type";3890}3891if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {3892if($from_mode_str&&$to_mode_str) {3893$mode_chnge.=" mode:$from_mode_str->$to_mode_str";3894}elsif($to_mode_str) {3895$mode_chnge.=" mode:$to_mode_str";3896}3897}3898$mode_chnge.="]</span>\n";3899}3900print"<td>";3901print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3902 hash_base=>$hash, file_name=>$diff->{'file'}),3903-class=>"list"}, esc_path($diff->{'file'}));3904print"</td>\n";3905print"<td>$mode_chnge</td>\n";3906print"<td class=\"link\">";3907if($actioneq'commitdiff') {3908# link to patch3909$patchno++;3910print$cgi->a({-href =>"#patch$patchno"},"patch") .3911" | ";3912}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3913# "commit" view and modified file (not onlu mode changed)3914print$cgi->a({-href => href(action=>"blobdiff",3915 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3916 hash_base=>$hash, hash_parent_base=>$parent,3917 file_name=>$diff->{'file'})},3918"diff") .3919" | ";3920}3921print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3922 hash_base=>$hash, file_name=>$diff->{'file'})},3923"blob") ." | ";3924if($have_blame) {3925print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3926 file_name=>$diff->{'file'})},3927"blame") ." | ";3928}3929print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3930 file_name=>$diff->{'file'})},3931"history");3932print"</td>\n";39333934}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied3935my%status_name= ('R'=>'moved','C'=>'copied');3936my$nstatus=$status_name{$diff->{'status'}};3937my$mode_chng="";3938if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3939# mode also for directories, so we cannot use $to_mode_str3940$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);3941}3942print"<td>".3943$cgi->a({-href => href(action=>"blob", hash_base=>$hash,3944 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),3945-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".3946"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".3947$cgi->a({-href => href(action=>"blob", hash_base=>$parent,3948 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),3949-class=>"list"}, esc_path($diff->{'from_file'})) .3950" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".3951"<td class=\"link\">";3952if($actioneq'commitdiff') {3953# link to patch3954$patchno++;3955print$cgi->a({-href =>"#patch$patchno"},"patch") .3956" | ";3957}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3958# "commit" view and modified file (not only pure rename or copy)3959print$cgi->a({-href => href(action=>"blobdiff",3960 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3961 hash_base=>$hash, hash_parent_base=>$parent,3962 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},3963"diff") .3964" | ";3965}3966print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3967 hash_base=>$parent, file_name=>$diff->{'to_file'})},3968"blob") ." | ";3969if($have_blame) {3970print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3971 file_name=>$diff->{'to_file'})},3972"blame") ." | ";3973}3974print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3975 file_name=>$diff->{'to_file'})},3976"history");3977print"</td>\n";39783979}# we should not encounter Unmerged (U) or Unknown (X) status3980print"</tr>\n";3981}3982print"</tbody>"if$has_header;3983print"</table>\n";3984}39853986sub git_patchset_body {3987my($fd,$difftree,$hash,@hash_parents) =@_;3988my($hash_parent) =$hash_parents[0];39893990my$is_combined= (@hash_parents>1);3991my$patch_idx=0;3992my$patch_number=0;3993my$patch_line;3994my$diffinfo;3995my$to_name;3996my(%from,%to);39973998print"<div class=\"patchset\">\n";39994000# skip to first patch4001while($patch_line= <$fd>) {4002chomp$patch_line;40034004last if($patch_line=~m/^diff /);4005}40064007 PATCH:4008while($patch_line) {40094010# parse "git diff" header line4011if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4012# $1 is from_name, which we do not use4013$to_name= unquote($2);4014$to_name=~s!^b/!!;4015}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4016# $1 is 'cc' or 'combined', which we do not use4017$to_name= unquote($2);4018}else{4019$to_name=undef;4020}40214022# check if current patch belong to current raw line4023# and parse raw git-diff line if needed4024if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4025# this is continuation of a split patch4026print"<div class=\"patch cont\">\n";4027}else{4028# advance raw git-diff output if needed4029$patch_idx++ifdefined$diffinfo;40304031# read and prepare patch information4032$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);40334034# compact combined diff output can have some patches skipped4035# find which patch (using pathname of result) we are at now;4036if($is_combined) {4037while($to_namene$diffinfo->{'to_file'}) {4038print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4039 format_diff_cc_simplified($diffinfo,@hash_parents) .4040"</div>\n";# class="patch"40414042$patch_idx++;4043$patch_number++;40444045last if$patch_idx>$#$difftree;4046$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4047}4048}40494050# modifies %from, %to hashes4051 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);40524053# this is first patch for raw difftree line with $patch_idx index4054# we index @$difftree array from 0, but number patches from 14055print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4056}40574058# git diff header4059#assert($patch_line =~ m/^diff /) if DEBUG;4060#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4061$patch_number++;4062# print "git diff" header4063print format_git_diff_header_line($patch_line,$diffinfo,4064 \%from, \%to);40654066# print extended diff header4067print"<div class=\"diff extended_header\">\n";4068 EXTENDED_HEADER:4069while($patch_line= <$fd>) {4070chomp$patch_line;40714072last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);40734074print format_extended_diff_header_line($patch_line,$diffinfo,4075 \%from, \%to);4076}4077print"</div>\n";# class="diff extended_header"40784079# from-file/to-file diff header4080if(!$patch_line) {4081print"</div>\n";# class="patch"4082last PATCH;4083}4084next PATCH if($patch_line=~m/^diff /);4085#assert($patch_line =~ m/^---/) if DEBUG;40864087my$last_patch_line=$patch_line;4088$patch_line= <$fd>;4089chomp$patch_line;4090#assert($patch_line =~ m/^\+\+\+/) if DEBUG;40914092print format_diff_from_to_header($last_patch_line,$patch_line,4093$diffinfo, \%from, \%to,4094@hash_parents);40954096# the patch itself4097 LINE:4098while($patch_line= <$fd>) {4099chomp$patch_line;41004101next PATCH if($patch_line=~m/^diff /);41024103print format_diff_line($patch_line, \%from, \%to);4104}41054106}continue{4107print"</div>\n";# class="patch"4108}41094110# for compact combined (--cc) format, with chunk and patch simpliciaction4111# patchset might be empty, but there might be unprocessed raw lines4112for(++$patch_idxif$patch_number>0;4113$patch_idx<@$difftree;4114++$patch_idx) {4115# read and prepare patch information4116$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);41174118# generate anchor for "patch" links in difftree / whatchanged part4119print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4120 format_diff_cc_simplified($diffinfo,@hash_parents) .4121"</div>\n";# class="patch"41224123$patch_number++;4124}41254126if($patch_number==0) {4127if(@hash_parents>1) {4128print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4129}else{4130print"<div class=\"diff nodifferences\">No differences found</div>\n";4131}4132}41334134print"</div>\n";# class="patchset"4135}41364137# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .41384139# fills project list info (age, description, owner, forks) for each4140# project in the list, removing invalid projects from returned list4141# NOTE: modifies $projlist, but does not remove entries from it4142sub fill_project_list_info {4143my($projlist,$check_forks) =@_;4144my@projects;41454146my$show_ctags= gitweb_check_feature('ctags');4147 PROJECT:4148foreachmy$pr(@$projlist) {4149my(@activity) = git_get_last_activity($pr->{'path'});4150unless(@activity) {4151next PROJECT;4152}4153($pr->{'age'},$pr->{'age_string'}) =@activity;4154if(!defined$pr->{'descr'}) {4155my$descr= git_get_project_description($pr->{'path'}) ||"";4156$descr= to_utf8($descr);4157$pr->{'descr_long'} =$descr;4158$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4159}4160if(!defined$pr->{'owner'}) {4161$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4162}4163if($check_forks) {4164my$pname=$pr->{'path'};4165if(($pname=~s/\.git$//) &&4166($pname!~/\/$/) &&4167(-d "$projectroot/$pname")) {4168$pr->{'forks'} ="-d$projectroot/$pname";4169}else{4170$pr->{'forks'} =0;4171}4172}4173$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4174push@projects,$pr;4175}41764177return@projects;4178}41794180# print 'sort by' <th> element, generating 'sort by $name' replay link4181# if that order is not selected4182sub print_sort_th {4183my($name,$order,$header) =@_;4184$header||=ucfirst($name);41854186if($ordereq$name) {4187print"<th>$header</th>\n";4188}else{4189print"<th>".4190$cgi->a({-href => href(-replay=>1, order=>$name),4191-class=>"header"},$header) .4192"</th>\n";4193}4194}41954196sub git_project_list_body {4197# actually uses global variable $project4198my($projlist,$order,$from,$to,$extra,$no_header) =@_;41994200my$check_forks= gitweb_check_feature('forks');4201my@projects= fill_project_list_info($projlist,$check_forks);42024203$order||=$default_projects_order;4204$from=0unlessdefined$from;4205$to=$#projectsif(!defined$to||$#projects<$to);42064207my%order_info= (4208 project => { key =>'path', type =>'str'},4209 descr => { key =>'descr_long', type =>'str'},4210 owner => { key =>'owner', type =>'str'},4211 age => { key =>'age', type =>'num'}4212);4213my$oi=$order_info{$order};4214if($oi->{'type'}eq'str') {4215@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4216}else{4217@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4218}42194220my$show_ctags= gitweb_check_feature('ctags');4221if($show_ctags) {4222my%ctags;4223foreachmy$p(@projects) {4224foreachmy$ct(keys%{$p->{'ctags'}}) {4225$ctags{$ct} +=$p->{'ctags'}->{$ct};4226}4227}4228my$cloud= git_populate_project_tagcloud(\%ctags);4229print git_show_project_tagcloud($cloud,64);4230}42314232print"<table class=\"project_list\">\n";4233unless($no_header) {4234print"<tr>\n";4235if($check_forks) {4236print"<th></th>\n";4237}4238 print_sort_th('project',$order,'Project');4239 print_sort_th('descr',$order,'Description');4240 print_sort_th('owner',$order,'Owner');4241 print_sort_th('age',$order,'Last Change');4242print"<th></th>\n".# for links4243"</tr>\n";4244}4245my$alternate=1;4246my$tagfilter=$cgi->param('by_tag');4247for(my$i=$from;$i<=$to;$i++) {4248my$pr=$projects[$i];42494250next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4251next if$searchtextand not$pr->{'path'} =~/$searchtext/4252and not$pr->{'descr_long'} =~/$searchtext/;4253# Weed out forks or non-matching entries of search4254if($check_forks) {4255my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4256$forkbase="^$forkbase"if$forkbase;4257next ifnot$searchtextand not$tagfilterand$show_ctags4258and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4259}42604261if($alternate) {4262print"<tr class=\"dark\">\n";4263}else{4264print"<tr class=\"light\">\n";4265}4266$alternate^=1;4267if($check_forks) {4268print"<td>";4269if($pr->{'forks'}) {4270print"<!--$pr->{'forks'} -->\n";4271print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4272}4273print"</td>\n";4274}4275print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4276-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4277"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4278-class=>"list", -title =>$pr->{'descr_long'}},4279 esc_html($pr->{'descr'})) ."</td>\n".4280"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4281print"<td class=\"". age_class($pr->{'age'}) ."\">".4282(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4283"<td class=\"link\">".4284$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4285$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4286$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4287$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4288($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4289"</td>\n".4290"</tr>\n";4291}4292if(defined$extra) {4293print"<tr>\n";4294if($check_forks) {4295print"<td></td>\n";4296}4297print"<td colspan=\"5\">$extra</td>\n".4298"</tr>\n";4299}4300print"</table>\n";4301}43024303sub git_shortlog_body {4304# uses global variable $project4305my($commitlist,$from,$to,$refs,$extra) =@_;43064307$from=0unlessdefined$from;4308$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);43094310print"<table class=\"shortlog\">\n";4311my$alternate=1;4312for(my$i=$from;$i<=$to;$i++) {4313my%co= %{$commitlist->[$i]};4314my$commit=$co{'id'};4315my$ref= format_ref_marker($refs,$commit);4316if($alternate) {4317print"<tr class=\"dark\">\n";4318}else{4319print"<tr class=\"light\">\n";4320}4321$alternate^=1;4322# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4323print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4324 format_author_html('td', \%co,10) ."<td>";4325print format_subject_html($co{'title'},$co{'title_short'},4326 href(action=>"commit", hash=>$commit),$ref);4327print"</td>\n".4328"<td class=\"link\">".4329$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4330$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4331$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4332my$snapshot_links= format_snapshot_links($commit);4333if(defined$snapshot_links) {4334print" | ".$snapshot_links;4335}4336print"</td>\n".4337"</tr>\n";4338}4339if(defined$extra) {4340print"<tr>\n".4341"<td colspan=\"4\">$extra</td>\n".4342"</tr>\n";4343}4344print"</table>\n";4345}43464347sub git_history_body {4348# Warning: assumes constant type (blob or tree) during history4349my($commitlist,$from,$to,$refs,$hash_base,$ftype,$extra) =@_;43504351$from=0unlessdefined$from;4352$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});43534354print"<table class=\"history\">\n";4355my$alternate=1;4356for(my$i=$from;$i<=$to;$i++) {4357my%co= %{$commitlist->[$i]};4358if(!%co) {4359next;4360}4361my$commit=$co{'id'};43624363my$ref= format_ref_marker($refs,$commit);43644365if($alternate) {4366print"<tr class=\"dark\">\n";4367}else{4368print"<tr class=\"light\">\n";4369}4370$alternate^=1;4371print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4372# shortlog: format_author_html('td', \%co, 10)4373 format_author_html('td', \%co,15,3) ."<td>";4374# originally git_history used chop_str($co{'title'}, 50)4375print format_subject_html($co{'title'},$co{'title_short'},4376 href(action=>"commit", hash=>$commit),$ref);4377print"</td>\n".4378"<td class=\"link\">".4379$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".4380$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");43814382if($ftypeeq'blob') {4383my$blob_current= git_get_hash_by_path($hash_base,$file_name);4384my$blob_parent= git_get_hash_by_path($commit,$file_name);4385if(defined$blob_current&&defined$blob_parent&&4386$blob_currentne$blob_parent) {4387print" | ".4388$cgi->a({-href => href(action=>"blobdiff",4389 hash=>$blob_current, hash_parent=>$blob_parent,4390 hash_base=>$hash_base, hash_parent_base=>$commit,4391 file_name=>$file_name)},4392"diff to current");4393}4394}4395print"</td>\n".4396"</tr>\n";4397}4398if(defined$extra) {4399print"<tr>\n".4400"<td colspan=\"4\">$extra</td>\n".4401"</tr>\n";4402}4403print"</table>\n";4404}44054406sub git_tags_body {4407# uses global variable $project4408my($taglist,$from,$to,$extra) =@_;4409$from=0unlessdefined$from;4410$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);44114412print"<table class=\"tags\">\n";4413my$alternate=1;4414for(my$i=$from;$i<=$to;$i++) {4415my$entry=$taglist->[$i];4416my%tag=%$entry;4417my$comment=$tag{'subject'};4418my$comment_short;4419if(defined$comment) {4420$comment_short= chop_str($comment,30,5);4421}4422if($alternate) {4423print"<tr class=\"dark\">\n";4424}else{4425print"<tr class=\"light\">\n";4426}4427$alternate^=1;4428if(defined$tag{'age'}) {4429print"<td><i>$tag{'age'}</i></td>\n";4430}else{4431print"<td></td>\n";4432}4433print"<td>".4434$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),4435-class=>"list name"}, esc_html($tag{'name'})) .4436"</td>\n".4437"<td>";4438if(defined$comment) {4439print format_subject_html($comment,$comment_short,4440 href(action=>"tag", hash=>$tag{'id'}));4441}4442print"</td>\n".4443"<td class=\"selflink\">";4444if($tag{'type'}eq"tag") {4445print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");4446}else{4447print" ";4448}4449print"</td>\n".4450"<td class=\"link\">"." | ".4451$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});4452if($tag{'reftype'}eq"commit") {4453print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .4454" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");4455}elsif($tag{'reftype'}eq"blob") {4456print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");4457}4458print"</td>\n".4459"</tr>";4460}4461if(defined$extra) {4462print"<tr>\n".4463"<td colspan=\"5\">$extra</td>\n".4464"</tr>\n";4465}4466print"</table>\n";4467}44684469sub git_heads_body {4470# uses global variable $project4471my($headlist,$head,$from,$to,$extra) =@_;4472$from=0unlessdefined$from;4473$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);44744475print"<table class=\"heads\">\n";4476my$alternate=1;4477for(my$i=$from;$i<=$to;$i++) {4478my$entry=$headlist->[$i];4479my%ref=%$entry;4480my$curr=$ref{'id'}eq$head;4481if($alternate) {4482print"<tr class=\"dark\">\n";4483}else{4484print"<tr class=\"light\">\n";4485}4486$alternate^=1;4487print"<td><i>$ref{'age'}</i></td>\n".4488($curr?"<td class=\"current_head\">":"<td>") .4489$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),4490-class=>"list name"},esc_html($ref{'name'})) .4491"</td>\n".4492"<td class=\"link\">".4493$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".4494$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".4495$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'name'})},"tree") .4496"</td>\n".4497"</tr>";4498}4499if(defined$extra) {4500print"<tr>\n".4501"<td colspan=\"3\">$extra</td>\n".4502"</tr>\n";4503}4504print"</table>\n";4505}45064507sub git_search_grep_body {4508my($commitlist,$from,$to,$extra) =@_;4509$from=0unlessdefined$from;4510$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);45114512print"<table class=\"commit_search\">\n";4513my$alternate=1;4514for(my$i=$from;$i<=$to;$i++) {4515my%co= %{$commitlist->[$i]};4516if(!%co) {4517next;4518}4519my$commit=$co{'id'};4520if($alternate) {4521print"<tr class=\"dark\">\n";4522}else{4523print"<tr class=\"light\">\n";4524}4525$alternate^=1;4526print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4527 format_author_html('td', \%co,15,5) .4528"<td>".4529$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),4530-class=>"list subject"},4531 chop_and_escape_str($co{'title'},50) ."<br/>");4532my$comment=$co{'comment'};4533foreachmy$line(@$comment) {4534if($line=~m/^(.*?)($search_regexp)(.*)$/i) {4535my($lead,$match,$trail) = ($1,$2,$3);4536$match= chop_str($match,70,5,'center');4537my$contextlen=int((80-length($match))/2);4538$contextlen=30if($contextlen>30);4539$lead= chop_str($lead,$contextlen,10,'left');4540$trail= chop_str($trail,$contextlen,10,'right');45414542$lead= esc_html($lead);4543$match= esc_html($match);4544$trail= esc_html($trail);45454546print"$lead<span class=\"match\">$match</span>$trail<br />";4547}4548}4549print"</td>\n".4550"<td class=\"link\">".4551$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .4552" | ".4553$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .4554" | ".4555$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");4556print"</td>\n".4557"</tr>\n";4558}4559if(defined$extra) {4560print"<tr>\n".4561"<td colspan=\"3\">$extra</td>\n".4562"</tr>\n";4563}4564print"</table>\n";4565}45664567## ======================================================================4568## ======================================================================4569## actions45704571sub git_project_list {4572my$order=$input_params{'order'};4573if(defined$order&&$order!~m/none|project|descr|owner|age/) {4574 die_error(400,"Unknown order parameter");4575}45764577my@list= git_get_projects_list();4578if(!@list) {4579 die_error(404,"No projects found");4580}45814582 git_header_html();4583if(-f $home_text) {4584print"<div class=\"index_include\">\n";4585 insert_file($home_text);4586print"</div>\n";4587}4588print$cgi->startform(-method=>"get") .4589"<p class=\"projsearch\">Search:\n".4590$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".4591"</p>".4592$cgi->end_form() ."\n";4593 git_project_list_body(\@list,$order);4594 git_footer_html();4595}45964597sub git_forks {4598my$order=$input_params{'order'};4599if(defined$order&&$order!~m/none|project|descr|owner|age/) {4600 die_error(400,"Unknown order parameter");4601}46024603my@list= git_get_projects_list($project);4604if(!@list) {4605 die_error(404,"No forks found");4606}46074608 git_header_html();4609 git_print_page_nav('','');4610 git_print_header_div('summary',"$projectforks");4611 git_project_list_body(\@list,$order);4612 git_footer_html();4613}46144615sub git_project_index {4616my@projects= git_get_projects_list($project);46174618print$cgi->header(4619-type =>'text/plain',4620-charset =>'utf-8',4621-content_disposition =>'inline; filename="index.aux"');46224623foreachmy$pr(@projects) {4624if(!exists$pr->{'owner'}) {4625$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");4626}46274628my($path,$owner) = ($pr->{'path'},$pr->{'owner'});4629# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '4630$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4631$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4632$path=~s/ /\+/g;4633$owner=~s/ /\+/g;46344635print"$path$owner\n";4636}4637}46384639sub git_summary {4640my$descr= git_get_project_description($project) ||"none";4641my%co= parse_commit("HEAD");4642my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();4643my$head=$co{'id'};46444645my$owner= git_get_project_owner($project);46464647my$refs= git_get_references();4648# These get_*_list functions return one more to allow us to see if4649# there are more ...4650my@taglist= git_get_tags_list(16);4651my@headlist= git_get_heads_list(16);4652my@forklist;4653my$check_forks= gitweb_check_feature('forks');46544655if($check_forks) {4656@forklist= git_get_projects_list($project);4657}46584659 git_header_html();4660 git_print_page_nav('summary','',$head);46614662print"<div class=\"title\"> </div>\n";4663print"<table class=\"projects_list\">\n".4664"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".4665"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";4666if(defined$cd{'rfc2822'}) {4667print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";4668}46694670# use per project git URL list in $projectroot/$project/cloneurl4671# or make project git URL from git base URL and project name4672my$url_tag="URL";4673my@url_list= git_get_project_url_list($project);4674@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;4675foreachmy$git_url(@url_list) {4676next unless$git_url;4677print"<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";4678$url_tag="";4679}46804681# Tag cloud4682my$show_ctags= gitweb_check_feature('ctags');4683if($show_ctags) {4684my$ctags= git_get_project_ctags($project);4685my$cloud= git_populate_project_tagcloud($ctags);4686print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";4687print"</td>\n<td>"unless%$ctags;4688print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";4689print"</td>\n<td>"if%$ctags;4690print git_show_project_tagcloud($cloud,48);4691print"</td></tr>";4692}46934694print"</table>\n";46954696# If XSS prevention is on, we don't include README.html.4697# TODO: Allow a readme in some safe format.4698if(!$prevent_xss&& -s "$projectroot/$project/README.html") {4699print"<div class=\"title\">readme</div>\n".4700"<div class=\"readme\">\n";4701 insert_file("$projectroot/$project/README.html");4702print"\n</div>\n";# class="readme"4703}47044705# we need to request one more than 16 (0..15) to check if4706# those 16 are all4707my@commitlist=$head? parse_commits($head,17) : ();4708if(@commitlist) {4709 git_print_header_div('shortlog');4710 git_shortlog_body(\@commitlist,0,15,$refs,4711$#commitlist<=15?undef:4712$cgi->a({-href => href(action=>"shortlog")},"..."));4713}47144715if(@taglist) {4716 git_print_header_div('tags');4717 git_tags_body(\@taglist,0,15,4718$#taglist<=15?undef:4719$cgi->a({-href => href(action=>"tags")},"..."));4720}47214722if(@headlist) {4723 git_print_header_div('heads');4724 git_heads_body(\@headlist,$head,0,15,4725$#headlist<=15?undef:4726$cgi->a({-href => href(action=>"heads")},"..."));4727}47284729if(@forklist) {4730 git_print_header_div('forks');4731 git_project_list_body(\@forklist,'age',0,15,4732$#forklist<=15?undef:4733$cgi->a({-href => href(action=>"forks")},"..."),4734'no_header');4735}47364737 git_footer_html();4738}47394740sub git_tag {4741my$head= git_get_head_hash($project);4742 git_header_html();4743 git_print_page_nav('','',$head,undef,$head);4744my%tag= parse_tag($hash);47454746if(!%tag) {4747 die_error(404,"Unknown tag object");4748}47494750 git_print_header_div('commit', esc_html($tag{'name'}),$hash);4751print"<div class=\"title_text\">\n".4752"<table class=\"object_header\">\n".4753"<tr>\n".4754"<td>object</td>\n".4755"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4756$tag{'object'}) ."</td>\n".4757"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4758$tag{'type'}) ."</td>\n".4759"</tr>\n";4760if(defined($tag{'author'})) {4761 git_print_authorship_rows(\%tag,'author');4762}4763print"</table>\n\n".4764"</div>\n";4765print"<div class=\"page_body\">";4766my$comment=$tag{'comment'};4767foreachmy$line(@$comment) {4768chomp$line;4769print esc_html($line, -nbsp=>1) ."<br/>\n";4770}4771print"</div>\n";4772 git_footer_html();4773}47744775sub git_blame {4776# permissions4777 gitweb_check_feature('blame')4778or die_error(403,"Blame view not allowed");47794780# error checking4781 die_error(400,"No file name given")unless$file_name;4782$hash_base||= git_get_head_hash($project);4783 die_error(404,"Couldn't find base commit")unless$hash_base;4784my%co= parse_commit($hash_base)4785or die_error(404,"Commit not found");4786my$ftype="blob";4787if(!defined$hash) {4788$hash= git_get_hash_by_path($hash_base,$file_name,"blob")4789or die_error(404,"Error looking up file");4790}else{4791$ftype= git_get_type($hash);4792if($ftype!~"blob") {4793 die_error(400,"Object is not a blob");4794}4795}47964797# run git-blame --porcelain4798open my$fd,"-|", git_cmd(),"blame",'-p',4799$hash_base,'--',$file_name4800or die_error(500,"Open git-blame failed");48014802# page header4803 git_header_html();4804my$formats_nav=4805$cgi->a({-href => href(action=>"blob", -replay=>1)},4806"blob") .4807" | ".4808$cgi->a({-href => href(action=>"history", -replay=>1)},4809"history") .4810" | ".4811$cgi->a({-href => href(action=>"blame", file_name=>$file_name)},4812"HEAD");4813 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4814 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4815 git_print_page_path($file_name,$ftype,$hash_base);48164817# page body4818my@rev_color=qw(light2 dark2);4819my$num_colors=scalar(@rev_color);4820my$current_color=0;4821my%metainfo= ();48224823print<<HTML;4824<div class="page_body">4825<table class="blame">4826<tr><th>Commit</th><th>Line</th><th>Data</th></tr>4827HTML4828 LINE:4829while(my$line= <$fd>) {4830chomp$line;4831# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]4832# no <lines in group> for subsequent lines in group of lines4833my($full_rev,$orig_lineno,$lineno,$group_size) =4834($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);4835if(!exists$metainfo{$full_rev}) {4836$metainfo{$full_rev} = {};4837}4838my$meta=$metainfo{$full_rev};4839my$data;4840while($data= <$fd>) {4841chomp$data;4842last if($data=~s/^\t//);# contents of line4843if($data=~/^(\S+) (.*)$/) {4844$meta->{$1} =$2;4845}4846}4847my$short_rev=substr($full_rev,0,8);4848my$author=$meta->{'author'};4849my%date=4850 parse_date($meta->{'author-time'},$meta->{'author-tz'});4851my$date=$date{'iso-tz'};4852if($group_size) {4853$current_color= ($current_color+1) %$num_colors;4854}4855print"<tr id=\"l$lineno\"class=\"$rev_color[$current_color]\">\n";4856if($group_size) {4857print"<td class=\"sha1\"";4858print" title=\"". esc_html($author) .",$date\"";4859print" rowspan=\"$group_size\""if($group_size>1);4860print">";4861print$cgi->a({-href => href(action=>"commit",4862 hash=>$full_rev,4863 file_name=>$file_name)},4864 esc_html($short_rev));4865print"</td>\n";4866}4867my$parent_commit;4868if(!exists$meta->{'parent'}) {4869open(my$dd,"-|", git_cmd(),"rev-parse","$full_rev^")4870or die_error(500,"Open git-rev-parse failed");4871$parent_commit= <$dd>;4872close$dd;4873chomp($parent_commit);4874$meta->{'parent'} =$parent_commit;4875}else{4876$parent_commit=$meta->{'parent'};4877}4878my$blamed= href(action =>'blame',4879 file_name =>$meta->{'filename'},4880 hash_base =>$parent_commit);4881print"<td class=\"linenr\">";4882print$cgi->a({ -href =>"$blamed#l$orig_lineno",4883-class=>"linenr"},4884 esc_html($lineno));4885print"</td>";4886print"<td class=\"pre\">". esc_html($data) ."</td>\n";4887print"</tr>\n";4888}4889print"</table>\n";4890print"</div>";4891close$fd4892or print"Reading blob failed\n";48934894# page footer4895 git_footer_html();4896}48974898sub git_tags {4899my$head= git_get_head_hash($project);4900 git_header_html();4901 git_print_page_nav('','',$head,undef,$head);4902 git_print_header_div('summary',$project);49034904my@tagslist= git_get_tags_list();4905if(@tagslist) {4906 git_tags_body(\@tagslist);4907}4908 git_footer_html();4909}49104911sub git_heads {4912my$head= git_get_head_hash($project);4913 git_header_html();4914 git_print_page_nav('','',$head,undef,$head);4915 git_print_header_div('summary',$project);49164917my@headslist= git_get_heads_list();4918if(@headslist) {4919 git_heads_body(\@headslist,$head);4920}4921 git_footer_html();4922}49234924sub git_blob_plain {4925my$type=shift;4926my$expires;49274928if(!defined$hash) {4929if(defined$file_name) {4930my$base=$hash_base|| git_get_head_hash($project);4931$hash= git_get_hash_by_path($base,$file_name,"blob")4932or die_error(404,"Cannot find file");4933}else{4934 die_error(400,"No file name defined");4935}4936}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4937# blobs defined by non-textual hash id's can be cached4938$expires="+1d";4939}49404941open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4942or die_error(500,"Open git-cat-file blob '$hash' failed");49434944# content-type (can include charset)4945$type= blob_contenttype($fd,$file_name,$type);49464947# "save as" filename, even when no $file_name is given4948my$save_as="$hash";4949if(defined$file_name) {4950$save_as=$file_name;4951}elsif($type=~m/^text\//) {4952$save_as.='.txt';4953}49544955# With XSS prevention on, blobs of all types except a few known safe4956# ones are served with "Content-Disposition: attachment" to make sure4957# they don't run in our security domain. For certain image types,4958# blob view writes an <img> tag referring to blob_plain view, and we4959# want to be sure not to break that by serving the image as an4960# attachment (though Firefox 3 doesn't seem to care).4961my$sandbox=$prevent_xss&&4962$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;49634964print$cgi->header(4965-type =>$type,4966-expires =>$expires,4967-content_disposition =>4968($sandbox?'attachment':'inline')4969.'; filename="'.$save_as.'"');4970local$/=undef;4971binmode STDOUT,':raw';4972print<$fd>;4973binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4974close$fd;4975}49764977sub git_blob {4978my$expires;49794980if(!defined$hash) {4981if(defined$file_name) {4982my$base=$hash_base|| git_get_head_hash($project);4983$hash= git_get_hash_by_path($base,$file_name,"blob")4984or die_error(404,"Cannot find file");4985}else{4986 die_error(400,"No file name defined");4987}4988}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4989# blobs defined by non-textual hash id's can be cached4990$expires="+1d";4991}49924993my$have_blame= gitweb_check_feature('blame');4994open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4995or die_error(500,"Couldn't cat$file_name,$hash");4996my$mimetype= blob_mimetype($fd,$file_name);4997if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {4998close$fd;4999return git_blob_plain($mimetype);5000}5001# we can have blame only for text/* mimetype5002$have_blame&&= ($mimetype=~m!^text/!);50035004 git_header_html(undef,$expires);5005my$formats_nav='';5006if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5007if(defined$file_name) {5008if($have_blame) {5009$formats_nav.=5010$cgi->a({-href => href(action=>"blame", -replay=>1)},5011"blame") .5012" | ";5013}5014$formats_nav.=5015$cgi->a({-href => href(action=>"history", -replay=>1)},5016"history") .5017" | ".5018$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5019"raw") .5020" | ".5021$cgi->a({-href => href(action=>"blob",5022 hash_base=>"HEAD", file_name=>$file_name)},5023"HEAD");5024}else{5025$formats_nav.=5026$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5027"raw");5028}5029 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5030 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5031}else{5032print"<div class=\"page_nav\">\n".5033"<br/><br/></div>\n".5034"<div class=\"title\">$hash</div>\n";5035}5036 git_print_page_path($file_name,"blob",$hash_base);5037print"<div class=\"page_body\">\n";5038if($mimetype=~m!^image/!) {5039print qq!<img type="$mimetype"!;5040if($file_name) {5041print qq! alt="$file_name" title="$file_name"!;5042}5043print qq! src="! .5044 href(action=>"blob_plain", hash=>$hash,5045 hash_base=>$hash_base, file_name=>$file_name) .5046 qq!"/>\n!;5047}else{5048my$nr;5049while(my$line= <$fd>) {5050chomp$line;5051$nr++;5052$line= untabify($line);5053printf"<div class=\"pre\"><a id=\"l%i\"href=\"#l%i\"class=\"linenr\">%4i</a>%s</div>\n",5054$nr,$nr,$nr, esc_html($line, -nbsp=>1);5055}5056}5057close$fd5058or print"Reading blob failed.\n";5059print"</div>";5060 git_footer_html();5061}50625063sub git_tree {5064if(!defined$hash_base) {5065$hash_base="HEAD";5066}5067if(!defined$hash) {5068if(defined$file_name) {5069$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5070}else{5071$hash=$hash_base;5072}5073}5074 die_error(404,"No such tree")unlessdefined($hash);50755076my@entries= ();5077{5078local$/="\0";5079open my$fd,"-|", git_cmd(),"ls-tree",'-z',$hash5080or die_error(500,"Open git-ls-tree failed");5081@entries=map{chomp;$_} <$fd>;5082close$fd5083or die_error(404,"Reading tree failed");5084}50855086my$refs= git_get_references();5087my$ref= format_ref_marker($refs,$hash_base);5088 git_header_html();5089my$basedir='';5090my$have_blame= gitweb_check_feature('blame');5091if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5092my@views_nav= ();5093if(defined$file_name) {5094push@views_nav,5095$cgi->a({-href => href(action=>"history", -replay=>1)},5096"history"),5097$cgi->a({-href => href(action=>"tree",5098 hash_base=>"HEAD", file_name=>$file_name)},5099"HEAD"),5100}5101my$snapshot_links= format_snapshot_links($hash);5102if(defined$snapshot_links) {5103# FIXME: Should be available when we have no hash base as well.5104push@views_nav,$snapshot_links;5105}5106 git_print_page_nav('tree','',$hash_base,undef,undef,join(' | ',@views_nav));5107 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);5108}else{5109undef$hash_base;5110print"<div class=\"page_nav\">\n";5111print"<br/><br/></div>\n";5112print"<div class=\"title\">$hash</div>\n";5113}5114if(defined$file_name) {5115$basedir=$file_name;5116if($basedirne''&&substr($basedir, -1)ne'/') {5117$basedir.='/';5118}5119 git_print_page_path($file_name,'tree',$hash_base);5120}5121print"<div class=\"page_body\">\n";5122print"<table class=\"tree\">\n";5123my$alternate=1;5124# '..' (top directory) link if possible5125if(defined$hash_base&&5126defined$file_name&&$file_name=~m![^/]+$!) {5127if($alternate) {5128print"<tr class=\"dark\">\n";5129}else{5130print"<tr class=\"light\">\n";5131}5132$alternate^=1;51335134my$up=$file_name;5135$up=~s!/?[^/]+$!!;5136undef$upunless$up;5137# based on git_print_tree_entry5138print'<td class="mode">'. mode_str('040000') ."</td>\n";5139print'<td class="list">';5140print$cgi->a({-href => href(action=>"tree", hash_base=>$hash_base,5141 file_name=>$up)},5142"..");5143print"</td>\n";5144print"<td class=\"link\"></td>\n";51455146print"</tr>\n";5147}5148foreachmy$line(@entries) {5149my%t= parse_ls_tree_line($line, -z =>1);51505151if($alternate) {5152print"<tr class=\"dark\">\n";5153}else{5154print"<tr class=\"light\">\n";5155}5156$alternate^=1;51575158 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);51595160print"</tr>\n";5161}5162print"</table>\n".5163"</div>";5164 git_footer_html();5165}51665167sub git_snapshot {5168my$format=$input_params{'snapshot_format'};5169if(!@snapshot_fmts) {5170 die_error(403,"Snapshots not allowed");5171}5172# default to first supported snapshot format5173$format||=$snapshot_fmts[0];5174if($format!~m/^[a-z0-9]+$/) {5175 die_error(400,"Invalid snapshot format parameter");5176}elsif(!exists($known_snapshot_formats{$format})) {5177 die_error(400,"Unknown snapshot format");5178}elsif($known_snapshot_formats{$format}{'disabled'}) {5179 die_error(403,"Snapshot format not allowed");5180}elsif(!grep($_eq$format,@snapshot_fmts)) {5181 die_error(403,"Unsupported snapshot format");5182}51835184if(!defined$hash) {5185$hash= git_get_head_hash($project);5186}51875188my$name=$project;5189$name=~ s,([^/])/*\.git$,$1,;5190$name= basename($name);5191my$filename= to_utf8($name);5192$name=~s/\047/\047\\\047\047/g;5193my$cmd;5194$filename.="-$hash$known_snapshot_formats{$format}{'suffix'}";5195$cmd= quote_command(5196 git_cmd(),'archive',5197"--format=$known_snapshot_formats{$format}{'format'}",5198"--prefix=$name/",$hash);5199if(exists$known_snapshot_formats{$format}{'compressor'}) {5200$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});5201}52025203print$cgi->header(5204-type =>$known_snapshot_formats{$format}{'type'},5205-content_disposition =>'inline; filename="'."$filename".'"',5206-status =>'200 OK');52075208open my$fd,"-|",$cmd5209or die_error(500,"Execute git-archive failed");5210binmode STDOUT,':raw';5211print<$fd>;5212binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5213close$fd;5214}52155216sub git_log {5217my$head= git_get_head_hash($project);5218if(!defined$hash) {5219$hash=$head;5220}5221if(!defined$page) {5222$page=0;5223}5224my$refs= git_get_references();52255226my@commitlist= parse_commits($hash,101, (100*$page));52275228my$paging_nav= format_paging_nav('log',$hash,$head,$page,$#commitlist>=100);52295230my($patch_max) = gitweb_get_feature('patches');5231if($patch_max) {5232if($patch_max<0||@commitlist<=$patch_max) {5233$paging_nav.=" ⋅ ".5234$cgi->a({-href => href(action=>"patches", -replay=>1)},5235"patches");5236}5237}52385239 git_header_html();5240 git_print_page_nav('log','',$hash,undef,undef,$paging_nav);52415242if(!@commitlist) {5243my%co= parse_commit($hash);52445245 git_print_header_div('summary',$project);5246print"<div class=\"page_body\"> Last change$co{'age_string'}.<br/><br/></div>\n";5247}5248my$to= ($#commitlist>=99) ? (99) : ($#commitlist);5249for(my$i=0;$i<=$to;$i++) {5250my%co= %{$commitlist[$i]};5251next if!%co;5252my$commit=$co{'id'};5253my$ref= format_ref_marker($refs,$commit);5254my%ad= parse_date($co{'author_epoch'});5255 git_print_header_div('commit',5256"<span class=\"age\">$co{'age_string'}</span>".5257 esc_html($co{'title'}) .$ref,5258$commit);5259print"<div class=\"title_text\">\n".5260"<div class=\"log_link\">\n".5261$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .5262" | ".5263$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .5264" | ".5265$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .5266"<br/>\n".5267"</div>\n";5268 git_print_authorship(\%co, -tag =>'span');5269print"<br/>\n</div>\n";52705271print"<div class=\"log_body\">\n";5272 git_print_log($co{'comment'}, -final_empty_line=>1);5273print"</div>\n";5274}5275if($#commitlist>=100) {5276print"<div class=\"page_nav\">\n";5277print$cgi->a({-href => href(-replay=>1, page=>$page+1),5278-accesskey =>"n", -title =>"Alt-n"},"next");5279print"</div>\n";5280}5281 git_footer_html();5282}52835284sub git_commit {5285$hash||=$hash_base||"HEAD";5286my%co= parse_commit($hash)5287or die_error(404,"Unknown commit object");52885289my$parent=$co{'parent'};5290my$parents=$co{'parents'};# listref52915292# we need to prepare $formats_nav before any parameter munging5293my$formats_nav;5294if(!defined$parent) {5295# --root commitdiff5296$formats_nav.='(initial)';5297}elsif(@$parents==1) {5298# single parent commit5299$formats_nav.=5300'(parent: '.5301$cgi->a({-href => href(action=>"commit",5302 hash=>$parent)},5303 esc_html(substr($parent,0,7))) .5304')';5305}else{5306# merge commit5307$formats_nav.=5308'(merge: '.5309join(' ',map{5310$cgi->a({-href => href(action=>"commit",5311 hash=>$_)},5312 esc_html(substr($_,0,7)));5313}@$parents) .5314')';5315}5316if(gitweb_check_feature('patches')) {5317$formats_nav.=" | ".5318$cgi->a({-href => href(action=>"patch", -replay=>1)},5319"patch");5320}53215322if(!defined$parent) {5323$parent="--root";5324}5325my@difftree;5326open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",5327@diff_opts,5328(@$parents<=1?$parent:'-c'),5329$hash,"--"5330or die_error(500,"Open git-diff-tree failed");5331@difftree=map{chomp;$_} <$fd>;5332close$fdor die_error(404,"Reading git-diff-tree failed");53335334# non-textual hash id's can be cached5335my$expires;5336if($hash=~m/^[0-9a-fA-F]{40}$/) {5337$expires="+1d";5338}5339my$refs= git_get_references();5340my$ref= format_ref_marker($refs,$co{'id'});53415342 git_header_html(undef,$expires);5343 git_print_page_nav('commit','',5344$hash,$co{'tree'},$hash,5345$formats_nav);53465347if(defined$co{'parent'}) {5348 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);5349}else{5350 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);5351}5352print"<div class=\"title_text\">\n".5353"<table class=\"object_header\">\n";5354 git_print_authorship_rows(\%co);5355print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";5356print"<tr>".5357"<td>tree</td>".5358"<td class=\"sha1\">".5359$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),5360class=>"list"},$co{'tree'}) .5361"</td>".5362"<td class=\"link\">".5363$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},5364"tree");5365my$snapshot_links= format_snapshot_links($hash);5366if(defined$snapshot_links) {5367print" | ".$snapshot_links;5368}5369print"</td>".5370"</tr>\n";53715372foreachmy$par(@$parents) {5373print"<tr>".5374"<td>parent</td>".5375"<td class=\"sha1\">".5376$cgi->a({-href => href(action=>"commit", hash=>$par),5377class=>"list"},$par) .5378"</td>".5379"<td class=\"link\">".5380$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .5381" | ".5382$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .5383"</td>".5384"</tr>\n";5385}5386print"</table>".5387"</div>\n";53885389print"<div class=\"page_body\">\n";5390 git_print_log($co{'comment'});5391print"</div>\n";53925393 git_difftree_body(\@difftree,$hash,@$parents);53945395 git_footer_html();5396}53975398sub git_object {5399# object is defined by:5400# - hash or hash_base alone5401# - hash_base and file_name5402my$type;54035404# - hash or hash_base alone5405if($hash|| ($hash_base&& !defined$file_name)) {5406my$object_id=$hash||$hash_base;54075408open my$fd,"-|", quote_command(5409 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'5410or die_error(404,"Object does not exist");5411$type= <$fd>;5412chomp$type;5413close$fd5414or die_error(404,"Object does not exist");54155416# - hash_base and file_name5417}elsif($hash_base&&defined$file_name) {5418$file_name=~ s,/+$,,;54195420system(git_cmd(),"cat-file",'-e',$hash_base) ==05421or die_error(404,"Base object does not exist");54225423# here errors should not hapen5424open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name5425or die_error(500,"Open git-ls-tree failed");5426my$line= <$fd>;5427close$fd;54285429#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'5430unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {5431 die_error(404,"File or directory for given base does not exist");5432}5433$type=$2;5434$hash=$3;5435}else{5436 die_error(400,"Not enough information to find object");5437}54385439print$cgi->redirect(-uri => href(action=>$type, -full=>1,5440 hash=>$hash, hash_base=>$hash_base,5441 file_name=>$file_name),5442-status =>'302 Found');5443}54445445sub git_blobdiff {5446my$format=shift||'html';54475448my$fd;5449my@difftree;5450my%diffinfo;5451my$expires;54525453# preparing $fd and %diffinfo for git_patchset_body5454# new style URI5455if(defined$hash_base&&defined$hash_parent_base) {5456if(defined$file_name) {5457# read raw output5458open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5459$hash_parent_base,$hash_base,5460"--", (defined$file_parent?$file_parent: ()),$file_name5461or die_error(500,"Open git-diff-tree failed");5462@difftree=map{chomp;$_} <$fd>;5463close$fd5464or die_error(404,"Reading git-diff-tree failed");5465@difftree5466or die_error(404,"Blob diff not found");54675468}elsif(defined$hash&&5469$hash=~/[0-9a-fA-F]{40}/) {5470# try to find filename from $hash54715472# read filtered raw output5473open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5474$hash_parent_base,$hash_base,"--"5475or die_error(500,"Open git-diff-tree failed");5476@difftree=5477# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'5478# $hash == to_id5479grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}5480map{chomp;$_} <$fd>;5481close$fd5482or die_error(404,"Reading git-diff-tree failed");5483@difftree5484or die_error(404,"Blob diff not found");54855486}else{5487 die_error(400,"Missing one of the blob diff parameters");5488}54895490if(@difftree>1) {5491 die_error(400,"Ambiguous blob diff specification");5492}54935494%diffinfo= parse_difftree_raw_line($difftree[0]);5495$file_parent||=$diffinfo{'from_file'} ||$file_name;5496$file_name||=$diffinfo{'to_file'};54975498$hash_parent||=$diffinfo{'from_id'};5499$hash||=$diffinfo{'to_id'};55005501# non-textual hash id's can be cached5502if($hash_base=~m/^[0-9a-fA-F]{40}$/&&5503$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {5504$expires='+1d';5505}55065507# open patch output5508open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5509'-p', ($formateq'html'?"--full-index": ()),5510$hash_parent_base,$hash_base,5511"--", (defined$file_parent?$file_parent: ()),$file_name5512or die_error(500,"Open git-diff-tree failed");5513}55145515# old/legacy style URI -- not generated anymore since 1.4.3.5516if(!%diffinfo) {5517 die_error('404 Not Found',"Missing one of the blob diff parameters")5518}55195520# header5521if($formateq'html') {5522my$formats_nav=5523$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},5524"raw");5525 git_header_html(undef,$expires);5526if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5527 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5528 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5529}else{5530print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";5531print"<div class=\"title\">$hashvs$hash_parent</div>\n";5532}5533if(defined$file_name) {5534 git_print_page_path($file_name,"blob",$hash_base);5535}else{5536print"<div class=\"page_path\"></div>\n";5537}55385539}elsif($formateq'plain') {5540print$cgi->header(5541-type =>'text/plain',5542-charset =>'utf-8',5543-expires =>$expires,5544-content_disposition =>'inline; filename="'."$file_name".'.patch"');55455546print"X-Git-Url: ".$cgi->self_url() ."\n\n";55475548}else{5549 die_error(400,"Unknown blobdiff format");5550}55515552# patch5553if($formateq'html') {5554print"<div class=\"page_body\">\n";55555556 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);5557close$fd;55585559print"</div>\n";# class="page_body"5560 git_footer_html();55615562}else{5563while(my$line= <$fd>) {5564$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;5565$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;55665567print$line;55685569last if$line=~m!^\+\+\+!;5570}5571local$/=undef;5572print<$fd>;5573close$fd;5574}5575}55765577sub git_blobdiff_plain {5578 git_blobdiff('plain');5579}55805581sub git_commitdiff {5582my%params=@_;5583my$format=$params{-format} ||'html';55845585my($patch_max) = gitweb_get_feature('patches');5586if($formateq'patch') {5587 die_error(403,"Patch view not allowed")unless$patch_max;5588}55895590$hash||=$hash_base||"HEAD";5591my%co= parse_commit($hash)5592or die_error(404,"Unknown commit object");55935594# choose format for commitdiff for merge5595if(!defined$hash_parent&& @{$co{'parents'}} >1) {5596$hash_parent='--cc';5597}5598# we need to prepare $formats_nav before almost any parameter munging5599my$formats_nav;5600if($formateq'html') {5601$formats_nav=5602$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},5603"raw");5604if($patch_max) {5605$formats_nav.=" | ".5606$cgi->a({-href => href(action=>"patch", -replay=>1)},5607"patch");5608}56095610if(defined$hash_parent&&5611$hash_parentne'-c'&&$hash_parentne'--cc') {5612# commitdiff with two commits given5613my$hash_parent_short=$hash_parent;5614if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {5615$hash_parent_short=substr($hash_parent,0,7);5616}5617$formats_nav.=5618' (from';5619for(my$i=0;$i< @{$co{'parents'}};$i++) {5620if($co{'parents'}[$i]eq$hash_parent) {5621$formats_nav.=' parent '. ($i+1);5622last;5623}5624}5625$formats_nav.=': '.5626$cgi->a({-href => href(action=>"commitdiff",5627 hash=>$hash_parent)},5628 esc_html($hash_parent_short)) .5629')';5630}elsif(!$co{'parent'}) {5631# --root commitdiff5632$formats_nav.=' (initial)';5633}elsif(scalar@{$co{'parents'}} ==1) {5634# single parent commit5635$formats_nav.=5636' (parent: '.5637$cgi->a({-href => href(action=>"commitdiff",5638 hash=>$co{'parent'})},5639 esc_html(substr($co{'parent'},0,7))) .5640')';5641}else{5642# merge commit5643if($hash_parenteq'--cc') {5644$formats_nav.=' | '.5645$cgi->a({-href => href(action=>"commitdiff",5646 hash=>$hash, hash_parent=>'-c')},5647'combined');5648}else{# $hash_parent eq '-c'5649$formats_nav.=' | '.5650$cgi->a({-href => href(action=>"commitdiff",5651 hash=>$hash, hash_parent=>'--cc')},5652'compact');5653}5654$formats_nav.=5655' (merge: '.5656join(' ',map{5657$cgi->a({-href => href(action=>"commitdiff",5658 hash=>$_)},5659 esc_html(substr($_,0,7)));5660} @{$co{'parents'}} ) .5661')';5662}5663}56645665my$hash_parent_param=$hash_parent;5666if(!defined$hash_parent_param) {5667# --cc for multiple parents, --root for parentless5668$hash_parent_param=5669@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';5670}56715672# read commitdiff5673my$fd;5674my@difftree;5675if($formateq'html') {5676open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5677"--no-commit-id","--patch-with-raw","--full-index",5678$hash_parent_param,$hash,"--"5679or die_error(500,"Open git-diff-tree failed");56805681while(my$line= <$fd>) {5682chomp$line;5683# empty line ends raw part of diff-tree output5684last unless$line;5685push@difftree,scalar parse_difftree_raw_line($line);5686}56875688}elsif($formateq'plain') {5689open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5690'-p',$hash_parent_param,$hash,"--"5691or die_error(500,"Open git-diff-tree failed");5692}elsif($formateq'patch') {5693# For commit ranges, we limit the output to the number of5694# patches specified in the 'patches' feature.5695# For single commits, we limit the output to a single patch,5696# diverging from the git-format-patch default.5697my@commit_spec= ();5698if($hash_parent) {5699if($patch_max>0) {5700push@commit_spec,"-$patch_max";5701}5702push@commit_spec,'-n',"$hash_parent..$hash";5703}else{5704if($params{-single}) {5705push@commit_spec,'-1';5706}else{5707if($patch_max>0) {5708push@commit_spec,"-$patch_max";5709}5710push@commit_spec,"-n";5711}5712push@commit_spec,'--root',$hash;5713}5714open$fd,"-|", git_cmd(),"format-patch",'--encoding=utf8',5715'--stdout',@commit_spec5716or die_error(500,"Open git-format-patch failed");5717}else{5718 die_error(400,"Unknown commitdiff format");5719}57205721# non-textual hash id's can be cached5722my$expires;5723if($hash=~m/^[0-9a-fA-F]{40}$/) {5724$expires="+1d";5725}57265727# write commit message5728if($formateq'html') {5729my$refs= git_get_references();5730my$ref= format_ref_marker($refs,$co{'id'});57315732 git_header_html(undef,$expires);5733 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);5734 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);5735print"<div class=\"title_text\">\n".5736"<table class=\"object_header\">\n";5737 git_print_authorship_rows(\%co);5738print"</table>".5739"</div>\n";5740print"<div class=\"page_body\">\n";5741if(@{$co{'comment'}} >1) {5742print"<div class=\"log\">\n";5743 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);5744print"</div>\n";# class="log"5745}57465747}elsif($formateq'plain') {5748my$refs= git_get_references("tags");5749my$tagname= git_get_rev_name_tags($hash);5750my$filename= basename($project) ."-$hash.patch";57515752print$cgi->header(5753-type =>'text/plain',5754-charset =>'utf-8',5755-expires =>$expires,5756-content_disposition =>'inline; filename="'."$filename".'"');5757my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});5758print"From: ". to_utf8($co{'author'}) ."\n";5759print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";5760print"Subject: ". to_utf8($co{'title'}) ."\n";57615762print"X-Git-Tag:$tagname\n"if$tagname;5763print"X-Git-Url: ".$cgi->self_url() ."\n\n";57645765foreachmy$line(@{$co{'comment'}}) {5766print to_utf8($line) ."\n";5767}5768print"---\n\n";5769}elsif($formateq'patch') {5770my$filename= basename($project) ."-$hash.patch";57715772print$cgi->header(5773-type =>'text/plain',5774-charset =>'utf-8',5775-expires =>$expires,5776-content_disposition =>'inline; filename="'."$filename".'"');5777}57785779# write patch5780if($formateq'html') {5781my$use_parents= !defined$hash_parent||5782$hash_parenteq'-c'||$hash_parenteq'--cc';5783 git_difftree_body(\@difftree,$hash,5784$use_parents? @{$co{'parents'}} :$hash_parent);5785print"<br/>\n";57865787 git_patchset_body($fd, \@difftree,$hash,5788$use_parents? @{$co{'parents'}} :$hash_parent);5789close$fd;5790print"</div>\n";# class="page_body"5791 git_footer_html();57925793}elsif($formateq'plain') {5794local$/=undef;5795print<$fd>;5796close$fd5797or print"Reading git-diff-tree failed\n";5798}elsif($formateq'patch') {5799local$/=undef;5800print<$fd>;5801close$fd5802or print"Reading git-format-patch failed\n";5803}5804}58055806sub git_commitdiff_plain {5807 git_commitdiff(-format =>'plain');5808}58095810# format-patch-style patches5811sub git_patch {5812 git_commitdiff(-format =>'patch', -single=>1);5813}58145815sub git_patches {5816 git_commitdiff(-format =>'patch');5817}58185819sub git_history {5820if(!defined$hash_base) {5821$hash_base= git_get_head_hash($project);5822}5823if(!defined$page) {5824$page=0;5825}5826my$ftype;5827my%co= parse_commit($hash_base)5828or die_error(404,"Unknown commit object");58295830my$refs= git_get_references();5831my$limit=sprintf("--max-count=%i", (100* ($page+1)));58325833my@commitlist= parse_commits($hash_base,101, (100*$page),5834$file_name,"--full-history")5835or die_error(404,"No such file or directory on given branch");58365837if(!defined$hash&&defined$file_name) {5838# some commits could have deleted file in question,5839# and not have it in tree, but one of them has to have it5840for(my$i=0;$i<=@commitlist;$i++) {5841$hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);5842last ifdefined$hash;5843}5844}5845if(defined$hash) {5846$ftype= git_get_type($hash);5847}5848if(!defined$ftype) {5849 die_error(500,"Unknown type of object");5850}58515852my$paging_nav='';5853if($page>0) {5854$paging_nav.=5855$cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,5856 file_name=>$file_name)},5857"first");5858$paging_nav.=" ⋅ ".5859$cgi->a({-href => href(-replay=>1, page=>$page-1),5860-accesskey =>"p", -title =>"Alt-p"},"prev");5861}else{5862$paging_nav.="first";5863$paging_nav.=" ⋅ prev";5864}5865my$next_link='';5866if($#commitlist>=100) {5867$next_link=5868$cgi->a({-href => href(-replay=>1, page=>$page+1),5869-accesskey =>"n", -title =>"Alt-n"},"next");5870$paging_nav.=" ⋅$next_link";5871}else{5872$paging_nav.=" ⋅ next";5873}58745875 git_header_html();5876 git_print_page_nav('history','',$hash_base,$co{'tree'},$hash_base,$paging_nav);5877 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5878 git_print_page_path($file_name,$ftype,$hash_base);58795880 git_history_body(\@commitlist,0,99,5881$refs,$hash_base,$ftype,$next_link);58825883 git_footer_html();5884}58855886sub git_search {5887 gitweb_check_feature('search')or die_error(403,"Search is disabled");5888if(!defined$searchtext) {5889 die_error(400,"Text field is empty");5890}5891if(!defined$hash) {5892$hash= git_get_head_hash($project);5893}5894my%co= parse_commit($hash);5895if(!%co) {5896 die_error(404,"Unknown commit object");5897}5898if(!defined$page) {5899$page=0;5900}59015902$searchtype||='commit';5903if($searchtypeeq'pickaxe') {5904# pickaxe may take all resources of your box and run for several minutes5905# with every query - so decide by yourself how public you make this feature5906 gitweb_check_feature('pickaxe')5907or die_error(403,"Pickaxe is disabled");5908}5909if($searchtypeeq'grep') {5910 gitweb_check_feature('grep')5911or die_error(403,"Grep is disabled");5912}59135914 git_header_html();59155916if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {5917my$greptype;5918if($searchtypeeq'commit') {5919$greptype="--grep=";5920}elsif($searchtypeeq'author') {5921$greptype="--author=";5922}elsif($searchtypeeq'committer') {5923$greptype="--committer=";5924}5925$greptype.=$searchtext;5926my@commitlist= parse_commits($hash,101, (100*$page),undef,5927$greptype,'--regexp-ignore-case',5928$search_use_regexp?'--extended-regexp':'--fixed-strings');59295930my$paging_nav='';5931if($page>0) {5932$paging_nav.=5933$cgi->a({-href => href(action=>"search", hash=>$hash,5934 searchtext=>$searchtext,5935 searchtype=>$searchtype)},5936"first");5937$paging_nav.=" ⋅ ".5938$cgi->a({-href => href(-replay=>1, page=>$page-1),5939-accesskey =>"p", -title =>"Alt-p"},"prev");5940}else{5941$paging_nav.="first";5942$paging_nav.=" ⋅ prev";5943}5944my$next_link='';5945if($#commitlist>=100) {5946$next_link=5947$cgi->a({-href => href(-replay=>1, page=>$page+1),5948-accesskey =>"n", -title =>"Alt-n"},"next");5949$paging_nav.=" ⋅$next_link";5950}else{5951$paging_nav.=" ⋅ next";5952}59535954if($#commitlist>=100) {5955}59565957 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);5958 git_print_header_div('commit', esc_html($co{'title'}),$hash);5959 git_search_grep_body(\@commitlist,0,99,$next_link);5960}59615962if($searchtypeeq'pickaxe') {5963 git_print_page_nav('','',$hash,$co{'tree'},$hash);5964 git_print_header_div('commit', esc_html($co{'title'}),$hash);59655966print"<table class=\"pickaxe search\">\n";5967my$alternate=1;5968local$/="\n";5969open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,5970'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",5971($search_use_regexp?'--pickaxe-regex': ());5972undef%co;5973my@files;5974while(my$line= <$fd>) {5975chomp$line;5976next unless$line;59775978my%set= parse_difftree_raw_line($line);5979if(defined$set{'commit'}) {5980# finish previous commit5981if(%co) {5982print"</td>\n".5983"<td class=\"link\">".5984$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5985" | ".5986$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5987print"</td>\n".5988"</tr>\n";5989}59905991if($alternate) {5992print"<tr class=\"dark\">\n";5993}else{5994print"<tr class=\"light\">\n";5995}5996$alternate^=1;5997%co= parse_commit($set{'commit'});5998my$author= chop_and_escape_str($co{'author_name'},15,5);5999print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6000"<td><i>$author</i></td>\n".6001"<td>".6002$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6003-class=>"list subject"},6004 chop_and_escape_str($co{'title'},50) ."<br/>");6005}elsif(defined$set{'to_id'}) {6006next if($set{'to_id'} =~m/^0{40}$/);60076008print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6009 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6010-class=>"list"},6011"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6012"<br/>\n";6013}6014}6015close$fd;60166017# finish last commit (warning: repetition!)6018if(%co) {6019print"</td>\n".6020"<td class=\"link\">".6021$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6022" | ".6023$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6024print"</td>\n".6025"</tr>\n";6026}60276028print"</table>\n";6029}60306031if($searchtypeeq'grep') {6032 git_print_page_nav('','',$hash,$co{'tree'},$hash);6033 git_print_header_div('commit', esc_html($co{'title'}),$hash);60346035print"<table class=\"grep_search\">\n";6036my$alternate=1;6037my$matches=0;6038local$/="\n";6039open my$fd,"-|", git_cmd(),'grep','-n',6040$search_use_regexp? ('-E','-i') :'-F',6041$searchtext,$co{'tree'};6042my$lastfile='';6043while(my$line= <$fd>) {6044chomp$line;6045my($file,$lno,$ltext,$binary);6046last if($matches++>1000);6047if($line=~/^Binary file (.+) matches$/) {6048$file=$1;6049$binary=1;6050}else{6051(undef,$file,$lno,$ltext) =split(/:/,$line,4);6052}6053if($filene$lastfile) {6054$lastfileand print"</td></tr>\n";6055if($alternate++) {6056print"<tr class=\"dark\">\n";6057}else{6058print"<tr class=\"light\">\n";6059}6060print"<td class=\"list\">".6061$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6062 file_name=>"$file"),6063-class=>"list"}, esc_path($file));6064print"</td><td>\n";6065$lastfile=$file;6066}6067if($binary) {6068print"<div class=\"binary\">Binary file</div>\n";6069}else{6070$ltext= untabify($ltext);6071if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6072$ltext= esc_html($1, -nbsp=>1);6073$ltext.='<span class="match">';6074$ltext.= esc_html($2, -nbsp=>1);6075$ltext.='</span>';6076$ltext.= esc_html($3, -nbsp=>1);6077}else{6078$ltext= esc_html($ltext, -nbsp=>1);6079}6080print"<div class=\"pre\">".6081$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6082 file_name=>"$file").'#l'.$lno,6083-class=>"linenr"},sprintf('%4i',$lno))6084.' '.$ltext."</div>\n";6085}6086}6087if($lastfile) {6088print"</td></tr>\n";6089if($matches>1000) {6090print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6091}6092}else{6093print"<div class=\"diff nodifferences\">No matches found</div>\n";6094}6095close$fd;60966097print"</table>\n";6098}6099 git_footer_html();6100}61016102sub git_search_help {6103 git_header_html();6104 git_print_page_nav('','',$hash,$hash,$hash);6105print<<EOT;6106<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without6107regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,6108the pattern entered is recognized as the POSIX extended6109<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case6110insensitive).</p>6111<dl>6112<dt><b>commit</b></dt>6113<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>6114EOT6115my$have_grep= gitweb_check_feature('grep');6116if($have_grep) {6117print<<EOT;6118<dt><b>grep</b></dt>6119<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing6120 a different one) are searched for the given pattern. On large trees, this search can take6121a while and put some strain on the server, so please use it with some consideration. Note that6122due to git-grep peculiarity, currently if regexp mode is turned off, the matches are6123case-sensitive.</dd>6124EOT6125}6126print<<EOT;6127<dt><b>author</b></dt>6128<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>6129<dt><b>committer</b></dt>6130<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>6131EOT6132my$have_pickaxe= gitweb_check_feature('pickaxe');6133if($have_pickaxe) {6134print<<EOT;6135<dt><b>pickaxe</b></dt>6136<dd>All commits that caused the string to appear or disappear from any file (changes that6137added, removed or "modified" the string) will be listed. This search can take a while and6138takes a lot of strain on the server, so please use it wisely. Note that since you may be6139interested even in changes just changing the case as well, this search is case sensitive.</dd>6140EOT6141}6142print"</dl>\n";6143 git_footer_html();6144}61456146sub git_shortlog {6147my$head= git_get_head_hash($project);6148if(!defined$hash) {6149$hash=$head;6150}6151if(!defined$page) {6152$page=0;6153}6154my$refs= git_get_references();61556156my$commit_hash=$hash;6157if(defined$hash_parent) {6158$commit_hash="$hash_parent..$hash";6159}6160my@commitlist= parse_commits($commit_hash,101, (100*$page));61616162my$paging_nav= format_paging_nav('shortlog',$hash,$head,$page,$#commitlist>=100);6163my$next_link='';6164if($#commitlist>=100) {6165$next_link=6166$cgi->a({-href => href(-replay=>1, page=>$page+1),6167-accesskey =>"n", -title =>"Alt-n"},"next");6168}6169my$patch_max= gitweb_check_feature('patches');6170if($patch_max) {6171if($patch_max<0||@commitlist<=$patch_max) {6172$paging_nav.=" ⋅ ".6173$cgi->a({-href => href(action=>"patches", -replay=>1)},6174"patches");6175}6176}61776178 git_header_html();6179 git_print_page_nav('shortlog','',$hash,$hash,$hash,$paging_nav);6180 git_print_header_div('summary',$project);61816182 git_shortlog_body(\@commitlist,0,99,$refs,$next_link);61836184 git_footer_html();6185}61866187## ......................................................................6188## feeds (RSS, Atom; OPML)61896190sub git_feed {6191my$format=shift||'atom';6192my$have_blame= gitweb_check_feature('blame');61936194# Atom: http://www.atomenabled.org/developers/syndication/6195# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ6196if($formatne'rss'&&$formatne'atom') {6197 die_error(400,"Unknown web feed format");6198}61996200# log/feed of current (HEAD) branch, log of given branch, history of file/directory6201my$head=$hash||'HEAD';6202my@commitlist= parse_commits($head,150,0,$file_name);62036204my%latest_commit;6205my%latest_date;6206my$content_type="application/$format+xml";6207if(defined$cgi->http('HTTP_ACCEPT') &&6208$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {6209# browser (feed reader) prefers text/xml6210$content_type='text/xml';6211}6212if(defined($commitlist[0])) {6213%latest_commit= %{$commitlist[0]};6214my$latest_epoch=$latest_commit{'committer_epoch'};6215%latest_date= parse_date($latest_epoch);6216my$if_modified=$cgi->http('IF_MODIFIED_SINCE');6217if(defined$if_modified) {6218my$since;6219if(eval{require HTTP::Date;1; }) {6220$since= HTTP::Date::str2time($if_modified);6221}elsif(eval{require Time::ParseDate;1; }) {6222$since= Time::ParseDate::parsedate($if_modified, GMT =>1);6223}6224if(defined$since&&$latest_epoch<=$since) {6225print$cgi->header(6226-type =>$content_type,6227-charset =>'utf-8',6228-last_modified =>$latest_date{'rfc2822'},6229-status =>'304 Not Modified');6230return;6231}6232}6233print$cgi->header(6234-type =>$content_type,6235-charset =>'utf-8',6236-last_modified =>$latest_date{'rfc2822'});6237}else{6238print$cgi->header(6239-type =>$content_type,6240-charset =>'utf-8');6241}62426243# Optimization: skip generating the body if client asks only6244# for Last-Modified date.6245return if($cgi->request_method()eq'HEAD');62466247# header variables6248my$title="$site_name-$project/$action";6249my$feed_type='log';6250if(defined$hash) {6251$title.=" - '$hash'";6252$feed_type='branch log';6253if(defined$file_name) {6254$title.=" ::$file_name";6255$feed_type='history';6256}6257}elsif(defined$file_name) {6258$title.=" -$file_name";6259$feed_type='history';6260}6261$title.="$feed_type";6262my$descr= git_get_project_description($project);6263if(defined$descr) {6264$descr= esc_html($descr);6265}else{6266$descr="$project".6267($formateq'rss'?'RSS':'Atom') .6268" feed";6269}6270my$owner= git_get_project_owner($project);6271$owner= esc_html($owner);62726273#header6274my$alt_url;6275if(defined$file_name) {6276$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);6277}elsif(defined$hash) {6278$alt_url= href(-full=>1, action=>"log", hash=>$hash);6279}else{6280$alt_url= href(-full=>1, action=>"summary");6281}6282print qq!<?xml version="1.0" encoding="utf-8"?>\n!;6283if($formateq'rss') {6284print<<XML;6285<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">6286<channel>6287XML6288print"<title>$title</title>\n".6289"<link>$alt_url</link>\n".6290"<description>$descr</description>\n".6291"<language>en</language>\n".6292# project owner is responsible for 'editorial' content6293"<managingEditor>$owner</managingEditor>\n";6294if(defined$logo||defined$favicon) {6295# prefer the logo to the favicon, since RSS6296# doesn't allow both6297my$img= esc_url($logo||$favicon);6298print"<image>\n".6299"<url>$img</url>\n".6300"<title>$title</title>\n".6301"<link>$alt_url</link>\n".6302"</image>\n";6303}6304if(%latest_date) {6305print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";6306print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";6307}6308print"<generator>gitweb v.$version/$git_version</generator>\n";6309}elsif($formateq'atom') {6310print<<XML;6311<feed xmlns="http://www.w3.org/2005/Atom">6312XML6313print"<title>$title</title>\n".6314"<subtitle>$descr</subtitle>\n".6315'<link rel="alternate" type="text/html" href="'.6316$alt_url.'" />'."\n".6317'<link rel="self" type="'.$content_type.'" href="'.6318$cgi->self_url() .'" />'."\n".6319"<id>". href(-full=>1) ."</id>\n".6320# use project owner for feed author6321"<author><name>$owner</name></author>\n";6322if(defined$favicon) {6323print"<icon>". esc_url($favicon) ."</icon>\n";6324}6325if(defined$logo_url) {6326# not twice as wide as tall: 72 x 27 pixels6327print"<logo>". esc_url($logo) ."</logo>\n";6328}6329if(!%latest_date) {6330# dummy date to keep the feed valid until commits trickle in:6331print"<updated>1970-01-01T00:00:00Z</updated>\n";6332}else{6333print"<updated>$latest_date{'iso-8601'}</updated>\n";6334}6335print"<generator version='$version/$git_version'>gitweb</generator>\n";6336}63376338# contents6339for(my$i=0;$i<=$#commitlist;$i++) {6340my%co= %{$commitlist[$i]};6341my$commit=$co{'id'};6342# we read 150, we always show 30 and the ones more recent than 48 hours6343if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {6344last;6345}6346my%cd= parse_date($co{'author_epoch'});63476348# get list of changed files6349open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6350$co{'parent'} ||"--root",6351$co{'id'},"--", (defined$file_name?$file_name: ())6352ornext;6353my@difftree=map{chomp;$_} <$fd>;6354close$fd6355ornext;63566357# print element (entry, item)6358my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);6359if($formateq'rss') {6360print"<item>\n".6361"<title>". esc_html($co{'title'}) ."</title>\n".6362"<author>". esc_html($co{'author'}) ."</author>\n".6363"<pubDate>$cd{'rfc2822'}</pubDate>\n".6364"<guid isPermaLink=\"true\">$co_url</guid>\n".6365"<link>$co_url</link>\n".6366"<description>". esc_html($co{'title'}) ."</description>\n".6367"<content:encoded>".6368"<![CDATA[\n";6369}elsif($formateq'atom') {6370print"<entry>\n".6371"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".6372"<updated>$cd{'iso-8601'}</updated>\n".6373"<author>\n".6374" <name>". esc_html($co{'author_name'}) ."</name>\n";6375if($co{'author_email'}) {6376print" <email>". esc_html($co{'author_email'}) ."</email>\n";6377}6378print"</author>\n".6379# use committer for contributor6380"<contributor>\n".6381" <name>". esc_html($co{'committer_name'}) ."</name>\n";6382if($co{'committer_email'}) {6383print" <email>". esc_html($co{'committer_email'}) ."</email>\n";6384}6385print"</contributor>\n".6386"<published>$cd{'iso-8601'}</published>\n".6387"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".6388"<id>$co_url</id>\n".6389"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".6390"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";6391}6392my$comment=$co{'comment'};6393print"<pre>\n";6394foreachmy$line(@$comment) {6395$line= esc_html($line);6396print"$line\n";6397}6398print"</pre><ul>\n";6399foreachmy$difftree_line(@difftree) {6400my%difftree= parse_difftree_raw_line($difftree_line);6401next if!$difftree{'from_id'};64026403my$file=$difftree{'file'} ||$difftree{'to_file'};64046405print"<li>".6406"[".6407$cgi->a({-href => href(-full=>1, action=>"blobdiff",6408 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},6409 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},6410 file_name=>$file, file_parent=>$difftree{'from_file'}),6411-title =>"diff"},'D');6412if($have_blame) {6413print$cgi->a({-href => href(-full=>1, action=>"blame",6414 file_name=>$file, hash_base=>$commit),6415-title =>"blame"},'B');6416}6417# if this is not a feed of a file history6418if(!defined$file_name||$file_namene$file) {6419print$cgi->a({-href => href(-full=>1, action=>"history",6420 file_name=>$file, hash=>$commit),6421-title =>"history"},'H');6422}6423$file= esc_path($file);6424print"] ".6425"$file</li>\n";6426}6427if($formateq'rss') {6428print"</ul>]]>\n".6429"</content:encoded>\n".6430"</item>\n";6431}elsif($formateq'atom') {6432print"</ul>\n</div>\n".6433"</content>\n".6434"</entry>\n";6435}6436}64376438# end of feed6439if($formateq'rss') {6440print"</channel>\n</rss>\n";6441}elsif($formateq'atom') {6442print"</feed>\n";6443}6444}64456446sub git_rss {6447 git_feed('rss');6448}64496450sub git_atom {6451 git_feed('atom');6452}64536454sub git_opml {6455my@list= git_get_projects_list();64566457print$cgi->header(6458-type =>'text/xml',6459-charset =>'utf-8',6460-content_disposition =>'inline; filename="opml.xml"');64616462print<<XML;6463<?xml version="1.0" encoding="utf-8"?>6464<opml version="1.0">6465<head>6466 <title>$site_nameOPML Export</title>6467</head>6468<body>6469<outline text="git RSS feeds">6470XML64716472foreachmy$pr(@list) {6473my%proj=%$pr;6474my$head= git_get_head_hash($proj{'path'});6475if(!defined$head) {6476next;6477}6478$git_dir="$projectroot/$proj{'path'}";6479my%co= parse_commit($head);6480if(!%co) {6481next;6482}64836484my$path= esc_html(chop_str($proj{'path'},25,5));6485my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);6486my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);6487print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";6488}6489print<<XML;6490</outline>6491</body>6492</opml>6493XML6494}