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# if we're called with PATH_INFO, we have to strip that 31# from the URL to find our real URL 32# we make $path_info global because it's also used later on 33my$path_info=$ENV{"PATH_INFO"}; 34if($path_info) { 35$my_url=~ s,\Q$path_info\E$,,; 36$my_uri=~ s,\Q$path_info\E$,,; 37} 38 39# core git executable to use 40# this can just be "git" if your webserver has a sensible PATH 41our$GIT="++GIT_BINDIR++/git"; 42 43# absolute fs-path which will be prepended to the project path 44#our $projectroot = "/pub/scm"; 45our$projectroot="++GITWEB_PROJECTROOT++"; 46 47# fs traversing limit for getting project list 48# the number is relative to the projectroot 49our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 50 51# target of the home link on top of all pages 52our$home_link=$my_uri||"/"; 53 54# string of the home link on top of all pages 55our$home_link_str="++GITWEB_HOME_LINK_STR++"; 56 57# name of your site or organization to appear in page titles 58# replace this with something more descriptive for clearer bookmarks 59our$site_name="++GITWEB_SITENAME++" 60|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 61 62# filename of html text to include at top of each page 63our$site_header="++GITWEB_SITE_HEADER++"; 64# html text to include at home page 65our$home_text="++GITWEB_HOMETEXT++"; 66# filename of html text to include at bottom of each page 67our$site_footer="++GITWEB_SITE_FOOTER++"; 68 69# URI of stylesheets 70our@stylesheets= ("++GITWEB_CSS++"); 71# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 72our$stylesheet=undef; 73# URI of GIT logo (72x27 size) 74our$logo="++GITWEB_LOGO++"; 75# URI of GIT favicon, assumed to be image/png type 76our$favicon="++GITWEB_FAVICON++"; 77 78# URI and label (title) of GIT logo link 79#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 80#our $logo_label = "git documentation"; 81our$logo_url="http://git.or.cz/"; 82our$logo_label="git homepage"; 83 84# source of projects list 85our$projects_list="++GITWEB_LIST++"; 86 87# the width (in characters) of the projects list "Description" column 88our$projects_list_description_width=25; 89 90# default order of projects list 91# valid values are none, project, descr, owner, and age 92our$default_projects_order="project"; 93 94# show repository only if this file exists 95# (only effective if this variable evaluates to true) 96our$export_ok="++GITWEB_EXPORT_OK++"; 97 98# only allow viewing of repositories also shown on the overview page 99our$strict_export="++GITWEB_STRICT_EXPORT++"; 100 101# list of git base URLs used for URL to where fetch project from, 102# i.e. full URL is "$git_base_url/$project" 103our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 104 105# default blob_plain mimetype and default charset for text/plain blob 106our$default_blob_plain_mimetype='text/plain'; 107our$default_text_plain_charset=undef; 108 109# file to use for guessing MIME types before trying /etc/mime.types 110# (relative to the current git repository) 111our$mimetypes_file=undef; 112 113# assume this charset if line contains non-UTF-8 characters; 114# it should be valid encoding (see Encoding::Supported(3pm) for list), 115# for which encoding all byte sequences are valid, for example 116# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 117# could be even 'utf-8' for the old behavior) 118our$fallback_encoding='latin1'; 119 120# rename detection options for git-diff and git-diff-tree 121# - default is '-M', with the cost proportional to 122# (number of removed files) * (number of new files). 123# - more costly is '-C' (which implies '-M'), with the cost proportional to 124# (number of changed files + number of removed files) * (number of new files) 125# - even more costly is '-C', '--find-copies-harder' with cost 126# (number of files in the original tree) * (number of new files) 127# - one might want to include '-B' option, e.g. '-B', '-M' 128our@diff_opts= ('-M');# taken from git_commit 129 130# information about snapshot formats that gitweb is capable of serving 131our%known_snapshot_formats= ( 132# name => { 133# 'display' => display name, 134# 'type' => mime type, 135# 'suffix' => filename suffix, 136# 'format' => --format for git-archive, 137# 'compressor' => [compressor command and arguments] 138# (array reference, optional)} 139# 140'tgz'=> { 141'display'=>'tar.gz', 142'type'=>'application/x-gzip', 143'suffix'=>'.tar.gz', 144'format'=>'tar', 145'compressor'=> ['gzip']}, 146 147'tbz2'=> { 148'display'=>'tar.bz2', 149'type'=>'application/x-bzip2', 150'suffix'=>'.tar.bz2', 151'format'=>'tar', 152'compressor'=> ['bzip2']}, 153 154'zip'=> { 155'display'=>'zip', 156'type'=>'application/x-zip', 157'suffix'=>'.zip', 158'format'=>'zip'}, 159); 160 161# Aliases so we understand old gitweb.snapshot values in repository 162# configuration. 163our%known_snapshot_format_aliases= ( 164'gzip'=>'tgz', 165'bzip2'=>'tbz2', 166 167# backward compatibility: legacy gitweb config support 168'x-gzip'=>undef,'gz'=>undef, 169'x-bzip2'=>undef,'bz2'=>undef, 170'x-zip'=>undef,''=>undef, 171); 172 173# You define site-wide feature defaults here; override them with 174# $GITWEB_CONFIG as necessary. 175our%feature= ( 176# feature => { 177# 'sub' => feature-sub (subroutine), 178# 'override' => allow-override (boolean), 179# 'default' => [ default options...] (array reference)} 180# 181# if feature is overridable (it means that allow-override has true value), 182# then feature-sub will be called with default options as parameters; 183# return value of feature-sub indicates if to enable specified feature 184# 185# if there is no 'sub' key (no feature-sub), then feature cannot be 186# overriden 187# 188# use gitweb_check_feature(<feature>) to check if <feature> is enabled 189 190# Enable the 'blame' blob view, showing the last commit that modified 191# each line in the file. This can be very CPU-intensive. 192 193# To enable system wide have in $GITWEB_CONFIG 194# $feature{'blame'}{'default'} = [1]; 195# To have project specific config enable override in $GITWEB_CONFIG 196# $feature{'blame'}{'override'} = 1; 197# and in project config gitweb.blame = 0|1; 198'blame'=> { 199'sub'=> \&feature_blame, 200'override'=>0, 201'default'=> [0]}, 202 203# Enable the 'snapshot' link, providing a compressed archive of any 204# tree. This can potentially generate high traffic if you have large 205# project. 206 207# Value is a list of formats defined in %known_snapshot_formats that 208# you wish to offer. 209# To disable system wide have in $GITWEB_CONFIG 210# $feature{'snapshot'}{'default'} = []; 211# To have project specific config enable override in $GITWEB_CONFIG 212# $feature{'snapshot'}{'override'} = 1; 213# and in project config, a comma-separated list of formats or "none" 214# to disable. Example: gitweb.snapshot = tbz2,zip; 215'snapshot'=> { 216'sub'=> \&feature_snapshot, 217'override'=>0, 218'default'=> ['tgz']}, 219 220# Enable text search, which will list the commits which match author, 221# committer or commit text to a given string. Enabled by default. 222# Project specific override is not supported. 223'search'=> { 224'override'=>0, 225'default'=> [1]}, 226 227# Enable grep search, which will list the files in currently selected 228# tree containing the given string. Enabled by default. This can be 229# potentially CPU-intensive, of course. 230 231# To enable system wide have in $GITWEB_CONFIG 232# $feature{'grep'}{'default'} = [1]; 233# To have project specific config enable override in $GITWEB_CONFIG 234# $feature{'grep'}{'override'} = 1; 235# and in project config gitweb.grep = 0|1; 236'grep'=> { 237'override'=>0, 238'default'=> [1]}, 239 240# Enable the pickaxe search, which will list the commits that modified 241# a given string in a file. This can be practical and quite faster 242# alternative to 'blame', but still potentially CPU-intensive. 243 244# To enable system wide have in $GITWEB_CONFIG 245# $feature{'pickaxe'}{'default'} = [1]; 246# To have project specific config enable override in $GITWEB_CONFIG 247# $feature{'pickaxe'}{'override'} = 1; 248# and in project config gitweb.pickaxe = 0|1; 249'pickaxe'=> { 250'sub'=> \&feature_pickaxe, 251'override'=>0, 252'default'=> [1]}, 253 254# Make gitweb use an alternative format of the URLs which can be 255# more readable and natural-looking: project name is embedded 256# directly in the path and the query string contains other 257# auxiliary information. All gitweb installations recognize 258# URL in either format; this configures in which formats gitweb 259# generates links. 260 261# To enable system wide have in $GITWEB_CONFIG 262# $feature{'pathinfo'}{'default'} = [1]; 263# Project specific override is not supported. 264 265# Note that you will need to change the default location of CSS, 266# favicon, logo and possibly other files to an absolute URL. Also, 267# if gitweb.cgi serves as your indexfile, you will need to force 268# $my_uri to contain the script name in your $GITWEB_CONFIG. 269'pathinfo'=> { 270'override'=>0, 271'default'=> [0]}, 272 273# Make gitweb consider projects in project root subdirectories 274# to be forks of existing projects. Given project $projname.git, 275# projects matching $projname/*.git will not be shown in the main 276# projects list, instead a '+' mark will be added to $projname 277# there and a 'forks' view will be enabled for the project, listing 278# all the forks. If project list is taken from a file, forks have 279# to be listed after the main project. 280 281# To enable system wide have in $GITWEB_CONFIG 282# $feature{'forks'}{'default'} = [1]; 283# Project specific override is not supported. 284'forks'=> { 285'override'=>0, 286'default'=> [0]}, 287 288# Insert custom links to the action bar of all project pages. 289# This enables you mainly to link to third-party scripts integrating 290# into gitweb; e.g. git-browser for graphical history representation 291# or custom web-based repository administration interface. 292 293# The 'default' value consists of a list of triplets in the form 294# (label, link, position) where position is the label after which 295# to inster the link and link is a format string where %n expands 296# to the project name, %f to the project path within the filesystem, 297# %h to the current hash (h gitweb parameter) and %b to the current 298# hash base (hb gitweb parameter). 299 300# To enable system wide have in $GITWEB_CONFIG e.g. 301# $feature{'actions'}{'default'} = [('graphiclog', 302# '/git-browser/by-commit.html?r=%n', 'summary')]; 303# Project specific override is not supported. 304'actions'=> { 305'override'=>0, 306'default'=> []}, 307 308# Allow gitweb scan project content tags described in ctags/ 309# of project repository, and display the popular Web 2.0-ish 310# "tag cloud" near the project list. Note that this is something 311# COMPLETELY different from the normal Git tags. 312 313# gitweb by itself can show existing tags, but it does not handle 314# tagging itself; you need an external application for that. 315# For an example script, check Girocco's cgi/tagproj.cgi. 316# You may want to install the HTML::TagCloud Perl module to get 317# a pretty tag cloud instead of just a list of tags. 318 319# To enable system wide have in $GITWEB_CONFIG 320# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 321# Project specific override is not supported. 322'ctags'=> { 323'override'=>0, 324'default'=> [0]}, 325); 326 327sub gitweb_check_feature { 328my($name) =@_; 329return unlessexists$feature{$name}; 330my($sub,$override,@defaults) = ( 331$feature{$name}{'sub'}, 332$feature{$name}{'override'}, 333@{$feature{$name}{'default'}}); 334if(!$override) {return@defaults; } 335if(!defined$sub) { 336warn"feature$nameis not overrideable"; 337return@defaults; 338} 339return$sub->(@defaults); 340} 341 342sub feature_blame { 343my($val) = git_get_project_config('blame','--bool'); 344 345if($valeq'true') { 346return1; 347}elsif($valeq'false') { 348return0; 349} 350 351return$_[0]; 352} 353 354sub feature_snapshot { 355my(@fmts) =@_; 356 357my($val) = git_get_project_config('snapshot'); 358 359if($val) { 360@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 361} 362 363return@fmts; 364} 365 366sub feature_grep { 367my($val) = git_get_project_config('grep','--bool'); 368 369if($valeq'true') { 370return(1); 371}elsif($valeq'false') { 372return(0); 373} 374 375return($_[0]); 376} 377 378sub feature_pickaxe { 379my($val) = git_get_project_config('pickaxe','--bool'); 380 381if($valeq'true') { 382return(1); 383}elsif($valeq'false') { 384return(0); 385} 386 387return($_[0]); 388} 389 390# checking HEAD file with -e is fragile if the repository was 391# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 392# and then pruned. 393sub check_head_link { 394my($dir) =@_; 395my$headfile="$dir/HEAD"; 396return((-e $headfile) || 397(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 398} 399 400sub check_export_ok { 401my($dir) =@_; 402return(check_head_link($dir) && 403(!$export_ok|| -e "$dir/$export_ok")); 404} 405 406# process alternate names for backward compatibility 407# filter out unsupported (unknown) snapshot formats 408sub filter_snapshot_fmts { 409my@fmts=@_; 410 411@fmts=map{ 412exists$known_snapshot_format_aliases{$_} ? 413$known_snapshot_format_aliases{$_} :$_}@fmts; 414@fmts=grep(exists$known_snapshot_formats{$_},@fmts); 415 416} 417 418our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 419if(-e $GITWEB_CONFIG) { 420do$GITWEB_CONFIG; 421}else{ 422our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 423do$GITWEB_CONFIG_SYSTEMif-e $GITWEB_CONFIG_SYSTEM; 424} 425 426# version of the core git binary 427our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 428 429$projects_list||=$projectroot; 430 431# ====================================================================== 432# input validation and dispatch 433 434# input parameters can be collected from a variety of sources (presently, CGI 435# and PATH_INFO), so we define an %input_params hash that collects them all 436# together during validation: this allows subsequent uses (e.g. href()) to be 437# agnostic of the parameter origin 438 439my%input_params= (); 440 441# input parameters are stored with the long parameter name as key. This will 442# also be used in the href subroutine to convert parameters to their CGI 443# equivalent, and since the href() usage is the most frequent one, we store 444# the name -> CGI key mapping here, instead of the reverse. 445# 446# XXX: Warning: If you touch this, check the search form for updating, 447# too. 448 449my@cgi_param_mapping= ( 450 project =>"p", 451 action =>"a", 452 file_name =>"f", 453 file_parent =>"fp", 454 hash =>"h", 455 hash_parent =>"hp", 456 hash_base =>"hb", 457 hash_parent_base =>"hpb", 458 page =>"pg", 459 order =>"o", 460 searchtext =>"s", 461 searchtype =>"st", 462 snapshot_format =>"sf", 463 extra_options =>"opt", 464 search_use_regexp =>"sr", 465); 466my%cgi_param_mapping=@cgi_param_mapping; 467 468# we will also need to know the possible actions, for validation 469my%actions= ( 470"blame"=> \&git_blame, 471"blobdiff"=> \&git_blobdiff, 472"blobdiff_plain"=> \&git_blobdiff_plain, 473"blob"=> \&git_blob, 474"blob_plain"=> \&git_blob_plain, 475"commitdiff"=> \&git_commitdiff, 476"commitdiff_plain"=> \&git_commitdiff_plain, 477"commit"=> \&git_commit, 478"forks"=> \&git_forks, 479"heads"=> \&git_heads, 480"history"=> \&git_history, 481"log"=> \&git_log, 482"rss"=> \&git_rss, 483"atom"=> \&git_atom, 484"search"=> \&git_search, 485"search_help"=> \&git_search_help, 486"shortlog"=> \&git_shortlog, 487"summary"=> \&git_summary, 488"tag"=> \&git_tag, 489"tags"=> \&git_tags, 490"tree"=> \&git_tree, 491"snapshot"=> \&git_snapshot, 492"object"=> \&git_object, 493# those below don't need $project 494"opml"=> \&git_opml, 495"project_list"=> \&git_project_list, 496"project_index"=> \&git_project_index, 497); 498 499# finally, we have the hash of allowed extra_options for the commands that 500# allow them 501my%allowed_options= ( 502"--no-merges"=> [qw(rss atom log shortlog history)], 503); 504 505# fill %input_params with the CGI parameters. All values except for 'opt' 506# should be single values, but opt can be an array. We should probably 507# build an array of parameters that can be multi-valued, but since for the time 508# being it's only this one, we just single it out 509while(my($name,$symbol) =each%cgi_param_mapping) { 510if($symboleq'opt') { 511$input_params{$name} = [$cgi->param($symbol) ]; 512}else{ 513$input_params{$name} =$cgi->param($symbol); 514} 515} 516 517# now read PATH_INFO and update the parameter list for missing parameters 518sub evaluate_path_info { 519return ifdefined$input_params{'project'}; 520return if!$path_info; 521$path_info=~ s,^/+,,; 522return if!$path_info; 523 524# find which part of PATH_INFO is project 525my$project=$path_info; 526$project=~ s,/+$,,; 527while($project&& !check_head_link("$projectroot/$project")) { 528$project=~ s,/*[^/]*$,,; 529} 530return unless$project; 531$input_params{'project'} =$project; 532 533# do not change any parameters if an action is given using the query string 534return if$input_params{'action'}; 535$path_info=~ s,^\Q$project\E/*,,; 536 537# next, check if we have an action 538my$action=$path_info; 539$action=~ s,/.*$,,; 540if(exists$actions{$action}) { 541$path_info=~ s,^$action/*,,; 542$input_params{'action'} =$action; 543} 544 545# list of actions that want hash_base instead of hash, but can have no 546# pathname (f) parameter 547my@wants_base= ( 548'tree', 549'history', 550); 551 552# we want to catch 553# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 554my($parentrefname,$parentpathname,$refname,$pathname) = 555($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?(.+?)(?::(.+))?$/); 556 557# first, analyze the 'current' part 558if(defined$pathname) { 559# we got "branch:filename" or "branch:dir/" 560# we could use git_get_type(branch:pathname), but: 561# - it needs $git_dir 562# - it does a git() call 563# - the convention of terminating directories with a slash 564# makes it superfluous 565# - embedding the action in the PATH_INFO would make it even 566# more superfluous 567$pathname=~ s,^/+,,; 568if(!$pathname||substr($pathname, -1)eq"/") { 569$input_params{'action'} ||="tree"; 570$pathname=~ s,/$,,; 571}else{ 572# the default action depends on whether we had parent info 573# or not 574if($parentrefname) { 575$input_params{'action'} ||="blobdiff_plain"; 576}else{ 577$input_params{'action'} ||="blob_plain"; 578} 579} 580$input_params{'hash_base'} ||=$refname; 581$input_params{'file_name'} ||=$pathname; 582}elsif(defined$refname) { 583# we got "branch". In this case we have to choose if we have to 584# set hash or hash_base. 585# 586# Most of the actions without a pathname only want hash to be 587# set, except for the ones specified in @wants_base that want 588# hash_base instead. It should also be noted that hand-crafted 589# links having 'history' as an action and no pathname or hash 590# set will fail, but that happens regardless of PATH_INFO. 591$input_params{'action'} ||="shortlog"; 592if(grep{$_eq$input_params{'action'} }@wants_base) { 593$input_params{'hash_base'} ||=$refname; 594}else{ 595$input_params{'hash'} ||=$refname; 596} 597} 598 599# next, handle the 'parent' part, if present 600if(defined$parentrefname) { 601# a missing pathspec defaults to the 'current' filename, allowing e.g. 602# someproject/blobdiff/oldrev..newrev:/filename 603if($parentpathname) { 604$parentpathname=~ s,^/+,,; 605$parentpathname=~ s,/$,,; 606$input_params{'file_parent'} ||=$parentpathname; 607}else{ 608$input_params{'file_parent'} ||=$input_params{'file_name'}; 609} 610# we assume that hash_parent_base is wanted if a path was specified, 611# or if the action wants hash_base instead of hash 612if(defined$input_params{'file_parent'} || 613grep{$_eq$input_params{'action'} }@wants_base) { 614$input_params{'hash_parent_base'} ||=$parentrefname; 615}else{ 616$input_params{'hash_parent'} ||=$parentrefname; 617} 618} 619} 620evaluate_path_info(); 621 622our$action=$input_params{'action'}; 623if(defined$action) { 624if(!validate_action($action)) { 625 die_error(400,"Invalid action parameter"); 626} 627} 628 629# parameters which are pathnames 630our$project=$input_params{'project'}; 631if(defined$project) { 632if(!validate_project($project)) { 633undef$project; 634 die_error(404,"No such project"); 635} 636} 637 638our$file_name=$input_params{'file_name'}; 639if(defined$file_name) { 640if(!validate_pathname($file_name)) { 641 die_error(400,"Invalid file parameter"); 642} 643} 644 645our$file_parent=$input_params{'file_parent'}; 646if(defined$file_parent) { 647if(!validate_pathname($file_parent)) { 648 die_error(400,"Invalid file parent parameter"); 649} 650} 651 652# parameters which are refnames 653our$hash=$input_params{'hash'}; 654if(defined$hash) { 655if(!validate_refname($hash)) { 656 die_error(400,"Invalid hash parameter"); 657} 658} 659 660our$hash_parent=$input_params{'hash_parent'}; 661if(defined$hash_parent) { 662if(!validate_refname($hash_parent)) { 663 die_error(400,"Invalid hash parent parameter"); 664} 665} 666 667our$hash_base=$input_params{'hash_base'}; 668if(defined$hash_base) { 669if(!validate_refname($hash_base)) { 670 die_error(400,"Invalid hash base parameter"); 671} 672} 673 674our@extra_options= @{$input_params{'extra_options'}}; 675# @extra_options is always defined, since it can only be (currently) set from 676# CGI, and $cgi->param() returns the empty array in array context if the param 677# is not set 678foreachmy$opt(@extra_options) { 679if(not exists$allowed_options{$opt}) { 680 die_error(400,"Invalid option parameter"); 681} 682if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 683 die_error(400,"Invalid option parameter for this action"); 684} 685} 686 687our$hash_parent_base=$input_params{'hash_parent_base'}; 688if(defined$hash_parent_base) { 689if(!validate_refname($hash_parent_base)) { 690 die_error(400,"Invalid hash parent base parameter"); 691} 692} 693 694# other parameters 695our$page=$input_params{'page'}; 696if(defined$page) { 697if($page=~m/[^0-9]/) { 698 die_error(400,"Invalid page parameter"); 699} 700} 701 702our$searchtype=$input_params{'searchtype'}; 703if(defined$searchtype) { 704if($searchtype=~m/[^a-z]/) { 705 die_error(400,"Invalid searchtype parameter"); 706} 707} 708 709our$search_use_regexp=$input_params{'search_use_regexp'}; 710 711our$searchtext=$input_params{'searchtext'}; 712our$search_regexp; 713if(defined$searchtext) { 714if(length($searchtext) <2) { 715 die_error(403,"At least two characters are required for search parameter"); 716} 717$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext; 718} 719 720# path to the current git repository 721our$git_dir; 722$git_dir="$projectroot/$project"if$project; 723 724# dispatch 725if(!defined$action) { 726if(defined$hash) { 727$action= git_get_type($hash); 728}elsif(defined$hash_base&&defined$file_name) { 729$action= git_get_type("$hash_base:$file_name"); 730}elsif(defined$project) { 731$action='summary'; 732}else{ 733$action='project_list'; 734} 735} 736if(!defined($actions{$action})) { 737 die_error(400,"Unknown action"); 738} 739if($action!~m/^(opml|project_list|project_index)$/&& 740!$project) { 741 die_error(400,"Project needed"); 742} 743$actions{$action}->(); 744exit; 745 746## ====================================================================== 747## action links 748 749sub href (%) { 750my%params=@_; 751# default is to use -absolute url() i.e. $my_uri 752my$href=$params{-full} ?$my_url:$my_uri; 753 754$params{'project'} =$projectunlessexists$params{'project'}; 755 756if($params{-replay}) { 757while(my($name,$symbol) =each%cgi_param_mapping) { 758if(!exists$params{$name}) { 759$params{$name} =$input_params{$name}; 760} 761} 762} 763 764my($use_pathinfo) = gitweb_check_feature('pathinfo'); 765if($use_pathinfo) { 766# try to put as many parameters as possible in PATH_INFO: 767# - project name 768# - action 769# - hash_parent or hash_parent_base:/file_parent 770# - hash or hash_base:/filename 771 772# When the script is the root DirectoryIndex for the domain, 773# $href here would be something like http://gitweb.example.com/ 774# Thus, we strip any trailing / from $href, to spare us double 775# slashes in the final URL 776$href=~ s,/$,,; 777 778# Then add the project name, if present 779$href.="/".esc_url($params{'project'})ifdefined$params{'project'}; 780delete$params{'project'}; 781 782# Summary just uses the project path URL, any other action is 783# added to the URL 784if(defined$params{'action'}) { 785$href.="/".esc_url($params{'action'})unless$params{'action'}eq'summary'; 786delete$params{'action'}; 787} 788 789# Next, we put hash_parent_base:/file_parent..hash_base:/file_name, 790# stripping nonexistent or useless pieces 791$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'} 792||$params{'hash_parent'} ||$params{'hash'}); 793if(defined$params{'hash_base'}) { 794if(defined$params{'hash_parent_base'}) { 795$href.= esc_url($params{'hash_parent_base'}); 796# skip the file_parent if it's the same as the file_name 797delete$params{'file_parent'}if$params{'file_parent'}eq$params{'file_name'}; 798if(defined$params{'file_parent'} &&$params{'file_parent'} !~/\.\./) { 799$href.=":/".esc_url($params{'file_parent'}); 800delete$params{'file_parent'}; 801} 802$href.=".."; 803delete$params{'hash_parent'}; 804delete$params{'hash_parent_base'}; 805}elsif(defined$params{'hash_parent'}) { 806$href.= esc_url($params{'hash_parent'}).".."; 807delete$params{'hash_parent'}; 808} 809 810$href.= esc_url($params{'hash_base'}); 811if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) { 812$href.=":/".esc_url($params{'file_name'}); 813delete$params{'file_name'}; 814} 815delete$params{'hash'}; 816delete$params{'hash_base'}; 817}elsif(defined$params{'hash'}) { 818$href.= esc_url($params{'hash'}); 819delete$params{'hash'}; 820} 821} 822 823# now encode the parameters explicitly 824my@result= (); 825for(my$i=0;$i<@cgi_param_mapping;$i+=2) { 826my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]); 827if(defined$params{$name}) { 828if(ref($params{$name})eq"ARRAY") { 829foreachmy$par(@{$params{$name}}) { 830push@result,$symbol."=". esc_param($par); 831} 832}else{ 833push@result,$symbol."=". esc_param($params{$name}); 834} 835} 836} 837$href.="?".join(';',@result)ifscalar@result; 838 839return$href; 840} 841 842 843## ====================================================================== 844## validation, quoting/unquoting and escaping 845 846sub validate_action { 847my$input=shift||returnundef; 848returnundefunlessexists$actions{$input}; 849return$input; 850} 851 852sub validate_project { 853my$input=shift||returnundef; 854if(!validate_pathname($input) || 855!(-d "$projectroot/$input") || 856!check_head_link("$projectroot/$input") || 857($export_ok&& !(-e "$projectroot/$input/$export_ok")) || 858($strict_export&& !project_in_list($input))) { 859returnundef; 860}else{ 861return$input; 862} 863} 864 865sub validate_pathname { 866my$input=shift||returnundef; 867 868# no '.' or '..' as elements of path, i.e. no '.' nor '..' 869# at the beginning, at the end, and between slashes. 870# also this catches doubled slashes 871if($input=~m!(^|/)(|\.|\.\.)(/|$)!) { 872returnundef; 873} 874# no null characters 875if($input=~m!\0!) { 876returnundef; 877} 878return$input; 879} 880 881sub validate_refname { 882my$input=shift||returnundef; 883 884# textual hashes are O.K. 885if($input=~m/^[0-9a-fA-F]{40}$/) { 886return$input; 887} 888# it must be correct pathname 889$input= validate_pathname($input) 890orreturnundef; 891# restrictions on ref name according to git-check-ref-format 892if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) { 893returnundef; 894} 895return$input; 896} 897 898# decode sequences of octets in utf8 into Perl's internal form, 899# which is utf-8 with utf8 flag set if needed. gitweb writes out 900# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning 901sub to_utf8 { 902my$str=shift; 903if(utf8::valid($str)) { 904 utf8::decode($str); 905return$str; 906}else{ 907return decode($fallback_encoding,$str, Encode::FB_DEFAULT); 908} 909} 910 911# quote unsafe chars, but keep the slash, even when it's not 912# correct, but quoted slashes look too horrible in bookmarks 913sub esc_param { 914my$str=shift; 915$str=~s/([^A-Za-z0-9\-_.~()\/:@])/sprintf("%%%02X",ord($1))/eg; 916$str=~s/\+/%2B/g; 917$str=~s/ /\+/g; 918return$str; 919} 920 921# quote unsafe chars in whole URL, so some charactrs cannot be quoted 922sub esc_url { 923my$str=shift; 924$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf("%%%02X",ord($1))/eg; 925$str=~s/\+/%2B/g; 926$str=~s/ /\+/g; 927return$str; 928} 929 930# replace invalid utf8 character with SUBSTITUTION sequence 931sub esc_html ($;%) { 932my$str=shift; 933my%opts=@_; 934 935$str= to_utf8($str); 936$str=$cgi->escapeHTML($str); 937if($opts{'-nbsp'}) { 938$str=~s/ / /g; 939} 940$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg; 941return$str; 942} 943 944# quote control characters and escape filename to HTML 945sub esc_path { 946my$str=shift; 947my%opts=@_; 948 949$str= to_utf8($str); 950$str=$cgi->escapeHTML($str); 951if($opts{'-nbsp'}) { 952$str=~s/ / /g; 953} 954$str=~ s|([[:cntrl:]])|quot_cec($1)|eg; 955return$str; 956} 957 958# Make control characters "printable", using character escape codes (CEC) 959sub quot_cec { 960my$cntrl=shift; 961my%opts=@_; 962my%es= (# character escape codes, aka escape sequences 963"\t"=>'\t',# tab (HT) 964"\n"=>'\n',# line feed (LF) 965"\r"=>'\r',# carrige return (CR) 966"\f"=>'\f',# form feed (FF) 967"\b"=>'\b',# backspace (BS) 968"\a"=>'\a',# alarm (bell) (BEL) 969"\e"=>'\e',# escape (ESC) 970"\013"=>'\v',# vertical tab (VT) 971"\000"=>'\0',# nul character (NUL) 972); 973my$chr= ( (exists$es{$cntrl}) 974?$es{$cntrl} 975:sprintf('\%2x',ord($cntrl)) ); 976if($opts{-nohtml}) { 977return$chr; 978}else{ 979return"<span class=\"cntrl\">$chr</span>"; 980} 981} 982 983# Alternatively use unicode control pictures codepoints, 984# Unicode "printable representation" (PR) 985sub quot_upr { 986my$cntrl=shift; 987my%opts=@_; 988 989my$chr=sprintf('&#%04d;',0x2400+ord($cntrl)); 990if($opts{-nohtml}) { 991return$chr; 992}else{ 993return"<span class=\"cntrl\">$chr</span>"; 994} 995} 996 997# git may return quoted and escaped filenames 998sub unquote { 999my$str=shift;10001001sub unq {1002my$seq=shift;1003my%es= (# character escape codes, aka escape sequences1004't'=>"\t",# tab (HT, TAB)1005'n'=>"\n",# newline (NL)1006'r'=>"\r",# return (CR)1007'f'=>"\f",# form feed (FF)1008'b'=>"\b",# backspace (BS)1009'a'=>"\a",# alarm (bell) (BEL)1010'e'=>"\e",# escape (ESC)1011'v'=>"\013",# vertical tab (VT)1012);10131014if($seq=~m/^[0-7]{1,3}$/) {1015# octal char sequence1016returnchr(oct($seq));1017}elsif(exists$es{$seq}) {1018# C escape sequence, aka character escape code1019return$es{$seq};1020}1021# quoted ordinary character1022return$seq;1023}10241025if($str=~m/^"(.*)"$/) {1026# needs unquoting1027$str=$1;1028$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1029}1030return$str;1031}10321033# escape tabs (convert tabs to spaces)1034sub untabify {1035my$line=shift;10361037while((my$pos=index($line,"\t")) != -1) {1038if(my$count= (8- ($pos%8))) {1039my$spaces=' ' x $count;1040$line=~s/\t/$spaces/;1041}1042}10431044return$line;1045}10461047sub project_in_list {1048my$project=shift;1049my@list= git_get_projects_list();1050return@list&&scalar(grep{$_->{'path'}eq$project}@list);1051}10521053## ----------------------------------------------------------------------1054## HTML aware string manipulation10551056# Try to chop given string on a word boundary between position1057# $len and $len+$add_len. If there is no word boundary there,1058# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1059# (marking chopped part) would be longer than given string.1060sub chop_str {1061my$str=shift;1062my$len=shift;1063my$add_len=shift||10;1064my$where=shift||'right';# 'left' | 'center' | 'right'10651066# Make sure perl knows it is utf8 encoded so we don't1067# cut in the middle of a utf8 multibyte char.1068$str= to_utf8($str);10691070# allow only $len chars, but don't cut a word if it would fit in $add_len1071# if it doesn't fit, cut it if it's still longer than the dots we would add1072# remove chopped character entities entirely10731074# when chopping in the middle, distribute $len into left and right part1075# return early if chopping wouldn't make string shorter1076if($whereeq'center') {1077return$strif($len+5>=length($str));# filler is length 51078$len=int($len/2);1079}else{1080return$strif($len+4>=length($str));# filler is length 41081}10821083# regexps: ending and beginning with word part up to $add_len1084my$endre=qr/.{$len}\w{0,$add_len}/;1085my$begre=qr/\w{0,$add_len}.{$len}/;10861087if($whereeq'left') {1088$str=~m/^(.*?)($begre)$/;1089my($lead,$body) = ($1,$2);1090if(length($lead) >4) {1091$body=~s/^[^;]*;//if($lead=~m/&[^;]*$/);1092$lead=" ...";1093}1094return"$lead$body";10951096}elsif($whereeq'center') {1097$str=~m/^($endre)(.*)$/;1098my($left,$str) = ($1,$2);1099$str=~m/^(.*?)($begre)$/;1100my($mid,$right) = ($1,$2);1101if(length($mid) >5) {1102$left=~s/&[^;]*$//;1103$right=~s/^[^;]*;//if($mid=~m/&[^;]*$/);1104$mid=" ... ";1105}1106return"$left$mid$right";11071108}else{1109$str=~m/^($endre)(.*)$/;1110my$body=$1;1111my$tail=$2;1112if(length($tail) >4) {1113$body=~s/&[^;]*$//;1114$tail="... ";1115}1116return"$body$tail";1117}1118}11191120# takes the same arguments as chop_str, but also wraps a <span> around the1121# result with a title attribute if it does get chopped. Additionally, the1122# string is HTML-escaped.1123sub chop_and_escape_str {1124my($str) =@_;11251126my$chopped= chop_str(@_);1127if($choppedeq$str) {1128return esc_html($chopped);1129}else{1130$str=~s/([[:cntrl:]])/?/g;1131return$cgi->span({-title=>$str}, esc_html($chopped));1132}1133}11341135## ----------------------------------------------------------------------1136## functions returning short strings11371138# CSS class for given age value (in seconds)1139sub age_class {1140my$age=shift;11411142if(!defined$age) {1143return"noage";1144}elsif($age<60*60*2) {1145return"age0";1146}elsif($age<60*60*24*2) {1147return"age1";1148}else{1149return"age2";1150}1151}11521153# convert age in seconds to "nn units ago" string1154sub age_string {1155my$age=shift;1156my$age_str;11571158if($age>60*60*24*365*2) {1159$age_str= (int$age/60/60/24/365);1160$age_str.=" years ago";1161}elsif($age>60*60*24*(365/12)*2) {1162$age_str=int$age/60/60/24/(365/12);1163$age_str.=" months ago";1164}elsif($age>60*60*24*7*2) {1165$age_str=int$age/60/60/24/7;1166$age_str.=" weeks ago";1167}elsif($age>60*60*24*2) {1168$age_str=int$age/60/60/24;1169$age_str.=" days ago";1170}elsif($age>60*60*2) {1171$age_str=int$age/60/60;1172$age_str.=" hours ago";1173}elsif($age>60*2) {1174$age_str=int$age/60;1175$age_str.=" min ago";1176}elsif($age>2) {1177$age_str=int$age;1178$age_str.=" sec ago";1179}else{1180$age_str.=" right now";1181}1182return$age_str;1183}11841185useconstant{1186 S_IFINVALID =>0030000,1187 S_IFGITLINK =>0160000,1188};11891190# submodule/subproject, a commit object reference1191sub S_ISGITLINK($) {1192my$mode=shift;11931194return(($mode& S_IFMT) == S_IFGITLINK)1195}11961197# convert file mode in octal to symbolic file mode string1198sub mode_str {1199my$mode=oct shift;12001201if(S_ISGITLINK($mode)) {1202return'm---------';1203}elsif(S_ISDIR($mode& S_IFMT)) {1204return'drwxr-xr-x';1205}elsif(S_ISLNK($mode)) {1206return'lrwxrwxrwx';1207}elsif(S_ISREG($mode)) {1208# git cares only about the executable bit1209if($mode& S_IXUSR) {1210return'-rwxr-xr-x';1211}else{1212return'-rw-r--r--';1213};1214}else{1215return'----------';1216}1217}12181219# convert file mode in octal to file type string1220sub file_type {1221my$mode=shift;12221223if($mode!~m/^[0-7]+$/) {1224return$mode;1225}else{1226$mode=oct$mode;1227}12281229if(S_ISGITLINK($mode)) {1230return"submodule";1231}elsif(S_ISDIR($mode& S_IFMT)) {1232return"directory";1233}elsif(S_ISLNK($mode)) {1234return"symlink";1235}elsif(S_ISREG($mode)) {1236return"file";1237}else{1238return"unknown";1239}1240}12411242# convert file mode in octal to file type description string1243sub file_type_long {1244my$mode=shift;12451246if($mode!~m/^[0-7]+$/) {1247return$mode;1248}else{1249$mode=oct$mode;1250}12511252if(S_ISGITLINK($mode)) {1253return"submodule";1254}elsif(S_ISDIR($mode& S_IFMT)) {1255return"directory";1256}elsif(S_ISLNK($mode)) {1257return"symlink";1258}elsif(S_ISREG($mode)) {1259if($mode& S_IXUSR) {1260return"executable";1261}else{1262return"file";1263};1264}else{1265return"unknown";1266}1267}126812691270## ----------------------------------------------------------------------1271## functions returning short HTML fragments, or transforming HTML fragments1272## which don't belong to other sections12731274# format line of commit message.1275sub format_log_line_html {1276my$line=shift;12771278$line= esc_html($line, -nbsp=>1);1279if($line=~m/([0-9a-fA-F]{8,40})/) {1280my$hash_text=$1;1281my$link=1282$cgi->a({-href => href(action=>"object", hash=>$hash_text),1283-class=>"text"},$hash_text);1284$line=~s/$hash_text/$link/;1285}1286return$line;1287}12881289# format marker of refs pointing to given object12901291# the destination action is chosen based on object type and current context:1292# - for annotated tags, we choose the tag view unless it's the current view1293# already, in which case we go to shortlog view1294# - for other refs, we keep the current view if we're in history, shortlog or1295# log view, and select shortlog otherwise1296sub format_ref_marker {1297my($refs,$id) =@_;1298my$markers='';12991300if(defined$refs->{$id}) {1301foreachmy$ref(@{$refs->{$id}}) {1302# this code exploits the fact that non-lightweight tags are the1303# only indirect objects, and that they are the only objects for which1304# we want to use tag instead of shortlog as action1305my($type,$name) =qw();1306my$indirect= ($ref=~s/\^\{\}$//);1307# e.g. tags/v2.6.11 or heads/next1308if($ref=~m!^(.*?)s?/(.*)$!) {1309$type=$1;1310$name=$2;1311}else{1312$type="ref";1313$name=$ref;1314}13151316my$class=$type;1317$class.=" indirect"if$indirect;13181319my$dest_action="shortlog";13201321if($indirect) {1322$dest_action="tag"unless$actioneq"tag";1323}elsif($action=~/^(history|(short)?log)$/) {1324$dest_action=$action;1325}13261327my$dest="";1328$dest.="refs/"unless$ref=~ m!^refs/!;1329$dest.=$ref;13301331my$link=$cgi->a({1332-href => href(1333 action=>$dest_action,1334 hash=>$dest1335)},$name);13361337$markers.=" <span class=\"$class\"title=\"$ref\">".1338$link."</span>";1339}1340}13411342if($markers) {1343return' <span class="refs">'.$markers.'</span>';1344}else{1345return"";1346}1347}13481349# format, perhaps shortened and with markers, title line1350sub format_subject_html {1351my($long,$short,$href,$extra) =@_;1352$extra=''unlessdefined($extra);13531354if(length($short) <length($long)) {1355return$cgi->a({-href =>$href, -class=>"list subject",1356-title => to_utf8($long)},1357 esc_html($short) .$extra);1358}else{1359return$cgi->a({-href =>$href, -class=>"list subject"},1360 esc_html($long) .$extra);1361}1362}13631364# format git diff header line, i.e. "diff --(git|combined|cc) ..."1365sub format_git_diff_header_line {1366my$line=shift;1367my$diffinfo=shift;1368my($from,$to) =@_;13691370if($diffinfo->{'nparents'}) {1371# combined diff1372$line=~s!^(diff (.*?) )"?.*$!$1!;1373if($to->{'href'}) {1374$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1375 esc_path($to->{'file'}));1376}else{# file was deleted (no href)1377$line.= esc_path($to->{'file'});1378}1379}else{1380# "ordinary" diff1381$line=~s!^(diff (.*?) )"?a/.*$!$1!;1382if($from->{'href'}) {1383$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1384'a/'. esc_path($from->{'file'}));1385}else{# file was added (no href)1386$line.='a/'. esc_path($from->{'file'});1387}1388$line.=' ';1389if($to->{'href'}) {1390$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1391'b/'. esc_path($to->{'file'}));1392}else{# file was deleted1393$line.='b/'. esc_path($to->{'file'});1394}1395}13961397return"<div class=\"diff header\">$line</div>\n";1398}13991400# format extended diff header line, before patch itself1401sub format_extended_diff_header_line {1402my$line=shift;1403my$diffinfo=shift;1404my($from,$to) =@_;14051406# match <path>1407if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {1408$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},1409 esc_path($from->{'file'}));1410}1411if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {1412$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},1413 esc_path($to->{'file'}));1414}1415# match single <mode>1416if($line=~m/\s(\d{6})$/) {1417$line.='<span class="info"> ('.1418 file_type_long($1) .1419')</span>';1420}1421# match <hash>1422if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {1423# can match only for combined diff1424$line='index ';1425for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1426if($from->{'href'}[$i]) {1427$line.=$cgi->a({-href=>$from->{'href'}[$i],1428-class=>"hash"},1429substr($diffinfo->{'from_id'}[$i],0,7));1430}else{1431$line.='0' x 7;1432}1433# separator1434$line.=','if($i<$diffinfo->{'nparents'} -1);1435}1436$line.='..';1437if($to->{'href'}) {1438$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1439substr($diffinfo->{'to_id'},0,7));1440}else{1441$line.='0' x 7;1442}14431444}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {1445# can match only for ordinary diff1446my($from_link,$to_link);1447if($from->{'href'}) {1448$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},1449substr($diffinfo->{'from_id'},0,7));1450}else{1451$from_link='0' x 7;1452}1453if($to->{'href'}) {1454$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1455substr($diffinfo->{'to_id'},0,7));1456}else{1457$to_link='0' x 7;1458}1459my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});1460$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;1461}14621463return$line."<br/>\n";1464}14651466# format from-file/to-file diff header1467sub format_diff_from_to_header {1468my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;1469my$line;1470my$result='';14711472$line=$from_line;1473#assert($line =~ m/^---/) if DEBUG;1474# no extra formatting for "^--- /dev/null"1475if(!$diffinfo->{'nparents'}) {1476# ordinary (single parent) diff1477if($line=~m!^--- "?a/!) {1478if($from->{'href'}) {1479$line='--- a/'.1480$cgi->a({-href=>$from->{'href'}, -class=>"path"},1481 esc_path($from->{'file'}));1482}else{1483$line='--- a/'.1484 esc_path($from->{'file'});1485}1486}1487$result.= qq!<div class="diff from_file">$line</div>\n!;14881489}else{1490# combined diff (merge commit)1491for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1492if($from->{'href'}[$i]) {1493$line='--- '.1494$cgi->a({-href=>href(action=>"blobdiff",1495 hash_parent=>$diffinfo->{'from_id'}[$i],1496 hash_parent_base=>$parents[$i],1497 file_parent=>$from->{'file'}[$i],1498 hash=>$diffinfo->{'to_id'},1499 hash_base=>$hash,1500 file_name=>$to->{'file'}),1501-class=>"path",1502-title=>"diff". ($i+1)},1503$i+1) .1504'/'.1505$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},1506 esc_path($from->{'file'}[$i]));1507}else{1508$line='--- /dev/null';1509}1510$result.= qq!<div class="diff from_file">$line</div>\n!;1511}1512}15131514$line=$to_line;1515#assert($line =~ m/^\+\+\+/) if DEBUG;1516# no extra formatting for "^+++ /dev/null"1517if($line=~m!^\+\+\+ "?b/!) {1518if($to->{'href'}) {1519$line='+++ b/'.1520$cgi->a({-href=>$to->{'href'}, -class=>"path"},1521 esc_path($to->{'file'}));1522}else{1523$line='+++ b/'.1524 esc_path($to->{'file'});1525}1526}1527$result.= qq!<div class="diff to_file">$line</div>\n!;15281529return$result;1530}15311532# create note for patch simplified by combined diff1533sub format_diff_cc_simplified {1534my($diffinfo,@parents) =@_;1535my$result='';15361537$result.="<div class=\"diff header\">".1538"diff --cc ";1539if(!is_deleted($diffinfo)) {1540$result.=$cgi->a({-href => href(action=>"blob",1541 hash_base=>$hash,1542 hash=>$diffinfo->{'to_id'},1543 file_name=>$diffinfo->{'to_file'}),1544-class=>"path"},1545 esc_path($diffinfo->{'to_file'}));1546}else{1547$result.= esc_path($diffinfo->{'to_file'});1548}1549$result.="</div>\n".# class="diff header"1550"<div class=\"diff nodifferences\">".1551"Simple merge".1552"</div>\n";# class="diff nodifferences"15531554return$result;1555}15561557# format patch (diff) line (not to be used for diff headers)1558sub format_diff_line {1559my$line=shift;1560my($from,$to) =@_;1561my$diff_class="";15621563chomp$line;15641565if($from&&$to&&ref($from->{'href'})eq"ARRAY") {1566# combined diff1567my$prefix=substr($line,0,scalar@{$from->{'href'}});1568if($line=~m/^\@{3}/) {1569$diff_class=" chunk_header";1570}elsif($line=~m/^\\/) {1571$diff_class=" incomplete";1572}elsif($prefix=~tr/+/+/) {1573$diff_class=" add";1574}elsif($prefix=~tr/-/-/) {1575$diff_class=" rem";1576}1577}else{1578# assume ordinary diff1579my$char=substr($line,0,1);1580if($chareq'+') {1581$diff_class=" add";1582}elsif($chareq'-') {1583$diff_class=" rem";1584}elsif($chareq'@') {1585$diff_class=" chunk_header";1586}elsif($chareq"\\") {1587$diff_class=" incomplete";1588}1589}1590$line= untabify($line);1591if($from&&$to&&$line=~m/^\@{2} /) {1592my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =1593$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;15941595$from_lines=0unlessdefined$from_lines;1596$to_lines=0unlessdefined$to_lines;15971598if($from->{'href'}) {1599$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",1600-class=>"list"},$from_text);1601}1602if($to->{'href'}) {1603$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",1604-class=>"list"},$to_text);1605}1606$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".1607"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";1608return"<div class=\"diff$diff_class\">$line</div>\n";1609}elsif($from&&$to&&$line=~m/^\@{3}/) {1610my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;1611my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);16121613@from_text=split(' ',$ranges);1614for(my$i=0;$i<@from_text; ++$i) {1615($from_start[$i],$from_nlines[$i]) =1616(split(',',substr($from_text[$i],1)),0);1617}16181619$to_text=pop@from_text;1620$to_start=pop@from_start;1621$to_nlines=pop@from_nlines;16221623$line="<span class=\"chunk_info\">$prefix";1624for(my$i=0;$i<@from_text; ++$i) {1625if($from->{'href'}[$i]) {1626$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",1627-class=>"list"},$from_text[$i]);1628}else{1629$line.=$from_text[$i];1630}1631$line.=" ";1632}1633if($to->{'href'}) {1634$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",1635-class=>"list"},$to_text);1636}else{1637$line.=$to_text;1638}1639$line.="$prefix</span>".1640"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";1641return"<div class=\"diff$diff_class\">$line</div>\n";1642}1643return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";1644}16451646# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",1647# linked. Pass the hash of the tree/commit to snapshot.1648sub format_snapshot_links {1649my($hash) =@_;1650my@snapshot_fmts= gitweb_check_feature('snapshot');1651@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);1652my$num_fmts=@snapshot_fmts;1653if($num_fmts>1) {1654# A parenthesized list of links bearing format names.1655# e.g. "snapshot (_tar.gz_ _zip_)"1656return"snapshot (".join(' ',map1657$cgi->a({1658-href => href(1659 action=>"snapshot",1660 hash=>$hash,1661 snapshot_format=>$_1662)1663},$known_snapshot_formats{$_}{'display'})1664,@snapshot_fmts) .")";1665}elsif($num_fmts==1) {1666# A single "snapshot" link whose tooltip bears the format name.1667# i.e. "_snapshot_"1668my($fmt) =@snapshot_fmts;1669return1670$cgi->a({1671-href => href(1672 action=>"snapshot",1673 hash=>$hash,1674 snapshot_format=>$fmt1675),1676-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"1677},"snapshot");1678}else{# $num_fmts == 01679returnundef;1680}1681}16821683## ......................................................................1684## functions returning values to be passed, perhaps after some1685## transformation, to other functions; e.g. returning arguments to href()16861687# returns hash to be passed to href to generate gitweb URL1688# in -title key it returns description of link1689sub get_feed_info {1690my$format=shift||'Atom';1691my%res= (action =>lc($format));16921693# feed links are possible only for project views1694return unless(defined$project);1695# some views should link to OPML, or to generic project feed,1696# or don't have specific feed yet (so they should use generic)1697return if($action=~/^(?:tags|heads|forks|tag|search)$/x);16981699my$branch;1700# branches refs uses 'refs/heads/' prefix (fullname) to differentiate1701# from tag links; this also makes possible to detect branch links1702if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||1703(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {1704$branch=$1;1705}1706# find log type for feed description (title)1707my$type='log';1708if(defined$file_name) {1709$type="history of$file_name";1710$type.="/"if($actioneq'tree');1711$type.=" on '$branch'"if(defined$branch);1712}else{1713$type="log of$branch"if(defined$branch);1714}17151716$res{-title} =$type;1717$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);1718$res{'file_name'} =$file_name;17191720return%res;1721}17221723## ----------------------------------------------------------------------1724## git utility subroutines, invoking git commands17251726# returns path to the core git executable and the --git-dir parameter as list1727sub git_cmd {1728return$GIT,'--git-dir='.$git_dir;1729}17301731# quote the given arguments for passing them to the shell1732# quote_command("command", "arg 1", "arg with ' and ! characters")1733# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"1734# Try to avoid using this function wherever possible.1735sub quote_command {1736returnjoin(' ',1737map( {my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_));1738}17391740# get HEAD ref of given project as hash1741sub git_get_head_hash {1742my$project=shift;1743my$o_git_dir=$git_dir;1744my$retval=undef;1745$git_dir="$projectroot/$project";1746if(open my$fd,"-|", git_cmd(),"rev-parse","--verify","HEAD") {1747my$head= <$fd>;1748close$fd;1749if(defined$head&&$head=~/^([0-9a-fA-F]{40})$/) {1750$retval=$1;1751}1752}1753if(defined$o_git_dir) {1754$git_dir=$o_git_dir;1755}1756return$retval;1757}17581759# get type of given object1760sub git_get_type {1761my$hash=shift;17621763open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;1764my$type= <$fd>;1765close$fdorreturn;1766chomp$type;1767return$type;1768}17691770# repository configuration1771our$config_file='';1772our%config;17731774# store multiple values for single key as anonymous array reference1775# single values stored directly in the hash, not as [ <value> ]1776sub hash_set_multi {1777my($hash,$key,$value) =@_;17781779if(!exists$hash->{$key}) {1780$hash->{$key} =$value;1781}elsif(!ref$hash->{$key}) {1782$hash->{$key} = [$hash->{$key},$value];1783}else{1784push@{$hash->{$key}},$value;1785}1786}17871788# return hash of git project configuration1789# optionally limited to some section, e.g. 'gitweb'1790sub git_parse_project_config {1791my$section_regexp=shift;1792my%config;17931794local$/="\0";17951796open my$fh,"-|", git_cmd(),"config",'-z','-l',1797orreturn;17981799while(my$keyval= <$fh>) {1800chomp$keyval;1801my($key,$value) =split(/\n/,$keyval,2);18021803 hash_set_multi(\%config,$key,$value)1804if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);1805}1806close$fh;18071808return%config;1809}18101811# convert config value to boolean, 'true' or 'false'1812# no value, number > 0, 'true' and 'yes' values are true1813# rest of values are treated as false (never as error)1814sub config_to_bool {1815my$val=shift;18161817# strip leading and trailing whitespace1818$val=~s/^\s+//;1819$val=~s/\s+$//;18201821return(!defined$val||# section.key1822($val=~/^\d+$/&&$val) ||# section.key = 11823($val=~/^(?:true|yes)$/i));# section.key = true1824}18251826# convert config value to simple decimal number1827# an optional value suffix of 'k', 'm', or 'g' will cause the value1828# to be multiplied by 1024, 1048576, or 10737418241829sub config_to_int {1830my$val=shift;18311832# strip leading and trailing whitespace1833$val=~s/^\s+//;1834$val=~s/\s+$//;18351836if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {1837$unit=lc($unit);1838# unknown unit is treated as 11839return$num* ($uniteq'g'?1073741824:1840$uniteq'm'?1048576:1841$uniteq'k'?1024:1);1842}1843return$val;1844}18451846# convert config value to array reference, if needed1847sub config_to_multi {1848my$val=shift;18491850returnref($val) ?$val: (defined($val) ? [$val] : []);1851}18521853sub git_get_project_config {1854my($key,$type) =@_;18551856# key sanity check1857return unless($key);1858$key=~s/^gitweb\.//;1859return if($key=~m/\W/);18601861# type sanity check1862if(defined$type) {1863$type=~s/^--//;1864$type=undef1865unless($typeeq'bool'||$typeeq'int');1866}18671868# get config1869if(!defined$config_file||1870$config_filene"$git_dir/config") {1871%config= git_parse_project_config('gitweb');1872$config_file="$git_dir/config";1873}18741875# ensure given type1876if(!defined$type) {1877return$config{"gitweb.$key"};1878}elsif($typeeq'bool') {1879# backward compatibility: 'git config --bool' returns true/false1880return config_to_bool($config{"gitweb.$key"}) ?'true':'false';1881}elsif($typeeq'int') {1882return config_to_int($config{"gitweb.$key"});1883}1884return$config{"gitweb.$key"};1885}18861887# get hash of given path at given ref1888sub git_get_hash_by_path {1889my$base=shift;1890my$path=shift||returnundef;1891my$type=shift;18921893$path=~ s,/+$,,;18941895open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path1896or die_error(500,"Open git-ls-tree failed");1897my$line= <$fd>;1898close$fdorreturnundef;18991900if(!defined$line) {1901# there is no tree or hash given by $path at $base1902returnundef;1903}19041905#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'1906$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;1907if(defined$type&&$typene$2) {1908# type doesn't match1909returnundef;1910}1911return$3;1912}19131914# get path of entry with given hash at given tree-ish (ref)1915# used to get 'from' filename for combined diff (merge commit) for renames1916sub git_get_path_by_hash {1917my$base=shift||return;1918my$hash=shift||return;19191920local$/="\0";19211922open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base1923orreturnundef;1924while(my$line= <$fd>) {1925chomp$line;19261927#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'1928#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'1929if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {1930close$fd;1931return$1;1932}1933}1934close$fd;1935returnundef;1936}19371938## ......................................................................1939## git utility functions, directly accessing git repository19401941sub git_get_project_description {1942my$path=shift;19431944$git_dir="$projectroot/$path";1945open my$fd,"$git_dir/description"1946orreturn git_get_project_config('description');1947my$descr= <$fd>;1948close$fd;1949if(defined$descr) {1950chomp$descr;1951}1952return$descr;1953}19541955sub git_get_project_ctags {1956my$path=shift;1957my$ctags= {};19581959$git_dir="$projectroot/$path";1960unless(opendir D,"$git_dir/ctags") {1961return$ctags;1962}1963foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir(D)) {1964open CT,$_ornext;1965my$val= <CT>;1966chomp$val;1967close CT;1968my$ctag=$_;$ctag=~ s#.*/##;1969$ctags->{$ctag} =$val;1970}1971closedir D;1972$ctags;1973}19741975sub git_populate_project_tagcloud {1976my$ctags=shift;19771978# First, merge different-cased tags; tags vote on casing1979my%ctags_lc;1980foreach(keys%$ctags) {1981$ctags_lc{lc$_}->{count} +=$ctags->{$_};1982if(not$ctags_lc{lc$_}->{topcount}1983or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {1984$ctags_lc{lc$_}->{topcount} =$ctags->{$_};1985$ctags_lc{lc$_}->{topname} =$_;1986}1987}19881989my$cloud;1990if(eval{require HTML::TagCloud;1; }) {1991$cloud= HTML::TagCloud->new;1992foreach(sort keys%ctags_lc) {1993# Pad the title with spaces so that the cloud looks1994# less crammed.1995my$title=$ctags_lc{$_}->{topname};1996$title=~s/ / /g;1997$title=~s/^/ /g;1998$title=~s/$/ /g;1999$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2000}2001}else{2002$cloud= \%ctags_lc;2003}2004$cloud;2005}20062007sub git_show_project_tagcloud {2008my($cloud,$count) =@_;2009print STDERR ref($cloud)."..\n";2010if(ref$cloudeq'HTML::TagCloud') {2011return$cloud->html_and_css($count);2012}else{2013my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2014return'<p align="center">'.join(', ',map{2015"<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"2016}splice(@tags,0,$count)) .'</p>';2017}2018}20192020sub git_get_project_url_list {2021my$path=shift;20222023$git_dir="$projectroot/$path";2024open my$fd,"$git_dir/cloneurl"2025orreturnwantarray?2026@{ config_to_multi(git_get_project_config('url')) } :2027 config_to_multi(git_get_project_config('url'));2028my@git_project_url_list=map{chomp;$_} <$fd>;2029close$fd;20302031returnwantarray?@git_project_url_list: \@git_project_url_list;2032}20332034sub git_get_projects_list {2035my($filter) =@_;2036my@list;20372038$filter||='';2039$filter=~s/\.git$//;20402041my($check_forks) = gitweb_check_feature('forks');20422043if(-d $projects_list) {2044# search in directory2045my$dir=$projects_list. ($filter?"/$filter":'');2046# remove the trailing "/"2047$dir=~s!/+$!!;2048my$pfxlen=length("$dir");2049my$pfxdepth= ($dir=~tr!/!!);20502051 File::Find::find({2052 follow_fast =>1,# follow symbolic links2053 follow_skip =>2,# ignore duplicates2054 dangling_symlinks =>0,# ignore dangling symlinks, silently2055 wanted =>sub{2056# skip project-list toplevel, if we get it.2057return if(m!^[/.]$!);2058# only directories can be git repositories2059return unless(-d $_);2060# don't traverse too deep (Find is super slow on os x)2061if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2062$File::Find::prune =1;2063return;2064}20652066my$subdir=substr($File::Find::name,$pfxlen+1);2067# we check related file in $projectroot2068if(check_export_ok("$projectroot/$filter/$subdir")) {2069push@list, { path => ($filter?"$filter/":'') .$subdir};2070$File::Find::prune =1;2071}2072},2073},"$dir");20742075}elsif(-f $projects_list) {2076# read from file(url-encoded):2077# 'git%2Fgit.git Linus+Torvalds'2078# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2079# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2080my%paths;2081open my($fd),$projects_listorreturn;2082 PROJECT:2083while(my$line= <$fd>) {2084chomp$line;2085my($path,$owner) =split' ',$line;2086$path= unescape($path);2087$owner= unescape($owner);2088if(!defined$path) {2089next;2090}2091if($filterne'') {2092# looking for forks;2093my$pfx=substr($path,0,length($filter));2094if($pfxne$filter) {2095next PROJECT;2096}2097my$sfx=substr($path,length($filter));2098if($sfx!~/^\/.*\.git$/) {2099next PROJECT;2100}2101}elsif($check_forks) {2102 PATH:2103foreachmy$filter(keys%paths) {2104# looking for forks;2105my$pfx=substr($path,0,length($filter));2106if($pfxne$filter) {2107next PATH;2108}2109my$sfx=substr($path,length($filter));2110if($sfx!~/^\/.*\.git$/) {2111next PATH;2112}2113# is a fork, don't include it in2114# the list2115next PROJECT;2116}2117}2118if(check_export_ok("$projectroot/$path")) {2119my$pr= {2120 path =>$path,2121 owner => to_utf8($owner),2122};2123push@list,$pr;2124(my$forks_path=$path) =~s/\.git$//;2125$paths{$forks_path}++;2126}2127}2128close$fd;2129}2130return@list;2131}21322133our$gitweb_project_owner=undef;2134sub git_get_project_list_from_file {21352136return if(defined$gitweb_project_owner);21372138$gitweb_project_owner= {};2139# read from file (url-encoded):2140# 'git%2Fgit.git Linus+Torvalds'2141# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2142# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2143if(-f $projects_list) {2144open(my$fd,$projects_list);2145while(my$line= <$fd>) {2146chomp$line;2147my($pr,$ow) =split' ',$line;2148$pr= unescape($pr);2149$ow= unescape($ow);2150$gitweb_project_owner->{$pr} = to_utf8($ow);2151}2152close$fd;2153}2154}21552156sub git_get_project_owner {2157my$project=shift;2158my$owner;21592160returnundefunless$project;2161$git_dir="$projectroot/$project";21622163if(!defined$gitweb_project_owner) {2164 git_get_project_list_from_file();2165}21662167if(exists$gitweb_project_owner->{$project}) {2168$owner=$gitweb_project_owner->{$project};2169}2170if(!defined$owner){2171$owner= git_get_project_config('owner');2172}2173if(!defined$owner) {2174$owner= get_file_owner("$git_dir");2175}21762177return$owner;2178}21792180sub git_get_last_activity {2181my($path) =@_;2182my$fd;21832184$git_dir="$projectroot/$path";2185open($fd,"-|", git_cmd(),'for-each-ref',2186'--format=%(committer)',2187'--sort=-committerdate',2188'--count=1',2189'refs/heads')orreturn;2190my$most_recent= <$fd>;2191close$fdorreturn;2192if(defined$most_recent&&2193$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2194my$timestamp=$1;2195my$age=time-$timestamp;2196return($age, age_string($age));2197}2198return(undef,undef);2199}22002201sub git_get_references {2202my$type=shift||"";2203my%refs;2204# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112205# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2206open my$fd,"-|", git_cmd(),"show-ref","--dereference",2207($type? ("--","refs/$type") : ())# use -- <pattern> if $type2208orreturn;22092210while(my$line= <$fd>) {2211chomp$line;2212if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2213if(defined$refs{$1}) {2214push@{$refs{$1}},$2;2215}else{2216$refs{$1} = [$2];2217}2218}2219}2220close$fdorreturn;2221return \%refs;2222}22232224sub git_get_rev_name_tags {2225my$hash=shift||returnundef;22262227open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2228orreturn;2229my$name_rev= <$fd>;2230close$fd;22312232if($name_rev=~ m|^$hash tags/(.*)$|) {2233return$1;2234}else{2235# catches also '$hash undefined' output2236returnundef;2237}2238}22392240## ----------------------------------------------------------------------2241## parse to hash functions22422243sub parse_date {2244my$epoch=shift;2245my$tz=shift||"-0000";22462247my%date;2248my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2249my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2250my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2251$date{'hour'} =$hour;2252$date{'minute'} =$min;2253$date{'mday'} =$mday;2254$date{'day'} =$days[$wday];2255$date{'month'} =$months[$mon];2256$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2257$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2258$date{'mday-time'} =sprintf"%d%s%02d:%02d",2259$mday,$months[$mon],$hour,$min;2260$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",22611900+$year,1+$mon,$mday,$hour,$min,$sec;22622263$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2264my$local=$epoch+ ((int$1+ ($2/60)) *3600);2265($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2266$date{'hour_local'} =$hour;2267$date{'minute_local'} =$min;2268$date{'tz_local'} =$tz;2269$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",22701900+$year,$mon+1,$mday,2271$hour,$min,$sec,$tz);2272return%date;2273}22742275sub parse_tag {2276my$tag_id=shift;2277my%tag;2278my@comment;22792280open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2281$tag{'id'} =$tag_id;2282while(my$line= <$fd>) {2283chomp$line;2284if($line=~m/^object ([0-9a-fA-F]{40})$/) {2285$tag{'object'} =$1;2286}elsif($line=~m/^type (.+)$/) {2287$tag{'type'} =$1;2288}elsif($line=~m/^tag (.+)$/) {2289$tag{'name'} =$1;2290}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2291$tag{'author'} =$1;2292$tag{'epoch'} =$2;2293$tag{'tz'} =$3;2294}elsif($line=~m/--BEGIN/) {2295push@comment,$line;2296last;2297}elsif($lineeq"") {2298last;2299}2300}2301push@comment, <$fd>;2302$tag{'comment'} = \@comment;2303close$fdorreturn;2304if(!defined$tag{'name'}) {2305return2306};2307return%tag2308}23092310sub parse_commit_text {2311my($commit_text,$withparents) =@_;2312my@commit_lines=split'\n',$commit_text;2313my%co;23142315pop@commit_lines;# Remove '\0'23162317if(!@commit_lines) {2318return;2319}23202321my$header=shift@commit_lines;2322if($header!~m/^[0-9a-fA-F]{40}/) {2323return;2324}2325($co{'id'},my@parents) =split' ',$header;2326while(my$line=shift@commit_lines) {2327last if$lineeq"\n";2328if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2329$co{'tree'} =$1;2330}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2331push@parents,$1;2332}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2333$co{'author'} =$1;2334$co{'author_epoch'} =$2;2335$co{'author_tz'} =$3;2336if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2337$co{'author_name'} =$1;2338$co{'author_email'} =$2;2339}else{2340$co{'author_name'} =$co{'author'};2341}2342}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2343$co{'committer'} =$1;2344$co{'committer_epoch'} =$2;2345$co{'committer_tz'} =$3;2346$co{'committer_name'} =$co{'committer'};2347if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2348$co{'committer_name'} =$1;2349$co{'committer_email'} =$2;2350}else{2351$co{'committer_name'} =$co{'committer'};2352}2353}2354}2355if(!defined$co{'tree'}) {2356return;2357};2358$co{'parents'} = \@parents;2359$co{'parent'} =$parents[0];23602361foreachmy$title(@commit_lines) {2362$title=~s/^ //;2363if($titlene"") {2364$co{'title'} = chop_str($title,80,5);2365# remove leading stuff of merges to make the interesting part visible2366if(length($title) >50) {2367$title=~s/^Automatic //;2368$title=~s/^merge (of|with) /Merge ... /i;2369if(length($title) >50) {2370$title=~s/(http|rsync):\/\///;2371}2372if(length($title) >50) {2373$title=~s/(master|www|rsync)\.//;2374}2375if(length($title) >50) {2376$title=~s/kernel.org:?//;2377}2378if(length($title) >50) {2379$title=~s/\/pub\/scm//;2380}2381}2382$co{'title_short'} = chop_str($title,50,5);2383last;2384}2385}2386if(!defined$co{'title'} ||$co{'title'}eq"") {2387$co{'title'} =$co{'title_short'} ='(no commit message)';2388}2389# remove added spaces2390foreachmy$line(@commit_lines) {2391$line=~s/^ //;2392}2393$co{'comment'} = \@commit_lines;23942395my$age=time-$co{'committer_epoch'};2396$co{'age'} =$age;2397$co{'age_string'} = age_string($age);2398my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});2399if($age>60*60*24*7*2) {2400$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2401$co{'age_string_age'} =$co{'age_string'};2402}else{2403$co{'age_string_date'} =$co{'age_string'};2404$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2405}2406return%co;2407}24082409sub parse_commit {2410my($commit_id) =@_;2411my%co;24122413local$/="\0";24142415open my$fd,"-|", git_cmd(),"rev-list",2416"--parents",2417"--header",2418"--max-count=1",2419$commit_id,2420"--",2421or die_error(500,"Open git-rev-list failed");2422%co= parse_commit_text(<$fd>,1);2423close$fd;24242425return%co;2426}24272428sub parse_commits {2429my($commit_id,$maxcount,$skip,$filename,@args) =@_;2430my@cos;24312432$maxcount||=1;2433$skip||=0;24342435local$/="\0";24362437open my$fd,"-|", git_cmd(),"rev-list",2438"--header",2439@args,2440("--max-count=".$maxcount),2441("--skip=".$skip),2442@extra_options,2443$commit_id,2444"--",2445($filename? ($filename) : ())2446or die_error(500,"Open git-rev-list failed");2447while(my$line= <$fd>) {2448my%co= parse_commit_text($line);2449push@cos, \%co;2450}2451close$fd;24522453returnwantarray?@cos: \@cos;2454}24552456# parse line of git-diff-tree "raw" output2457sub parse_difftree_raw_line {2458my$line=shift;2459my%res;24602461# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'2462# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'2463if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {2464$res{'from_mode'} =$1;2465$res{'to_mode'} =$2;2466$res{'from_id'} =$3;2467$res{'to_id'} =$4;2468$res{'status'} =$5;2469$res{'similarity'} =$6;2470if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied2471($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);2472}else{2473$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);2474}2475}2476# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'2477# combined diff (for merge commit)2478elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {2479$res{'nparents'} =length($1);2480$res{'from_mode'} = [split(' ',$2) ];2481$res{'to_mode'} =pop@{$res{'from_mode'}};2482$res{'from_id'} = [split(' ',$3) ];2483$res{'to_id'} =pop@{$res{'from_id'}};2484$res{'status'} = [split('',$4) ];2485$res{'to_file'} = unquote($5);2486}2487# 'c512b523472485aef4fff9e57b229d9d243c967f'2488elsif($line=~m/^([0-9a-fA-F]{40})$/) {2489$res{'commit'} =$1;2490}24912492returnwantarray?%res: \%res;2493}24942495# wrapper: return parsed line of git-diff-tree "raw" output2496# (the argument might be raw line, or parsed info)2497sub parsed_difftree_line {2498my$line_or_ref=shift;24992500if(ref($line_or_ref)eq"HASH") {2501# pre-parsed (or generated by hand)2502return$line_or_ref;2503}else{2504return parse_difftree_raw_line($line_or_ref);2505}2506}25072508# parse line of git-ls-tree output2509sub parse_ls_tree_line ($;%) {2510my$line=shift;2511my%opts=@_;2512my%res;25132514#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2515$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;25162517$res{'mode'} =$1;2518$res{'type'} =$2;2519$res{'hash'} =$3;2520if($opts{'-z'}) {2521$res{'name'} =$4;2522}else{2523$res{'name'} = unquote($4);2524}25252526returnwantarray?%res: \%res;2527}25282529# generates _two_ hashes, references to which are passed as 2 and 3 argument2530sub parse_from_to_diffinfo {2531my($diffinfo,$from,$to,@parents) =@_;25322533if($diffinfo->{'nparents'}) {2534# combined diff2535$from->{'file'} = [];2536$from->{'href'} = [];2537 fill_from_file_info($diffinfo,@parents)2538unlessexists$diffinfo->{'from_file'};2539for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2540$from->{'file'}[$i] =2541defined$diffinfo->{'from_file'}[$i] ?2542$diffinfo->{'from_file'}[$i] :2543$diffinfo->{'to_file'};2544if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file2545$from->{'href'}[$i] = href(action=>"blob",2546 hash_base=>$parents[$i],2547 hash=>$diffinfo->{'from_id'}[$i],2548 file_name=>$from->{'file'}[$i]);2549}else{2550$from->{'href'}[$i] =undef;2551}2552}2553}else{2554# ordinary (not combined) diff2555$from->{'file'} =$diffinfo->{'from_file'};2556if($diffinfo->{'status'}ne"A") {# not new (added) file2557$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,2558 hash=>$diffinfo->{'from_id'},2559 file_name=>$from->{'file'});2560}else{2561delete$from->{'href'};2562}2563}25642565$to->{'file'} =$diffinfo->{'to_file'};2566if(!is_deleted($diffinfo)) {# file exists in result2567$to->{'href'} = href(action=>"blob", hash_base=>$hash,2568 hash=>$diffinfo->{'to_id'},2569 file_name=>$to->{'file'});2570}else{2571delete$to->{'href'};2572}2573}25742575## ......................................................................2576## parse to array of hashes functions25772578sub git_get_heads_list {2579my$limit=shift;2580my@headslist;25812582open my$fd,'-|', git_cmd(),'for-each-ref',2583($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',2584'--format=%(objectname) %(refname) %(subject)%00%(committer)',2585'refs/heads'2586orreturn;2587while(my$line= <$fd>) {2588my%ref_item;25892590chomp$line;2591my($refinfo,$committerinfo) =split(/\0/,$line);2592my($hash,$name,$title) =split(' ',$refinfo,3);2593my($committer,$epoch,$tz) =2594($committerinfo=~/^(.*) ([0-9]+) (.*)$/);2595$ref_item{'fullname'} =$name;2596$name=~s!^refs/heads/!!;25972598$ref_item{'name'} =$name;2599$ref_item{'id'} =$hash;2600$ref_item{'title'} =$title||'(no commit message)';2601$ref_item{'epoch'} =$epoch;2602if($epoch) {2603$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2604}else{2605$ref_item{'age'} ="unknown";2606}26072608push@headslist, \%ref_item;2609}2610close$fd;26112612returnwantarray?@headslist: \@headslist;2613}26142615sub git_get_tags_list {2616my$limit=shift;2617my@tagslist;26182619open my$fd,'-|', git_cmd(),'for-each-ref',2620($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',2621'--format=%(objectname) %(objecttype) %(refname) '.2622'%(*objectname) %(*objecttype) %(subject)%00%(creator)',2623'refs/tags'2624orreturn;2625while(my$line= <$fd>) {2626my%ref_item;26272628chomp$line;2629my($refinfo,$creatorinfo) =split(/\0/,$line);2630my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);2631my($creator,$epoch,$tz) =2632($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);2633$ref_item{'fullname'} =$name;2634$name=~s!^refs/tags/!!;26352636$ref_item{'type'} =$type;2637$ref_item{'id'} =$id;2638$ref_item{'name'} =$name;2639if($typeeq"tag") {2640$ref_item{'subject'} =$title;2641$ref_item{'reftype'} =$reftype;2642$ref_item{'refid'} =$refid;2643}else{2644$ref_item{'reftype'} =$type;2645$ref_item{'refid'} =$id;2646}26472648if($typeeq"tag"||$typeeq"commit") {2649$ref_item{'epoch'} =$epoch;2650if($epoch) {2651$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2652}else{2653$ref_item{'age'} ="unknown";2654}2655}26562657push@tagslist, \%ref_item;2658}2659close$fd;26602661returnwantarray?@tagslist: \@tagslist;2662}26632664## ----------------------------------------------------------------------2665## filesystem-related functions26662667sub get_file_owner {2668my$path=shift;26692670my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);2671my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);2672if(!defined$gcos) {2673returnundef;2674}2675my$owner=$gcos;2676$owner=~s/[,;].*$//;2677return to_utf8($owner);2678}26792680## ......................................................................2681## mimetype related functions26822683sub mimetype_guess_file {2684my$filename=shift;2685my$mimemap=shift;2686-r $mimemaporreturnundef;26872688my%mimemap;2689open(MIME,$mimemap)orreturnundef;2690while(<MIME>) {2691next ifm/^#/;# skip comments2692my($mime,$exts) =split(/\t+/);2693if(defined$exts) {2694my@exts=split(/\s+/,$exts);2695foreachmy$ext(@exts) {2696$mimemap{$ext} =$mime;2697}2698}2699}2700close(MIME);27012702$filename=~/\.([^.]*)$/;2703return$mimemap{$1};2704}27052706sub mimetype_guess {2707my$filename=shift;2708my$mime;2709$filename=~/\./orreturnundef;27102711if($mimetypes_file) {2712my$file=$mimetypes_file;2713if($file!~m!^/!) {# if it is relative path2714# it is relative to project2715$file="$projectroot/$project/$file";2716}2717$mime= mimetype_guess_file($filename,$file);2718}2719$mime||= mimetype_guess_file($filename,'/etc/mime.types');2720return$mime;2721}27222723sub blob_mimetype {2724my$fd=shift;2725my$filename=shift;27262727if($filename) {2728my$mime= mimetype_guess($filename);2729$mimeandreturn$mime;2730}27312732# just in case2733return$default_blob_plain_mimetypeunless$fd;27342735if(-T $fd) {2736return'text/plain';2737}elsif(!$filename) {2738return'application/octet-stream';2739}elsif($filename=~m/\.png$/i) {2740return'image/png';2741}elsif($filename=~m/\.gif$/i) {2742return'image/gif';2743}elsif($filename=~m/\.jpe?g$/i) {2744return'image/jpeg';2745}else{2746return'application/octet-stream';2747}2748}27492750sub blob_contenttype {2751my($fd,$file_name,$type) =@_;27522753$type||= blob_mimetype($fd,$file_name);2754if($typeeq'text/plain'&&defined$default_text_plain_charset) {2755$type.="; charset=$default_text_plain_charset";2756}27572758return$type;2759}27602761## ======================================================================2762## functions printing HTML: header, footer, error page27632764sub git_header_html {2765my$status=shift||"200 OK";2766my$expires=shift;27672768my$title="$site_name";2769if(defined$project) {2770$title.=" - ". to_utf8($project);2771if(defined$action) {2772$title.="/$action";2773if(defined$file_name) {2774$title.=" - ". esc_path($file_name);2775if($actioneq"tree"&&$file_name!~ m|/$|) {2776$title.="/";2777}2778}2779}2780}2781my$content_type;2782# require explicit support from the UA if we are to send the page as2783# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.2784# we have to do this because MSIE sometimes globs '*/*', pretending to2785# support xhtml+xml but choking when it gets what it asked for.2786if(defined$cgi->http('HTTP_ACCEPT') &&2787$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&2788$cgi->Accept('application/xhtml+xml') !=0) {2789$content_type='application/xhtml+xml';2790}else{2791$content_type='text/html';2792}2793print$cgi->header(-type=>$content_type, -charset =>'utf-8',2794-status=>$status, -expires =>$expires);2795my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';2796print<<EOF;2797<?xml version="1.0" encoding="utf-8"?>2798<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">2799<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">2800<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->2801<!-- git core binaries version$git_version-->2802<head>2803<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>2804<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>2805<meta name="robots" content="index, nofollow"/>2806<title>$title</title>2807EOF2808# print out each stylesheet that exist2809if(defined$stylesheet) {2810#provides backwards capability for those people who define style sheet in a config file2811print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";2812}else{2813foreachmy$stylesheet(@stylesheets) {2814next unless$stylesheet;2815print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";2816}2817}2818if(defined$project) {2819my%href_params= get_feed_info();2820if(!exists$href_params{'-title'}) {2821$href_params{'-title'} ='log';2822}28232824foreachmy$formatqw(RSS Atom){2825my$type=lc($format);2826my%link_attr= (2827'-rel'=>'alternate',2828'-title'=>"$project-$href_params{'-title'} -$formatfeed",2829'-type'=>"application/$type+xml"2830);28312832$href_params{'action'} =$type;2833$link_attr{'-href'} = href(%href_params);2834print"<link ".2835"rel=\"$link_attr{'-rel'}\"".2836"title=\"$link_attr{'-title'}\"".2837"href=\"$link_attr{'-href'}\"".2838"type=\"$link_attr{'-type'}\"".2839"/>\n";28402841$href_params{'extra_options'} ='--no-merges';2842$link_attr{'-href'} = href(%href_params);2843$link_attr{'-title'} .=' (no merges)';2844print"<link ".2845"rel=\"$link_attr{'-rel'}\"".2846"title=\"$link_attr{'-title'}\"".2847"href=\"$link_attr{'-href'}\"".2848"type=\"$link_attr{'-type'}\"".2849"/>\n";2850}28512852}else{2853printf('<link rel="alternate" title="%sprojects list" '.2854'href="%s" type="text/plain; charset=utf-8" />'."\n",2855$site_name, href(project=>undef, action=>"project_index"));2856printf('<link rel="alternate" title="%sprojects feeds" '.2857'href="%s" type="text/x-opml" />'."\n",2858$site_name, href(project=>undef, action=>"opml"));2859}2860if(defined$favicon) {2861printqq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n);2862}28632864print"</head>\n".2865"<body>\n";28662867if(-f $site_header) {2868open(my$fd,$site_header);2869print<$fd>;2870close$fd;2871}28722873print"<div class=\"page_header\">\n".2874$cgi->a({-href => esc_url($logo_url),2875-title =>$logo_label},2876qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));2877print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";2878if(defined$project) {2879print$cgi->a({-href => href(action=>"summary")}, esc_html($project));2880if(defined$action) {2881print" /$action";2882}2883print"\n";2884}2885print"</div>\n";28862887my($have_search) = gitweb_check_feature('search');2888if(defined$project&&$have_search) {2889if(!defined$searchtext) {2890$searchtext="";2891}2892my$search_hash;2893if(defined$hash_base) {2894$search_hash=$hash_base;2895}elsif(defined$hash) {2896$search_hash=$hash;2897}else{2898$search_hash="HEAD";2899}2900my$action=$my_uri;2901my($use_pathinfo) = gitweb_check_feature('pathinfo');2902if($use_pathinfo) {2903$action.="/".esc_url($project);2904}2905print$cgi->startform(-method=>"get", -action =>$action) .2906"<div class=\"search\">\n".2907(!$use_pathinfo&&2908$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .2909$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".2910$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".2911$cgi->popup_menu(-name =>'st', -default=>'commit',2912-values=> ['commit','grep','author','committer','pickaxe']) .2913$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .2914" search:\n",2915$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".2916"<span title=\"Extended regular expression\">".2917$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',2918-checked =>$search_use_regexp) .2919"</span>".2920"</div>".2921$cgi->end_form() ."\n";2922}2923}29242925sub git_footer_html {2926my$feed_class='rss_logo';29272928print"<div class=\"page_footer\">\n";2929if(defined$project) {2930my$descr= git_get_project_description($project);2931if(defined$descr) {2932print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";2933}29342935my%href_params= get_feed_info();2936if(!%href_params) {2937$feed_class.=' generic';2938}2939$href_params{'-title'} ||='log';29402941foreachmy$formatqw(RSS Atom){2942$href_params{'action'} =lc($format);2943print$cgi->a({-href => href(%href_params),2944-title =>"$href_params{'-title'}$formatfeed",2945-class=>$feed_class},$format)."\n";2946}29472948}else{2949print$cgi->a({-href => href(project=>undef, action=>"opml"),2950-class=>$feed_class},"OPML") ." ";2951print$cgi->a({-href => href(project=>undef, action=>"project_index"),2952-class=>$feed_class},"TXT") ."\n";2953}2954print"</div>\n";# class="page_footer"29552956if(-f $site_footer) {2957open(my$fd,$site_footer);2958print<$fd>;2959close$fd;2960}29612962print"</body>\n".2963"</html>";2964}29652966# die_error(<http_status_code>, <error_message>)2967# Example: die_error(404, 'Hash not found')2968# By convention, use the following status codes (as defined in RFC 2616):2969# 400: Invalid or missing CGI parameters, or2970# requested object exists but has wrong type.2971# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on2972# this server or project.2973# 404: Requested object/revision/project doesn't exist.2974# 500: The server isn't configured properly, or2975# an internal error occurred (e.g. failed assertions caused by bugs), or2976# an unknown error occurred (e.g. the git binary died unexpectedly).2977sub die_error {2978my$status=shift||500;2979my$error=shift||"Internal server error";29802981my%http_responses= (400=>'400 Bad Request',2982403=>'403 Forbidden',2983404=>'404 Not Found',2984500=>'500 Internal Server Error');2985 git_header_html($http_responses{$status});2986print<<EOF;2987<div class="page_body">2988<br /><br />2989$status-$error2990<br />2991</div>2992EOF2993 git_footer_html();2994exit;2995}29962997## ----------------------------------------------------------------------2998## functions printing or outputting HTML: navigation29993000sub git_print_page_nav {3001my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3002$extra=''if!defined$extra;# pager or formats30033004my@navs=qw(summary shortlog log commit commitdiff tree);3005if($suppress) {3006@navs=grep{$_ne$suppress}@navs;3007}30083009my%arg=map{$_=> {action=>$_} }@navs;3010if(defined$head) {3011for(qw(commit commitdiff)) {3012$arg{$_}{'hash'} =$head;3013}3014if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3015for(qw(shortlog log)) {3016$arg{$_}{'hash'} =$head;3017}3018}3019}30203021$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3022$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;30233024my@actions= gitweb_check_feature('actions');3025while(@actions) {3026my($label,$link,$pos) = (shift(@actions),shift(@actions),shift(@actions));3027@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3028# munch munch3029$link=~ s#%n#$project#g;3030$link=~ s#%f#$git_dir#g;3031$treehead?$link=~ s#%h#$treehead#g : $link =~ s#%h##g;3032$treebase?$link=~ s#%b#$treebase#g : $link =~ s#%b##g;3033$arg{$label}{'_href'} =$link;3034}30353036print"<div class=\"page_nav\">\n".3037(join" | ",3038map{$_eq$current?3039$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3040}@navs);3041print"<br/>\n$extra<br/>\n".3042"</div>\n";3043}30443045sub format_paging_nav {3046my($action,$hash,$head,$page,$has_next_link) =@_;3047my$paging_nav;304830493050if($hashne$head||$page) {3051$paging_nav.=$cgi->a({-href => href(action=>$action)},"HEAD");3052}else{3053$paging_nav.="HEAD";3054}30553056if($page>0) {3057$paging_nav.=" ⋅ ".3058$cgi->a({-href => href(-replay=>1, page=>$page-1),3059-accesskey =>"p", -title =>"Alt-p"},"prev");3060}else{3061$paging_nav.=" ⋅ prev";3062}30633064if($has_next_link) {3065$paging_nav.=" ⋅ ".3066$cgi->a({-href => href(-replay=>1, page=>$page+1),3067-accesskey =>"n", -title =>"Alt-n"},"next");3068}else{3069$paging_nav.=" ⋅ next";3070}30713072return$paging_nav;3073}30743075## ......................................................................3076## functions printing or outputting HTML: div30773078sub git_print_header_div {3079my($action,$title,$hash,$hash_base) =@_;3080my%args= ();30813082$args{'action'} =$action;3083$args{'hash'} =$hashif$hash;3084$args{'hash_base'} =$hash_baseif$hash_base;30853086print"<div class=\"header\">\n".3087$cgi->a({-href => href(%args), -class=>"title"},3088$title?$title:$action) .3089"\n</div>\n";3090}30913092#sub git_print_authorship (\%) {3093sub git_print_authorship {3094my$co=shift;30953096my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3097print"<div class=\"author_date\">".3098 esc_html($co->{'author_name'}) .3099" [$ad{'rfc2822'}";3100if($ad{'hour_local'} <6) {3101printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3102$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});3103}else{3104printf(" (%02d:%02d%s)",3105$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});3106}3107print"]</div>\n";3108}31093110sub git_print_page_path {3111my$name=shift;3112my$type=shift;3113my$hb=shift;311431153116print"<div class=\"page_path\">";3117print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),3118-title =>'tree root'}, to_utf8("[$project]"));3119print" / ";3120if(defined$name) {3121my@dirname=split'/',$name;3122my$basename=pop@dirname;3123my$fullname='';31243125foreachmy$dir(@dirname) {3126$fullname.= ($fullname?'/':'') .$dir;3127print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,3128 hash_base=>$hb),3129-title =>$fullname}, esc_path($dir));3130print" / ";3131}3132if(defined$type&&$typeeq'blob') {3133print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,3134 hash_base=>$hb),3135-title =>$name}, esc_path($basename));3136}elsif(defined$type&&$typeeq'tree') {3137print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,3138 hash_base=>$hb),3139-title =>$name}, esc_path($basename));3140print" / ";3141}else{3142print esc_path($basename);3143}3144}3145print"<br/></div>\n";3146}31473148# sub git_print_log (\@;%) {3149sub git_print_log ($;%) {3150my$log=shift;3151my%opts=@_;31523153if($opts{'-remove_title'}) {3154# remove title, i.e. first line of log3155shift@$log;3156}3157# remove leading empty lines3158while(defined$log->[0] &&$log->[0]eq"") {3159shift@$log;3160}31613162# print log3163my$signoff=0;3164my$empty=0;3165foreachmy$line(@$log) {3166if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {3167$signoff=1;3168$empty=0;3169if(!$opts{'-remove_signoff'}) {3170print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";3171next;3172}else{3173# remove signoff lines3174next;3175}3176}else{3177$signoff=0;3178}31793180# print only one empty line3181# do not print empty line after signoff3182if($lineeq"") {3183next if($empty||$signoff);3184$empty=1;3185}else{3186$empty=0;3187}31883189print format_log_line_html($line) ."<br/>\n";3190}31913192if($opts{'-final_empty_line'}) {3193# end with single empty line3194print"<br/>\n"unless$empty;3195}3196}31973198# return link target (what link points to)3199sub git_get_link_target {3200my$hash=shift;3201my$link_target;32023203# read link3204open my$fd,"-|", git_cmd(),"cat-file","blob",$hash3205orreturn;3206{3207local$/;3208$link_target= <$fd>;3209}3210close$fd3211orreturn;32123213return$link_target;3214}32153216# given link target, and the directory (basedir) the link is in,3217# return target of link relative to top directory (top tree);3218# return undef if it is not possible (including absolute links).3219sub normalize_link_target {3220my($link_target,$basedir,$hash_base) =@_;32213222# we can normalize symlink target only if $hash_base is provided3223return unless$hash_base;32243225# absolute symlinks (beginning with '/') cannot be normalized3226return if(substr($link_target,0,1)eq'/');32273228# normalize link target to path from top (root) tree (dir)3229my$path;3230if($basedir) {3231$path=$basedir.'/'.$link_target;3232}else{3233# we are in top (root) tree (dir)3234$path=$link_target;3235}32363237# remove //, /./, and /../3238my@path_parts;3239foreachmy$part(split('/',$path)) {3240# discard '.' and ''3241next if(!$part||$parteq'.');3242# handle '..'3243if($parteq'..') {3244if(@path_parts) {3245pop@path_parts;3246}else{3247# link leads outside repository (outside top dir)3248return;3249}3250}else{3251push@path_parts,$part;3252}3253}3254$path=join('/',@path_parts);32553256return$path;3257}32583259# print tree entry (row of git_tree), but without encompassing <tr> element3260sub git_print_tree_entry {3261my($t,$basedir,$hash_base,$have_blame) =@_;32623263my%base_key= ();3264$base_key{'hash_base'} =$hash_baseifdefined$hash_base;32653266# The format of a table row is: mode list link. Where mode is3267# the mode of the entry, list is the name of the entry, an href,3268# and link is the action links of the entry.32693270print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";3271if($t->{'type'}eq"blob") {3272print"<td class=\"list\">".3273$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3274 file_name=>"$basedir$t->{'name'}",%base_key),3275-class=>"list"}, esc_path($t->{'name'}));3276if(S_ISLNK(oct$t->{'mode'})) {3277my$link_target= git_get_link_target($t->{'hash'});3278if($link_target) {3279my$norm_target= normalize_link_target($link_target,$basedir,$hash_base);3280if(defined$norm_target) {3281print" -> ".3282$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,3283 file_name=>$norm_target),3284-title =>$norm_target}, esc_path($link_target));3285}else{3286print" -> ". esc_path($link_target);3287}3288}3289}3290print"</td>\n";3291print"<td class=\"link\">";3292print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3293 file_name=>"$basedir$t->{'name'}",%base_key)},3294"blob");3295if($have_blame) {3296print" | ".3297$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},3298 file_name=>"$basedir$t->{'name'}",%base_key)},3299"blame");3300}3301if(defined$hash_base) {3302print" | ".3303$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3304 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},3305"history");3306}3307print" | ".3308$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,3309 file_name=>"$basedir$t->{'name'}")},3310"raw");3311print"</td>\n";33123313}elsif($t->{'type'}eq"tree") {3314print"<td class=\"list\">";3315print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3316 file_name=>"$basedir$t->{'name'}",%base_key)},3317 esc_path($t->{'name'}));3318print"</td>\n";3319print"<td class=\"link\">";3320print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3321 file_name=>"$basedir$t->{'name'}",%base_key)},3322"tree");3323if(defined$hash_base) {3324print" | ".3325$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3326 file_name=>"$basedir$t->{'name'}")},3327"history");3328}3329print"</td>\n";3330}else{3331# unknown object: we can only present history for it3332# (this includes 'commit' object, i.e. submodule support)3333print"<td class=\"list\">".3334 esc_path($t->{'name'}) .3335"</td>\n";3336print"<td class=\"link\">";3337if(defined$hash_base) {3338print$cgi->a({-href => href(action=>"history",3339 hash_base=>$hash_base,3340 file_name=>"$basedir$t->{'name'}")},3341"history");3342}3343print"</td>\n";3344}3345}33463347## ......................................................................3348## functions printing large fragments of HTML33493350# get pre-image filenames for merge (combined) diff3351sub fill_from_file_info {3352my($diff,@parents) =@_;33533354$diff->{'from_file'} = [ ];3355$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;3356for(my$i=0;$i<$diff->{'nparents'};$i++) {3357if($diff->{'status'}[$i]eq'R'||3358$diff->{'status'}[$i]eq'C') {3359$diff->{'from_file'}[$i] =3360 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);3361}3362}33633364return$diff;3365}33663367# is current raw difftree line of file deletion3368sub is_deleted {3369my$diffinfo=shift;33703371return$diffinfo->{'to_id'}eq('0' x 40);3372}33733374# does patch correspond to [previous] difftree raw line3375# $diffinfo - hashref of parsed raw diff format3376# $patchinfo - hashref of parsed patch diff format3377# (the same keys as in $diffinfo)3378sub is_patch_split {3379my($diffinfo,$patchinfo) =@_;33803381returndefined$diffinfo&&defined$patchinfo3382&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};3383}338433853386sub git_difftree_body {3387my($difftree,$hash,@parents) =@_;3388my($parent) =$parents[0];3389my($have_blame) = gitweb_check_feature('blame');3390print"<div class=\"list_head\">\n";3391if($#{$difftree} >10) {3392print(($#{$difftree} +1) ." files changed:\n");3393}3394print"</div>\n";33953396print"<table class=\"".3397(@parents>1?"combined ":"") .3398"diff_tree\">\n";33993400# header only for combined diff in 'commitdiff' view3401my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';3402if($has_header) {3403# table header3404print"<thead><tr>\n".3405"<th></th><th></th>\n";# filename, patchN link3406for(my$i=0;$i<@parents;$i++) {3407my$par=$parents[$i];3408print"<th>".3409$cgi->a({-href => href(action=>"commitdiff",3410 hash=>$hash, hash_parent=>$par),3411-title =>'commitdiff to parent number '.3412($i+1) .': '.substr($par,0,7)},3413$i+1) .3414" </th>\n";3415}3416print"</tr></thead>\n<tbody>\n";3417}34183419my$alternate=1;3420my$patchno=0;3421foreachmy$line(@{$difftree}) {3422my$diff= parsed_difftree_line($line);34233424if($alternate) {3425print"<tr class=\"dark\">\n";3426}else{3427print"<tr class=\"light\">\n";3428}3429$alternate^=1;34303431if(exists$diff->{'nparents'}) {# combined diff34323433 fill_from_file_info($diff,@parents)3434unlessexists$diff->{'from_file'};34353436if(!is_deleted($diff)) {3437# file exists in the result (child) commit3438print"<td>".3439$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3440 file_name=>$diff->{'to_file'},3441 hash_base=>$hash),3442-class=>"list"}, esc_path($diff->{'to_file'})) .3443"</td>\n";3444}else{3445print"<td>".3446 esc_path($diff->{'to_file'}) .3447"</td>\n";3448}34493450if($actioneq'commitdiff') {3451# link to patch3452$patchno++;3453print"<td class=\"link\">".3454$cgi->a({-href =>"#patch$patchno"},"patch") .3455" | ".3456"</td>\n";3457}34583459my$has_history=0;3460my$not_deleted=0;3461for(my$i=0;$i<$diff->{'nparents'};$i++) {3462my$hash_parent=$parents[$i];3463my$from_hash=$diff->{'from_id'}[$i];3464my$from_path=$diff->{'from_file'}[$i];3465my$status=$diff->{'status'}[$i];34663467$has_history||= ($statusne'A');3468$not_deleted||= ($statusne'D');34693470if($statuseq'A') {3471print"<td class=\"link\"align=\"right\"> | </td>\n";3472}elsif($statuseq'D') {3473print"<td class=\"link\">".3474$cgi->a({-href => href(action=>"blob",3475 hash_base=>$hash,3476 hash=>$from_hash,3477 file_name=>$from_path)},3478"blob". ($i+1)) .3479" | </td>\n";3480}else{3481if($diff->{'to_id'}eq$from_hash) {3482print"<td class=\"link nochange\">";3483}else{3484print"<td class=\"link\">";3485}3486print$cgi->a({-href => href(action=>"blobdiff",3487 hash=>$diff->{'to_id'},3488 hash_parent=>$from_hash,3489 hash_base=>$hash,3490 hash_parent_base=>$hash_parent,3491 file_name=>$diff->{'to_file'},3492 file_parent=>$from_path)},3493"diff". ($i+1)) .3494" | </td>\n";3495}3496}34973498print"<td class=\"link\">";3499if($not_deleted) {3500print$cgi->a({-href => href(action=>"blob",3501 hash=>$diff->{'to_id'},3502 file_name=>$diff->{'to_file'},3503 hash_base=>$hash)},3504"blob");3505print" | "if($has_history);3506}3507if($has_history) {3508print$cgi->a({-href => href(action=>"history",3509 file_name=>$diff->{'to_file'},3510 hash_base=>$hash)},3511"history");3512}3513print"</td>\n";35143515print"</tr>\n";3516next;# instead of 'else' clause, to avoid extra indent3517}3518# else ordinary diff35193520my($to_mode_oct,$to_mode_str,$to_file_type);3521my($from_mode_oct,$from_mode_str,$from_file_type);3522if($diff->{'to_mode'}ne('0' x 6)) {3523$to_mode_oct=oct$diff->{'to_mode'};3524if(S_ISREG($to_mode_oct)) {# only for regular file3525$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits3526}3527$to_file_type= file_type($diff->{'to_mode'});3528}3529if($diff->{'from_mode'}ne('0' x 6)) {3530$from_mode_oct=oct$diff->{'from_mode'};3531if(S_ISREG($to_mode_oct)) {# only for regular file3532$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits3533}3534$from_file_type= file_type($diff->{'from_mode'});3535}35363537if($diff->{'status'}eq"A") {# created3538my$mode_chng="<span class=\"file_status new\">[new$to_file_type";3539$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;3540$mode_chng.="]</span>";3541print"<td>";3542print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3543 hash_base=>$hash, file_name=>$diff->{'file'}),3544-class=>"list"}, esc_path($diff->{'file'}));3545print"</td>\n";3546print"<td>$mode_chng</td>\n";3547print"<td class=\"link\">";3548if($actioneq'commitdiff') {3549# link to patch3550$patchno++;3551print$cgi->a({-href =>"#patch$patchno"},"patch");3552print" | ";3553}3554print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3555 hash_base=>$hash, file_name=>$diff->{'file'})},3556"blob");3557print"</td>\n";35583559}elsif($diff->{'status'}eq"D") {# deleted3560my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";3561print"<td>";3562print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3563 hash_base=>$parent, file_name=>$diff->{'file'}),3564-class=>"list"}, esc_path($diff->{'file'}));3565print"</td>\n";3566print"<td>$mode_chng</td>\n";3567print"<td class=\"link\">";3568if($actioneq'commitdiff') {3569# link to patch3570$patchno++;3571print$cgi->a({-href =>"#patch$patchno"},"patch");3572print" | ";3573}3574print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3575 hash_base=>$parent, file_name=>$diff->{'file'})},3576"blob") ." | ";3577if($have_blame) {3578print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,3579 file_name=>$diff->{'file'})},3580"blame") ." | ";3581}3582print$cgi->a({-href => href(action=>"history", hash_base=>$parent,3583 file_name=>$diff->{'file'})},3584"history");3585print"</td>\n";35863587}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed3588my$mode_chnge="";3589if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3590$mode_chnge="<span class=\"file_status mode_chnge\">[changed";3591if($from_file_typene$to_file_type) {3592$mode_chnge.=" from$from_file_typeto$to_file_type";3593}3594if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {3595if($from_mode_str&&$to_mode_str) {3596$mode_chnge.=" mode:$from_mode_str->$to_mode_str";3597}elsif($to_mode_str) {3598$mode_chnge.=" mode:$to_mode_str";3599}3600}3601$mode_chnge.="]</span>\n";3602}3603print"<td>";3604print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3605 hash_base=>$hash, file_name=>$diff->{'file'}),3606-class=>"list"}, esc_path($diff->{'file'}));3607print"</td>\n";3608print"<td>$mode_chnge</td>\n";3609print"<td class=\"link\">";3610if($actioneq'commitdiff') {3611# link to patch3612$patchno++;3613print$cgi->a({-href =>"#patch$patchno"},"patch") .3614" | ";3615}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3616# "commit" view and modified file (not onlu mode changed)3617print$cgi->a({-href => href(action=>"blobdiff",3618 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3619 hash_base=>$hash, hash_parent_base=>$parent,3620 file_name=>$diff->{'file'})},3621"diff") .3622" | ";3623}3624print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3625 hash_base=>$hash, file_name=>$diff->{'file'})},3626"blob") ." | ";3627if($have_blame) {3628print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3629 file_name=>$diff->{'file'})},3630"blame") ." | ";3631}3632print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3633 file_name=>$diff->{'file'})},3634"history");3635print"</td>\n";36363637}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied3638my%status_name= ('R'=>'moved','C'=>'copied');3639my$nstatus=$status_name{$diff->{'status'}};3640my$mode_chng="";3641if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3642# mode also for directories, so we cannot use $to_mode_str3643$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);3644}3645print"<td>".3646$cgi->a({-href => href(action=>"blob", hash_base=>$hash,3647 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),3648-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".3649"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".3650$cgi->a({-href => href(action=>"blob", hash_base=>$parent,3651 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),3652-class=>"list"}, esc_path($diff->{'from_file'})) .3653" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".3654"<td class=\"link\">";3655if($actioneq'commitdiff') {3656# link to patch3657$patchno++;3658print$cgi->a({-href =>"#patch$patchno"},"patch") .3659" | ";3660}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3661# "commit" view and modified file (not only pure rename or copy)3662print$cgi->a({-href => href(action=>"blobdiff",3663 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3664 hash_base=>$hash, hash_parent_base=>$parent,3665 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},3666"diff") .3667" | ";3668}3669print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3670 hash_base=>$parent, file_name=>$diff->{'to_file'})},3671"blob") ." | ";3672if($have_blame) {3673print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3674 file_name=>$diff->{'to_file'})},3675"blame") ." | ";3676}3677print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3678 file_name=>$diff->{'to_file'})},3679"history");3680print"</td>\n";36813682}# we should not encounter Unmerged (U) or Unknown (X) status3683print"</tr>\n";3684}3685print"</tbody>"if$has_header;3686print"</table>\n";3687}36883689sub git_patchset_body {3690my($fd,$difftree,$hash,@hash_parents) =@_;3691my($hash_parent) =$hash_parents[0];36923693my$is_combined= (@hash_parents>1);3694my$patch_idx=0;3695my$patch_number=0;3696my$patch_line;3697my$diffinfo;3698my$to_name;3699my(%from,%to);37003701print"<div class=\"patchset\">\n";37023703# skip to first patch3704while($patch_line= <$fd>) {3705chomp$patch_line;37063707last if($patch_line=~m/^diff /);3708}37093710 PATCH:3711while($patch_line) {37123713# parse "git diff" header line3714if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {3715# $1 is from_name, which we do not use3716$to_name= unquote($2);3717$to_name=~s!^b/!!;3718}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {3719# $1 is 'cc' or 'combined', which we do not use3720$to_name= unquote($2);3721}else{3722$to_name=undef;3723}37243725# check if current patch belong to current raw line3726# and parse raw git-diff line if needed3727if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {3728# this is continuation of a split patch3729print"<div class=\"patch cont\">\n";3730}else{3731# advance raw git-diff output if needed3732$patch_idx++ifdefined$diffinfo;37333734# read and prepare patch information3735$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);37363737# compact combined diff output can have some patches skipped3738# find which patch (using pathname of result) we are at now;3739if($is_combined) {3740while($to_namene$diffinfo->{'to_file'}) {3741print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".3742 format_diff_cc_simplified($diffinfo,@hash_parents) .3743"</div>\n";# class="patch"37443745$patch_idx++;3746$patch_number++;37473748last if$patch_idx>$#$difftree;3749$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);3750}3751}37523753# modifies %from, %to hashes3754 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);37553756# this is first patch for raw difftree line with $patch_idx index3757# we index @$difftree array from 0, but number patches from 13758print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";3759}37603761# git diff header3762#assert($patch_line =~ m/^diff /) if DEBUG;3763#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed3764$patch_number++;3765# print "git diff" header3766print format_git_diff_header_line($patch_line,$diffinfo,3767 \%from, \%to);37683769# print extended diff header3770print"<div class=\"diff extended_header\">\n";3771 EXTENDED_HEADER:3772while($patch_line= <$fd>) {3773chomp$patch_line;37743775last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);37763777print format_extended_diff_header_line($patch_line,$diffinfo,3778 \%from, \%to);3779}3780print"</div>\n";# class="diff extended_header"37813782# from-file/to-file diff header3783if(!$patch_line) {3784print"</div>\n";# class="patch"3785last PATCH;3786}3787next PATCH if($patch_line=~m/^diff /);3788#assert($patch_line =~ m/^---/) if DEBUG;37893790my$last_patch_line=$patch_line;3791$patch_line= <$fd>;3792chomp$patch_line;3793#assert($patch_line =~ m/^\+\+\+/) if DEBUG;37943795print format_diff_from_to_header($last_patch_line,$patch_line,3796$diffinfo, \%from, \%to,3797@hash_parents);37983799# the patch itself3800 LINE:3801while($patch_line= <$fd>) {3802chomp$patch_line;38033804next PATCH if($patch_line=~m/^diff /);38053806print format_diff_line($patch_line, \%from, \%to);3807}38083809}continue{3810print"</div>\n";# class="patch"3811}38123813# for compact combined (--cc) format, with chunk and patch simpliciaction3814# patchset might be empty, but there might be unprocessed raw lines3815for(++$patch_idxif$patch_number>0;3816$patch_idx<@$difftree;3817++$patch_idx) {3818# read and prepare patch information3819$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);38203821# generate anchor for "patch" links in difftree / whatchanged part3822print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".3823 format_diff_cc_simplified($diffinfo,@hash_parents) .3824"</div>\n";# class="patch"38253826$patch_number++;3827}38283829if($patch_number==0) {3830if(@hash_parents>1) {3831print"<div class=\"diff nodifferences\">Trivial merge</div>\n";3832}else{3833print"<div class=\"diff nodifferences\">No differences found</div>\n";3834}3835}38363837print"</div>\n";# class="patchset"3838}38393840# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .38413842# fills project list info (age, description, owner, forks) for each3843# project in the list, removing invalid projects from returned list3844# NOTE: modifies $projlist, but does not remove entries from it3845sub fill_project_list_info {3846my($projlist,$check_forks) =@_;3847my@projects;38483849my$show_ctags= gitweb_check_feature('ctags');3850 PROJECT:3851foreachmy$pr(@$projlist) {3852my(@activity) = git_get_last_activity($pr->{'path'});3853unless(@activity) {3854next PROJECT;3855}3856($pr->{'age'},$pr->{'age_string'}) =@activity;3857if(!defined$pr->{'descr'}) {3858my$descr= git_get_project_description($pr->{'path'}) ||"";3859$descr= to_utf8($descr);3860$pr->{'descr_long'} =$descr;3861$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);3862}3863if(!defined$pr->{'owner'}) {3864$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";3865}3866if($check_forks) {3867my$pname=$pr->{'path'};3868if(($pname=~s/\.git$//) &&3869($pname!~/\/$/) &&3870(-d "$projectroot/$pname")) {3871$pr->{'forks'} ="-d$projectroot/$pname";3872}else{3873$pr->{'forks'} =0;3874}3875}3876$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});3877push@projects,$pr;3878}38793880return@projects;3881}38823883# print 'sort by' <th> element, generating 'sort by $name' replay link3884# if that order is not selected3885sub print_sort_th {3886my($name,$order,$header) =@_;3887$header||=ucfirst($name);38883889if($ordereq$name) {3890print"<th>$header</th>\n";3891}else{3892print"<th>".3893$cgi->a({-href => href(-replay=>1, order=>$name),3894-class=>"header"},$header) .3895"</th>\n";3896}3897}38983899sub git_project_list_body {3900# actually uses global variable $project3901my($projlist,$order,$from,$to,$extra,$no_header) =@_;39023903my($check_forks) = gitweb_check_feature('forks');3904my@projects= fill_project_list_info($projlist,$check_forks);39053906$order||=$default_projects_order;3907$from=0unlessdefined$from;3908$to=$#projectsif(!defined$to||$#projects<$to);39093910my%order_info= (3911 project => { key =>'path', type =>'str'},3912 descr => { key =>'descr_long', type =>'str'},3913 owner => { key =>'owner', type =>'str'},3914 age => { key =>'age', type =>'num'}3915);3916my$oi=$order_info{$order};3917if($oi->{'type'}eq'str') {3918@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;3919}else{3920@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;3921}39223923my$show_ctags= gitweb_check_feature('ctags');3924if($show_ctags) {3925my%ctags;3926foreachmy$p(@projects) {3927foreachmy$ct(keys%{$p->{'ctags'}}) {3928$ctags{$ct} +=$p->{'ctags'}->{$ct};3929}3930}3931my$cloud= git_populate_project_tagcloud(\%ctags);3932print git_show_project_tagcloud($cloud,64);3933}39343935print"<table class=\"project_list\">\n";3936unless($no_header) {3937print"<tr>\n";3938if($check_forks) {3939print"<th></th>\n";3940}3941 print_sort_th('project',$order,'Project');3942 print_sort_th('descr',$order,'Description');3943 print_sort_th('owner',$order,'Owner');3944 print_sort_th('age',$order,'Last Change');3945print"<th></th>\n".# for links3946"</tr>\n";3947}3948my$alternate=1;3949my$tagfilter=$cgi->param('by_tag');3950for(my$i=$from;$i<=$to;$i++) {3951my$pr=$projects[$i];39523953next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};3954next if$searchtextand not$pr->{'path'} =~/$searchtext/3955and not$pr->{'descr_long'} =~/$searchtext/;3956# Weed out forks or non-matching entries of search3957if($check_forks) {3958my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;3959$forkbase="^$forkbase"if$forkbase;3960next ifnot$searchtextand not$tagfilterand$show_ctags3961and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe3962}39633964if($alternate) {3965print"<tr class=\"dark\">\n";3966}else{3967print"<tr class=\"light\">\n";3968}3969$alternate^=1;3970if($check_forks) {3971print"<td>";3972if($pr->{'forks'}) {3973print"<!--$pr->{'forks'} -->\n";3974print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");3975}3976print"</td>\n";3977}3978print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),3979-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".3980"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),3981-class=>"list", -title =>$pr->{'descr_long'}},3982 esc_html($pr->{'descr'})) ."</td>\n".3983"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";3984print"<td class=\"". age_class($pr->{'age'}) ."\">".3985(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".3986"<td class=\"link\">".3987$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".3988$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".3989$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".3990$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .3991($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .3992"</td>\n".3993"</tr>\n";3994}3995if(defined$extra) {3996print"<tr>\n";3997if($check_forks) {3998print"<td></td>\n";3999}4000print"<td colspan=\"5\">$extra</td>\n".4001"</tr>\n";4002}4003print"</table>\n";4004}40054006sub git_shortlog_body {4007# uses global variable $project4008my($commitlist,$from,$to,$refs,$extra) =@_;40094010$from=0unlessdefined$from;4011$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);40124013print"<table class=\"shortlog\">\n";4014my$alternate=1;4015for(my$i=$from;$i<=$to;$i++) {4016my%co= %{$commitlist->[$i]};4017my$commit=$co{'id'};4018my$ref= format_ref_marker($refs,$commit);4019if($alternate) {4020print"<tr class=\"dark\">\n";4021}else{4022print"<tr class=\"light\">\n";4023}4024$alternate^=1;4025my$author= chop_and_escape_str($co{'author_name'},10);4026# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4027print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4028"<td><i>".$author."</i></td>\n".4029"<td>";4030print format_subject_html($co{'title'},$co{'title_short'},4031 href(action=>"commit", hash=>$commit),$ref);4032print"</td>\n".4033"<td class=\"link\">".4034$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4035$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4036$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4037my$snapshot_links= format_snapshot_links($commit);4038if(defined$snapshot_links) {4039print" | ".$snapshot_links;4040}4041print"</td>\n".4042"</tr>\n";4043}4044if(defined$extra) {4045print"<tr>\n".4046"<td colspan=\"4\">$extra</td>\n".4047"</tr>\n";4048}4049print"</table>\n";4050}40514052sub git_history_body {4053# Warning: assumes constant type (blob or tree) during history4054my($commitlist,$from,$to,$refs,$hash_base,$ftype,$extra) =@_;40554056$from=0unlessdefined$from;4057$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});40584059print"<table class=\"history\">\n";4060my$alternate=1;4061for(my$i=$from;$i<=$to;$i++) {4062my%co= %{$commitlist->[$i]};4063if(!%co) {4064next;4065}4066my$commit=$co{'id'};40674068my$ref= format_ref_marker($refs,$commit);40694070if($alternate) {4071print"<tr class=\"dark\">\n";4072}else{4073print"<tr class=\"light\">\n";4074}4075$alternate^=1;4076# shortlog uses chop_str($co{'author_name'}, 10)4077my$author= chop_and_escape_str($co{'author_name'},15,3);4078print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4079"<td><i>".$author."</i></td>\n".4080"<td>";4081# originally git_history used chop_str($co{'title'}, 50)4082print format_subject_html($co{'title'},$co{'title_short'},4083 href(action=>"commit", hash=>$commit),$ref);4084print"</td>\n".4085"<td class=\"link\">".4086$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".4087$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");40884089if($ftypeeq'blob') {4090my$blob_current= git_get_hash_by_path($hash_base,$file_name);4091my$blob_parent= git_get_hash_by_path($commit,$file_name);4092if(defined$blob_current&&defined$blob_parent&&4093$blob_currentne$blob_parent) {4094print" | ".4095$cgi->a({-href => href(action=>"blobdiff",4096 hash=>$blob_current, hash_parent=>$blob_parent,4097 hash_base=>$hash_base, hash_parent_base=>$commit,4098 file_name=>$file_name)},4099"diff to current");4100}4101}4102print"</td>\n".4103"</tr>\n";4104}4105if(defined$extra) {4106print"<tr>\n".4107"<td colspan=\"4\">$extra</td>\n".4108"</tr>\n";4109}4110print"</table>\n";4111}41124113sub git_tags_body {4114# uses global variable $project4115my($taglist,$from,$to,$extra) =@_;4116$from=0unlessdefined$from;4117$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);41184119print"<table class=\"tags\">\n";4120my$alternate=1;4121for(my$i=$from;$i<=$to;$i++) {4122my$entry=$taglist->[$i];4123my%tag=%$entry;4124my$comment=$tag{'subject'};4125my$comment_short;4126if(defined$comment) {4127$comment_short= chop_str($comment,30,5);4128}4129if($alternate) {4130print"<tr class=\"dark\">\n";4131}else{4132print"<tr class=\"light\">\n";4133}4134$alternate^=1;4135if(defined$tag{'age'}) {4136print"<td><i>$tag{'age'}</i></td>\n";4137}else{4138print"<td></td>\n";4139}4140print"<td>".4141$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),4142-class=>"list name"}, esc_html($tag{'name'})) .4143"</td>\n".4144"<td>";4145if(defined$comment) {4146print format_subject_html($comment,$comment_short,4147 href(action=>"tag", hash=>$tag{'id'}));4148}4149print"</td>\n".4150"<td class=\"selflink\">";4151if($tag{'type'}eq"tag") {4152print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");4153}else{4154print" ";4155}4156print"</td>\n".4157"<td class=\"link\">"." | ".4158$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});4159if($tag{'reftype'}eq"commit") {4160print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .4161" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");4162}elsif($tag{'reftype'}eq"blob") {4163print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");4164}4165print"</td>\n".4166"</tr>";4167}4168if(defined$extra) {4169print"<tr>\n".4170"<td colspan=\"5\">$extra</td>\n".4171"</tr>\n";4172}4173print"</table>\n";4174}41754176sub git_heads_body {4177# uses global variable $project4178my($headlist,$head,$from,$to,$extra) =@_;4179$from=0unlessdefined$from;4180$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);41814182print"<table class=\"heads\">\n";4183my$alternate=1;4184for(my$i=$from;$i<=$to;$i++) {4185my$entry=$headlist->[$i];4186my%ref=%$entry;4187my$curr=$ref{'id'}eq$head;4188if($alternate) {4189print"<tr class=\"dark\">\n";4190}else{4191print"<tr class=\"light\">\n";4192}4193$alternate^=1;4194print"<td><i>$ref{'age'}</i></td>\n".4195($curr?"<td class=\"current_head\">":"<td>") .4196$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),4197-class=>"list name"},esc_html($ref{'name'})) .4198"</td>\n".4199"<td class=\"link\">".4200$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".4201$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".4202$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'name'})},"tree") .4203"</td>\n".4204"</tr>";4205}4206if(defined$extra) {4207print"<tr>\n".4208"<td colspan=\"3\">$extra</td>\n".4209"</tr>\n";4210}4211print"</table>\n";4212}42134214sub git_search_grep_body {4215my($commitlist,$from,$to,$extra) =@_;4216$from=0unlessdefined$from;4217$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);42184219print"<table class=\"commit_search\">\n";4220my$alternate=1;4221for(my$i=$from;$i<=$to;$i++) {4222my%co= %{$commitlist->[$i]};4223if(!%co) {4224next;4225}4226my$commit=$co{'id'};4227if($alternate) {4228print"<tr class=\"dark\">\n";4229}else{4230print"<tr class=\"light\">\n";4231}4232$alternate^=1;4233my$author= chop_and_escape_str($co{'author_name'},15,5);4234print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4235"<td><i>".$author."</i></td>\n".4236"<td>".4237$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),4238-class=>"list subject"},4239 chop_and_escape_str($co{'title'},50) ."<br/>");4240my$comment=$co{'comment'};4241foreachmy$line(@$comment) {4242if($line=~m/^(.*?)($search_regexp)(.*)$/i) {4243my($lead,$match,$trail) = ($1,$2,$3);4244$match= chop_str($match,70,5,'center');4245my$contextlen=int((80-length($match))/2);4246$contextlen=30if($contextlen>30);4247$lead= chop_str($lead,$contextlen,10,'left');4248$trail= chop_str($trail,$contextlen,10,'right');42494250$lead= esc_html($lead);4251$match= esc_html($match);4252$trail= esc_html($trail);42534254print"$lead<span class=\"match\">$match</span>$trail<br />";4255}4256}4257print"</td>\n".4258"<td class=\"link\">".4259$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .4260" | ".4261$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .4262" | ".4263$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");4264print"</td>\n".4265"</tr>\n";4266}4267if(defined$extra) {4268print"<tr>\n".4269"<td colspan=\"3\">$extra</td>\n".4270"</tr>\n";4271}4272print"</table>\n";4273}42744275## ======================================================================4276## ======================================================================4277## actions42784279sub git_project_list {4280my$order=$input_params{'order'};4281if(defined$order&&$order!~m/none|project|descr|owner|age/) {4282 die_error(400,"Unknown order parameter");4283}42844285my@list= git_get_projects_list();4286if(!@list) {4287 die_error(404,"No projects found");4288}42894290 git_header_html();4291if(-f $home_text) {4292print"<div class=\"index_include\">\n";4293open(my$fd,$home_text);4294print<$fd>;4295close$fd;4296print"</div>\n";4297}4298print$cgi->startform(-method=>"get") .4299"<p class=\"projsearch\">Search:\n".4300$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".4301"</p>".4302$cgi->end_form() ."\n";4303 git_project_list_body(\@list,$order);4304 git_footer_html();4305}43064307sub git_forks {4308my$order=$input_params{'order'};4309if(defined$order&&$order!~m/none|project|descr|owner|age/) {4310 die_error(400,"Unknown order parameter");4311}43124313my@list= git_get_projects_list($project);4314if(!@list) {4315 die_error(404,"No forks found");4316}43174318 git_header_html();4319 git_print_page_nav('','');4320 git_print_header_div('summary',"$projectforks");4321 git_project_list_body(\@list,$order);4322 git_footer_html();4323}43244325sub git_project_index {4326my@projects= git_get_projects_list($project);43274328print$cgi->header(4329-type =>'text/plain',4330-charset =>'utf-8',4331-content_disposition =>'inline; filename="index.aux"');43324333foreachmy$pr(@projects) {4334if(!exists$pr->{'owner'}) {4335$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");4336}43374338my($path,$owner) = ($pr->{'path'},$pr->{'owner'});4339# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '4340$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4341$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4342$path=~s/ /\+/g;4343$owner=~s/ /\+/g;43444345print"$path$owner\n";4346}4347}43484349sub git_summary {4350my$descr= git_get_project_description($project) ||"none";4351my%co= parse_commit("HEAD");4352my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();4353my$head=$co{'id'};43544355my$owner= git_get_project_owner($project);43564357my$refs= git_get_references();4358# These get_*_list functions return one more to allow us to see if4359# there are more ...4360my@taglist= git_get_tags_list(16);4361my@headlist= git_get_heads_list(16);4362my@forklist;4363my($check_forks) = gitweb_check_feature('forks');43644365if($check_forks) {4366@forklist= git_get_projects_list($project);4367}43684369 git_header_html();4370 git_print_page_nav('summary','',$head);43714372print"<div class=\"title\"> </div>\n";4373print"<table class=\"projects_list\">\n".4374"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".4375"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";4376if(defined$cd{'rfc2822'}) {4377print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";4378}43794380# use per project git URL list in $projectroot/$project/cloneurl4381# or make project git URL from git base URL and project name4382my$url_tag="URL";4383my@url_list= git_get_project_url_list($project);4384@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;4385foreachmy$git_url(@url_list) {4386next unless$git_url;4387print"<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";4388$url_tag="";4389}43904391# Tag cloud4392my$show_ctags= (gitweb_check_feature('ctags'))[0];4393if($show_ctags) {4394my$ctags= git_get_project_ctags($project);4395my$cloud= git_populate_project_tagcloud($ctags);4396print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";4397print"</td>\n<td>"unless%$ctags;4398print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";4399print"</td>\n<td>"if%$ctags;4400print git_show_project_tagcloud($cloud,48);4401print"</td></tr>";4402}44034404print"</table>\n";44054406if(-s "$projectroot/$project/README.html") {4407if(open my$fd,"$projectroot/$project/README.html") {4408print"<div class=\"title\">readme</div>\n".4409"<div class=\"readme\">\n";4410print$_while(<$fd>);4411print"\n</div>\n";# class="readme"4412close$fd;4413}4414}44154416# we need to request one more than 16 (0..15) to check if4417# those 16 are all4418my@commitlist=$head? parse_commits($head,17) : ();4419if(@commitlist) {4420 git_print_header_div('shortlog');4421 git_shortlog_body(\@commitlist,0,15,$refs,4422$#commitlist<=15?undef:4423$cgi->a({-href => href(action=>"shortlog")},"..."));4424}44254426if(@taglist) {4427 git_print_header_div('tags');4428 git_tags_body(\@taglist,0,15,4429$#taglist<=15?undef:4430$cgi->a({-href => href(action=>"tags")},"..."));4431}44324433if(@headlist) {4434 git_print_header_div('heads');4435 git_heads_body(\@headlist,$head,0,15,4436$#headlist<=15?undef:4437$cgi->a({-href => href(action=>"heads")},"..."));4438}44394440if(@forklist) {4441 git_print_header_div('forks');4442 git_project_list_body(\@forklist,'age',0,15,4443$#forklist<=15?undef:4444$cgi->a({-href => href(action=>"forks")},"..."),4445'no_header');4446}44474448 git_footer_html();4449}44504451sub git_tag {4452my$head= git_get_head_hash($project);4453 git_header_html();4454 git_print_page_nav('','',$head,undef,$head);4455my%tag= parse_tag($hash);44564457if(!%tag) {4458 die_error(404,"Unknown tag object");4459}44604461 git_print_header_div('commit', esc_html($tag{'name'}),$hash);4462print"<div class=\"title_text\">\n".4463"<table class=\"object_header\">\n".4464"<tr>\n".4465"<td>object</td>\n".4466"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4467$tag{'object'}) ."</td>\n".4468"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4469$tag{'type'}) ."</td>\n".4470"</tr>\n";4471if(defined($tag{'author'})) {4472my%ad= parse_date($tag{'epoch'},$tag{'tz'});4473print"<tr><td>author</td><td>". esc_html($tag{'author'}) ."</td></tr>\n";4474print"<tr><td></td><td>".$ad{'rfc2822'} .4475sprintf(" (%02d:%02d%s)",$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'}) .4476"</td></tr>\n";4477}4478print"</table>\n\n".4479"</div>\n";4480print"<div class=\"page_body\">";4481my$comment=$tag{'comment'};4482foreachmy$line(@$comment) {4483chomp$line;4484print esc_html($line, -nbsp=>1) ."<br/>\n";4485}4486print"</div>\n";4487 git_footer_html();4488}44894490sub git_blame {4491my$fd;4492my$ftype;44934494 gitweb_check_feature('blame')4495or die_error(403,"Blame view not allowed");44964497 die_error(400,"No file name given")unless$file_name;4498$hash_base||= git_get_head_hash($project);4499 die_error(404,"Couldn't find base commit")unless($hash_base);4500my%co= parse_commit($hash_base)4501or die_error(404,"Commit not found");4502if(!defined$hash) {4503$hash= git_get_hash_by_path($hash_base,$file_name,"blob")4504or die_error(404,"Error looking up file");4505}4506$ftype= git_get_type($hash);4507if($ftype!~"blob") {4508 die_error(400,"Object is not a blob");4509}4510open($fd,"-|", git_cmd(),"blame",'-p','--',4511$file_name,$hash_base)4512or die_error(500,"Open git-blame failed");4513 git_header_html();4514my$formats_nav=4515$cgi->a({-href => href(action=>"blob", -replay=>1)},4516"blob") .4517" | ".4518$cgi->a({-href => href(action=>"history", -replay=>1)},4519"history") .4520" | ".4521$cgi->a({-href => href(action=>"blame", file_name=>$file_name)},4522"HEAD");4523 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4524 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4525 git_print_page_path($file_name,$ftype,$hash_base);4526my@rev_color= (qw(light2 dark2));4527my$num_colors=scalar(@rev_color);4528my$current_color=0;4529my$last_rev;4530print<<HTML;4531<div class="page_body">4532<table class="blame">4533<tr><th>Commit</th><th>Line</th><th>Data</th></tr>4534HTML4535my%metainfo= ();4536while(1) {4537$_= <$fd>;4538last unlessdefined$_;4539my($full_rev,$orig_lineno,$lineno,$group_size) =4540/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;4541if(!exists$metainfo{$full_rev}) {4542$metainfo{$full_rev} = {};4543}4544my$meta=$metainfo{$full_rev};4545while(<$fd>) {4546last if(s/^\t//);4547if(/^(\S+) (.*)$/) {4548$meta->{$1} =$2;4549}4550}4551my$data=$_;4552chomp$data;4553my$rev=substr($full_rev,0,8);4554my$author=$meta->{'author'};4555my%date= parse_date($meta->{'author-time'},4556$meta->{'author-tz'});4557my$date=$date{'iso-tz'};4558if($group_size) {4559$current_color= ++$current_color%$num_colors;4560}4561print"<tr class=\"$rev_color[$current_color]\">\n";4562if($group_size) {4563print"<td class=\"sha1\"";4564print" title=\"". esc_html($author) .",$date\"";4565print" rowspan=\"$group_size\""if($group_size>1);4566print">";4567print$cgi->a({-href => href(action=>"commit",4568 hash=>$full_rev,4569 file_name=>$file_name)},4570 esc_html($rev));4571print"</td>\n";4572}4573open(my$dd,"-|", git_cmd(),"rev-parse","$full_rev^")4574or die_error(500,"Open git-rev-parse failed");4575my$parent_commit= <$dd>;4576close$dd;4577chomp($parent_commit);4578my$blamed= href(action =>'blame',4579 file_name =>$meta->{'filename'},4580 hash_base =>$parent_commit);4581print"<td class=\"linenr\">";4582print$cgi->a({ -href =>"$blamed#l$orig_lineno",4583-id =>"l$lineno",4584-class=>"linenr"},4585 esc_html($lineno));4586print"</td>";4587print"<td class=\"pre\">". esc_html($data) ."</td>\n";4588print"</tr>\n";4589}4590print"</table>\n";4591print"</div>";4592close$fd4593or print"Reading blob failed\n";4594 git_footer_html();4595}45964597sub git_tags {4598my$head= git_get_head_hash($project);4599 git_header_html();4600 git_print_page_nav('','',$head,undef,$head);4601 git_print_header_div('summary',$project);46024603my@tagslist= git_get_tags_list();4604if(@tagslist) {4605 git_tags_body(\@tagslist);4606}4607 git_footer_html();4608}46094610sub git_heads {4611my$head= git_get_head_hash($project);4612 git_header_html();4613 git_print_page_nav('','',$head,undef,$head);4614 git_print_header_div('summary',$project);46154616my@headslist= git_get_heads_list();4617if(@headslist) {4618 git_heads_body(\@headslist,$head);4619}4620 git_footer_html();4621}46224623sub git_blob_plain {4624my$type=shift;4625my$expires;46264627if(!defined$hash) {4628if(defined$file_name) {4629my$base=$hash_base|| git_get_head_hash($project);4630$hash= git_get_hash_by_path($base,$file_name,"blob")4631or die_error(404,"Cannot find file");4632}else{4633 die_error(400,"No file name defined");4634}4635}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4636# blobs defined by non-textual hash id's can be cached4637$expires="+1d";4638}46394640open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4641or die_error(500,"Open git-cat-file blob '$hash' failed");46424643# content-type (can include charset)4644$type= blob_contenttype($fd,$file_name,$type);46454646# "save as" filename, even when no $file_name is given4647my$save_as="$hash";4648if(defined$file_name) {4649$save_as=$file_name;4650}elsif($type=~m/^text\//) {4651$save_as.='.txt';4652}46534654print$cgi->header(4655-type =>$type,4656-expires =>$expires,4657-content_disposition =>'inline; filename="'.$save_as.'"');4658undef$/;4659binmode STDOUT,':raw';4660print<$fd>;4661binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4662$/="\n";4663close$fd;4664}46654666sub git_blob {4667my$expires;46684669if(!defined$hash) {4670if(defined$file_name) {4671my$base=$hash_base|| git_get_head_hash($project);4672$hash= git_get_hash_by_path($base,$file_name,"blob")4673or die_error(404,"Cannot find file");4674}else{4675 die_error(400,"No file name defined");4676}4677}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4678# blobs defined by non-textual hash id's can be cached4679$expires="+1d";4680}46814682my($have_blame) = gitweb_check_feature('blame');4683open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4684or die_error(500,"Couldn't cat$file_name,$hash");4685my$mimetype= blob_mimetype($fd,$file_name);4686if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {4687close$fd;4688return git_blob_plain($mimetype);4689}4690# we can have blame only for text/* mimetype4691$have_blame&&= ($mimetype=~m!^text/!);46924693 git_header_html(undef,$expires);4694my$formats_nav='';4695if(defined$hash_base&& (my%co= parse_commit($hash_base))) {4696if(defined$file_name) {4697if($have_blame) {4698$formats_nav.=4699$cgi->a({-href => href(action=>"blame", -replay=>1)},4700"blame") .4701" | ";4702}4703$formats_nav.=4704$cgi->a({-href => href(action=>"history", -replay=>1)},4705"history") .4706" | ".4707$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},4708"raw") .4709" | ".4710$cgi->a({-href => href(action=>"blob",4711 hash_base=>"HEAD", file_name=>$file_name)},4712"HEAD");4713}else{4714$formats_nav.=4715$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},4716"raw");4717}4718 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4719 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4720}else{4721print"<div class=\"page_nav\">\n".4722"<br/><br/></div>\n".4723"<div class=\"title\">$hash</div>\n";4724}4725 git_print_page_path($file_name,"blob",$hash_base);4726print"<div class=\"page_body\">\n";4727if($mimetype=~m!^image/!) {4728print qq!<img type="$mimetype"!;4729if($file_name) {4730print qq! alt="$file_name" title="$file_name"!;4731}4732print qq! src="! .4733 href(action=>"blob_plain", hash=>$hash,4734 hash_base=>$hash_base, file_name=>$file_name) .4735 qq!"/>\n!;4736}else{4737my$nr;4738while(my$line= <$fd>) {4739chomp$line;4740$nr++;4741$line= untabify($line);4742printf"<div class=\"pre\"><a id=\"l%i\"href=\"#l%i\"class=\"linenr\">%4i</a>%s</div>\n",4743$nr,$nr,$nr, esc_html($line, -nbsp=>1);4744}4745}4746close$fd4747or print"Reading blob failed.\n";4748print"</div>";4749 git_footer_html();4750}47514752sub git_tree {4753if(!defined$hash_base) {4754$hash_base="HEAD";4755}4756if(!defined$hash) {4757if(defined$file_name) {4758$hash= git_get_hash_by_path($hash_base,$file_name,"tree");4759}else{4760$hash=$hash_base;4761}4762}4763 die_error(404,"No such tree")unlessdefined($hash);4764$/="\0";4765open my$fd,"-|", git_cmd(),"ls-tree",'-z',$hash4766or die_error(500,"Open git-ls-tree failed");4767my@entries=map{chomp;$_} <$fd>;4768close$fdor die_error(404,"Reading tree failed");4769$/="\n";47704771my$refs= git_get_references();4772my$ref= format_ref_marker($refs,$hash_base);4773 git_header_html();4774my$basedir='';4775my($have_blame) = gitweb_check_feature('blame');4776if(defined$hash_base&& (my%co= parse_commit($hash_base))) {4777my@views_nav= ();4778if(defined$file_name) {4779push@views_nav,4780$cgi->a({-href => href(action=>"history", -replay=>1)},4781"history"),4782$cgi->a({-href => href(action=>"tree",4783 hash_base=>"HEAD", file_name=>$file_name)},4784"HEAD"),4785}4786my$snapshot_links= format_snapshot_links($hash);4787if(defined$snapshot_links) {4788# FIXME: Should be available when we have no hash base as well.4789push@views_nav,$snapshot_links;4790}4791 git_print_page_nav('tree','',$hash_base,undef,undef,join(' | ',@views_nav));4792 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);4793}else{4794undef$hash_base;4795print"<div class=\"page_nav\">\n";4796print"<br/><br/></div>\n";4797print"<div class=\"title\">$hash</div>\n";4798}4799if(defined$file_name) {4800$basedir=$file_name;4801if($basedirne''&&substr($basedir, -1)ne'/') {4802$basedir.='/';4803}4804 git_print_page_path($file_name,'tree',$hash_base);4805}4806print"<div class=\"page_body\">\n";4807print"<table class=\"tree\">\n";4808my$alternate=1;4809# '..' (top directory) link if possible4810if(defined$hash_base&&4811defined$file_name&&$file_name=~m![^/]+$!) {4812if($alternate) {4813print"<tr class=\"dark\">\n";4814}else{4815print"<tr class=\"light\">\n";4816}4817$alternate^=1;48184819my$up=$file_name;4820$up=~s!/?[^/]+$!!;4821undef$upunless$up;4822# based on git_print_tree_entry4823print'<td class="mode">'. mode_str('040000') ."</td>\n";4824print'<td class="list">';4825print$cgi->a({-href => href(action=>"tree", hash_base=>$hash_base,4826 file_name=>$up)},4827"..");4828print"</td>\n";4829print"<td class=\"link\"></td>\n";48304831print"</tr>\n";4832}4833foreachmy$line(@entries) {4834my%t= parse_ls_tree_line($line, -z =>1);48354836if($alternate) {4837print"<tr class=\"dark\">\n";4838}else{4839print"<tr class=\"light\">\n";4840}4841$alternate^=1;48424843 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);48444845print"</tr>\n";4846}4847print"</table>\n".4848"</div>";4849 git_footer_html();4850}48514852sub git_snapshot {4853my@supported_fmts= gitweb_check_feature('snapshot');4854@supported_fmts= filter_snapshot_fmts(@supported_fmts);48554856my$format=$input_params{'snapshot_format'};4857if(!@supported_fmts) {4858 die_error(403,"Snapshots not allowed");4859}4860# default to first supported snapshot format4861$format||=$supported_fmts[0];4862if($format!~m/^[a-z0-9]+$/) {4863 die_error(400,"Invalid snapshot format parameter");4864}elsif(!exists($known_snapshot_formats{$format})) {4865 die_error(400,"Unknown snapshot format");4866}elsif(!grep($_eq$format,@supported_fmts)) {4867 die_error(403,"Unsupported snapshot format");4868}48694870if(!defined$hash) {4871$hash= git_get_head_hash($project);4872}48734874my$name=$project;4875$name=~ s,([^/])/*\.git$,$1,;4876$name= basename($name);4877my$filename= to_utf8($name);4878$name=~s/\047/\047\\\047\047/g;4879my$cmd;4880$filename.="-$hash$known_snapshot_formats{$format}{'suffix'}";4881$cmd= quote_command(4882 git_cmd(),'archive',4883"--format=$known_snapshot_formats{$format}{'format'}",4884"--prefix=$name/",$hash);4885if(exists$known_snapshot_formats{$format}{'compressor'}) {4886$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});4887}48884889print$cgi->header(4890-type =>$known_snapshot_formats{$format}{'type'},4891-content_disposition =>'inline; filename="'."$filename".'"',4892-status =>'200 OK');48934894open my$fd,"-|",$cmd4895or die_error(500,"Execute git-archive failed");4896binmode STDOUT,':raw';4897print<$fd>;4898binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4899close$fd;4900}49014902sub git_log {4903my$head= git_get_head_hash($project);4904if(!defined$hash) {4905$hash=$head;4906}4907if(!defined$page) {4908$page=0;4909}4910my$refs= git_get_references();49114912my@commitlist= parse_commits($hash,101, (100*$page));49134914my$paging_nav= format_paging_nav('log',$hash,$head,$page,$#commitlist>=100);49154916 git_header_html();4917 git_print_page_nav('log','',$hash,undef,undef,$paging_nav);49184919if(!@commitlist) {4920my%co= parse_commit($hash);49214922 git_print_header_div('summary',$project);4923print"<div class=\"page_body\"> Last change$co{'age_string'}.<br/><br/></div>\n";4924}4925my$to= ($#commitlist>=99) ? (99) : ($#commitlist);4926for(my$i=0;$i<=$to;$i++) {4927my%co= %{$commitlist[$i]};4928next if!%co;4929my$commit=$co{'id'};4930my$ref= format_ref_marker($refs,$commit);4931my%ad= parse_date($co{'author_epoch'});4932 git_print_header_div('commit',4933"<span class=\"age\">$co{'age_string'}</span>".4934 esc_html($co{'title'}) .$ref,4935$commit);4936print"<div class=\"title_text\">\n".4937"<div class=\"log_link\">\n".4938$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4939" | ".4940$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4941" | ".4942$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4943"<br/>\n".4944"</div>\n".4945"<i>". esc_html($co{'author_name'}) ." [$ad{'rfc2822'}]</i><br/>\n".4946"</div>\n";49474948print"<div class=\"log_body\">\n";4949 git_print_log($co{'comment'}, -final_empty_line=>1);4950print"</div>\n";4951}4952if($#commitlist>=100) {4953print"<div class=\"page_nav\">\n";4954print$cgi->a({-href => href(-replay=>1, page=>$page+1),4955-accesskey =>"n", -title =>"Alt-n"},"next");4956print"</div>\n";4957}4958 git_footer_html();4959}49604961sub git_commit {4962$hash||=$hash_base||"HEAD";4963my%co= parse_commit($hash)4964or die_error(404,"Unknown commit object");4965my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});4966my%cd= parse_date($co{'committer_epoch'},$co{'committer_tz'});49674968my$parent=$co{'parent'};4969my$parents=$co{'parents'};# listref49704971# we need to prepare $formats_nav before any parameter munging4972my$formats_nav;4973if(!defined$parent) {4974# --root commitdiff4975$formats_nav.='(initial)';4976}elsif(@$parents==1) {4977# single parent commit4978$formats_nav.=4979'(parent: '.4980$cgi->a({-href => href(action=>"commit",4981 hash=>$parent)},4982 esc_html(substr($parent,0,7))) .4983')';4984}else{4985# merge commit4986$formats_nav.=4987'(merge: '.4988join(' ',map{4989$cgi->a({-href => href(action=>"commit",4990 hash=>$_)},4991 esc_html(substr($_,0,7)));4992}@$parents) .4993')';4994}49954996if(!defined$parent) {4997$parent="--root";4998}4999my@difftree;5000open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",5001@diff_opts,5002(@$parents<=1?$parent:'-c'),5003$hash,"--"5004or die_error(500,"Open git-diff-tree failed");5005@difftree=map{chomp;$_} <$fd>;5006close$fdor die_error(404,"Reading git-diff-tree failed");50075008# non-textual hash id's can be cached5009my$expires;5010if($hash=~m/^[0-9a-fA-F]{40}$/) {5011$expires="+1d";5012}5013my$refs= git_get_references();5014my$ref= format_ref_marker($refs,$co{'id'});50155016 git_header_html(undef,$expires);5017 git_print_page_nav('commit','',5018$hash,$co{'tree'},$hash,5019$formats_nav);50205021if(defined$co{'parent'}) {5022 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);5023}else{5024 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);5025}5026print"<div class=\"title_text\">\n".5027"<table class=\"object_header\">\n";5028print"<tr><td>author</td><td>". esc_html($co{'author'}) ."</td></tr>\n".5029"<tr>".5030"<td></td><td>$ad{'rfc2822'}";5031if($ad{'hour_local'} <6) {5032printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",5033$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});5034}else{5035printf(" (%02d:%02d%s)",5036$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});5037}5038print"</td>".5039"</tr>\n";5040print"<tr><td>committer</td><td>". esc_html($co{'committer'}) ."</td></tr>\n";5041print"<tr><td></td><td>$cd{'rfc2822'}".5042sprintf(" (%02d:%02d%s)",$cd{'hour_local'},$cd{'minute_local'},$cd{'tz_local'}) .5043"</td></tr>\n";5044print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";5045print"<tr>".5046"<td>tree</td>".5047"<td class=\"sha1\">".5048$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),5049class=>"list"},$co{'tree'}) .5050"</td>".5051"<td class=\"link\">".5052$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},5053"tree");5054my$snapshot_links= format_snapshot_links($hash);5055if(defined$snapshot_links) {5056print" | ".$snapshot_links;5057}5058print"</td>".5059"</tr>\n";50605061foreachmy$par(@$parents) {5062print"<tr>".5063"<td>parent</td>".5064"<td class=\"sha1\">".5065$cgi->a({-href => href(action=>"commit", hash=>$par),5066class=>"list"},$par) .5067"</td>".5068"<td class=\"link\">".5069$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .5070" | ".5071$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .5072"</td>".5073"</tr>\n";5074}5075print"</table>".5076"</div>\n";50775078print"<div class=\"page_body\">\n";5079 git_print_log($co{'comment'});5080print"</div>\n";50815082 git_difftree_body(\@difftree,$hash,@$parents);50835084 git_footer_html();5085}50865087sub git_object {5088# object is defined by:5089# - hash or hash_base alone5090# - hash_base and file_name5091my$type;50925093# - hash or hash_base alone5094if($hash|| ($hash_base&& !defined$file_name)) {5095my$object_id=$hash||$hash_base;50965097open my$fd,"-|", quote_command(5098 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'5099or die_error(404,"Object does not exist");5100$type= <$fd>;5101chomp$type;5102close$fd5103or die_error(404,"Object does not exist");51045105# - hash_base and file_name5106}elsif($hash_base&&defined$file_name) {5107$file_name=~ s,/+$,,;51085109system(git_cmd(),"cat-file",'-e',$hash_base) ==05110or die_error(404,"Base object does not exist");51115112# here errors should not hapen5113open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name5114or die_error(500,"Open git-ls-tree failed");5115my$line= <$fd>;5116close$fd;51175118#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'5119unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {5120 die_error(404,"File or directory for given base does not exist");5121}5122$type=$2;5123$hash=$3;5124}else{5125 die_error(400,"Not enough information to find object");5126}51275128print$cgi->redirect(-uri => href(action=>$type, -full=>1,5129 hash=>$hash, hash_base=>$hash_base,5130 file_name=>$file_name),5131-status =>'302 Found');5132}51335134sub git_blobdiff {5135my$format=shift||'html';51365137my$fd;5138my@difftree;5139my%diffinfo;5140my$expires;51415142# preparing $fd and %diffinfo for git_patchset_body5143# new style URI5144if(defined$hash_base&&defined$hash_parent_base) {5145if(defined$file_name) {5146# read raw output5147open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5148$hash_parent_base,$hash_base,5149"--", (defined$file_parent?$file_parent: ()),$file_name5150or die_error(500,"Open git-diff-tree failed");5151@difftree=map{chomp;$_} <$fd>;5152close$fd5153or die_error(404,"Reading git-diff-tree failed");5154@difftree5155or die_error(404,"Blob diff not found");51565157}elsif(defined$hash&&5158$hash=~/[0-9a-fA-F]{40}/) {5159# try to find filename from $hash51605161# read filtered raw output5162open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5163$hash_parent_base,$hash_base,"--"5164or die_error(500,"Open git-diff-tree failed");5165@difftree=5166# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'5167# $hash == to_id5168grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}5169map{chomp;$_} <$fd>;5170close$fd5171or die_error(404,"Reading git-diff-tree failed");5172@difftree5173or die_error(404,"Blob diff not found");51745175}else{5176 die_error(400,"Missing one of the blob diff parameters");5177}51785179if(@difftree>1) {5180 die_error(400,"Ambiguous blob diff specification");5181}51825183%diffinfo= parse_difftree_raw_line($difftree[0]);5184$file_parent||=$diffinfo{'from_file'} ||$file_name;5185$file_name||=$diffinfo{'to_file'};51865187$hash_parent||=$diffinfo{'from_id'};5188$hash||=$diffinfo{'to_id'};51895190# non-textual hash id's can be cached5191if($hash_base=~m/^[0-9a-fA-F]{40}$/&&5192$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {5193$expires='+1d';5194}51955196# open patch output5197open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5198'-p', ($formateq'html'?"--full-index": ()),5199$hash_parent_base,$hash_base,5200"--", (defined$file_parent?$file_parent: ()),$file_name5201or die_error(500,"Open git-diff-tree failed");5202}52035204# old/legacy style URI5205if(!%diffinfo&&# if new style URI failed5206defined$hash&&defined$hash_parent) {5207# fake git-diff-tree raw output5208$diffinfo{'from_mode'} =$diffinfo{'to_mode'} ="blob";5209$diffinfo{'from_id'} =$hash_parent;5210$diffinfo{'to_id'} =$hash;5211if(defined$file_name) {5212if(defined$file_parent) {5213$diffinfo{'status'} ='2';5214$diffinfo{'from_file'} =$file_parent;5215$diffinfo{'to_file'} =$file_name;5216}else{# assume not renamed5217$diffinfo{'status'} ='1';5218$diffinfo{'from_file'} =$file_name;5219$diffinfo{'to_file'} =$file_name;5220}5221}else{# no filename given5222$diffinfo{'status'} ='2';5223$diffinfo{'from_file'} =$hash_parent;5224$diffinfo{'to_file'} =$hash;5225}52265227# non-textual hash id's can be cached5228if($hash=~m/^[0-9a-fA-F]{40}$/&&5229$hash_parent=~m/^[0-9a-fA-F]{40}$/) {5230$expires='+1d';5231}52325233# open patch output5234open$fd,"-|", git_cmd(),"diff",@diff_opts,5235'-p', ($formateq'html'?"--full-index": ()),5236$hash_parent,$hash,"--"5237or die_error(500,"Open git-diff failed");5238}else{5239 die_error(400,"Missing one of the blob diff parameters")5240unless%diffinfo;5241}52425243# header5244if($formateq'html') {5245my$formats_nav=5246$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},5247"raw");5248 git_header_html(undef,$expires);5249if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5250 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5251 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5252}else{5253print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";5254print"<div class=\"title\">$hashvs$hash_parent</div>\n";5255}5256if(defined$file_name) {5257 git_print_page_path($file_name,"blob",$hash_base);5258}else{5259print"<div class=\"page_path\"></div>\n";5260}52615262}elsif($formateq'plain') {5263print$cgi->header(5264-type =>'text/plain',5265-charset =>'utf-8',5266-expires =>$expires,5267-content_disposition =>'inline; filename="'."$file_name".'.patch"');52685269print"X-Git-Url: ".$cgi->self_url() ."\n\n";52705271}else{5272 die_error(400,"Unknown blobdiff format");5273}52745275# patch5276if($formateq'html') {5277print"<div class=\"page_body\">\n";52785279 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);5280close$fd;52815282print"</div>\n";# class="page_body"5283 git_footer_html();52845285}else{5286while(my$line= <$fd>) {5287$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;5288$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;52895290print$line;52915292last if$line=~m!^\+\+\+!;5293}5294local$/=undef;5295print<$fd>;5296close$fd;5297}5298}52995300sub git_blobdiff_plain {5301 git_blobdiff('plain');5302}53035304sub git_commitdiff {5305my$format=shift||'html';5306$hash||=$hash_base||"HEAD";5307my%co= parse_commit($hash)5308or die_error(404,"Unknown commit object");53095310# choose format for commitdiff for merge5311if(!defined$hash_parent&& @{$co{'parents'}} >1) {5312$hash_parent='--cc';5313}5314# we need to prepare $formats_nav before almost any parameter munging5315my$formats_nav;5316if($formateq'html') {5317$formats_nav=5318$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},5319"raw");53205321if(defined$hash_parent&&5322$hash_parentne'-c'&&$hash_parentne'--cc') {5323# commitdiff with two commits given5324my$hash_parent_short=$hash_parent;5325if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {5326$hash_parent_short=substr($hash_parent,0,7);5327}5328$formats_nav.=5329' (from';5330for(my$i=0;$i< @{$co{'parents'}};$i++) {5331if($co{'parents'}[$i]eq$hash_parent) {5332$formats_nav.=' parent '. ($i+1);5333last;5334}5335}5336$formats_nav.=': '.5337$cgi->a({-href => href(action=>"commitdiff",5338 hash=>$hash_parent)},5339 esc_html($hash_parent_short)) .5340')';5341}elsif(!$co{'parent'}) {5342# --root commitdiff5343$formats_nav.=' (initial)';5344}elsif(scalar@{$co{'parents'}} ==1) {5345# single parent commit5346$formats_nav.=5347' (parent: '.5348$cgi->a({-href => href(action=>"commitdiff",5349 hash=>$co{'parent'})},5350 esc_html(substr($co{'parent'},0,7))) .5351')';5352}else{5353# merge commit5354if($hash_parenteq'--cc') {5355$formats_nav.=' | '.5356$cgi->a({-href => href(action=>"commitdiff",5357 hash=>$hash, hash_parent=>'-c')},5358'combined');5359}else{# $hash_parent eq '-c'5360$formats_nav.=' | '.5361$cgi->a({-href => href(action=>"commitdiff",5362 hash=>$hash, hash_parent=>'--cc')},5363'compact');5364}5365$formats_nav.=5366' (merge: '.5367join(' ',map{5368$cgi->a({-href => href(action=>"commitdiff",5369 hash=>$_)},5370 esc_html(substr($_,0,7)));5371} @{$co{'parents'}} ) .5372')';5373}5374}53755376my$hash_parent_param=$hash_parent;5377if(!defined$hash_parent_param) {5378# --cc for multiple parents, --root for parentless5379$hash_parent_param=5380@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';5381}53825383# read commitdiff5384my$fd;5385my@difftree;5386if($formateq'html') {5387open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5388"--no-commit-id","--patch-with-raw","--full-index",5389$hash_parent_param,$hash,"--"5390or die_error(500,"Open git-diff-tree failed");53915392while(my$line= <$fd>) {5393chomp$line;5394# empty line ends raw part of diff-tree output5395last unless$line;5396push@difftree,scalar parse_difftree_raw_line($line);5397}53985399}elsif($formateq'plain') {5400open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5401'-p',$hash_parent_param,$hash,"--"5402or die_error(500,"Open git-diff-tree failed");54035404}else{5405 die_error(400,"Unknown commitdiff format");5406}54075408# non-textual hash id's can be cached5409my$expires;5410if($hash=~m/^[0-9a-fA-F]{40}$/) {5411$expires="+1d";5412}54135414# write commit message5415if($formateq'html') {5416my$refs= git_get_references();5417my$ref= format_ref_marker($refs,$co{'id'});54185419 git_header_html(undef,$expires);5420 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);5421 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);5422 git_print_authorship(\%co);5423print"<div class=\"page_body\">\n";5424if(@{$co{'comment'}} >1) {5425print"<div class=\"log\">\n";5426 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);5427print"</div>\n";# class="log"5428}54295430}elsif($formateq'plain') {5431my$refs= git_get_references("tags");5432my$tagname= git_get_rev_name_tags($hash);5433my$filename= basename($project) ."-$hash.patch";54345435print$cgi->header(5436-type =>'text/plain',5437-charset =>'utf-8',5438-expires =>$expires,5439-content_disposition =>'inline; filename="'."$filename".'"');5440my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});5441print"From: ". to_utf8($co{'author'}) ."\n";5442print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";5443print"Subject: ". to_utf8($co{'title'}) ."\n";54445445print"X-Git-Tag:$tagname\n"if$tagname;5446print"X-Git-Url: ".$cgi->self_url() ."\n\n";54475448foreachmy$line(@{$co{'comment'}}) {5449print to_utf8($line) ."\n";5450}5451print"---\n\n";5452}54535454# write patch5455if($formateq'html') {5456my$use_parents= !defined$hash_parent||5457$hash_parenteq'-c'||$hash_parenteq'--cc';5458 git_difftree_body(\@difftree,$hash,5459$use_parents? @{$co{'parents'}} :$hash_parent);5460print"<br/>\n";54615462 git_patchset_body($fd, \@difftree,$hash,5463$use_parents? @{$co{'parents'}} :$hash_parent);5464close$fd;5465print"</div>\n";# class="page_body"5466 git_footer_html();54675468}elsif($formateq'plain') {5469local$/=undef;5470print<$fd>;5471close$fd5472or print"Reading git-diff-tree failed\n";5473}5474}54755476sub git_commitdiff_plain {5477 git_commitdiff('plain');5478}54795480sub git_history {5481if(!defined$hash_base) {5482$hash_base= git_get_head_hash($project);5483}5484if(!defined$page) {5485$page=0;5486}5487my$ftype;5488my%co= parse_commit($hash_base)5489or die_error(404,"Unknown commit object");54905491my$refs= git_get_references();5492my$limit=sprintf("--max-count=%i", (100* ($page+1)));54935494my@commitlist= parse_commits($hash_base,101, (100*$page),5495$file_name,"--full-history")5496or die_error(404,"No such file or directory on given branch");54975498if(!defined$hash&&defined$file_name) {5499# some commits could have deleted file in question,5500# and not have it in tree, but one of them has to have it5501for(my$i=0;$i<=@commitlist;$i++) {5502$hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);5503last ifdefined$hash;5504}5505}5506if(defined$hash) {5507$ftype= git_get_type($hash);5508}5509if(!defined$ftype) {5510 die_error(500,"Unknown type of object");5511}55125513my$paging_nav='';5514if($page>0) {5515$paging_nav.=5516$cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,5517 file_name=>$file_name)},5518"first");5519$paging_nav.=" ⋅ ".5520$cgi->a({-href => href(-replay=>1, page=>$page-1),5521-accesskey =>"p", -title =>"Alt-p"},"prev");5522}else{5523$paging_nav.="first";5524$paging_nav.=" ⋅ prev";5525}5526my$next_link='';5527if($#commitlist>=100) {5528$next_link=5529$cgi->a({-href => href(-replay=>1, page=>$page+1),5530-accesskey =>"n", -title =>"Alt-n"},"next");5531$paging_nav.=" ⋅$next_link";5532}else{5533$paging_nav.=" ⋅ next";5534}55355536 git_header_html();5537 git_print_page_nav('history','',$hash_base,$co{'tree'},$hash_base,$paging_nav);5538 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5539 git_print_page_path($file_name,$ftype,$hash_base);55405541 git_history_body(\@commitlist,0,99,5542$refs,$hash_base,$ftype,$next_link);55435544 git_footer_html();5545}55465547sub git_search {5548 gitweb_check_feature('search')or die_error(403,"Search is disabled");5549if(!defined$searchtext) {5550 die_error(400,"Text field is empty");5551}5552if(!defined$hash) {5553$hash= git_get_head_hash($project);5554}5555my%co= parse_commit($hash);5556if(!%co) {5557 die_error(404,"Unknown commit object");5558}5559if(!defined$page) {5560$page=0;5561}55625563$searchtype||='commit';5564if($searchtypeeq'pickaxe') {5565# pickaxe may take all resources of your box and run for several minutes5566# with every query - so decide by yourself how public you make this feature5567 gitweb_check_feature('pickaxe')5568or die_error(403,"Pickaxe is disabled");5569}5570if($searchtypeeq'grep') {5571 gitweb_check_feature('grep')5572or die_error(403,"Grep is disabled");5573}55745575 git_header_html();55765577if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {5578my$greptype;5579if($searchtypeeq'commit') {5580$greptype="--grep=";5581}elsif($searchtypeeq'author') {5582$greptype="--author=";5583}elsif($searchtypeeq'committer') {5584$greptype="--committer=";5585}5586$greptype.=$searchtext;5587my@commitlist= parse_commits($hash,101, (100*$page),undef,5588$greptype,'--regexp-ignore-case',5589$search_use_regexp?'--extended-regexp':'--fixed-strings');55905591my$paging_nav='';5592if($page>0) {5593$paging_nav.=5594$cgi->a({-href => href(action=>"search", hash=>$hash,5595 searchtext=>$searchtext,5596 searchtype=>$searchtype)},5597"first");5598$paging_nav.=" ⋅ ".5599$cgi->a({-href => href(-replay=>1, page=>$page-1),5600-accesskey =>"p", -title =>"Alt-p"},"prev");5601}else{5602$paging_nav.="first";5603$paging_nav.=" ⋅ prev";5604}5605my$next_link='';5606if($#commitlist>=100) {5607$next_link=5608$cgi->a({-href => href(-replay=>1, page=>$page+1),5609-accesskey =>"n", -title =>"Alt-n"},"next");5610$paging_nav.=" ⋅$next_link";5611}else{5612$paging_nav.=" ⋅ next";5613}56145615if($#commitlist>=100) {5616}56175618 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);5619 git_print_header_div('commit', esc_html($co{'title'}),$hash);5620 git_search_grep_body(\@commitlist,0,99,$next_link);5621}56225623if($searchtypeeq'pickaxe') {5624 git_print_page_nav('','',$hash,$co{'tree'},$hash);5625 git_print_header_div('commit', esc_html($co{'title'}),$hash);56265627print"<table class=\"pickaxe search\">\n";5628my$alternate=1;5629$/="\n";5630open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,5631'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",5632($search_use_regexp?'--pickaxe-regex': ());5633undef%co;5634my@files;5635while(my$line= <$fd>) {5636chomp$line;5637next unless$line;56385639my%set= parse_difftree_raw_line($line);5640if(defined$set{'commit'}) {5641# finish previous commit5642if(%co) {5643print"</td>\n".5644"<td class=\"link\">".5645$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5646" | ".5647$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5648print"</td>\n".5649"</tr>\n";5650}56515652if($alternate) {5653print"<tr class=\"dark\">\n";5654}else{5655print"<tr class=\"light\">\n";5656}5657$alternate^=1;5658%co= parse_commit($set{'commit'});5659my$author= chop_and_escape_str($co{'author_name'},15,5);5660print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5661"<td><i>$author</i></td>\n".5662"<td>".5663$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5664-class=>"list subject"},5665 chop_and_escape_str($co{'title'},50) ."<br/>");5666}elsif(defined$set{'to_id'}) {5667next if($set{'to_id'} =~m/^0{40}$/);56685669print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},5670 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),5671-class=>"list"},5672"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .5673"<br/>\n";5674}5675}5676close$fd;56775678# finish last commit (warning: repetition!)5679if(%co) {5680print"</td>\n".5681"<td class=\"link\">".5682$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5683" | ".5684$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5685print"</td>\n".5686"</tr>\n";5687}56885689print"</table>\n";5690}56915692if($searchtypeeq'grep') {5693 git_print_page_nav('','',$hash,$co{'tree'},$hash);5694 git_print_header_div('commit', esc_html($co{'title'}),$hash);56955696print"<table class=\"grep_search\">\n";5697my$alternate=1;5698my$matches=0;5699$/="\n";5700open my$fd,"-|", git_cmd(),'grep','-n',5701$search_use_regexp? ('-E','-i') :'-F',5702$searchtext,$co{'tree'};5703my$lastfile='';5704while(my$line= <$fd>) {5705chomp$line;5706my($file,$lno,$ltext,$binary);5707last if($matches++>1000);5708if($line=~/^Binary file (.+) matches$/) {5709$file=$1;5710$binary=1;5711}else{5712(undef,$file,$lno,$ltext) =split(/:/,$line,4);5713}5714if($filene$lastfile) {5715$lastfileand print"</td></tr>\n";5716if($alternate++) {5717print"<tr class=\"dark\">\n";5718}else{5719print"<tr class=\"light\">\n";5720}5721print"<td class=\"list\">".5722$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},5723 file_name=>"$file"),5724-class=>"list"}, esc_path($file));5725print"</td><td>\n";5726$lastfile=$file;5727}5728if($binary) {5729print"<div class=\"binary\">Binary file</div>\n";5730}else{5731$ltext= untabify($ltext);5732if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {5733$ltext= esc_html($1, -nbsp=>1);5734$ltext.='<span class="match">';5735$ltext.= esc_html($2, -nbsp=>1);5736$ltext.='</span>';5737$ltext.= esc_html($3, -nbsp=>1);5738}else{5739$ltext= esc_html($ltext, -nbsp=>1);5740}5741print"<div class=\"pre\">".5742$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},5743 file_name=>"$file").'#l'.$lno,5744-class=>"linenr"},sprintf('%4i',$lno))5745.' '.$ltext."</div>\n";5746}5747}5748if($lastfile) {5749print"</td></tr>\n";5750if($matches>1000) {5751print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";5752}5753}else{5754print"<div class=\"diff nodifferences\">No matches found</div>\n";5755}5756close$fd;57575758print"</table>\n";5759}5760 git_footer_html();5761}57625763sub git_search_help {5764 git_header_html();5765 git_print_page_nav('','',$hash,$hash,$hash);5766print<<EOT;5767<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without5768regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,5769the pattern entered is recognized as the POSIX extended5770<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case5771insensitive).</p>5772<dl>5773<dt><b>commit</b></dt>5774<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>5775EOT5776my($have_grep) = gitweb_check_feature('grep');5777if($have_grep) {5778print<<EOT;5779<dt><b>grep</b></dt>5780<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing5781 a different one) are searched for the given pattern. On large trees, this search can take5782a while and put some strain on the server, so please use it with some consideration. Note that5783due to git-grep peculiarity, currently if regexp mode is turned off, the matches are5784case-sensitive.</dd>5785EOT5786}5787print<<EOT;5788<dt><b>author</b></dt>5789<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>5790<dt><b>committer</b></dt>5791<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>5792EOT5793my($have_pickaxe) = gitweb_check_feature('pickaxe');5794if($have_pickaxe) {5795print<<EOT;5796<dt><b>pickaxe</b></dt>5797<dd>All commits that caused the string to appear or disappear from any file (changes that5798added, removed or "modified" the string) will be listed. This search can take a while and5799takes a lot of strain on the server, so please use it wisely. Note that since you may be5800interested even in changes just changing the case as well, this search is case sensitive.</dd>5801EOT5802}5803print"</dl>\n";5804 git_footer_html();5805}58065807sub git_shortlog {5808my$head= git_get_head_hash($project);5809if(!defined$hash) {5810$hash=$head;5811}5812if(!defined$page) {5813$page=0;5814}5815my$refs= git_get_references();58165817my$commit_hash=$hash;5818if(defined$hash_parent) {5819$commit_hash="$hash_parent..$hash";5820}5821my@commitlist= parse_commits($commit_hash,101, (100*$page));58225823my$paging_nav= format_paging_nav('shortlog',$hash,$head,$page,$#commitlist>=100);5824my$next_link='';5825if($#commitlist>=100) {5826$next_link=5827$cgi->a({-href => href(-replay=>1, page=>$page+1),5828-accesskey =>"n", -title =>"Alt-n"},"next");5829}58305831 git_header_html();5832 git_print_page_nav('shortlog','',$hash,$hash,$hash,$paging_nav);5833 git_print_header_div('summary',$project);58345835 git_shortlog_body(\@commitlist,0,99,$refs,$next_link);58365837 git_footer_html();5838}58395840## ......................................................................5841## feeds (RSS, Atom; OPML)58425843sub git_feed {5844my$format=shift||'atom';5845my($have_blame) = gitweb_check_feature('blame');58465847# Atom: http://www.atomenabled.org/developers/syndication/5848# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ5849if($formatne'rss'&&$formatne'atom') {5850 die_error(400,"Unknown web feed format");5851}58525853# log/feed of current (HEAD) branch, log of given branch, history of file/directory5854my$head=$hash||'HEAD';5855my@commitlist= parse_commits($head,150,0,$file_name);58565857my%latest_commit;5858my%latest_date;5859my$content_type="application/$format+xml";5860if(defined$cgi->http('HTTP_ACCEPT') &&5861$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {5862# browser (feed reader) prefers text/xml5863$content_type='text/xml';5864}5865if(defined($commitlist[0])) {5866%latest_commit= %{$commitlist[0]};5867%latest_date= parse_date($latest_commit{'author_epoch'});5868print$cgi->header(5869-type =>$content_type,5870-charset =>'utf-8',5871-last_modified =>$latest_date{'rfc2822'});5872}else{5873print$cgi->header(5874-type =>$content_type,5875-charset =>'utf-8');5876}58775878# Optimization: skip generating the body if client asks only5879# for Last-Modified date.5880return if($cgi->request_method()eq'HEAD');58815882# header variables5883my$title="$site_name-$project/$action";5884my$feed_type='log';5885if(defined$hash) {5886$title.=" - '$hash'";5887$feed_type='branch log';5888if(defined$file_name) {5889$title.=" ::$file_name";5890$feed_type='history';5891}5892}elsif(defined$file_name) {5893$title.=" -$file_name";5894$feed_type='history';5895}5896$title.="$feed_type";5897my$descr= git_get_project_description($project);5898if(defined$descr) {5899$descr= esc_html($descr);5900}else{5901$descr="$project".5902($formateq'rss'?'RSS':'Atom') .5903" feed";5904}5905my$owner= git_get_project_owner($project);5906$owner= esc_html($owner);59075908#header5909my$alt_url;5910if(defined$file_name) {5911$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);5912}elsif(defined$hash) {5913$alt_url= href(-full=>1, action=>"log", hash=>$hash);5914}else{5915$alt_url= href(-full=>1, action=>"summary");5916}5917print qq!<?xml version="1.0" encoding="utf-8"?>\n!;5918if($formateq'rss') {5919print<<XML;5920<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">5921<channel>5922XML5923print"<title>$title</title>\n".5924"<link>$alt_url</link>\n".5925"<description>$descr</description>\n".5926"<language>en</language>\n";5927}elsif($formateq'atom') {5928print<<XML;5929<feed xmlns="http://www.w3.org/2005/Atom">5930XML5931print"<title>$title</title>\n".5932"<subtitle>$descr</subtitle>\n".5933'<link rel="alternate" type="text/html" href="'.5934$alt_url.'" />'."\n".5935'<link rel="self" type="'.$content_type.'" href="'.5936$cgi->self_url() .'" />'."\n".5937"<id>". href(-full=>1) ."</id>\n".5938# use project owner for feed author5939"<author><name>$owner</name></author>\n";5940if(defined$favicon) {5941print"<icon>". esc_url($favicon) ."</icon>\n";5942}5943if(defined$logo_url) {5944# not twice as wide as tall: 72 x 27 pixels5945print"<logo>". esc_url($logo) ."</logo>\n";5946}5947if(!%latest_date) {5948# dummy date to keep the feed valid until commits trickle in:5949print"<updated>1970-01-01T00:00:00Z</updated>\n";5950}else{5951print"<updated>$latest_date{'iso-8601'}</updated>\n";5952}5953}59545955# contents5956for(my$i=0;$i<=$#commitlist;$i++) {5957my%co= %{$commitlist[$i]};5958my$commit=$co{'id'};5959# we read 150, we always show 30 and the ones more recent than 48 hours5960if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {5961last;5962}5963my%cd= parse_date($co{'author_epoch'});59645965# get list of changed files5966open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5967$co{'parent'} ||"--root",5968$co{'id'},"--", (defined$file_name?$file_name: ())5969ornext;5970my@difftree=map{chomp;$_} <$fd>;5971close$fd5972ornext;59735974# print element (entry, item)5975my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);5976if($formateq'rss') {5977print"<item>\n".5978"<title>". esc_html($co{'title'}) ."</title>\n".5979"<author>". esc_html($co{'author'}) ."</author>\n".5980"<pubDate>$cd{'rfc2822'}</pubDate>\n".5981"<guid isPermaLink=\"true\">$co_url</guid>\n".5982"<link>$co_url</link>\n".5983"<description>". esc_html($co{'title'}) ."</description>\n".5984"<content:encoded>".5985"<![CDATA[\n";5986}elsif($formateq'atom') {5987print"<entry>\n".5988"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".5989"<updated>$cd{'iso-8601'}</updated>\n".5990"<author>\n".5991" <name>". esc_html($co{'author_name'}) ."</name>\n";5992if($co{'author_email'}) {5993print" <email>". esc_html($co{'author_email'}) ."</email>\n";5994}5995print"</author>\n".5996# use committer for contributor5997"<contributor>\n".5998" <name>". esc_html($co{'committer_name'}) ."</name>\n";5999if($co{'committer_email'}) {6000print" <email>". esc_html($co{'committer_email'}) ."</email>\n";6001}6002print"</contributor>\n".6003"<published>$cd{'iso-8601'}</published>\n".6004"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".6005"<id>$co_url</id>\n".6006"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".6007"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";6008}6009my$comment=$co{'comment'};6010print"<pre>\n";6011foreachmy$line(@$comment) {6012$line= esc_html($line);6013print"$line\n";6014}6015print"</pre><ul>\n";6016foreachmy$difftree_line(@difftree) {6017my%difftree= parse_difftree_raw_line($difftree_line);6018next if!$difftree{'from_id'};60196020my$file=$difftree{'file'} ||$difftree{'to_file'};60216022print"<li>".6023"[".6024$cgi->a({-href => href(-full=>1, action=>"blobdiff",6025 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},6026 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},6027 file_name=>$file, file_parent=>$difftree{'from_file'}),6028-title =>"diff"},'D');6029if($have_blame) {6030print$cgi->a({-href => href(-full=>1, action=>"blame",6031 file_name=>$file, hash_base=>$commit),6032-title =>"blame"},'B');6033}6034# if this is not a feed of a file history6035if(!defined$file_name||$file_namene$file) {6036print$cgi->a({-href => href(-full=>1, action=>"history",6037 file_name=>$file, hash=>$commit),6038-title =>"history"},'H');6039}6040$file= esc_path($file);6041print"] ".6042"$file</li>\n";6043}6044if($formateq'rss') {6045print"</ul>]]>\n".6046"</content:encoded>\n".6047"</item>\n";6048}elsif($formateq'atom') {6049print"</ul>\n</div>\n".6050"</content>\n".6051"</entry>\n";6052}6053}60546055# end of feed6056if($formateq'rss') {6057print"</channel>\n</rss>\n";6058}elsif($formateq'atom') {6059print"</feed>\n";6060}6061}60626063sub git_rss {6064 git_feed('rss');6065}60666067sub git_atom {6068 git_feed('atom');6069}60706071sub git_opml {6072my@list= git_get_projects_list();60736074print$cgi->header(-type =>'text/xml', -charset =>'utf-8');6075print<<XML;6076<?xml version="1.0" encoding="utf-8"?>6077<opml version="1.0">6078<head>6079 <title>$site_nameOPML Export</title>6080</head>6081<body>6082<outline text="git RSS feeds">6083XML60846085foreachmy$pr(@list) {6086my%proj=%$pr;6087my$head= git_get_head_hash($proj{'path'});6088if(!defined$head) {6089next;6090}6091$git_dir="$projectroot/$proj{'path'}";6092my%co= parse_commit($head);6093if(!%co) {6094next;6095}60966097my$path= esc_html(chop_str($proj{'path'},25,5));6098my$rss="$my_url?p=$proj{'path'};a=rss";6099my$html="$my_url?p=$proj{'path'};a=summary";6100print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";6101}6102print<<XML;6103</outline>6104</body>6105</opml>6106XML6107}