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 32if(my$path_info=$ENV{"PATH_INFO"}) { 33$my_url=~ s,\Q$path_info\E$,,; 34$my_uri=~ s,\Q$path_info\E$,,; 35} 36 37# core git executable to use 38# this can just be "git" if your webserver has a sensible PATH 39our$GIT="++GIT_BINDIR++/git"; 40 41# absolute fs-path which will be prepended to the project path 42#our $projectroot = "/pub/scm"; 43our$projectroot="++GITWEB_PROJECTROOT++"; 44 45# fs traversing limit for getting project list 46# the number is relative to the projectroot 47our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 48 49# target of the home link on top of all pages 50our$home_link=$my_uri||"/"; 51 52# string of the home link on top of all pages 53our$home_link_str="++GITWEB_HOME_LINK_STR++"; 54 55# name of your site or organization to appear in page titles 56# replace this with something more descriptive for clearer bookmarks 57our$site_name="++GITWEB_SITENAME++" 58|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 59 60# filename of html text to include at top of each page 61our$site_header="++GITWEB_SITE_HEADER++"; 62# html text to include at home page 63our$home_text="++GITWEB_HOMETEXT++"; 64# filename of html text to include at bottom of each page 65our$site_footer="++GITWEB_SITE_FOOTER++"; 66 67# URI of stylesheets 68our@stylesheets= ("++GITWEB_CSS++"); 69# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 70our$stylesheet=undef; 71# URI of GIT logo (72x27 size) 72our$logo="++GITWEB_LOGO++"; 73# URI of GIT favicon, assumed to be image/png type 74our$favicon="++GITWEB_FAVICON++"; 75 76# URI and label (title) of GIT logo link 77#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 78#our $logo_label = "git documentation"; 79our$logo_url="http://git.or.cz/"; 80our$logo_label="git homepage"; 81 82# source of projects list 83our$projects_list="++GITWEB_LIST++"; 84 85# the width (in characters) of the projects list "Description" column 86our$projects_list_description_width=25; 87 88# default order of projects list 89# valid values are none, project, descr, owner, and age 90our$default_projects_order="project"; 91 92# show repository only if this file exists 93# (only effective if this variable evaluates to true) 94our$export_ok="++GITWEB_EXPORT_OK++"; 95 96# only allow viewing of repositories also shown on the overview page 97our$strict_export="++GITWEB_STRICT_EXPORT++"; 98 99# list of git base URLs used for URL to where fetch project from, 100# i.e. full URL is "$git_base_url/$project" 101our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 102 103# default blob_plain mimetype and default charset for text/plain blob 104our$default_blob_plain_mimetype='text/plain'; 105our$default_text_plain_charset=undef; 106 107# file to use for guessing MIME types before trying /etc/mime.types 108# (relative to the current git repository) 109our$mimetypes_file=undef; 110 111# assume this charset if line contains non-UTF-8 characters; 112# it should be valid encoding (see Encoding::Supported(3pm) for list), 113# for which encoding all byte sequences are valid, for example 114# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 115# could be even 'utf-8' for the old behavior) 116our$fallback_encoding='latin1'; 117 118# rename detection options for git-diff and git-diff-tree 119# - default is '-M', with the cost proportional to 120# (number of removed files) * (number of new files). 121# - more costly is '-C' (which implies '-M'), with the cost proportional to 122# (number of changed files + number of removed files) * (number of new files) 123# - even more costly is '-C', '--find-copies-harder' with cost 124# (number of files in the original tree) * (number of new files) 125# - one might want to include '-B' option, e.g. '-B', '-M' 126our@diff_opts= ('-M');# taken from git_commit 127 128# information about snapshot formats that gitweb is capable of serving 129our%known_snapshot_formats= ( 130# name => { 131# 'display' => display name, 132# 'type' => mime type, 133# 'suffix' => filename suffix, 134# 'format' => --format for git-archive, 135# 'compressor' => [compressor command and arguments] 136# (array reference, optional)} 137# 138'tgz'=> { 139'display'=>'tar.gz', 140'type'=>'application/x-gzip', 141'suffix'=>'.tar.gz', 142'format'=>'tar', 143'compressor'=> ['gzip']}, 144 145'tbz2'=> { 146'display'=>'tar.bz2', 147'type'=>'application/x-bzip2', 148'suffix'=>'.tar.bz2', 149'format'=>'tar', 150'compressor'=> ['bzip2']}, 151 152'zip'=> { 153'display'=>'zip', 154'type'=>'application/x-zip', 155'suffix'=>'.zip', 156'format'=>'zip'}, 157); 158 159# Aliases so we understand old gitweb.snapshot values in repository 160# configuration. 161our%known_snapshot_format_aliases= ( 162'gzip'=>'tgz', 163'bzip2'=>'tbz2', 164 165# backward compatibility: legacy gitweb config support 166'x-gzip'=>undef,'gz'=>undef, 167'x-bzip2'=>undef,'bz2'=>undef, 168'x-zip'=>undef,''=>undef, 169); 170 171# You define site-wide feature defaults here; override them with 172# $GITWEB_CONFIG as necessary. 173our%feature= ( 174# feature => { 175# 'sub' => feature-sub (subroutine), 176# 'override' => allow-override (boolean), 177# 'default' => [ default options...] (array reference)} 178# 179# if feature is overridable (it means that allow-override has true value), 180# then feature-sub will be called with default options as parameters; 181# return value of feature-sub indicates if to enable specified feature 182# 183# if there is no 'sub' key (no feature-sub), then feature cannot be 184# overriden 185# 186# use gitweb_check_feature(<feature>) to check if <feature> is enabled 187 188# Enable the 'blame' blob view, showing the last commit that modified 189# each line in the file. This can be very CPU-intensive. 190 191# To enable system wide have in $GITWEB_CONFIG 192# $feature{'blame'}{'default'} = [1]; 193# To have project specific config enable override in $GITWEB_CONFIG 194# $feature{'blame'}{'override'} = 1; 195# and in project config gitweb.blame = 0|1; 196'blame'=> { 197'sub'=> \&feature_blame, 198'override'=>0, 199'default'=> [0]}, 200 201# Enable the 'snapshot' link, providing a compressed archive of any 202# tree. This can potentially generate high traffic if you have large 203# project. 204 205# Value is a list of formats defined in %known_snapshot_formats that 206# you wish to offer. 207# To disable system wide have in $GITWEB_CONFIG 208# $feature{'snapshot'}{'default'} = []; 209# To have project specific config enable override in $GITWEB_CONFIG 210# $feature{'snapshot'}{'override'} = 1; 211# and in project config, a comma-separated list of formats or "none" 212# to disable. Example: gitweb.snapshot = tbz2,zip; 213'snapshot'=> { 214'sub'=> \&feature_snapshot, 215'override'=>0, 216'default'=> ['tgz']}, 217 218# Enable text search, which will list the commits which match author, 219# committer or commit text to a given string. Enabled by default. 220# Project specific override is not supported. 221'search'=> { 222'override'=>0, 223'default'=> [1]}, 224 225# Enable grep search, which will list the files in currently selected 226# tree containing the given string. Enabled by default. This can be 227# potentially CPU-intensive, of course. 228 229# To enable system wide have in $GITWEB_CONFIG 230# $feature{'grep'}{'default'} = [1]; 231# To have project specific config enable override in $GITWEB_CONFIG 232# $feature{'grep'}{'override'} = 1; 233# and in project config gitweb.grep = 0|1; 234'grep'=> { 235'override'=>0, 236'default'=> [1]}, 237 238# Enable the pickaxe search, which will list the commits that modified 239# a given string in a file. This can be practical and quite faster 240# alternative to 'blame', but still potentially CPU-intensive. 241 242# To enable system wide have in $GITWEB_CONFIG 243# $feature{'pickaxe'}{'default'} = [1]; 244# To have project specific config enable override in $GITWEB_CONFIG 245# $feature{'pickaxe'}{'override'} = 1; 246# and in project config gitweb.pickaxe = 0|1; 247'pickaxe'=> { 248'sub'=> \&feature_pickaxe, 249'override'=>0, 250'default'=> [1]}, 251 252# Make gitweb use an alternative format of the URLs which can be 253# more readable and natural-looking: project name is embedded 254# directly in the path and the query string contains other 255# auxiliary information. All gitweb installations recognize 256# URL in either format; this configures in which formats gitweb 257# generates links. 258 259# To enable system wide have in $GITWEB_CONFIG 260# $feature{'pathinfo'}{'default'} = [1]; 261# Project specific override is not supported. 262 263# Note that you will need to change the default location of CSS, 264# favicon, logo and possibly other files to an absolute URL. Also, 265# if gitweb.cgi serves as your indexfile, you will need to force 266# $my_uri to contain the script name in your $GITWEB_CONFIG. 267'pathinfo'=> { 268'override'=>0, 269'default'=> [0]}, 270 271# Make gitweb consider projects in project root subdirectories 272# to be forks of existing projects. Given project $projname.git, 273# projects matching $projname/*.git will not be shown in the main 274# projects list, instead a '+' mark will be added to $projname 275# there and a 'forks' view will be enabled for the project, listing 276# all the forks. If project list is taken from a file, forks have 277# to be listed after the main project. 278 279# To enable system wide have in $GITWEB_CONFIG 280# $feature{'forks'}{'default'} = [1]; 281# Project specific override is not supported. 282'forks'=> { 283'override'=>0, 284'default'=> [0]}, 285 286# Allow gitweb scan project content tags described in ctags/ 287# of project repository, and display the popular Web 2.0-ish 288# "tag cloud" near the project list. Note that this is something 289# COMPLETELY different from the normal Git tags. 290 291# gitweb by itself can show existing tags, but it does not handle 292# tagging itself; you need an external application for that. 293# For an example script, check Girocco's cgi/tagproj.cgi. 294# You may want to install the HTML::TagCloud Perl module to get 295# a pretty tag cloud instead of just a list of tags. 296 297# To enable system wide have in $GITWEB_CONFIG 298# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 299# Project specific override is not supported. 300'ctags'=> { 301'override'=>0, 302'default'=> [0]}, 303); 304 305sub gitweb_check_feature { 306my($name) =@_; 307return unlessexists$feature{$name}; 308my($sub,$override,@defaults) = ( 309$feature{$name}{'sub'}, 310$feature{$name}{'override'}, 311@{$feature{$name}{'default'}}); 312if(!$override) {return@defaults; } 313if(!defined$sub) { 314warn"feature$nameis not overrideable"; 315return@defaults; 316} 317return$sub->(@defaults); 318} 319 320sub feature_blame { 321my($val) = git_get_project_config('blame','--bool'); 322 323if($valeq'true') { 324return1; 325}elsif($valeq'false') { 326return0; 327} 328 329return$_[0]; 330} 331 332sub feature_snapshot { 333my(@fmts) =@_; 334 335my($val) = git_get_project_config('snapshot'); 336 337if($val) { 338@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 339} 340 341return@fmts; 342} 343 344sub feature_grep { 345my($val) = git_get_project_config('grep','--bool'); 346 347if($valeq'true') { 348return(1); 349}elsif($valeq'false') { 350return(0); 351} 352 353return($_[0]); 354} 355 356sub feature_pickaxe { 357my($val) = git_get_project_config('pickaxe','--bool'); 358 359if($valeq'true') { 360return(1); 361}elsif($valeq'false') { 362return(0); 363} 364 365return($_[0]); 366} 367 368# checking HEAD file with -e is fragile if the repository was 369# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 370# and then pruned. 371sub check_head_link { 372my($dir) =@_; 373my$headfile="$dir/HEAD"; 374return((-e $headfile) || 375(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 376} 377 378sub check_export_ok { 379my($dir) =@_; 380return(check_head_link($dir) && 381(!$export_ok|| -e "$dir/$export_ok")); 382} 383 384# process alternate names for backward compatibility 385# filter out unsupported (unknown) snapshot formats 386sub filter_snapshot_fmts { 387my@fmts=@_; 388 389@fmts=map{ 390exists$known_snapshot_format_aliases{$_} ? 391$known_snapshot_format_aliases{$_} :$_}@fmts; 392@fmts=grep(exists$known_snapshot_formats{$_},@fmts); 393 394} 395 396our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 397if(-e $GITWEB_CONFIG) { 398do$GITWEB_CONFIG; 399}else{ 400our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 401do$GITWEB_CONFIG_SYSTEMif-e $GITWEB_CONFIG_SYSTEM; 402} 403 404# version of the core git binary 405our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 406 407$projects_list||=$projectroot; 408 409# ====================================================================== 410# input validation and dispatch 411our$action=$cgi->param('a'); 412if(defined$action) { 413if($action=~m/[^0-9a-zA-Z\.\-_]/) { 414 die_error(400,"Invalid action parameter"); 415} 416} 417 418# parameters which are pathnames 419our$project=$cgi->param('p'); 420if(defined$project) { 421if(!validate_pathname($project) || 422!(-d "$projectroot/$project") || 423!check_head_link("$projectroot/$project") || 424($export_ok&& !(-e "$projectroot/$project/$export_ok")) || 425($strict_export&& !project_in_list($project))) { 426undef$project; 427 die_error(404,"No such project"); 428} 429} 430 431our$file_name=$cgi->param('f'); 432if(defined$file_name) { 433if(!validate_pathname($file_name)) { 434 die_error(400,"Invalid file parameter"); 435} 436} 437 438our$file_parent=$cgi->param('fp'); 439if(defined$file_parent) { 440if(!validate_pathname($file_parent)) { 441 die_error(400,"Invalid file parent parameter"); 442} 443} 444 445# parameters which are refnames 446our$hash=$cgi->param('h'); 447if(defined$hash) { 448if(!validate_refname($hash)) { 449 die_error(400,"Invalid hash parameter"); 450} 451} 452 453our$hash_parent=$cgi->param('hp'); 454if(defined$hash_parent) { 455if(!validate_refname($hash_parent)) { 456 die_error(400,"Invalid hash parent parameter"); 457} 458} 459 460our$hash_base=$cgi->param('hb'); 461if(defined$hash_base) { 462if(!validate_refname($hash_base)) { 463 die_error(400,"Invalid hash base parameter"); 464} 465} 466 467my%allowed_options= ( 468"--no-merges"=> [qw(rss atom log shortlog history)], 469); 470 471our@extra_options=$cgi->param('opt'); 472if(defined@extra_options) { 473foreachmy$opt(@extra_options) { 474if(not exists$allowed_options{$opt}) { 475 die_error(400,"Invalid option parameter"); 476} 477if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 478 die_error(400,"Invalid option parameter for this action"); 479} 480} 481} 482 483our$hash_parent_base=$cgi->param('hpb'); 484if(defined$hash_parent_base) { 485if(!validate_refname($hash_parent_base)) { 486 die_error(400,"Invalid hash parent base parameter"); 487} 488} 489 490# other parameters 491our$page=$cgi->param('pg'); 492if(defined$page) { 493if($page=~m/[^0-9]/) { 494 die_error(400,"Invalid page parameter"); 495} 496} 497 498our$searchtype=$cgi->param('st'); 499if(defined$searchtype) { 500if($searchtype=~m/[^a-z]/) { 501 die_error(400,"Invalid searchtype parameter"); 502} 503} 504 505our$search_use_regexp=$cgi->param('sr'); 506 507our$searchtext=$cgi->param('s'); 508our$search_regexp; 509if(defined$searchtext) { 510if(length($searchtext) <2) { 511 die_error(403,"At least two characters are required for search parameter"); 512} 513$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext; 514} 515 516# now read PATH_INFO and use it as alternative to parameters 517sub evaluate_path_info { 518return ifdefined$project; 519my$path_info=$ENV{"PATH_INFO"}; 520return if!$path_info; 521$path_info=~ s,^/+,,; 522return if!$path_info; 523# find which part of PATH_INFO is project 524$project=$path_info; 525$project=~ s,/+$,,; 526while($project&& !check_head_link("$projectroot/$project")) { 527$project=~ s,/*[^/]*$,,; 528} 529# validate project 530$project= validate_pathname($project); 531if(!$project|| 532($export_ok&& !-e "$projectroot/$project/$export_ok") || 533($strict_export&& !project_in_list($project))) { 534undef$project; 535return; 536} 537# do not change any parameters if an action is given using the query string 538return if$action; 539$path_info=~ s,^\Q$project\E/*,,; 540my($refname,$pathname) =split(/:/,$path_info,2); 541if(defined$pathname) { 542# we got "project.git/branch:filename" or "project.git/branch:dir/" 543# we could use git_get_type(branch:pathname), but it needs $git_dir 544$pathname=~ s,^/+,,; 545if(!$pathname||substr($pathname, -1)eq"/") { 546$action||="tree"; 547$pathname=~ s,/$,,; 548}else{ 549$action||="blob_plain"; 550} 551$hash_base||= validate_refname($refname); 552$file_name||= validate_pathname($pathname); 553}elsif(defined$refname) { 554# we got "project.git/branch" 555$action||="shortlog"; 556$hash||= validate_refname($refname); 557} 558} 559evaluate_path_info(); 560 561# path to the current git repository 562our$git_dir; 563$git_dir="$projectroot/$project"if$project; 564 565# dispatch 566my%actions= ( 567"blame"=> \&git_blame, 568"blobdiff"=> \&git_blobdiff, 569"blobdiff_plain"=> \&git_blobdiff_plain, 570"blob"=> \&git_blob, 571"blob_plain"=> \&git_blob_plain, 572"commitdiff"=> \&git_commitdiff, 573"commitdiff_plain"=> \&git_commitdiff_plain, 574"commit"=> \&git_commit, 575"forks"=> \&git_forks, 576"heads"=> \&git_heads, 577"history"=> \&git_history, 578"log"=> \&git_log, 579"rss"=> \&git_rss, 580"atom"=> \&git_atom, 581"search"=> \&git_search, 582"search_help"=> \&git_search_help, 583"shortlog"=> \&git_shortlog, 584"summary"=> \&git_summary, 585"tag"=> \&git_tag, 586"tags"=> \&git_tags, 587"tree"=> \&git_tree, 588"snapshot"=> \&git_snapshot, 589"object"=> \&git_object, 590# those below don't need $project 591"opml"=> \&git_opml, 592"project_list"=> \&git_project_list, 593"project_index"=> \&git_project_index, 594); 595 596if(!defined$action) { 597if(defined$hash) { 598$action= git_get_type($hash); 599}elsif(defined$hash_base&&defined$file_name) { 600$action= git_get_type("$hash_base:$file_name"); 601}elsif(defined$project) { 602$action='summary'; 603}else{ 604$action='project_list'; 605} 606} 607if(!defined($actions{$action})) { 608 die_error(400,"Unknown action"); 609} 610if($action!~m/^(opml|project_list|project_index)$/&& 611!$project) { 612 die_error(400,"Project needed"); 613} 614$actions{$action}->(); 615exit; 616 617## ====================================================================== 618## action links 619 620sub href (%) { 621my%params=@_; 622# default is to use -absolute url() i.e. $my_uri 623my$href=$params{-full} ?$my_url:$my_uri; 624 625# XXX: Warning: If you touch this, check the search form for updating, 626# too. 627 628my@mapping= ( 629 project =>"p", 630 action =>"a", 631 file_name =>"f", 632 file_parent =>"fp", 633 hash =>"h", 634 hash_parent =>"hp", 635 hash_base =>"hb", 636 hash_parent_base =>"hpb", 637 page =>"pg", 638 order =>"o", 639 searchtext =>"s", 640 searchtype =>"st", 641 snapshot_format =>"sf", 642 extra_options =>"opt", 643 search_use_regexp =>"sr", 644); 645my%mapping=@mapping; 646 647$params{'project'} =$projectunlessexists$params{'project'}; 648 649if($params{-replay}) { 650while(my($name,$symbol) =each%mapping) { 651if(!exists$params{$name}) { 652# to allow for multivalued params we use arrayref form 653$params{$name} = [$cgi->param($symbol) ]; 654} 655} 656} 657 658my($use_pathinfo) = gitweb_check_feature('pathinfo'); 659if($use_pathinfo) { 660# use PATH_INFO for project name 661$href.="/".esc_url($params{'project'})ifdefined$params{'project'}; 662delete$params{'project'}; 663 664# Summary just uses the project path URL 665if(defined$params{'action'} &&$params{'action'}eq'summary') { 666delete$params{'action'}; 667} 668} 669 670# now encode the parameters explicitly 671my@result= (); 672for(my$i=0;$i<@mapping;$i+=2) { 673my($name,$symbol) = ($mapping[$i],$mapping[$i+1]); 674if(defined$params{$name}) { 675if(ref($params{$name})eq"ARRAY") { 676foreachmy$par(@{$params{$name}}) { 677push@result,$symbol."=". esc_param($par); 678} 679}else{ 680push@result,$symbol."=". esc_param($params{$name}); 681} 682} 683} 684$href.="?".join(';',@result)ifscalar@result; 685 686return$href; 687} 688 689 690## ====================================================================== 691## validation, quoting/unquoting and escaping 692 693sub validate_pathname { 694my$input=shift||returnundef; 695 696# no '.' or '..' as elements of path, i.e. no '.' nor '..' 697# at the beginning, at the end, and between slashes. 698# also this catches doubled slashes 699if($input=~m!(^|/)(|\.|\.\.)(/|$)!) { 700returnundef; 701} 702# no null characters 703if($input=~m!\0!) { 704returnundef; 705} 706return$input; 707} 708 709sub validate_refname { 710my$input=shift||returnundef; 711 712# textual hashes are O.K. 713if($input=~m/^[0-9a-fA-F]{40}$/) { 714return$input; 715} 716# it must be correct pathname 717$input= validate_pathname($input) 718orreturnundef; 719# restrictions on ref name according to git-check-ref-format 720if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) { 721returnundef; 722} 723return$input; 724} 725 726# decode sequences of octets in utf8 into Perl's internal form, 727# which is utf-8 with utf8 flag set if needed. gitweb writes out 728# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning 729sub to_utf8 { 730my$str=shift; 731if(utf8::valid($str)) { 732 utf8::decode($str); 733return$str; 734}else{ 735return decode($fallback_encoding,$str, Encode::FB_DEFAULT); 736} 737} 738 739# quote unsafe chars, but keep the slash, even when it's not 740# correct, but quoted slashes look too horrible in bookmarks 741sub esc_param { 742my$str=shift; 743$str=~s/([^A-Za-z0-9\-_.~()\/:@])/sprintf("%%%02X",ord($1))/eg; 744$str=~s/\+/%2B/g; 745$str=~s/ /\+/g; 746return$str; 747} 748 749# quote unsafe chars in whole URL, so some charactrs cannot be quoted 750sub esc_url { 751my$str=shift; 752$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf("%%%02X",ord($1))/eg; 753$str=~s/\+/%2B/g; 754$str=~s/ /\+/g; 755return$str; 756} 757 758# replace invalid utf8 character with SUBSTITUTION sequence 759sub esc_html ($;%) { 760my$str=shift; 761my%opts=@_; 762 763$str= to_utf8($str); 764$str=$cgi->escapeHTML($str); 765if($opts{'-nbsp'}) { 766$str=~s/ / /g; 767} 768$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg; 769return$str; 770} 771 772# quote control characters and escape filename to HTML 773sub esc_path { 774my$str=shift; 775my%opts=@_; 776 777$str= to_utf8($str); 778$str=$cgi->escapeHTML($str); 779if($opts{'-nbsp'}) { 780$str=~s/ / /g; 781} 782$str=~ s|([[:cntrl:]])|quot_cec($1)|eg; 783return$str; 784} 785 786# Make control characters "printable", using character escape codes (CEC) 787sub quot_cec { 788my$cntrl=shift; 789my%opts=@_; 790my%es= (# character escape codes, aka escape sequences 791"\t"=>'\t',# tab (HT) 792"\n"=>'\n',# line feed (LF) 793"\r"=>'\r',# carrige return (CR) 794"\f"=>'\f',# form feed (FF) 795"\b"=>'\b',# backspace (BS) 796"\a"=>'\a',# alarm (bell) (BEL) 797"\e"=>'\e',# escape (ESC) 798"\013"=>'\v',# vertical tab (VT) 799"\000"=>'\0',# nul character (NUL) 800); 801my$chr= ( (exists$es{$cntrl}) 802?$es{$cntrl} 803:sprintf('\%2x',ord($cntrl)) ); 804if($opts{-nohtml}) { 805return$chr; 806}else{ 807return"<span class=\"cntrl\">$chr</span>"; 808} 809} 810 811# Alternatively use unicode control pictures codepoints, 812# Unicode "printable representation" (PR) 813sub quot_upr { 814my$cntrl=shift; 815my%opts=@_; 816 817my$chr=sprintf('&#%04d;',0x2400+ord($cntrl)); 818if($opts{-nohtml}) { 819return$chr; 820}else{ 821return"<span class=\"cntrl\">$chr</span>"; 822} 823} 824 825# git may return quoted and escaped filenames 826sub unquote { 827my$str=shift; 828 829sub unq { 830my$seq=shift; 831my%es= (# character escape codes, aka escape sequences 832't'=>"\t",# tab (HT, TAB) 833'n'=>"\n",# newline (NL) 834'r'=>"\r",# return (CR) 835'f'=>"\f",# form feed (FF) 836'b'=>"\b",# backspace (BS) 837'a'=>"\a",# alarm (bell) (BEL) 838'e'=>"\e",# escape (ESC) 839'v'=>"\013",# vertical tab (VT) 840); 841 842if($seq=~m/^[0-7]{1,3}$/) { 843# octal char sequence 844returnchr(oct($seq)); 845}elsif(exists$es{$seq}) { 846# C escape sequence, aka character escape code 847return$es{$seq}; 848} 849# quoted ordinary character 850return$seq; 851} 852 853if($str=~m/^"(.*)"$/) { 854# needs unquoting 855$str=$1; 856$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg; 857} 858return$str; 859} 860 861# escape tabs (convert tabs to spaces) 862sub untabify { 863my$line=shift; 864 865while((my$pos=index($line,"\t")) != -1) { 866if(my$count= (8- ($pos%8))) { 867my$spaces=' ' x $count; 868$line=~s/\t/$spaces/; 869} 870} 871 872return$line; 873} 874 875sub project_in_list { 876my$project=shift; 877my@list= git_get_projects_list(); 878return@list&&scalar(grep{$_->{'path'}eq$project}@list); 879} 880 881## ---------------------------------------------------------------------- 882## HTML aware string manipulation 883 884# Try to chop given string on a word boundary between position 885# $len and $len+$add_len. If there is no word boundary there, 886# chop at $len+$add_len. Do not chop if chopped part plus ellipsis 887# (marking chopped part) would be longer than given string. 888sub chop_str { 889my$str=shift; 890my$len=shift; 891my$add_len=shift||10; 892my$where=shift||'right';# 'left' | 'center' | 'right' 893 894# Make sure perl knows it is utf8 encoded so we don't 895# cut in the middle of a utf8 multibyte char. 896$str= to_utf8($str); 897 898# allow only $len chars, but don't cut a word if it would fit in $add_len 899# if it doesn't fit, cut it if it's still longer than the dots we would add 900# remove chopped character entities entirely 901 902# when chopping in the middle, distribute $len into left and right part 903# return early if chopping wouldn't make string shorter 904if($whereeq'center') { 905return$strif($len+5>=length($str));# filler is length 5 906$len=int($len/2); 907}else{ 908return$strif($len+4>=length($str));# filler is length 4 909} 910 911# regexps: ending and beginning with word part up to $add_len 912my$endre=qr/.{$len}\w{0,$add_len}/; 913my$begre=qr/\w{0,$add_len}.{$len}/; 914 915if($whereeq'left') { 916$str=~m/^(.*?)($begre)$/; 917my($lead,$body) = ($1,$2); 918if(length($lead) >4) { 919$body=~s/^[^;]*;//if($lead=~m/&[^;]*$/); 920$lead=" ..."; 921} 922return"$lead$body"; 923 924}elsif($whereeq'center') { 925$str=~m/^($endre)(.*)$/; 926my($left,$str) = ($1,$2); 927$str=~m/^(.*?)($begre)$/; 928my($mid,$right) = ($1,$2); 929if(length($mid) >5) { 930$left=~s/&[^;]*$//; 931$right=~s/^[^;]*;//if($mid=~m/&[^;]*$/); 932$mid=" ... "; 933} 934return"$left$mid$right"; 935 936}else{ 937$str=~m/^($endre)(.*)$/; 938my$body=$1; 939my$tail=$2; 940if(length($tail) >4) { 941$body=~s/&[^;]*$//; 942$tail="... "; 943} 944return"$body$tail"; 945} 946} 947 948# takes the same arguments as chop_str, but also wraps a <span> around the 949# result with a title attribute if it does get chopped. Additionally, the 950# string is HTML-escaped. 951sub chop_and_escape_str { 952my($str) =@_; 953 954my$chopped= chop_str(@_); 955if($choppedeq$str) { 956return esc_html($chopped); 957}else{ 958$str=~s/([[:cntrl:]])/?/g; 959return$cgi->span({-title=>$str}, esc_html($chopped)); 960} 961} 962 963## ---------------------------------------------------------------------- 964## functions returning short strings 965 966# CSS class for given age value (in seconds) 967sub age_class { 968my$age=shift; 969 970if(!defined$age) { 971return"noage"; 972}elsif($age<60*60*2) { 973return"age0"; 974}elsif($age<60*60*24*2) { 975return"age1"; 976}else{ 977return"age2"; 978} 979} 980 981# convert age in seconds to "nn units ago" string 982sub age_string { 983my$age=shift; 984my$age_str; 985 986if($age>60*60*24*365*2) { 987$age_str= (int$age/60/60/24/365); 988$age_str.=" years ago"; 989}elsif($age>60*60*24*(365/12)*2) { 990$age_str=int$age/60/60/24/(365/12); 991$age_str.=" months ago"; 992}elsif($age>60*60*24*7*2) { 993$age_str=int$age/60/60/24/7; 994$age_str.=" weeks ago"; 995}elsif($age>60*60*24*2) { 996$age_str=int$age/60/60/24; 997$age_str.=" days ago"; 998}elsif($age>60*60*2) { 999$age_str=int$age/60/60;1000$age_str.=" hours ago";1001}elsif($age>60*2) {1002$age_str=int$age/60;1003$age_str.=" min ago";1004}elsif($age>2) {1005$age_str=int$age;1006$age_str.=" sec ago";1007}else{1008$age_str.=" right now";1009}1010return$age_str;1011}10121013useconstant{1014 S_IFINVALID =>0030000,1015 S_IFGITLINK =>0160000,1016};10171018# submodule/subproject, a commit object reference1019sub S_ISGITLINK($) {1020my$mode=shift;10211022return(($mode& S_IFMT) == S_IFGITLINK)1023}10241025# convert file mode in octal to symbolic file mode string1026sub mode_str {1027my$mode=oct shift;10281029if(S_ISGITLINK($mode)) {1030return'm---------';1031}elsif(S_ISDIR($mode& S_IFMT)) {1032return'drwxr-xr-x';1033}elsif(S_ISLNK($mode)) {1034return'lrwxrwxrwx';1035}elsif(S_ISREG($mode)) {1036# git cares only about the executable bit1037if($mode& S_IXUSR) {1038return'-rwxr-xr-x';1039}else{1040return'-rw-r--r--';1041};1042}else{1043return'----------';1044}1045}10461047# convert file mode in octal to file type string1048sub file_type {1049my$mode=shift;10501051if($mode!~m/^[0-7]+$/) {1052return$mode;1053}else{1054$mode=oct$mode;1055}10561057if(S_ISGITLINK($mode)) {1058return"submodule";1059}elsif(S_ISDIR($mode& S_IFMT)) {1060return"directory";1061}elsif(S_ISLNK($mode)) {1062return"symlink";1063}elsif(S_ISREG($mode)) {1064return"file";1065}else{1066return"unknown";1067}1068}10691070# convert file mode in octal to file type description string1071sub file_type_long {1072my$mode=shift;10731074if($mode!~m/^[0-7]+$/) {1075return$mode;1076}else{1077$mode=oct$mode;1078}10791080if(S_ISGITLINK($mode)) {1081return"submodule";1082}elsif(S_ISDIR($mode& S_IFMT)) {1083return"directory";1084}elsif(S_ISLNK($mode)) {1085return"symlink";1086}elsif(S_ISREG($mode)) {1087if($mode& S_IXUSR) {1088return"executable";1089}else{1090return"file";1091};1092}else{1093return"unknown";1094}1095}109610971098## ----------------------------------------------------------------------1099## functions returning short HTML fragments, or transforming HTML fragments1100## which don't belong to other sections11011102# format line of commit message.1103sub format_log_line_html {1104my$line=shift;11051106$line= esc_html($line, -nbsp=>1);1107if($line=~m/([0-9a-fA-F]{8,40})/) {1108my$hash_text=$1;1109my$link=1110$cgi->a({-href => href(action=>"object", hash=>$hash_text),1111-class=>"text"},$hash_text);1112$line=~s/$hash_text/$link/;1113}1114return$line;1115}11161117# format marker of refs pointing to given object11181119# the destination action is chosen based on object type and current context:1120# - for annotated tags, we choose the tag view unless it's the current view1121# already, in which case we go to shortlog view1122# - for other refs, we keep the current view if we're in history, shortlog or1123# log view, and select shortlog otherwise1124sub format_ref_marker {1125my($refs,$id) =@_;1126my$markers='';11271128if(defined$refs->{$id}) {1129foreachmy$ref(@{$refs->{$id}}) {1130# this code exploits the fact that non-lightweight tags are the1131# only indirect objects, and that they are the only objects for which1132# we want to use tag instead of shortlog as action1133my($type,$name) =qw();1134my$indirect= ($ref=~s/\^\{\}$//);1135# e.g. tags/v2.6.11 or heads/next1136if($ref=~m!^(.*?)s?/(.*)$!) {1137$type=$1;1138$name=$2;1139}else{1140$type="ref";1141$name=$ref;1142}11431144my$class=$type;1145$class.=" indirect"if$indirect;11461147my$dest_action="shortlog";11481149if($indirect) {1150$dest_action="tag"unless$actioneq"tag";1151}elsif($action=~/^(history|(short)?log)$/) {1152$dest_action=$action;1153}11541155my$dest="";1156$dest.="refs/"unless$ref=~ m!^refs/!;1157$dest.=$ref;11581159my$link=$cgi->a({1160-href => href(1161 action=>$dest_action,1162 hash=>$dest1163)},$name);11641165$markers.=" <span class=\"$class\"title=\"$ref\">".1166$link."</span>";1167}1168}11691170if($markers) {1171return' <span class="refs">'.$markers.'</span>';1172}else{1173return"";1174}1175}11761177# format, perhaps shortened and with markers, title line1178sub format_subject_html {1179my($long,$short,$href,$extra) =@_;1180$extra=''unlessdefined($extra);11811182if(length($short) <length($long)) {1183return$cgi->a({-href =>$href, -class=>"list subject",1184-title => to_utf8($long)},1185 esc_html($short) .$extra);1186}else{1187return$cgi->a({-href =>$href, -class=>"list subject"},1188 esc_html($long) .$extra);1189}1190}11911192# format git diff header line, i.e. "diff --(git|combined|cc) ..."1193sub format_git_diff_header_line {1194my$line=shift;1195my$diffinfo=shift;1196my($from,$to) =@_;11971198if($diffinfo->{'nparents'}) {1199# combined diff1200$line=~s!^(diff (.*?) )"?.*$!$1!;1201if($to->{'href'}) {1202$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1203 esc_path($to->{'file'}));1204}else{# file was deleted (no href)1205$line.= esc_path($to->{'file'});1206}1207}else{1208# "ordinary" diff1209$line=~s!^(diff (.*?) )"?a/.*$!$1!;1210if($from->{'href'}) {1211$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1212'a/'. esc_path($from->{'file'}));1213}else{# file was added (no href)1214$line.='a/'. esc_path($from->{'file'});1215}1216$line.=' ';1217if($to->{'href'}) {1218$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1219'b/'. esc_path($to->{'file'}));1220}else{# file was deleted1221$line.='b/'. esc_path($to->{'file'});1222}1223}12241225return"<div class=\"diff header\">$line</div>\n";1226}12271228# format extended diff header line, before patch itself1229sub format_extended_diff_header_line {1230my$line=shift;1231my$diffinfo=shift;1232my($from,$to) =@_;12331234# match <path>1235if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {1236$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},1237 esc_path($from->{'file'}));1238}1239if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {1240$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},1241 esc_path($to->{'file'}));1242}1243# match single <mode>1244if($line=~m/\s(\d{6})$/) {1245$line.='<span class="info"> ('.1246 file_type_long($1) .1247')</span>';1248}1249# match <hash>1250if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {1251# can match only for combined diff1252$line='index ';1253for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1254if($from->{'href'}[$i]) {1255$line.=$cgi->a({-href=>$from->{'href'}[$i],1256-class=>"hash"},1257substr($diffinfo->{'from_id'}[$i],0,7));1258}else{1259$line.='0' x 7;1260}1261# separator1262$line.=','if($i<$diffinfo->{'nparents'} -1);1263}1264$line.='..';1265if($to->{'href'}) {1266$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1267substr($diffinfo->{'to_id'},0,7));1268}else{1269$line.='0' x 7;1270}12711272}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {1273# can match only for ordinary diff1274my($from_link,$to_link);1275if($from->{'href'}) {1276$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},1277substr($diffinfo->{'from_id'},0,7));1278}else{1279$from_link='0' x 7;1280}1281if($to->{'href'}) {1282$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1283substr($diffinfo->{'to_id'},0,7));1284}else{1285$to_link='0' x 7;1286}1287my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});1288$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;1289}12901291return$line."<br/>\n";1292}12931294# format from-file/to-file diff header1295sub format_diff_from_to_header {1296my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;1297my$line;1298my$result='';12991300$line=$from_line;1301#assert($line =~ m/^---/) if DEBUG;1302# no extra formatting for "^--- /dev/null"1303if(!$diffinfo->{'nparents'}) {1304# ordinary (single parent) diff1305if($line=~m!^--- "?a/!) {1306if($from->{'href'}) {1307$line='--- a/'.1308$cgi->a({-href=>$from->{'href'}, -class=>"path"},1309 esc_path($from->{'file'}));1310}else{1311$line='--- a/'.1312 esc_path($from->{'file'});1313}1314}1315$result.= qq!<div class="diff from_file">$line</div>\n!;13161317}else{1318# combined diff (merge commit)1319for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1320if($from->{'href'}[$i]) {1321$line='--- '.1322$cgi->a({-href=>href(action=>"blobdiff",1323 hash_parent=>$diffinfo->{'from_id'}[$i],1324 hash_parent_base=>$parents[$i],1325 file_parent=>$from->{'file'}[$i],1326 hash=>$diffinfo->{'to_id'},1327 hash_base=>$hash,1328 file_name=>$to->{'file'}),1329-class=>"path",1330-title=>"diff". ($i+1)},1331$i+1) .1332'/'.1333$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},1334 esc_path($from->{'file'}[$i]));1335}else{1336$line='--- /dev/null';1337}1338$result.= qq!<div class="diff from_file">$line</div>\n!;1339}1340}13411342$line=$to_line;1343#assert($line =~ m/^\+\+\+/) if DEBUG;1344# no extra formatting for "^+++ /dev/null"1345if($line=~m!^\+\+\+ "?b/!) {1346if($to->{'href'}) {1347$line='+++ b/'.1348$cgi->a({-href=>$to->{'href'}, -class=>"path"},1349 esc_path($to->{'file'}));1350}else{1351$line='+++ b/'.1352 esc_path($to->{'file'});1353}1354}1355$result.= qq!<div class="diff to_file">$line</div>\n!;13561357return$result;1358}13591360# create note for patch simplified by combined diff1361sub format_diff_cc_simplified {1362my($diffinfo,@parents) =@_;1363my$result='';13641365$result.="<div class=\"diff header\">".1366"diff --cc ";1367if(!is_deleted($diffinfo)) {1368$result.=$cgi->a({-href => href(action=>"blob",1369 hash_base=>$hash,1370 hash=>$diffinfo->{'to_id'},1371 file_name=>$diffinfo->{'to_file'}),1372-class=>"path"},1373 esc_path($diffinfo->{'to_file'}));1374}else{1375$result.= esc_path($diffinfo->{'to_file'});1376}1377$result.="</div>\n".# class="diff header"1378"<div class=\"diff nodifferences\">".1379"Simple merge".1380"</div>\n";# class="diff nodifferences"13811382return$result;1383}13841385# format patch (diff) line (not to be used for diff headers)1386sub format_diff_line {1387my$line=shift;1388my($from,$to) =@_;1389my$diff_class="";13901391chomp$line;13921393if($from&&$to&&ref($from->{'href'})eq"ARRAY") {1394# combined diff1395my$prefix=substr($line,0,scalar@{$from->{'href'}});1396if($line=~m/^\@{3}/) {1397$diff_class=" chunk_header";1398}elsif($line=~m/^\\/) {1399$diff_class=" incomplete";1400}elsif($prefix=~tr/+/+/) {1401$diff_class=" add";1402}elsif($prefix=~tr/-/-/) {1403$diff_class=" rem";1404}1405}else{1406# assume ordinary diff1407my$char=substr($line,0,1);1408if($chareq'+') {1409$diff_class=" add";1410}elsif($chareq'-') {1411$diff_class=" rem";1412}elsif($chareq'@') {1413$diff_class=" chunk_header";1414}elsif($chareq"\\") {1415$diff_class=" incomplete";1416}1417}1418$line= untabify($line);1419if($from&&$to&&$line=~m/^\@{2} /) {1420my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =1421$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;14221423$from_lines=0unlessdefined$from_lines;1424$to_lines=0unlessdefined$to_lines;14251426if($from->{'href'}) {1427$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",1428-class=>"list"},$from_text);1429}1430if($to->{'href'}) {1431$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",1432-class=>"list"},$to_text);1433}1434$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".1435"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";1436return"<div class=\"diff$diff_class\">$line</div>\n";1437}elsif($from&&$to&&$line=~m/^\@{3}/) {1438my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;1439my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);14401441@from_text=split(' ',$ranges);1442for(my$i=0;$i<@from_text; ++$i) {1443($from_start[$i],$from_nlines[$i]) =1444(split(',',substr($from_text[$i],1)),0);1445}14461447$to_text=pop@from_text;1448$to_start=pop@from_start;1449$to_nlines=pop@from_nlines;14501451$line="<span class=\"chunk_info\">$prefix";1452for(my$i=0;$i<@from_text; ++$i) {1453if($from->{'href'}[$i]) {1454$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",1455-class=>"list"},$from_text[$i]);1456}else{1457$line.=$from_text[$i];1458}1459$line.=" ";1460}1461if($to->{'href'}) {1462$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",1463-class=>"list"},$to_text);1464}else{1465$line.=$to_text;1466}1467$line.="$prefix</span>".1468"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";1469return"<div class=\"diff$diff_class\">$line</div>\n";1470}1471return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";1472}14731474# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",1475# linked. Pass the hash of the tree/commit to snapshot.1476sub format_snapshot_links {1477my($hash) =@_;1478my@snapshot_fmts= gitweb_check_feature('snapshot');1479@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);1480my$num_fmts=@snapshot_fmts;1481if($num_fmts>1) {1482# A parenthesized list of links bearing format names.1483# e.g. "snapshot (_tar.gz_ _zip_)"1484return"snapshot (".join(' ',map1485$cgi->a({1486-href => href(1487 action=>"snapshot",1488 hash=>$hash,1489 snapshot_format=>$_1490)1491},$known_snapshot_formats{$_}{'display'})1492,@snapshot_fmts) .")";1493}elsif($num_fmts==1) {1494# A single "snapshot" link whose tooltip bears the format name.1495# i.e. "_snapshot_"1496my($fmt) =@snapshot_fmts;1497return1498$cgi->a({1499-href => href(1500 action=>"snapshot",1501 hash=>$hash,1502 snapshot_format=>$fmt1503),1504-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"1505},"snapshot");1506}else{# $num_fmts == 01507returnundef;1508}1509}15101511## ......................................................................1512## functions returning values to be passed, perhaps after some1513## transformation, to other functions; e.g. returning arguments to href()15141515# returns hash to be passed to href to generate gitweb URL1516# in -title key it returns description of link1517sub get_feed_info {1518my$format=shift||'Atom';1519my%res= (action =>lc($format));15201521# feed links are possible only for project views1522return unless(defined$project);1523# some views should link to OPML, or to generic project feed,1524# or don't have specific feed yet (so they should use generic)1525return if($action=~/^(?:tags|heads|forks|tag|search)$/x);15261527my$branch;1528# branches refs uses 'refs/heads/' prefix (fullname) to differentiate1529# from tag links; this also makes possible to detect branch links1530if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||1531(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {1532$branch=$1;1533}1534# find log type for feed description (title)1535my$type='log';1536if(defined$file_name) {1537$type="history of$file_name";1538$type.="/"if($actioneq'tree');1539$type.=" on '$branch'"if(defined$branch);1540}else{1541$type="log of$branch"if(defined$branch);1542}15431544$res{-title} =$type;1545$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);1546$res{'file_name'} =$file_name;15471548return%res;1549}15501551## ----------------------------------------------------------------------1552## git utility subroutines, invoking git commands15531554# returns path to the core git executable and the --git-dir parameter as list1555sub git_cmd {1556return$GIT,'--git-dir='.$git_dir;1557}15581559# quote the given arguments for passing them to the shell1560# quote_command("command", "arg 1", "arg with ' and ! characters")1561# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"1562# Try to avoid using this function wherever possible.1563sub quote_command {1564returnjoin(' ',1565map( {my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_));1566}15671568# get HEAD ref of given project as hash1569sub git_get_head_hash {1570my$project=shift;1571my$o_git_dir=$git_dir;1572my$retval=undef;1573$git_dir="$projectroot/$project";1574if(open my$fd,"-|", git_cmd(),"rev-parse","--verify","HEAD") {1575my$head= <$fd>;1576close$fd;1577if(defined$head&&$head=~/^([0-9a-fA-F]{40})$/) {1578$retval=$1;1579}1580}1581if(defined$o_git_dir) {1582$git_dir=$o_git_dir;1583}1584return$retval;1585}15861587# get type of given object1588sub git_get_type {1589my$hash=shift;15901591open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;1592my$type= <$fd>;1593close$fdorreturn;1594chomp$type;1595return$type;1596}15971598# repository configuration1599our$config_file='';1600our%config;16011602# store multiple values for single key as anonymous array reference1603# single values stored directly in the hash, not as [ <value> ]1604sub hash_set_multi {1605my($hash,$key,$value) =@_;16061607if(!exists$hash->{$key}) {1608$hash->{$key} =$value;1609}elsif(!ref$hash->{$key}) {1610$hash->{$key} = [$hash->{$key},$value];1611}else{1612push@{$hash->{$key}},$value;1613}1614}16151616# return hash of git project configuration1617# optionally limited to some section, e.g. 'gitweb'1618sub git_parse_project_config {1619my$section_regexp=shift;1620my%config;16211622local$/="\0";16231624open my$fh,"-|", git_cmd(),"config",'-z','-l',1625orreturn;16261627while(my$keyval= <$fh>) {1628chomp$keyval;1629my($key,$value) =split(/\n/,$keyval,2);16301631 hash_set_multi(\%config,$key,$value)1632if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);1633}1634close$fh;16351636return%config;1637}16381639# convert config value to boolean, 'true' or 'false'1640# no value, number > 0, 'true' and 'yes' values are true1641# rest of values are treated as false (never as error)1642sub config_to_bool {1643my$val=shift;16441645# strip leading and trailing whitespace1646$val=~s/^\s+//;1647$val=~s/\s+$//;16481649return(!defined$val||# section.key1650($val=~/^\d+$/&&$val) ||# section.key = 11651($val=~/^(?:true|yes)$/i));# section.key = true1652}16531654# convert config value to simple decimal number1655# an optional value suffix of 'k', 'm', or 'g' will cause the value1656# to be multiplied by 1024, 1048576, or 10737418241657sub config_to_int {1658my$val=shift;16591660# strip leading and trailing whitespace1661$val=~s/^\s+//;1662$val=~s/\s+$//;16631664if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {1665$unit=lc($unit);1666# unknown unit is treated as 11667return$num* ($uniteq'g'?1073741824:1668$uniteq'm'?1048576:1669$uniteq'k'?1024:1);1670}1671return$val;1672}16731674# convert config value to array reference, if needed1675sub config_to_multi {1676my$val=shift;16771678returnref($val) ?$val: (defined($val) ? [$val] : []);1679}16801681sub git_get_project_config {1682my($key,$type) =@_;16831684# key sanity check1685return unless($key);1686$key=~s/^gitweb\.//;1687return if($key=~m/\W/);16881689# type sanity check1690if(defined$type) {1691$type=~s/^--//;1692$type=undef1693unless($typeeq'bool'||$typeeq'int');1694}16951696# get config1697if(!defined$config_file||1698$config_filene"$git_dir/config") {1699%config= git_parse_project_config('gitweb');1700$config_file="$git_dir/config";1701}17021703# ensure given type1704if(!defined$type) {1705return$config{"gitweb.$key"};1706}elsif($typeeq'bool') {1707# backward compatibility: 'git config --bool' returns true/false1708return config_to_bool($config{"gitweb.$key"}) ?'true':'false';1709}elsif($typeeq'int') {1710return config_to_int($config{"gitweb.$key"});1711}1712return$config{"gitweb.$key"};1713}17141715# get hash of given path at given ref1716sub git_get_hash_by_path {1717my$base=shift;1718my$path=shift||returnundef;1719my$type=shift;17201721$path=~ s,/+$,,;17221723open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path1724or die_error(500,"Open git-ls-tree failed");1725my$line= <$fd>;1726close$fdorreturnundef;17271728if(!defined$line) {1729# there is no tree or hash given by $path at $base1730returnundef;1731}17321733#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'1734$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;1735if(defined$type&&$typene$2) {1736# type doesn't match1737returnundef;1738}1739return$3;1740}17411742# get path of entry with given hash at given tree-ish (ref)1743# used to get 'from' filename for combined diff (merge commit) for renames1744sub git_get_path_by_hash {1745my$base=shift||return;1746my$hash=shift||return;17471748local$/="\0";17491750open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base1751orreturnundef;1752while(my$line= <$fd>) {1753chomp$line;17541755#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'1756#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'1757if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {1758close$fd;1759return$1;1760}1761}1762close$fd;1763returnundef;1764}17651766## ......................................................................1767## git utility functions, directly accessing git repository17681769sub git_get_project_description {1770my$path=shift;17711772$git_dir="$projectroot/$path";1773open my$fd,"$git_dir/description"1774orreturn git_get_project_config('description');1775my$descr= <$fd>;1776close$fd;1777if(defined$descr) {1778chomp$descr;1779}1780return$descr;1781}17821783sub git_get_project_ctags {1784my$path=shift;1785my$ctags= {};17861787$git_dir="$projectroot/$path";1788foreach(<$git_dir/ctags/*>) {1789open CT,$_ornext;1790my$val= <CT>;1791chomp$val;1792close CT;1793my$ctag=$_;$ctag=~ s#.*/##;1794$ctags->{$ctag} =$val;1795}1796$ctags;1797}17981799sub git_populate_project_tagcloud {1800my$ctags=shift;18011802# First, merge different-cased tags; tags vote on casing1803my%ctags_lc;1804foreach(keys%$ctags) {1805$ctags_lc{lc$_}->{count} +=$ctags->{$_};1806if(not$ctags_lc{lc$_}->{topcount}1807or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {1808$ctags_lc{lc$_}->{topcount} =$ctags->{$_};1809$ctags_lc{lc$_}->{topname} =$_;1810}1811}18121813my$cloud;1814if(eval{require HTML::TagCloud;1; }) {1815$cloud= HTML::TagCloud->new;1816foreach(sort keys%ctags_lc) {1817# Pad the title with spaces so that the cloud looks1818# less crammed.1819my$title=$ctags_lc{$_}->{topname};1820$title=~s/ / /g;1821$title=~s/^/ /g;1822$title=~s/$/ /g;1823$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});1824}1825}else{1826$cloud= \%ctags_lc;1827}1828$cloud;1829}18301831sub git_show_project_tagcloud {1832my($cloud,$count) =@_;1833print STDERR ref($cloud)."..\n";1834if(ref$cloudeq'HTML::TagCloud') {1835return$cloud->html_and_css($count);1836}else{1837my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;1838return'<p align="center">'.join(', ',map{1839"<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"1840}splice(@tags,0,$count)) .'</p>';1841}1842}18431844sub git_get_project_url_list {1845my$path=shift;18461847$git_dir="$projectroot/$path";1848open my$fd,"$git_dir/cloneurl"1849orreturnwantarray?1850@{ config_to_multi(git_get_project_config('url')) } :1851 config_to_multi(git_get_project_config('url'));1852my@git_project_url_list=map{chomp;$_} <$fd>;1853close$fd;18541855returnwantarray?@git_project_url_list: \@git_project_url_list;1856}18571858sub git_get_projects_list {1859my($filter) =@_;1860my@list;18611862$filter||='';1863$filter=~s/\.git$//;18641865my($check_forks) = gitweb_check_feature('forks');18661867if(-d $projects_list) {1868# search in directory1869my$dir=$projects_list. ($filter?"/$filter":'');1870# remove the trailing "/"1871$dir=~s!/+$!!;1872my$pfxlen=length("$dir");1873my$pfxdepth= ($dir=~tr!/!!);18741875 File::Find::find({1876 follow_fast =>1,# follow symbolic links1877 follow_skip =>2,# ignore duplicates1878 dangling_symlinks =>0,# ignore dangling symlinks, silently1879 wanted =>sub{1880# skip project-list toplevel, if we get it.1881return if(m!^[/.]$!);1882# only directories can be git repositories1883return unless(-d $_);1884# don't traverse too deep (Find is super slow on os x)1885if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {1886$File::Find::prune =1;1887return;1888}18891890my$subdir=substr($File::Find::name,$pfxlen+1);1891# we check related file in $projectroot1892if($check_forksand$subdir=~ m#/.#) {1893$File::Find::prune =1;1894}elsif(check_export_ok("$projectroot/$filter/$subdir")) {1895push@list, { path => ($filter?"$filter/":'') .$subdir};1896$File::Find::prune =1;1897}1898},1899},"$dir");19001901}elsif(-f $projects_list) {1902# read from file(url-encoded):1903# 'git%2Fgit.git Linus+Torvalds'1904# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'1905# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'1906my%paths;1907open my($fd),$projects_listorreturn;1908 PROJECT:1909while(my$line= <$fd>) {1910chomp$line;1911my($path,$owner) =split' ',$line;1912$path= unescape($path);1913$owner= unescape($owner);1914if(!defined$path) {1915next;1916}1917if($filterne'') {1918# looking for forks;1919my$pfx=substr($path,0,length($filter));1920if($pfxne$filter) {1921next PROJECT;1922}1923my$sfx=substr($path,length($filter));1924if($sfx!~/^\/.*\.git$/) {1925next PROJECT;1926}1927}elsif($check_forks) {1928 PATH:1929foreachmy$filter(keys%paths) {1930# looking for forks;1931my$pfx=substr($path,0,length($filter));1932if($pfxne$filter) {1933next PATH;1934}1935my$sfx=substr($path,length($filter));1936if($sfx!~/^\/.*\.git$/) {1937next PATH;1938}1939# is a fork, don't include it in1940# the list1941next PROJECT;1942}1943}1944if(check_export_ok("$projectroot/$path")) {1945my$pr= {1946 path =>$path,1947 owner => to_utf8($owner),1948};1949push@list,$pr;1950(my$forks_path=$path) =~s/\.git$//;1951$paths{$forks_path}++;1952}1953}1954close$fd;1955}1956return@list;1957}19581959our$gitweb_project_owner=undef;1960sub git_get_project_list_from_file {19611962return if(defined$gitweb_project_owner);19631964$gitweb_project_owner= {};1965# read from file (url-encoded):1966# 'git%2Fgit.git Linus+Torvalds'1967# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'1968# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'1969if(-f $projects_list) {1970open(my$fd,$projects_list);1971while(my$line= <$fd>) {1972chomp$line;1973my($pr,$ow) =split' ',$line;1974$pr= unescape($pr);1975$ow= unescape($ow);1976$gitweb_project_owner->{$pr} = to_utf8($ow);1977}1978close$fd;1979}1980}19811982sub git_get_project_owner {1983my$project=shift;1984my$owner;19851986returnundefunless$project;1987$git_dir="$projectroot/$project";19881989if(!defined$gitweb_project_owner) {1990 git_get_project_list_from_file();1991}19921993if(exists$gitweb_project_owner->{$project}) {1994$owner=$gitweb_project_owner->{$project};1995}1996if(!defined$owner){1997$owner= git_get_project_config('owner');1998}1999if(!defined$owner) {2000$owner= get_file_owner("$git_dir");2001}20022003return$owner;2004}20052006sub git_get_last_activity {2007my($path) =@_;2008my$fd;20092010$git_dir="$projectroot/$path";2011open($fd,"-|", git_cmd(),'for-each-ref',2012'--format=%(committer)',2013'--sort=-committerdate',2014'--count=1',2015'refs/heads')orreturn;2016my$most_recent= <$fd>;2017close$fdorreturn;2018if(defined$most_recent&&2019$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2020my$timestamp=$1;2021my$age=time-$timestamp;2022return($age, age_string($age));2023}2024return(undef,undef);2025}20262027sub git_get_references {2028my$type=shift||"";2029my%refs;2030# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112031# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2032open my$fd,"-|", git_cmd(),"show-ref","--dereference",2033($type? ("--","refs/$type") : ())# use -- <pattern> if $type2034orreturn;20352036while(my$line= <$fd>) {2037chomp$line;2038if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2039if(defined$refs{$1}) {2040push@{$refs{$1}},$2;2041}else{2042$refs{$1} = [$2];2043}2044}2045}2046close$fdorreturn;2047return \%refs;2048}20492050sub git_get_rev_name_tags {2051my$hash=shift||returnundef;20522053open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2054orreturn;2055my$name_rev= <$fd>;2056close$fd;20572058if($name_rev=~ m|^$hash tags/(.*)$|) {2059return$1;2060}else{2061# catches also '$hash undefined' output2062returnundef;2063}2064}20652066## ----------------------------------------------------------------------2067## parse to hash functions20682069sub parse_date {2070my$epoch=shift;2071my$tz=shift||"-0000";20722073my%date;2074my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2075my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2076my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2077$date{'hour'} =$hour;2078$date{'minute'} =$min;2079$date{'mday'} =$mday;2080$date{'day'} =$days[$wday];2081$date{'month'} =$months[$mon];2082$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2083$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2084$date{'mday-time'} =sprintf"%d%s%02d:%02d",2085$mday,$months[$mon],$hour,$min;2086$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",20871900+$year,1+$mon,$mday,$hour,$min,$sec;20882089$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2090my$local=$epoch+ ((int$1+ ($2/60)) *3600);2091($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2092$date{'hour_local'} =$hour;2093$date{'minute_local'} =$min;2094$date{'tz_local'} =$tz;2095$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",20961900+$year,$mon+1,$mday,2097$hour,$min,$sec,$tz);2098return%date;2099}21002101sub parse_tag {2102my$tag_id=shift;2103my%tag;2104my@comment;21052106open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2107$tag{'id'} =$tag_id;2108while(my$line= <$fd>) {2109chomp$line;2110if($line=~m/^object ([0-9a-fA-F]{40})$/) {2111$tag{'object'} =$1;2112}elsif($line=~m/^type (.+)$/) {2113$tag{'type'} =$1;2114}elsif($line=~m/^tag (.+)$/) {2115$tag{'name'} =$1;2116}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2117$tag{'author'} =$1;2118$tag{'epoch'} =$2;2119$tag{'tz'} =$3;2120}elsif($line=~m/--BEGIN/) {2121push@comment,$line;2122last;2123}elsif($lineeq"") {2124last;2125}2126}2127push@comment, <$fd>;2128$tag{'comment'} = \@comment;2129close$fdorreturn;2130if(!defined$tag{'name'}) {2131return2132};2133return%tag2134}21352136sub parse_commit_text {2137my($commit_text,$withparents) =@_;2138my@commit_lines=split'\n',$commit_text;2139my%co;21402141pop@commit_lines;# Remove '\0'21422143if(!@commit_lines) {2144return;2145}21462147my$header=shift@commit_lines;2148if($header!~m/^[0-9a-fA-F]{40}/) {2149return;2150}2151($co{'id'},my@parents) =split' ',$header;2152while(my$line=shift@commit_lines) {2153last if$lineeq"\n";2154if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2155$co{'tree'} =$1;2156}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2157push@parents,$1;2158}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2159$co{'author'} =$1;2160$co{'author_epoch'} =$2;2161$co{'author_tz'} =$3;2162if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2163$co{'author_name'} =$1;2164$co{'author_email'} =$2;2165}else{2166$co{'author_name'} =$co{'author'};2167}2168}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2169$co{'committer'} =$1;2170$co{'committer_epoch'} =$2;2171$co{'committer_tz'} =$3;2172$co{'committer_name'} =$co{'committer'};2173if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2174$co{'committer_name'} =$1;2175$co{'committer_email'} =$2;2176}else{2177$co{'committer_name'} =$co{'committer'};2178}2179}2180}2181if(!defined$co{'tree'}) {2182return;2183};2184$co{'parents'} = \@parents;2185$co{'parent'} =$parents[0];21862187foreachmy$title(@commit_lines) {2188$title=~s/^ //;2189if($titlene"") {2190$co{'title'} = chop_str($title,80,5);2191# remove leading stuff of merges to make the interesting part visible2192if(length($title) >50) {2193$title=~s/^Automatic //;2194$title=~s/^merge (of|with) /Merge ... /i;2195if(length($title) >50) {2196$title=~s/(http|rsync):\/\///;2197}2198if(length($title) >50) {2199$title=~s/(master|www|rsync)\.//;2200}2201if(length($title) >50) {2202$title=~s/kernel.org:?//;2203}2204if(length($title) >50) {2205$title=~s/\/pub\/scm//;2206}2207}2208$co{'title_short'} = chop_str($title,50,5);2209last;2210}2211}2212if(!defined$co{'title'} ||$co{'title'}eq"") {2213$co{'title'} =$co{'title_short'} ='(no commit message)';2214}2215# remove added spaces2216foreachmy$line(@commit_lines) {2217$line=~s/^ //;2218}2219$co{'comment'} = \@commit_lines;22202221my$age=time-$co{'committer_epoch'};2222$co{'age'} =$age;2223$co{'age_string'} = age_string($age);2224my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});2225if($age>60*60*24*7*2) {2226$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2227$co{'age_string_age'} =$co{'age_string'};2228}else{2229$co{'age_string_date'} =$co{'age_string'};2230$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2231}2232return%co;2233}22342235sub parse_commit {2236my($commit_id) =@_;2237my%co;22382239local$/="\0";22402241open my$fd,"-|", git_cmd(),"rev-list",2242"--parents",2243"--header",2244"--max-count=1",2245$commit_id,2246"--",2247or die_error(500,"Open git-rev-list failed");2248%co= parse_commit_text(<$fd>,1);2249close$fd;22502251return%co;2252}22532254sub parse_commits {2255my($commit_id,$maxcount,$skip,$filename,@args) =@_;2256my@cos;22572258$maxcount||=1;2259$skip||=0;22602261local$/="\0";22622263open my$fd,"-|", git_cmd(),"rev-list",2264"--header",2265@args,2266("--max-count=".$maxcount),2267("--skip=".$skip),2268@extra_options,2269$commit_id,2270"--",2271($filename? ($filename) : ())2272or die_error(500,"Open git-rev-list failed");2273while(my$line= <$fd>) {2274my%co= parse_commit_text($line);2275push@cos, \%co;2276}2277close$fd;22782279returnwantarray?@cos: \@cos;2280}22812282# parse line of git-diff-tree "raw" output2283sub parse_difftree_raw_line {2284my$line=shift;2285my%res;22862287# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'2288# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'2289if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {2290$res{'from_mode'} =$1;2291$res{'to_mode'} =$2;2292$res{'from_id'} =$3;2293$res{'to_id'} =$4;2294$res{'status'} =$5;2295$res{'similarity'} =$6;2296if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied2297($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);2298}else{2299$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);2300}2301}2302# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'2303# combined diff (for merge commit)2304elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {2305$res{'nparents'} =length($1);2306$res{'from_mode'} = [split(' ',$2) ];2307$res{'to_mode'} =pop@{$res{'from_mode'}};2308$res{'from_id'} = [split(' ',$3) ];2309$res{'to_id'} =pop@{$res{'from_id'}};2310$res{'status'} = [split('',$4) ];2311$res{'to_file'} = unquote($5);2312}2313# 'c512b523472485aef4fff9e57b229d9d243c967f'2314elsif($line=~m/^([0-9a-fA-F]{40})$/) {2315$res{'commit'} =$1;2316}23172318returnwantarray?%res: \%res;2319}23202321# wrapper: return parsed line of git-diff-tree "raw" output2322# (the argument might be raw line, or parsed info)2323sub parsed_difftree_line {2324my$line_or_ref=shift;23252326if(ref($line_or_ref)eq"HASH") {2327# pre-parsed (or generated by hand)2328return$line_or_ref;2329}else{2330return parse_difftree_raw_line($line_or_ref);2331}2332}23332334# parse line of git-ls-tree output2335sub parse_ls_tree_line ($;%) {2336my$line=shift;2337my%opts=@_;2338my%res;23392340#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2341$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;23422343$res{'mode'} =$1;2344$res{'type'} =$2;2345$res{'hash'} =$3;2346if($opts{'-z'}) {2347$res{'name'} =$4;2348}else{2349$res{'name'} = unquote($4);2350}23512352returnwantarray?%res: \%res;2353}23542355# generates _two_ hashes, references to which are passed as 2 and 3 argument2356sub parse_from_to_diffinfo {2357my($diffinfo,$from,$to,@parents) =@_;23582359if($diffinfo->{'nparents'}) {2360# combined diff2361$from->{'file'} = [];2362$from->{'href'} = [];2363 fill_from_file_info($diffinfo,@parents)2364unlessexists$diffinfo->{'from_file'};2365for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2366$from->{'file'}[$i] =2367defined$diffinfo->{'from_file'}[$i] ?2368$diffinfo->{'from_file'}[$i] :2369$diffinfo->{'to_file'};2370if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file2371$from->{'href'}[$i] = href(action=>"blob",2372 hash_base=>$parents[$i],2373 hash=>$diffinfo->{'from_id'}[$i],2374 file_name=>$from->{'file'}[$i]);2375}else{2376$from->{'href'}[$i] =undef;2377}2378}2379}else{2380# ordinary (not combined) diff2381$from->{'file'} =$diffinfo->{'from_file'};2382if($diffinfo->{'status'}ne"A") {# not new (added) file2383$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,2384 hash=>$diffinfo->{'from_id'},2385 file_name=>$from->{'file'});2386}else{2387delete$from->{'href'};2388}2389}23902391$to->{'file'} =$diffinfo->{'to_file'};2392if(!is_deleted($diffinfo)) {# file exists in result2393$to->{'href'} = href(action=>"blob", hash_base=>$hash,2394 hash=>$diffinfo->{'to_id'},2395 file_name=>$to->{'file'});2396}else{2397delete$to->{'href'};2398}2399}24002401## ......................................................................2402## parse to array of hashes functions24032404sub git_get_heads_list {2405my$limit=shift;2406my@headslist;24072408open my$fd,'-|', git_cmd(),'for-each-ref',2409($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',2410'--format=%(objectname) %(refname) %(subject)%00%(committer)',2411'refs/heads'2412orreturn;2413while(my$line= <$fd>) {2414my%ref_item;24152416chomp$line;2417my($refinfo,$committerinfo) =split(/\0/,$line);2418my($hash,$name,$title) =split(' ',$refinfo,3);2419my($committer,$epoch,$tz) =2420($committerinfo=~/^(.*) ([0-9]+) (.*)$/);2421$ref_item{'fullname'} =$name;2422$name=~s!^refs/heads/!!;24232424$ref_item{'name'} =$name;2425$ref_item{'id'} =$hash;2426$ref_item{'title'} =$title||'(no commit message)';2427$ref_item{'epoch'} =$epoch;2428if($epoch) {2429$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2430}else{2431$ref_item{'age'} ="unknown";2432}24332434push@headslist, \%ref_item;2435}2436close$fd;24372438returnwantarray?@headslist: \@headslist;2439}24402441sub git_get_tags_list {2442my$limit=shift;2443my@tagslist;24442445open my$fd,'-|', git_cmd(),'for-each-ref',2446($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',2447'--format=%(objectname) %(objecttype) %(refname) '.2448'%(*objectname) %(*objecttype) %(subject)%00%(creator)',2449'refs/tags'2450orreturn;2451while(my$line= <$fd>) {2452my%ref_item;24532454chomp$line;2455my($refinfo,$creatorinfo) =split(/\0/,$line);2456my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);2457my($creator,$epoch,$tz) =2458($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);2459$ref_item{'fullname'} =$name;2460$name=~s!^refs/tags/!!;24612462$ref_item{'type'} =$type;2463$ref_item{'id'} =$id;2464$ref_item{'name'} =$name;2465if($typeeq"tag") {2466$ref_item{'subject'} =$title;2467$ref_item{'reftype'} =$reftype;2468$ref_item{'refid'} =$refid;2469}else{2470$ref_item{'reftype'} =$type;2471$ref_item{'refid'} =$id;2472}24732474if($typeeq"tag"||$typeeq"commit") {2475$ref_item{'epoch'} =$epoch;2476if($epoch) {2477$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2478}else{2479$ref_item{'age'} ="unknown";2480}2481}24822483push@tagslist, \%ref_item;2484}2485close$fd;24862487returnwantarray?@tagslist: \@tagslist;2488}24892490## ----------------------------------------------------------------------2491## filesystem-related functions24922493sub get_file_owner {2494my$path=shift;24952496my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);2497my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);2498if(!defined$gcos) {2499returnundef;2500}2501my$owner=$gcos;2502$owner=~s/[,;].*$//;2503return to_utf8($owner);2504}25052506## ......................................................................2507## mimetype related functions25082509sub mimetype_guess_file {2510my$filename=shift;2511my$mimemap=shift;2512-r $mimemaporreturnundef;25132514my%mimemap;2515open(MIME,$mimemap)orreturnundef;2516while(<MIME>) {2517next ifm/^#/;# skip comments2518my($mime,$exts) =split(/\t+/);2519if(defined$exts) {2520my@exts=split(/\s+/,$exts);2521foreachmy$ext(@exts) {2522$mimemap{$ext} =$mime;2523}2524}2525}2526close(MIME);25272528$filename=~/\.([^.]*)$/;2529return$mimemap{$1};2530}25312532sub mimetype_guess {2533my$filename=shift;2534my$mime;2535$filename=~/\./orreturnundef;25362537if($mimetypes_file) {2538my$file=$mimetypes_file;2539if($file!~m!^/!) {# if it is relative path2540# it is relative to project2541$file="$projectroot/$project/$file";2542}2543$mime= mimetype_guess_file($filename,$file);2544}2545$mime||= mimetype_guess_file($filename,'/etc/mime.types');2546return$mime;2547}25482549sub blob_mimetype {2550my$fd=shift;2551my$filename=shift;25522553if($filename) {2554my$mime= mimetype_guess($filename);2555$mimeandreturn$mime;2556}25572558# just in case2559return$default_blob_plain_mimetypeunless$fd;25602561if(-T $fd) {2562return'text/plain';2563}elsif(!$filename) {2564return'application/octet-stream';2565}elsif($filename=~m/\.png$/i) {2566return'image/png';2567}elsif($filename=~m/\.gif$/i) {2568return'image/gif';2569}elsif($filename=~m/\.jpe?g$/i) {2570return'image/jpeg';2571}else{2572return'application/octet-stream';2573}2574}25752576sub blob_contenttype {2577my($fd,$file_name,$type) =@_;25782579$type||= blob_mimetype($fd,$file_name);2580if($typeeq'text/plain'&&defined$default_text_plain_charset) {2581$type.="; charset=$default_text_plain_charset";2582}25832584return$type;2585}25862587## ======================================================================2588## functions printing HTML: header, footer, error page25892590sub git_header_html {2591my$status=shift||"200 OK";2592my$expires=shift;25932594my$title="$site_name";2595if(defined$project) {2596$title.=" - ". to_utf8($project);2597if(defined$action) {2598$title.="/$action";2599if(defined$file_name) {2600$title.=" - ". esc_path($file_name);2601if($actioneq"tree"&&$file_name!~ m|/$|) {2602$title.="/";2603}2604}2605}2606}2607my$content_type;2608# require explicit support from the UA if we are to send the page as2609# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.2610# we have to do this because MSIE sometimes globs '*/*', pretending to2611# support xhtml+xml but choking when it gets what it asked for.2612if(defined$cgi->http('HTTP_ACCEPT') &&2613$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&2614$cgi->Accept('application/xhtml+xml') !=0) {2615$content_type='application/xhtml+xml';2616}else{2617$content_type='text/html';2618}2619print$cgi->header(-type=>$content_type, -charset =>'utf-8',2620-status=>$status, -expires =>$expires);2621my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';2622print<<EOF;2623<?xml version="1.0" encoding="utf-8"?>2624<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">2625<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">2626<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->2627<!-- git core binaries version$git_version-->2628<head>2629<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>2630<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>2631<meta name="robots" content="index, nofollow"/>2632<title>$title</title>2633EOF2634# print out each stylesheet that exist2635if(defined$stylesheet) {2636#provides backwards capability for those people who define style sheet in a config file2637print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";2638}else{2639foreachmy$stylesheet(@stylesheets) {2640next unless$stylesheet;2641print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";2642}2643}2644if(defined$project) {2645my%href_params= get_feed_info();2646if(!exists$href_params{'-title'}) {2647$href_params{'-title'} ='log';2648}26492650foreachmy$formatqw(RSS Atom){2651my$type=lc($format);2652my%link_attr= (2653'-rel'=>'alternate',2654'-title'=>"$project-$href_params{'-title'} -$formatfeed",2655'-type'=>"application/$type+xml"2656);26572658$href_params{'action'} =$type;2659$link_attr{'-href'} = href(%href_params);2660print"<link ".2661"rel=\"$link_attr{'-rel'}\"".2662"title=\"$link_attr{'-title'}\"".2663"href=\"$link_attr{'-href'}\"".2664"type=\"$link_attr{'-type'}\"".2665"/>\n";26662667$href_params{'extra_options'} ='--no-merges';2668$link_attr{'-href'} = href(%href_params);2669$link_attr{'-title'} .=' (no merges)';2670print"<link ".2671"rel=\"$link_attr{'-rel'}\"".2672"title=\"$link_attr{'-title'}\"".2673"href=\"$link_attr{'-href'}\"".2674"type=\"$link_attr{'-type'}\"".2675"/>\n";2676}26772678}else{2679printf('<link rel="alternate" title="%sprojects list" '.2680'href="%s" type="text/plain; charset=utf-8" />'."\n",2681$site_name, href(project=>undef, action=>"project_index"));2682printf('<link rel="alternate" title="%sprojects feeds" '.2683'href="%s" type="text/x-opml" />'."\n",2684$site_name, href(project=>undef, action=>"opml"));2685}2686if(defined$favicon) {2687printqq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n);2688}26892690print"</head>\n".2691"<body>\n";26922693if(-f $site_header) {2694open(my$fd,$site_header);2695print<$fd>;2696close$fd;2697}26982699print"<div class=\"page_header\">\n".2700$cgi->a({-href => esc_url($logo_url),2701-title =>$logo_label},2702qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));2703print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";2704if(defined$project) {2705print$cgi->a({-href => href(action=>"summary")}, esc_html($project));2706if(defined$action) {2707print" /$action";2708}2709print"\n";2710}2711print"</div>\n";27122713my($have_search) = gitweb_check_feature('search');2714if(defined$project&&$have_search) {2715if(!defined$searchtext) {2716$searchtext="";2717}2718my$search_hash;2719if(defined$hash_base) {2720$search_hash=$hash_base;2721}elsif(defined$hash) {2722$search_hash=$hash;2723}else{2724$search_hash="HEAD";2725}2726my$action=$my_uri;2727my($use_pathinfo) = gitweb_check_feature('pathinfo');2728if($use_pathinfo) {2729$action.="/".esc_url($project);2730}2731print$cgi->startform(-method=>"get", -action =>$action) .2732"<div class=\"search\">\n".2733(!$use_pathinfo&&2734$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .2735$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".2736$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".2737$cgi->popup_menu(-name =>'st', -default=>'commit',2738-values=> ['commit','grep','author','committer','pickaxe']) .2739$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .2740" search:\n",2741$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".2742"<span title=\"Extended regular expression\">".2743$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',2744-checked =>$search_use_regexp) .2745"</span>".2746"</div>".2747$cgi->end_form() ."\n";2748}2749}27502751sub git_footer_html {2752my$feed_class='rss_logo';27532754print"<div class=\"page_footer\">\n";2755if(defined$project) {2756my$descr= git_get_project_description($project);2757if(defined$descr) {2758print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";2759}27602761my%href_params= get_feed_info();2762if(!%href_params) {2763$feed_class.=' generic';2764}2765$href_params{'-title'} ||='log';27662767foreachmy$formatqw(RSS Atom){2768$href_params{'action'} =lc($format);2769print$cgi->a({-href => href(%href_params),2770-title =>"$href_params{'-title'}$formatfeed",2771-class=>$feed_class},$format)."\n";2772}27732774}else{2775print$cgi->a({-href => href(project=>undef, action=>"opml"),2776-class=>$feed_class},"OPML") ." ";2777print$cgi->a({-href => href(project=>undef, action=>"project_index"),2778-class=>$feed_class},"TXT") ."\n";2779}2780print"</div>\n";# class="page_footer"27812782if(-f $site_footer) {2783open(my$fd,$site_footer);2784print<$fd>;2785close$fd;2786}27872788print"</body>\n".2789"</html>";2790}27912792# die_error(<http_status_code>, <error_message>)2793# Example: die_error(404, 'Hash not found')2794# By convention, use the following status codes (as defined in RFC 2616):2795# 400: Invalid or missing CGI parameters, or2796# requested object exists but has wrong type.2797# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on2798# this server or project.2799# 404: Requested object/revision/project doesn't exist.2800# 500: The server isn't configured properly, or2801# an internal error occurred (e.g. failed assertions caused by bugs), or2802# an unknown error occurred (e.g. the git binary died unexpectedly).2803sub die_error {2804my$status=shift||500;2805my$error=shift||"Internal server error";28062807my%http_responses= (400=>'400 Bad Request',2808403=>'403 Forbidden',2809404=>'404 Not Found',2810500=>'500 Internal Server Error');2811 git_header_html($http_responses{$status});2812print<<EOF;2813<div class="page_body">2814<br /><br />2815$status-$error2816<br />2817</div>2818EOF2819 git_footer_html();2820exit;2821}28222823## ----------------------------------------------------------------------2824## functions printing or outputting HTML: navigation28252826sub git_print_page_nav {2827my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;2828$extra=''if!defined$extra;# pager or formats28292830my@navs=qw(summary shortlog log commit commitdiff tree);2831if($suppress) {2832@navs=grep{$_ne$suppress}@navs;2833}28342835my%arg=map{$_=> {action=>$_} }@navs;2836if(defined$head) {2837for(qw(commit commitdiff)) {2838$arg{$_}{'hash'} =$head;2839}2840if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {2841for(qw(shortlog log)) {2842$arg{$_}{'hash'} =$head;2843}2844}2845}2846$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;2847$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;28482849print"<div class=\"page_nav\">\n".2850(join" | ",2851map{$_eq$current?2852$_:$cgi->a({-href => href(%{$arg{$_}})},"$_")2853}@navs);2854print"<br/>\n$extra<br/>\n".2855"</div>\n";2856}28572858sub format_paging_nav {2859my($action,$hash,$head,$page,$has_next_link) =@_;2860my$paging_nav;286128622863if($hashne$head||$page) {2864$paging_nav.=$cgi->a({-href => href(action=>$action)},"HEAD");2865}else{2866$paging_nav.="HEAD";2867}28682869if($page>0) {2870$paging_nav.=" ⋅ ".2871$cgi->a({-href => href(-replay=>1, page=>$page-1),2872-accesskey =>"p", -title =>"Alt-p"},"prev");2873}else{2874$paging_nav.=" ⋅ prev";2875}28762877if($has_next_link) {2878$paging_nav.=" ⋅ ".2879$cgi->a({-href => href(-replay=>1, page=>$page+1),2880-accesskey =>"n", -title =>"Alt-n"},"next");2881}else{2882$paging_nav.=" ⋅ next";2883}28842885return$paging_nav;2886}28872888## ......................................................................2889## functions printing or outputting HTML: div28902891sub git_print_header_div {2892my($action,$title,$hash,$hash_base) =@_;2893my%args= ();28942895$args{'action'} =$action;2896$args{'hash'} =$hashif$hash;2897$args{'hash_base'} =$hash_baseif$hash_base;28982899print"<div class=\"header\">\n".2900$cgi->a({-href => href(%args), -class=>"title"},2901$title?$title:$action) .2902"\n</div>\n";2903}29042905#sub git_print_authorship (\%) {2906sub git_print_authorship {2907my$co=shift;29082909my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});2910print"<div class=\"author_date\">".2911 esc_html($co->{'author_name'}) .2912" [$ad{'rfc2822'}";2913if($ad{'hour_local'} <6) {2914printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",2915$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});2916}else{2917printf(" (%02d:%02d%s)",2918$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});2919}2920print"]</div>\n";2921}29222923sub git_print_page_path {2924my$name=shift;2925my$type=shift;2926my$hb=shift;292729282929print"<div class=\"page_path\">";2930print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),2931-title =>'tree root'}, to_utf8("[$project]"));2932print" / ";2933if(defined$name) {2934my@dirname=split'/',$name;2935my$basename=pop@dirname;2936my$fullname='';29372938foreachmy$dir(@dirname) {2939$fullname.= ($fullname?'/':'') .$dir;2940print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,2941 hash_base=>$hb),2942-title =>$fullname}, esc_path($dir));2943print" / ";2944}2945if(defined$type&&$typeeq'blob') {2946print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,2947 hash_base=>$hb),2948-title =>$name}, esc_path($basename));2949}elsif(defined$type&&$typeeq'tree') {2950print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,2951 hash_base=>$hb),2952-title =>$name}, esc_path($basename));2953print" / ";2954}else{2955print esc_path($basename);2956}2957}2958print"<br/></div>\n";2959}29602961# sub git_print_log (\@;%) {2962sub git_print_log ($;%) {2963my$log=shift;2964my%opts=@_;29652966if($opts{'-remove_title'}) {2967# remove title, i.e. first line of log2968shift@$log;2969}2970# remove leading empty lines2971while(defined$log->[0] &&$log->[0]eq"") {2972shift@$log;2973}29742975# print log2976my$signoff=0;2977my$empty=0;2978foreachmy$line(@$log) {2979if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {2980$signoff=1;2981$empty=0;2982if(!$opts{'-remove_signoff'}) {2983print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";2984next;2985}else{2986# remove signoff lines2987next;2988}2989}else{2990$signoff=0;2991}29922993# print only one empty line2994# do not print empty line after signoff2995if($lineeq"") {2996next if($empty||$signoff);2997$empty=1;2998}else{2999$empty=0;3000}30013002print format_log_line_html($line) ."<br/>\n";3003}30043005if($opts{'-final_empty_line'}) {3006# end with single empty line3007print"<br/>\n"unless$empty;3008}3009}30103011# return link target (what link points to)3012sub git_get_link_target {3013my$hash=shift;3014my$link_target;30153016# read link3017open my$fd,"-|", git_cmd(),"cat-file","blob",$hash3018orreturn;3019{3020local$/;3021$link_target= <$fd>;3022}3023close$fd3024orreturn;30253026return$link_target;3027}30283029# given link target, and the directory (basedir) the link is in,3030# return target of link relative to top directory (top tree);3031# return undef if it is not possible (including absolute links).3032sub normalize_link_target {3033my($link_target,$basedir,$hash_base) =@_;30343035# we can normalize symlink target only if $hash_base is provided3036return unless$hash_base;30373038# absolute symlinks (beginning with '/') cannot be normalized3039return if(substr($link_target,0,1)eq'/');30403041# normalize link target to path from top (root) tree (dir)3042my$path;3043if($basedir) {3044$path=$basedir.'/'.$link_target;3045}else{3046# we are in top (root) tree (dir)3047$path=$link_target;3048}30493050# remove //, /./, and /../3051my@path_parts;3052foreachmy$part(split('/',$path)) {3053# discard '.' and ''3054next if(!$part||$parteq'.');3055# handle '..'3056if($parteq'..') {3057if(@path_parts) {3058pop@path_parts;3059}else{3060# link leads outside repository (outside top dir)3061return;3062}3063}else{3064push@path_parts,$part;3065}3066}3067$path=join('/',@path_parts);30683069return$path;3070}30713072# print tree entry (row of git_tree), but without encompassing <tr> element3073sub git_print_tree_entry {3074my($t,$basedir,$hash_base,$have_blame) =@_;30753076my%base_key= ();3077$base_key{'hash_base'} =$hash_baseifdefined$hash_base;30783079# The format of a table row is: mode list link. Where mode is3080# the mode of the entry, list is the name of the entry, an href,3081# and link is the action links of the entry.30823083print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";3084if($t->{'type'}eq"blob") {3085print"<td class=\"list\">".3086$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3087 file_name=>"$basedir$t->{'name'}",%base_key),3088-class=>"list"}, esc_path($t->{'name'}));3089if(S_ISLNK(oct$t->{'mode'})) {3090my$link_target= git_get_link_target($t->{'hash'});3091if($link_target) {3092my$norm_target= normalize_link_target($link_target,$basedir,$hash_base);3093if(defined$norm_target) {3094print" -> ".3095$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,3096 file_name=>$norm_target),3097-title =>$norm_target}, esc_path($link_target));3098}else{3099print" -> ". esc_path($link_target);3100}3101}3102}3103print"</td>\n";3104print"<td class=\"link\">";3105print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3106 file_name=>"$basedir$t->{'name'}",%base_key)},3107"blob");3108if($have_blame) {3109print" | ".3110$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},3111 file_name=>"$basedir$t->{'name'}",%base_key)},3112"blame");3113}3114if(defined$hash_base) {3115print" | ".3116$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3117 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},3118"history");3119}3120print" | ".3121$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,3122 file_name=>"$basedir$t->{'name'}")},3123"raw");3124print"</td>\n";31253126}elsif($t->{'type'}eq"tree") {3127print"<td class=\"list\">";3128print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3129 file_name=>"$basedir$t->{'name'}",%base_key)},3130 esc_path($t->{'name'}));3131print"</td>\n";3132print"<td class=\"link\">";3133print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3134 file_name=>"$basedir$t->{'name'}",%base_key)},3135"tree");3136if(defined$hash_base) {3137print" | ".3138$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3139 file_name=>"$basedir$t->{'name'}")},3140"history");3141}3142print"</td>\n";3143}else{3144# unknown object: we can only present history for it3145# (this includes 'commit' object, i.e. submodule support)3146print"<td class=\"list\">".3147 esc_path($t->{'name'}) .3148"</td>\n";3149print"<td class=\"link\">";3150if(defined$hash_base) {3151print$cgi->a({-href => href(action=>"history",3152 hash_base=>$hash_base,3153 file_name=>"$basedir$t->{'name'}")},3154"history");3155}3156print"</td>\n";3157}3158}31593160## ......................................................................3161## functions printing large fragments of HTML31623163# get pre-image filenames for merge (combined) diff3164sub fill_from_file_info {3165my($diff,@parents) =@_;31663167$diff->{'from_file'} = [ ];3168$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;3169for(my$i=0;$i<$diff->{'nparents'};$i++) {3170if($diff->{'status'}[$i]eq'R'||3171$diff->{'status'}[$i]eq'C') {3172$diff->{'from_file'}[$i] =3173 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);3174}3175}31763177return$diff;3178}31793180# is current raw difftree line of file deletion3181sub is_deleted {3182my$diffinfo=shift;31833184return$diffinfo->{'to_id'}eq('0' x 40);3185}31863187# does patch correspond to [previous] difftree raw line3188# $diffinfo - hashref of parsed raw diff format3189# $patchinfo - hashref of parsed patch diff format3190# (the same keys as in $diffinfo)3191sub is_patch_split {3192my($diffinfo,$patchinfo) =@_;31933194returndefined$diffinfo&&defined$patchinfo3195&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};3196}319731983199sub git_difftree_body {3200my($difftree,$hash,@parents) =@_;3201my($parent) =$parents[0];3202my($have_blame) = gitweb_check_feature('blame');3203print"<div class=\"list_head\">\n";3204if($#{$difftree} >10) {3205print(($#{$difftree} +1) ." files changed:\n");3206}3207print"</div>\n";32083209print"<table class=\"".3210(@parents>1?"combined ":"") .3211"diff_tree\">\n";32123213# header only for combined diff in 'commitdiff' view3214my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';3215if($has_header) {3216# table header3217print"<thead><tr>\n".3218"<th></th><th></th>\n";# filename, patchN link3219for(my$i=0;$i<@parents;$i++) {3220my$par=$parents[$i];3221print"<th>".3222$cgi->a({-href => href(action=>"commitdiff",3223 hash=>$hash, hash_parent=>$par),3224-title =>'commitdiff to parent number '.3225($i+1) .': '.substr($par,0,7)},3226$i+1) .3227" </th>\n";3228}3229print"</tr></thead>\n<tbody>\n";3230}32313232my$alternate=1;3233my$patchno=0;3234foreachmy$line(@{$difftree}) {3235my$diff= parsed_difftree_line($line);32363237if($alternate) {3238print"<tr class=\"dark\">\n";3239}else{3240print"<tr class=\"light\">\n";3241}3242$alternate^=1;32433244if(exists$diff->{'nparents'}) {# combined diff32453246 fill_from_file_info($diff,@parents)3247unlessexists$diff->{'from_file'};32483249if(!is_deleted($diff)) {3250# file exists in the result (child) commit3251print"<td>".3252$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3253 file_name=>$diff->{'to_file'},3254 hash_base=>$hash),3255-class=>"list"}, esc_path($diff->{'to_file'})) .3256"</td>\n";3257}else{3258print"<td>".3259 esc_path($diff->{'to_file'}) .3260"</td>\n";3261}32623263if($actioneq'commitdiff') {3264# link to patch3265$patchno++;3266print"<td class=\"link\">".3267$cgi->a({-href =>"#patch$patchno"},"patch") .3268" | ".3269"</td>\n";3270}32713272my$has_history=0;3273my$not_deleted=0;3274for(my$i=0;$i<$diff->{'nparents'};$i++) {3275my$hash_parent=$parents[$i];3276my$from_hash=$diff->{'from_id'}[$i];3277my$from_path=$diff->{'from_file'}[$i];3278my$status=$diff->{'status'}[$i];32793280$has_history||= ($statusne'A');3281$not_deleted||= ($statusne'D');32823283if($statuseq'A') {3284print"<td class=\"link\"align=\"right\"> | </td>\n";3285}elsif($statuseq'D') {3286print"<td class=\"link\">".3287$cgi->a({-href => href(action=>"blob",3288 hash_base=>$hash,3289 hash=>$from_hash,3290 file_name=>$from_path)},3291"blob". ($i+1)) .3292" | </td>\n";3293}else{3294if($diff->{'to_id'}eq$from_hash) {3295print"<td class=\"link nochange\">";3296}else{3297print"<td class=\"link\">";3298}3299print$cgi->a({-href => href(action=>"blobdiff",3300 hash=>$diff->{'to_id'},3301 hash_parent=>$from_hash,3302 hash_base=>$hash,3303 hash_parent_base=>$hash_parent,3304 file_name=>$diff->{'to_file'},3305 file_parent=>$from_path)},3306"diff". ($i+1)) .3307" | </td>\n";3308}3309}33103311print"<td class=\"link\">";3312if($not_deleted) {3313print$cgi->a({-href => href(action=>"blob",3314 hash=>$diff->{'to_id'},3315 file_name=>$diff->{'to_file'},3316 hash_base=>$hash)},3317"blob");3318print" | "if($has_history);3319}3320if($has_history) {3321print$cgi->a({-href => href(action=>"history",3322 file_name=>$diff->{'to_file'},3323 hash_base=>$hash)},3324"history");3325}3326print"</td>\n";33273328print"</tr>\n";3329next;# instead of 'else' clause, to avoid extra indent3330}3331# else ordinary diff33323333my($to_mode_oct,$to_mode_str,$to_file_type);3334my($from_mode_oct,$from_mode_str,$from_file_type);3335if($diff->{'to_mode'}ne('0' x 6)) {3336$to_mode_oct=oct$diff->{'to_mode'};3337if(S_ISREG($to_mode_oct)) {# only for regular file3338$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits3339}3340$to_file_type= file_type($diff->{'to_mode'});3341}3342if($diff->{'from_mode'}ne('0' x 6)) {3343$from_mode_oct=oct$diff->{'from_mode'};3344if(S_ISREG($to_mode_oct)) {# only for regular file3345$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits3346}3347$from_file_type= file_type($diff->{'from_mode'});3348}33493350if($diff->{'status'}eq"A") {# created3351my$mode_chng="<span class=\"file_status new\">[new$to_file_type";3352$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;3353$mode_chng.="]</span>";3354print"<td>";3355print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3356 hash_base=>$hash, file_name=>$diff->{'file'}),3357-class=>"list"}, esc_path($diff->{'file'}));3358print"</td>\n";3359print"<td>$mode_chng</td>\n";3360print"<td class=\"link\">";3361if($actioneq'commitdiff') {3362# link to patch3363$patchno++;3364print$cgi->a({-href =>"#patch$patchno"},"patch");3365print" | ";3366}3367print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3368 hash_base=>$hash, file_name=>$diff->{'file'})},3369"blob");3370print"</td>\n";33713372}elsif($diff->{'status'}eq"D") {# deleted3373my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";3374print"<td>";3375print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3376 hash_base=>$parent, file_name=>$diff->{'file'}),3377-class=>"list"}, esc_path($diff->{'file'}));3378print"</td>\n";3379print"<td>$mode_chng</td>\n";3380print"<td class=\"link\">";3381if($actioneq'commitdiff') {3382# link to patch3383$patchno++;3384print$cgi->a({-href =>"#patch$patchno"},"patch");3385print" | ";3386}3387print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3388 hash_base=>$parent, file_name=>$diff->{'file'})},3389"blob") ." | ";3390if($have_blame) {3391print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,3392 file_name=>$diff->{'file'})},3393"blame") ." | ";3394}3395print$cgi->a({-href => href(action=>"history", hash_base=>$parent,3396 file_name=>$diff->{'file'})},3397"history");3398print"</td>\n";33993400}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed3401my$mode_chnge="";3402if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3403$mode_chnge="<span class=\"file_status mode_chnge\">[changed";3404if($from_file_typene$to_file_type) {3405$mode_chnge.=" from$from_file_typeto$to_file_type";3406}3407if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {3408if($from_mode_str&&$to_mode_str) {3409$mode_chnge.=" mode:$from_mode_str->$to_mode_str";3410}elsif($to_mode_str) {3411$mode_chnge.=" mode:$to_mode_str";3412}3413}3414$mode_chnge.="]</span>\n";3415}3416print"<td>";3417print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3418 hash_base=>$hash, file_name=>$diff->{'file'}),3419-class=>"list"}, esc_path($diff->{'file'}));3420print"</td>\n";3421print"<td>$mode_chnge</td>\n";3422print"<td class=\"link\">";3423if($actioneq'commitdiff') {3424# link to patch3425$patchno++;3426print$cgi->a({-href =>"#patch$patchno"},"patch") .3427" | ";3428}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3429# "commit" view and modified file (not onlu mode changed)3430print$cgi->a({-href => href(action=>"blobdiff",3431 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3432 hash_base=>$hash, hash_parent_base=>$parent,3433 file_name=>$diff->{'file'})},3434"diff") .3435" | ";3436}3437print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3438 hash_base=>$hash, file_name=>$diff->{'file'})},3439"blob") ." | ";3440if($have_blame) {3441print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3442 file_name=>$diff->{'file'})},3443"blame") ." | ";3444}3445print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3446 file_name=>$diff->{'file'})},3447"history");3448print"</td>\n";34493450}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied3451my%status_name= ('R'=>'moved','C'=>'copied');3452my$nstatus=$status_name{$diff->{'status'}};3453my$mode_chng="";3454if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3455# mode also for directories, so we cannot use $to_mode_str3456$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);3457}3458print"<td>".3459$cgi->a({-href => href(action=>"blob", hash_base=>$hash,3460 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),3461-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".3462"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".3463$cgi->a({-href => href(action=>"blob", hash_base=>$parent,3464 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),3465-class=>"list"}, esc_path($diff->{'from_file'})) .3466" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".3467"<td class=\"link\">";3468if($actioneq'commitdiff') {3469# link to patch3470$patchno++;3471print$cgi->a({-href =>"#patch$patchno"},"patch") .3472" | ";3473}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3474# "commit" view and modified file (not only pure rename or copy)3475print$cgi->a({-href => href(action=>"blobdiff",3476 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3477 hash_base=>$hash, hash_parent_base=>$parent,3478 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},3479"diff") .3480" | ";3481}3482print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3483 hash_base=>$parent, file_name=>$diff->{'to_file'})},3484"blob") ." | ";3485if($have_blame) {3486print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3487 file_name=>$diff->{'to_file'})},3488"blame") ." | ";3489}3490print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3491 file_name=>$diff->{'to_file'})},3492"history");3493print"</td>\n";34943495}# we should not encounter Unmerged (U) or Unknown (X) status3496print"</tr>\n";3497}3498print"</tbody>"if$has_header;3499print"</table>\n";3500}35013502sub git_patchset_body {3503my($fd,$difftree,$hash,@hash_parents) =@_;3504my($hash_parent) =$hash_parents[0];35053506my$is_combined= (@hash_parents>1);3507my$patch_idx=0;3508my$patch_number=0;3509my$patch_line;3510my$diffinfo;3511my$to_name;3512my(%from,%to);35133514print"<div class=\"patchset\">\n";35153516# skip to first patch3517while($patch_line= <$fd>) {3518chomp$patch_line;35193520last if($patch_line=~m/^diff /);3521}35223523 PATCH:3524while($patch_line) {35253526# parse "git diff" header line3527if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {3528# $1 is from_name, which we do not use3529$to_name= unquote($2);3530$to_name=~s!^b/!!;3531}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {3532# $1 is 'cc' or 'combined', which we do not use3533$to_name= unquote($2);3534}else{3535$to_name=undef;3536}35373538# check if current patch belong to current raw line3539# and parse raw git-diff line if needed3540if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {3541# this is continuation of a split patch3542print"<div class=\"patch cont\">\n";3543}else{3544# advance raw git-diff output if needed3545$patch_idx++ifdefined$diffinfo;35463547# read and prepare patch information3548$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);35493550# compact combined diff output can have some patches skipped3551# find which patch (using pathname of result) we are at now;3552if($is_combined) {3553while($to_namene$diffinfo->{'to_file'}) {3554print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".3555 format_diff_cc_simplified($diffinfo,@hash_parents) .3556"</div>\n";# class="patch"35573558$patch_idx++;3559$patch_number++;35603561last if$patch_idx>$#$difftree;3562$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);3563}3564}35653566# modifies %from, %to hashes3567 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);35683569# this is first patch for raw difftree line with $patch_idx index3570# we index @$difftree array from 0, but number patches from 13571print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";3572}35733574# git diff header3575#assert($patch_line =~ m/^diff /) if DEBUG;3576#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed3577$patch_number++;3578# print "git diff" header3579print format_git_diff_header_line($patch_line,$diffinfo,3580 \%from, \%to);35813582# print extended diff header3583print"<div class=\"diff extended_header\">\n";3584 EXTENDED_HEADER:3585while($patch_line= <$fd>) {3586chomp$patch_line;35873588last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);35893590print format_extended_diff_header_line($patch_line,$diffinfo,3591 \%from, \%to);3592}3593print"</div>\n";# class="diff extended_header"35943595# from-file/to-file diff header3596if(!$patch_line) {3597print"</div>\n";# class="patch"3598last PATCH;3599}3600next PATCH if($patch_line=~m/^diff /);3601#assert($patch_line =~ m/^---/) if DEBUG;36023603my$last_patch_line=$patch_line;3604$patch_line= <$fd>;3605chomp$patch_line;3606#assert($patch_line =~ m/^\+\+\+/) if DEBUG;36073608print format_diff_from_to_header($last_patch_line,$patch_line,3609$diffinfo, \%from, \%to,3610@hash_parents);36113612# the patch itself3613 LINE:3614while($patch_line= <$fd>) {3615chomp$patch_line;36163617next PATCH if($patch_line=~m/^diff /);36183619print format_diff_line($patch_line, \%from, \%to);3620}36213622}continue{3623print"</div>\n";# class="patch"3624}36253626# for compact combined (--cc) format, with chunk and patch simpliciaction3627# patchset might be empty, but there might be unprocessed raw lines3628for(++$patch_idxif$patch_number>0;3629$patch_idx<@$difftree;3630++$patch_idx) {3631# read and prepare patch information3632$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);36333634# generate anchor for "patch" links in difftree / whatchanged part3635print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".3636 format_diff_cc_simplified($diffinfo,@hash_parents) .3637"</div>\n";# class="patch"36383639$patch_number++;3640}36413642if($patch_number==0) {3643if(@hash_parents>1) {3644print"<div class=\"diff nodifferences\">Trivial merge</div>\n";3645}else{3646print"<div class=\"diff nodifferences\">No differences found</div>\n";3647}3648}36493650print"</div>\n";# class="patchset"3651}36523653# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .36543655# fills project list info (age, description, owner, forks) for each3656# project in the list, removing invalid projects from returned list3657# NOTE: modifies $projlist, but does not remove entries from it3658sub fill_project_list_info {3659my($projlist,$check_forks) =@_;3660my@projects;36613662my$show_ctags= gitweb_check_feature('ctags');3663 PROJECT:3664foreachmy$pr(@$projlist) {3665my(@activity) = git_get_last_activity($pr->{'path'});3666unless(@activity) {3667next PROJECT;3668}3669($pr->{'age'},$pr->{'age_string'}) =@activity;3670if(!defined$pr->{'descr'}) {3671my$descr= git_get_project_description($pr->{'path'}) ||"";3672$descr= to_utf8($descr);3673$pr->{'descr_long'} =$descr;3674$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);3675}3676if(!defined$pr->{'owner'}) {3677$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";3678}3679if($check_forks) {3680my$pname=$pr->{'path'};3681if(($pname=~s/\.git$//) &&3682($pname!~/\/$/) &&3683(-d "$projectroot/$pname")) {3684$pr->{'forks'} ="-d$projectroot/$pname";3685}else{3686$pr->{'forks'} =0;3687}3688}3689$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});3690push@projects,$pr;3691}36923693return@projects;3694}36953696# print 'sort by' <th> element, either sorting by $key if $name eq $order3697# (changing $list), or generating 'sort by $name' replay link otherwise3698sub print_sort_th {3699my($str_sort,$name,$order,$key,$header,$list) =@_;3700$key||=$name;3701$header||=ucfirst($name);37023703if($ordereq$name) {3704if($str_sort) {3705@$list=sort{$a->{$key}cmp$b->{$key}}@$list;3706}else{3707@$list=sort{$a->{$key} <=>$b->{$key}}@$list;3708}3709print"<th>$header</th>\n";3710}else{3711print"<th>".3712$cgi->a({-href => href(-replay=>1, order=>$name),3713-class=>"header"},$header) .3714"</th>\n";3715}3716}37173718sub print_sort_th_str {3719 print_sort_th(1,@_);3720}37213722sub print_sort_th_num {3723 print_sort_th(0,@_);3724}37253726sub git_project_list_body {3727my($projlist,$order,$from,$to,$extra,$no_header) =@_;37283729my($check_forks) = gitweb_check_feature('forks');3730my@projects= fill_project_list_info($projlist,$check_forks);37313732$order||=$default_projects_order;3733$from=0unlessdefined$from;3734$to=$#projectsif(!defined$to||$#projects<$to);37353736my$show_ctags= gitweb_check_feature('ctags');3737if($show_ctags) {3738my%ctags;3739foreachmy$p(@projects) {3740foreachmy$ct(keys%{$p->{'ctags'}}) {3741$ctags{$ct} +=$p->{'ctags'}->{$ct};3742}3743}3744my$cloud= git_populate_project_tagcloud(\%ctags);3745print git_show_project_tagcloud($cloud,64);3746}37473748print"<table class=\"project_list\">\n";3749unless($no_header) {3750print"<tr>\n";3751if($check_forks) {3752print"<th></th>\n";3753}3754 print_sort_th_str('project',$order,'path',3755'Project', \@projects);3756 print_sort_th_str('descr',$order,'descr_long',3757'Description', \@projects);3758 print_sort_th_str('owner',$order,'owner',3759'Owner', \@projects);3760 print_sort_th_num('age',$order,'age',3761'Last Change', \@projects);3762print"<th></th>\n".# for links3763"</tr>\n";3764}3765my$alternate=1;3766my$tagfilter=$cgi->param('by_tag');3767for(my$i=$from;$i<=$to;$i++) {3768my$pr=$projects[$i];3769next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};3770if($alternate) {3771print"<tr class=\"dark\">\n";3772}else{3773print"<tr class=\"light\">\n";3774}3775$alternate^=1;3776if($check_forks) {3777print"<td>";3778if($pr->{'forks'}) {3779print"<!--$pr->{'forks'} -->\n";3780print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");3781}3782print"</td>\n";3783}3784print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),3785-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".3786"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),3787-class=>"list", -title =>$pr->{'descr_long'}},3788 esc_html($pr->{'descr'})) ."</td>\n".3789"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";3790print"<td class=\"". age_class($pr->{'age'}) ."\">".3791(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".3792"<td class=\"link\">".3793$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".3794$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".3795$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".3796$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .3797($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .3798"</td>\n".3799"</tr>\n";3800}3801if(defined$extra) {3802print"<tr>\n";3803if($check_forks) {3804print"<td></td>\n";3805}3806print"<td colspan=\"5\">$extra</td>\n".3807"</tr>\n";3808}3809print"</table>\n";3810}38113812sub git_shortlog_body {3813# uses global variable $project3814my($commitlist,$from,$to,$refs,$extra) =@_;38153816$from=0unlessdefined$from;3817$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);38183819print"<table class=\"shortlog\">\n";3820my$alternate=1;3821for(my$i=$from;$i<=$to;$i++) {3822my%co= %{$commitlist->[$i]};3823my$commit=$co{'id'};3824my$ref= format_ref_marker($refs,$commit);3825if($alternate) {3826print"<tr class=\"dark\">\n";3827}else{3828print"<tr class=\"light\">\n";3829}3830$alternate^=1;3831my$author= chop_and_escape_str($co{'author_name'},10);3832# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .3833print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".3834"<td><i>".$author."</i></td>\n".3835"<td>";3836print format_subject_html($co{'title'},$co{'title_short'},3837 href(action=>"commit", hash=>$commit),$ref);3838print"</td>\n".3839"<td class=\"link\">".3840$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".3841$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".3842$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");3843my$snapshot_links= format_snapshot_links($commit);3844if(defined$snapshot_links) {3845print" | ".$snapshot_links;3846}3847print"</td>\n".3848"</tr>\n";3849}3850if(defined$extra) {3851print"<tr>\n".3852"<td colspan=\"4\">$extra</td>\n".3853"</tr>\n";3854}3855print"</table>\n";3856}38573858sub git_history_body {3859# Warning: assumes constant type (blob or tree) during history3860my($commitlist,$from,$to,$refs,$hash_base,$ftype,$extra) =@_;38613862$from=0unlessdefined$from;3863$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});38643865print"<table class=\"history\">\n";3866my$alternate=1;3867for(my$i=$from;$i<=$to;$i++) {3868my%co= %{$commitlist->[$i]};3869if(!%co) {3870next;3871}3872my$commit=$co{'id'};38733874my$ref= format_ref_marker($refs,$commit);38753876if($alternate) {3877print"<tr class=\"dark\">\n";3878}else{3879print"<tr class=\"light\">\n";3880}3881$alternate^=1;3882# shortlog uses chop_str($co{'author_name'}, 10)3883my$author= chop_and_escape_str($co{'author_name'},15,3);3884print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".3885"<td><i>".$author."</i></td>\n".3886"<td>";3887# originally git_history used chop_str($co{'title'}, 50)3888print format_subject_html($co{'title'},$co{'title_short'},3889 href(action=>"commit", hash=>$commit),$ref);3890print"</td>\n".3891"<td class=\"link\">".3892$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".3893$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");38943895if($ftypeeq'blob') {3896my$blob_current= git_get_hash_by_path($hash_base,$file_name);3897my$blob_parent= git_get_hash_by_path($commit,$file_name);3898if(defined$blob_current&&defined$blob_parent&&3899$blob_currentne$blob_parent) {3900print" | ".3901$cgi->a({-href => href(action=>"blobdiff",3902 hash=>$blob_current, hash_parent=>$blob_parent,3903 hash_base=>$hash_base, hash_parent_base=>$commit,3904 file_name=>$file_name)},3905"diff to current");3906}3907}3908print"</td>\n".3909"</tr>\n";3910}3911if(defined$extra) {3912print"<tr>\n".3913"<td colspan=\"4\">$extra</td>\n".3914"</tr>\n";3915}3916print"</table>\n";3917}39183919sub git_tags_body {3920# uses global variable $project3921my($taglist,$from,$to,$extra) =@_;3922$from=0unlessdefined$from;3923$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);39243925print"<table class=\"tags\">\n";3926my$alternate=1;3927for(my$i=$from;$i<=$to;$i++) {3928my$entry=$taglist->[$i];3929my%tag=%$entry;3930my$comment=$tag{'subject'};3931my$comment_short;3932if(defined$comment) {3933$comment_short= chop_str($comment,30,5);3934}3935if($alternate) {3936print"<tr class=\"dark\">\n";3937}else{3938print"<tr class=\"light\">\n";3939}3940$alternate^=1;3941if(defined$tag{'age'}) {3942print"<td><i>$tag{'age'}</i></td>\n";3943}else{3944print"<td></td>\n";3945}3946print"<td>".3947$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),3948-class=>"list name"}, esc_html($tag{'name'})) .3949"</td>\n".3950"<td>";3951if(defined$comment) {3952print format_subject_html($comment,$comment_short,3953 href(action=>"tag", hash=>$tag{'id'}));3954}3955print"</td>\n".3956"<td class=\"selflink\">";3957if($tag{'type'}eq"tag") {3958print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");3959}else{3960print" ";3961}3962print"</td>\n".3963"<td class=\"link\">"." | ".3964$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});3965if($tag{'reftype'}eq"commit") {3966print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .3967" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");3968}elsif($tag{'reftype'}eq"blob") {3969print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");3970}3971print"</td>\n".3972"</tr>";3973}3974if(defined$extra) {3975print"<tr>\n".3976"<td colspan=\"5\">$extra</td>\n".3977"</tr>\n";3978}3979print"</table>\n";3980}39813982sub git_heads_body {3983# uses global variable $project3984my($headlist,$head,$from,$to,$extra) =@_;3985$from=0unlessdefined$from;3986$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);39873988print"<table class=\"heads\">\n";3989my$alternate=1;3990for(my$i=$from;$i<=$to;$i++) {3991my$entry=$headlist->[$i];3992my%ref=%$entry;3993my$curr=$ref{'id'}eq$head;3994if($alternate) {3995print"<tr class=\"dark\">\n";3996}else{3997print"<tr class=\"light\">\n";3998}3999$alternate^=1;4000print"<td><i>$ref{'age'}</i></td>\n".4001($curr?"<td class=\"current_head\">":"<td>") .4002$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),4003-class=>"list name"},esc_html($ref{'name'})) .4004"</td>\n".4005"<td class=\"link\">".4006$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".4007$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".4008$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'name'})},"tree") .4009"</td>\n".4010"</tr>";4011}4012if(defined$extra) {4013print"<tr>\n".4014"<td colspan=\"3\">$extra</td>\n".4015"</tr>\n";4016}4017print"</table>\n";4018}40194020sub git_search_grep_body {4021my($commitlist,$from,$to,$extra) =@_;4022$from=0unlessdefined$from;4023$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);40244025print"<table class=\"commit_search\">\n";4026my$alternate=1;4027for(my$i=$from;$i<=$to;$i++) {4028my%co= %{$commitlist->[$i]};4029if(!%co) {4030next;4031}4032my$commit=$co{'id'};4033if($alternate) {4034print"<tr class=\"dark\">\n";4035}else{4036print"<tr class=\"light\">\n";4037}4038$alternate^=1;4039my$author= chop_and_escape_str($co{'author_name'},15,5);4040print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4041"<td><i>".$author."</i></td>\n".4042"<td>".4043$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),4044-class=>"list subject"},4045 chop_and_escape_str($co{'title'},50) ."<br/>");4046my$comment=$co{'comment'};4047foreachmy$line(@$comment) {4048if($line=~m/^(.*?)($search_regexp)(.*)$/i) {4049my($lead,$match,$trail) = ($1,$2,$3);4050$match= chop_str($match,70,5,'center');4051my$contextlen=int((80-length($match))/2);4052$contextlen=30if($contextlen>30);4053$lead= chop_str($lead,$contextlen,10,'left');4054$trail= chop_str($trail,$contextlen,10,'right');40554056$lead= esc_html($lead);4057$match= esc_html($match);4058$trail= esc_html($trail);40594060print"$lead<span class=\"match\">$match</span>$trail<br />";4061}4062}4063print"</td>\n".4064"<td class=\"link\">".4065$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .4066" | ".4067$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .4068" | ".4069$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");4070print"</td>\n".4071"</tr>\n";4072}4073if(defined$extra) {4074print"<tr>\n".4075"<td colspan=\"3\">$extra</td>\n".4076"</tr>\n";4077}4078print"</table>\n";4079}40804081## ======================================================================4082## ======================================================================4083## actions40844085sub git_project_list {4086my$order=$cgi->param('o');4087if(defined$order&&$order!~m/none|project|descr|owner|age/) {4088 die_error(400,"Unknown order parameter");4089}40904091my@list= git_get_projects_list();4092if(!@list) {4093 die_error(404,"No projects found");4094}40954096 git_header_html();4097if(-f $home_text) {4098print"<div class=\"index_include\">\n";4099open(my$fd,$home_text);4100print<$fd>;4101close$fd;4102print"</div>\n";4103}4104 git_project_list_body(\@list,$order);4105 git_footer_html();4106}41074108sub git_forks {4109my$order=$cgi->param('o');4110if(defined$order&&$order!~m/none|project|descr|owner|age/) {4111 die_error(400,"Unknown order parameter");4112}41134114my@list= git_get_projects_list($project);4115if(!@list) {4116 die_error(404,"No forks found");4117}41184119 git_header_html();4120 git_print_page_nav('','');4121 git_print_header_div('summary',"$projectforks");4122 git_project_list_body(\@list,$order);4123 git_footer_html();4124}41254126sub git_project_index {4127my@projects= git_get_projects_list($project);41284129print$cgi->header(4130-type =>'text/plain',4131-charset =>'utf-8',4132-content_disposition =>'inline; filename="index.aux"');41334134foreachmy$pr(@projects) {4135if(!exists$pr->{'owner'}) {4136$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");4137}41384139my($path,$owner) = ($pr->{'path'},$pr->{'owner'});4140# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '4141$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4142$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4143$path=~s/ /\+/g;4144$owner=~s/ /\+/g;41454146print"$path$owner\n";4147}4148}41494150sub git_summary {4151my$descr= git_get_project_description($project) ||"none";4152my%co= parse_commit("HEAD");4153my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();4154my$head=$co{'id'};41554156my$owner= git_get_project_owner($project);41574158my$refs= git_get_references();4159# These get_*_list functions return one more to allow us to see if4160# there are more ...4161my@taglist= git_get_tags_list(16);4162my@headlist= git_get_heads_list(16);4163my@forklist;4164my($check_forks) = gitweb_check_feature('forks');41654166if($check_forks) {4167@forklist= git_get_projects_list($project);4168}41694170 git_header_html();4171 git_print_page_nav('summary','',$head);41724173print"<div class=\"title\"> </div>\n";4174print"<table class=\"projects_list\">\n".4175"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".4176"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";4177if(defined$cd{'rfc2822'}) {4178print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";4179}41804181# use per project git URL list in $projectroot/$project/cloneurl4182# or make project git URL from git base URL and project name4183my$url_tag="URL";4184my@url_list= git_get_project_url_list($project);4185@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;4186foreachmy$git_url(@url_list) {4187next unless$git_url;4188print"<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";4189$url_tag="";4190}41914192# Tag cloud4193my$show_ctags= (gitweb_check_feature('ctags'))[0];4194if($show_ctags) {4195my$ctags= git_get_project_ctags($project);4196my$cloud= git_populate_project_tagcloud($ctags);4197print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";4198print"</td>\n<td>"unless%$ctags;4199print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";4200print"</td>\n<td>"if%$ctags;4201print git_show_project_tagcloud($cloud,48);4202print"</td></tr>";4203}42044205print"</table>\n";42064207if(-s "$projectroot/$project/README.html") {4208if(open my$fd,"$projectroot/$project/README.html") {4209print"<div class=\"title\">readme</div>\n".4210"<div class=\"readme\">\n";4211print$_while(<$fd>);4212print"\n</div>\n";# class="readme"4213close$fd;4214}4215}42164217# we need to request one more than 16 (0..15) to check if4218# those 16 are all4219my@commitlist=$head? parse_commits($head,17) : ();4220if(@commitlist) {4221 git_print_header_div('shortlog');4222 git_shortlog_body(\@commitlist,0,15,$refs,4223$#commitlist<=15?undef:4224$cgi->a({-href => href(action=>"shortlog")},"..."));4225}42264227if(@taglist) {4228 git_print_header_div('tags');4229 git_tags_body(\@taglist,0,15,4230$#taglist<=15?undef:4231$cgi->a({-href => href(action=>"tags")},"..."));4232}42334234if(@headlist) {4235 git_print_header_div('heads');4236 git_heads_body(\@headlist,$head,0,15,4237$#headlist<=15?undef:4238$cgi->a({-href => href(action=>"heads")},"..."));4239}42404241if(@forklist) {4242 git_print_header_div('forks');4243 git_project_list_body(\@forklist,undef,0,15,4244$#forklist<=15?undef:4245$cgi->a({-href => href(action=>"forks")},"..."),4246'noheader');4247}42484249 git_footer_html();4250}42514252sub git_tag {4253my$head= git_get_head_hash($project);4254 git_header_html();4255 git_print_page_nav('','',$head,undef,$head);4256my%tag= parse_tag($hash);42574258if(!%tag) {4259 die_error(404,"Unknown tag object");4260}42614262 git_print_header_div('commit', esc_html($tag{'name'}),$hash);4263print"<div class=\"title_text\">\n".4264"<table class=\"object_header\">\n".4265"<tr>\n".4266"<td>object</td>\n".4267"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4268$tag{'object'}) ."</td>\n".4269"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4270$tag{'type'}) ."</td>\n".4271"</tr>\n";4272if(defined($tag{'author'})) {4273my%ad= parse_date($tag{'epoch'},$tag{'tz'});4274print"<tr><td>author</td><td>". esc_html($tag{'author'}) ."</td></tr>\n";4275print"<tr><td></td><td>".$ad{'rfc2822'} .4276sprintf(" (%02d:%02d%s)",$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'}) .4277"</td></tr>\n";4278}4279print"</table>\n\n".4280"</div>\n";4281print"<div class=\"page_body\">";4282my$comment=$tag{'comment'};4283foreachmy$line(@$comment) {4284chomp$line;4285print esc_html($line, -nbsp=>1) ."<br/>\n";4286}4287print"</div>\n";4288 git_footer_html();4289}42904291sub git_blame {4292my$fd;4293my$ftype;42944295 gitweb_check_feature('blame')4296or die_error(403,"Blame view not allowed");42974298 die_error(400,"No file name given")unless$file_name;4299$hash_base||= git_get_head_hash($project);4300 die_error(404,"Couldn't find base commit")unless($hash_base);4301my%co= parse_commit($hash_base)4302or die_error(404,"Commit not found");4303if(!defined$hash) {4304$hash= git_get_hash_by_path($hash_base,$file_name,"blob")4305or die_error(404,"Error looking up file");4306}4307$ftype= git_get_type($hash);4308if($ftype!~"blob") {4309 die_error(400,"Object is not a blob");4310}4311open($fd,"-|", git_cmd(),"blame",'-p','--',4312$file_name,$hash_base)4313or die_error(500,"Open git-blame failed");4314 git_header_html();4315my$formats_nav=4316$cgi->a({-href => href(action=>"blob", -replay=>1)},4317"blob") .4318" | ".4319$cgi->a({-href => href(action=>"history", -replay=>1)},4320"history") .4321" | ".4322$cgi->a({-href => href(action=>"blame", file_name=>$file_name)},4323"HEAD");4324 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4325 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4326 git_print_page_path($file_name,$ftype,$hash_base);4327my@rev_color= (qw(light2 dark2));4328my$num_colors=scalar(@rev_color);4329my$current_color=0;4330my$last_rev;4331print<<HTML;4332<div class="page_body">4333<table class="blame">4334<tr><th>Commit</th><th>Line</th><th>Data</th></tr>4335HTML4336my%metainfo= ();4337while(1) {4338$_= <$fd>;4339last unlessdefined$_;4340my($full_rev,$orig_lineno,$lineno,$group_size) =4341/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;4342if(!exists$metainfo{$full_rev}) {4343$metainfo{$full_rev} = {};4344}4345my$meta=$metainfo{$full_rev};4346while(<$fd>) {4347last if(s/^\t//);4348if(/^(\S+) (.*)$/) {4349$meta->{$1} =$2;4350}4351}4352my$data=$_;4353chomp$data;4354my$rev=substr($full_rev,0,8);4355my$author=$meta->{'author'};4356my%date= parse_date($meta->{'author-time'},4357$meta->{'author-tz'});4358my$date=$date{'iso-tz'};4359if($group_size) {4360$current_color= ++$current_color%$num_colors;4361}4362print"<tr class=\"$rev_color[$current_color]\">\n";4363if($group_size) {4364print"<td class=\"sha1\"";4365print" title=\"". esc_html($author) .",$date\"";4366print" rowspan=\"$group_size\""if($group_size>1);4367print">";4368print$cgi->a({-href => href(action=>"commit",4369 hash=>$full_rev,4370 file_name=>$file_name)},4371 esc_html($rev));4372print"</td>\n";4373}4374open(my$dd,"-|", git_cmd(),"rev-parse","$full_rev^")4375or die_error(500,"Open git-rev-parse failed");4376my$parent_commit= <$dd>;4377close$dd;4378chomp($parent_commit);4379my$blamed= href(action =>'blame',4380 file_name =>$meta->{'filename'},4381 hash_base =>$parent_commit);4382print"<td class=\"linenr\">";4383print$cgi->a({ -href =>"$blamed#l$orig_lineno",4384-id =>"l$lineno",4385-class=>"linenr"},4386 esc_html($lineno));4387print"</td>";4388print"<td class=\"pre\">". esc_html($data) ."</td>\n";4389print"</tr>\n";4390}4391print"</table>\n";4392print"</div>";4393close$fd4394or print"Reading blob failed\n";4395 git_footer_html();4396}43974398sub git_tags {4399my$head= git_get_head_hash($project);4400 git_header_html();4401 git_print_page_nav('','',$head,undef,$head);4402 git_print_header_div('summary',$project);44034404my@tagslist= git_get_tags_list();4405if(@tagslist) {4406 git_tags_body(\@tagslist);4407}4408 git_footer_html();4409}44104411sub git_heads {4412my$head= git_get_head_hash($project);4413 git_header_html();4414 git_print_page_nav('','',$head,undef,$head);4415 git_print_header_div('summary',$project);44164417my@headslist= git_get_heads_list();4418if(@headslist) {4419 git_heads_body(\@headslist,$head);4420}4421 git_footer_html();4422}44234424sub git_blob_plain {4425my$type=shift;4426my$expires;44274428if(!defined$hash) {4429if(defined$file_name) {4430my$base=$hash_base|| git_get_head_hash($project);4431$hash= git_get_hash_by_path($base,$file_name,"blob")4432or die_error(404,"Cannot find file");4433}else{4434 die_error(400,"No file name defined");4435}4436}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4437# blobs defined by non-textual hash id's can be cached4438$expires="+1d";4439}44404441open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4442or die_error(500,"Open git-cat-file blob '$hash' failed");44434444# content-type (can include charset)4445$type= blob_contenttype($fd,$file_name,$type);44464447# "save as" filename, even when no $file_name is given4448my$save_as="$hash";4449if(defined$file_name) {4450$save_as=$file_name;4451}elsif($type=~m/^text\//) {4452$save_as.='.txt';4453}44544455print$cgi->header(4456-type =>$type,4457-expires =>$expires,4458-content_disposition =>'inline; filename="'.$save_as.'"');4459undef$/;4460binmode STDOUT,':raw';4461print<$fd>;4462binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4463$/="\n";4464close$fd;4465}44664467sub git_blob {4468my$expires;44694470if(!defined$hash) {4471if(defined$file_name) {4472my$base=$hash_base|| git_get_head_hash($project);4473$hash= git_get_hash_by_path($base,$file_name,"blob")4474or die_error(404,"Cannot find file");4475}else{4476 die_error(400,"No file name defined");4477}4478}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4479# blobs defined by non-textual hash id's can be cached4480$expires="+1d";4481}44824483my($have_blame) = gitweb_check_feature('blame');4484open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4485or die_error(500,"Couldn't cat$file_name,$hash");4486my$mimetype= blob_mimetype($fd,$file_name);4487if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {4488close$fd;4489return git_blob_plain($mimetype);4490}4491# we can have blame only for text/* mimetype4492$have_blame&&= ($mimetype=~m!^text/!);44934494 git_header_html(undef,$expires);4495my$formats_nav='';4496if(defined$hash_base&& (my%co= parse_commit($hash_base))) {4497if(defined$file_name) {4498if($have_blame) {4499$formats_nav.=4500$cgi->a({-href => href(action=>"blame", -replay=>1)},4501"blame") .4502" | ";4503}4504$formats_nav.=4505$cgi->a({-href => href(action=>"history", -replay=>1)},4506"history") .4507" | ".4508$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},4509"raw") .4510" | ".4511$cgi->a({-href => href(action=>"blob",4512 hash_base=>"HEAD", file_name=>$file_name)},4513"HEAD");4514}else{4515$formats_nav.=4516$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},4517"raw");4518}4519 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4520 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4521}else{4522print"<div class=\"page_nav\">\n".4523"<br/><br/></div>\n".4524"<div class=\"title\">$hash</div>\n";4525}4526 git_print_page_path($file_name,"blob",$hash_base);4527print"<div class=\"page_body\">\n";4528if($mimetype=~m!^image/!) {4529print qq!<img type="$mimetype"!;4530if($file_name) {4531print qq! alt="$file_name" title="$file_name"!;4532}4533print qq! src="! .4534 href(action=>"blob_plain", hash=>$hash,4535 hash_base=>$hash_base, file_name=>$file_name) .4536 qq!"/>\n!;4537}else{4538my$nr;4539while(my$line= <$fd>) {4540chomp$line;4541$nr++;4542$line= untabify($line);4543printf"<div class=\"pre\"><a id=\"l%i\"href=\"#l%i\"class=\"linenr\">%4i</a>%s</div>\n",4544$nr,$nr,$nr, esc_html($line, -nbsp=>1);4545}4546}4547close$fd4548or print"Reading blob failed.\n";4549print"</div>";4550 git_footer_html();4551}45524553sub git_tree {4554if(!defined$hash_base) {4555$hash_base="HEAD";4556}4557if(!defined$hash) {4558if(defined$file_name) {4559$hash= git_get_hash_by_path($hash_base,$file_name,"tree");4560}else{4561$hash=$hash_base;4562}4563}4564 die_error(404,"No such tree")unlessdefined($hash);4565$/="\0";4566open my$fd,"-|", git_cmd(),"ls-tree",'-z',$hash4567or die_error(500,"Open git-ls-tree failed");4568my@entries=map{chomp;$_} <$fd>;4569close$fdor die_error(404,"Reading tree failed");4570$/="\n";45714572my$refs= git_get_references();4573my$ref= format_ref_marker($refs,$hash_base);4574 git_header_html();4575my$basedir='';4576my($have_blame) = gitweb_check_feature('blame');4577if(defined$hash_base&& (my%co= parse_commit($hash_base))) {4578my@views_nav= ();4579if(defined$file_name) {4580push@views_nav,4581$cgi->a({-href => href(action=>"history", -replay=>1)},4582"history"),4583$cgi->a({-href => href(action=>"tree",4584 hash_base=>"HEAD", file_name=>$file_name)},4585"HEAD"),4586}4587my$snapshot_links= format_snapshot_links($hash);4588if(defined$snapshot_links) {4589# FIXME: Should be available when we have no hash base as well.4590push@views_nav,$snapshot_links;4591}4592 git_print_page_nav('tree','',$hash_base,undef,undef,join(' | ',@views_nav));4593 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);4594}else{4595undef$hash_base;4596print"<div class=\"page_nav\">\n";4597print"<br/><br/></div>\n";4598print"<div class=\"title\">$hash</div>\n";4599}4600if(defined$file_name) {4601$basedir=$file_name;4602if($basedirne''&&substr($basedir, -1)ne'/') {4603$basedir.='/';4604}4605 git_print_page_path($file_name,'tree',$hash_base);4606}4607print"<div class=\"page_body\">\n";4608print"<table class=\"tree\">\n";4609my$alternate=1;4610# '..' (top directory) link if possible4611if(defined$hash_base&&4612defined$file_name&&$file_name=~m![^/]+$!) {4613if($alternate) {4614print"<tr class=\"dark\">\n";4615}else{4616print"<tr class=\"light\">\n";4617}4618$alternate^=1;46194620my$up=$file_name;4621$up=~s!/?[^/]+$!!;4622undef$upunless$up;4623# based on git_print_tree_entry4624print'<td class="mode">'. mode_str('040000') ."</td>\n";4625print'<td class="list">';4626print$cgi->a({-href => href(action=>"tree", hash_base=>$hash_base,4627 file_name=>$up)},4628"..");4629print"</td>\n";4630print"<td class=\"link\"></td>\n";46314632print"</tr>\n";4633}4634foreachmy$line(@entries) {4635my%t= parse_ls_tree_line($line, -z =>1);46364637if($alternate) {4638print"<tr class=\"dark\">\n";4639}else{4640print"<tr class=\"light\">\n";4641}4642$alternate^=1;46434644 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);46454646print"</tr>\n";4647}4648print"</table>\n".4649"</div>";4650 git_footer_html();4651}46524653sub git_snapshot {4654my@supported_fmts= gitweb_check_feature('snapshot');4655@supported_fmts= filter_snapshot_fmts(@supported_fmts);46564657my$format=$cgi->param('sf');4658if(!@supported_fmts) {4659 die_error(403,"Snapshots not allowed");4660}4661# default to first supported snapshot format4662$format||=$supported_fmts[0];4663if($format!~m/^[a-z0-9]+$/) {4664 die_error(400,"Invalid snapshot format parameter");4665}elsif(!exists($known_snapshot_formats{$format})) {4666 die_error(400,"Unknown snapshot format");4667}elsif(!grep($_eq$format,@supported_fmts)) {4668 die_error(403,"Unsupported snapshot format");4669}46704671if(!defined$hash) {4672$hash= git_get_head_hash($project);4673}46744675my$name=$project;4676$name=~ s,([^/])/*\.git$,$1,;4677$name= basename($name);4678my$filename= to_utf8($name);4679$name=~s/\047/\047\\\047\047/g;4680my$cmd;4681$filename.="-$hash$known_snapshot_formats{$format}{'suffix'}";4682$cmd= quote_command(4683 git_cmd(),'archive',4684"--format=$known_snapshot_formats{$format}{'format'}",4685"--prefix=$name/",$hash);4686if(exists$known_snapshot_formats{$format}{'compressor'}) {4687$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});4688}46894690print$cgi->header(4691-type =>$known_snapshot_formats{$format}{'type'},4692-content_disposition =>'inline; filename="'."$filename".'"',4693-status =>'200 OK');46944695open my$fd,"-|",$cmd4696or die_error(500,"Execute git-archive failed");4697binmode STDOUT,':raw';4698print<$fd>;4699binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4700close$fd;4701}47024703sub git_log {4704my$head= git_get_head_hash($project);4705if(!defined$hash) {4706$hash=$head;4707}4708if(!defined$page) {4709$page=0;4710}4711my$refs= git_get_references();47124713my@commitlist= parse_commits($hash,101, (100*$page));47144715my$paging_nav= format_paging_nav('log',$hash,$head,$page,$#commitlist>=100);47164717 git_header_html();4718 git_print_page_nav('log','',$hash,undef,undef,$paging_nav);47194720if(!@commitlist) {4721my%co= parse_commit($hash);47224723 git_print_header_div('summary',$project);4724print"<div class=\"page_body\"> Last change$co{'age_string'}.<br/><br/></div>\n";4725}4726my$to= ($#commitlist>=99) ? (99) : ($#commitlist);4727for(my$i=0;$i<=$to;$i++) {4728my%co= %{$commitlist[$i]};4729next if!%co;4730my$commit=$co{'id'};4731my$ref= format_ref_marker($refs,$commit);4732my%ad= parse_date($co{'author_epoch'});4733 git_print_header_div('commit',4734"<span class=\"age\">$co{'age_string'}</span>".4735 esc_html($co{'title'}) .$ref,4736$commit);4737print"<div class=\"title_text\">\n".4738"<div class=\"log_link\">\n".4739$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4740" | ".4741$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4742" | ".4743$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4744"<br/>\n".4745"</div>\n".4746"<i>". esc_html($co{'author_name'}) ." [$ad{'rfc2822'}]</i><br/>\n".4747"</div>\n";47484749print"<div class=\"log_body\">\n";4750 git_print_log($co{'comment'}, -final_empty_line=>1);4751print"</div>\n";4752}4753if($#commitlist>=100) {4754print"<div class=\"page_nav\">\n";4755print$cgi->a({-href => href(-replay=>1, page=>$page+1),4756-accesskey =>"n", -title =>"Alt-n"},"next");4757print"</div>\n";4758}4759 git_footer_html();4760}47614762sub git_commit {4763$hash||=$hash_base||"HEAD";4764my%co= parse_commit($hash)4765or die_error(404,"Unknown commit object");4766my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});4767my%cd= parse_date($co{'committer_epoch'},$co{'committer_tz'});47684769my$parent=$co{'parent'};4770my$parents=$co{'parents'};# listref47714772# we need to prepare $formats_nav before any parameter munging4773my$formats_nav;4774if(!defined$parent) {4775# --root commitdiff4776$formats_nav.='(initial)';4777}elsif(@$parents==1) {4778# single parent commit4779$formats_nav.=4780'(parent: '.4781$cgi->a({-href => href(action=>"commit",4782 hash=>$parent)},4783 esc_html(substr($parent,0,7))) .4784')';4785}else{4786# merge commit4787$formats_nav.=4788'(merge: '.4789join(' ',map{4790$cgi->a({-href => href(action=>"commit",4791 hash=>$_)},4792 esc_html(substr($_,0,7)));4793}@$parents) .4794')';4795}47964797if(!defined$parent) {4798$parent="--root";4799}4800my@difftree;4801open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",4802@diff_opts,4803(@$parents<=1?$parent:'-c'),4804$hash,"--"4805or die_error(500,"Open git-diff-tree failed");4806@difftree=map{chomp;$_} <$fd>;4807close$fdor die_error(404,"Reading git-diff-tree failed");48084809# non-textual hash id's can be cached4810my$expires;4811if($hash=~m/^[0-9a-fA-F]{40}$/) {4812$expires="+1d";4813}4814my$refs= git_get_references();4815my$ref= format_ref_marker($refs,$co{'id'});48164817 git_header_html(undef,$expires);4818 git_print_page_nav('commit','',4819$hash,$co{'tree'},$hash,4820$formats_nav);48214822if(defined$co{'parent'}) {4823 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);4824}else{4825 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);4826}4827print"<div class=\"title_text\">\n".4828"<table class=\"object_header\">\n";4829print"<tr><td>author</td><td>". esc_html($co{'author'}) ."</td></tr>\n".4830"<tr>".4831"<td></td><td>$ad{'rfc2822'}";4832if($ad{'hour_local'} <6) {4833printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",4834$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});4835}else{4836printf(" (%02d:%02d%s)",4837$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});4838}4839print"</td>".4840"</tr>\n";4841print"<tr><td>committer</td><td>". esc_html($co{'committer'}) ."</td></tr>\n";4842print"<tr><td></td><td>$cd{'rfc2822'}".4843sprintf(" (%02d:%02d%s)",$cd{'hour_local'},$cd{'minute_local'},$cd{'tz_local'}) .4844"</td></tr>\n";4845print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";4846print"<tr>".4847"<td>tree</td>".4848"<td class=\"sha1\">".4849$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),4850class=>"list"},$co{'tree'}) .4851"</td>".4852"<td class=\"link\">".4853$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},4854"tree");4855my$snapshot_links= format_snapshot_links($hash);4856if(defined$snapshot_links) {4857print" | ".$snapshot_links;4858}4859print"</td>".4860"</tr>\n";48614862foreachmy$par(@$parents) {4863print"<tr>".4864"<td>parent</td>".4865"<td class=\"sha1\">".4866$cgi->a({-href => href(action=>"commit", hash=>$par),4867class=>"list"},$par) .4868"</td>".4869"<td class=\"link\">".4870$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .4871" | ".4872$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .4873"</td>".4874"</tr>\n";4875}4876print"</table>".4877"</div>\n";48784879print"<div class=\"page_body\">\n";4880 git_print_log($co{'comment'});4881print"</div>\n";48824883 git_difftree_body(\@difftree,$hash,@$parents);48844885 git_footer_html();4886}48874888sub git_object {4889# object is defined by:4890# - hash or hash_base alone4891# - hash_base and file_name4892my$type;48934894# - hash or hash_base alone4895if($hash|| ($hash_base&& !defined$file_name)) {4896my$object_id=$hash||$hash_base;48974898open my$fd,"-|", quote_command(4899 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'4900or die_error(404,"Object does not exist");4901$type= <$fd>;4902chomp$type;4903close$fd4904or die_error(404,"Object does not exist");49054906# - hash_base and file_name4907}elsif($hash_base&&defined$file_name) {4908$file_name=~ s,/+$,,;49094910system(git_cmd(),"cat-file",'-e',$hash_base) ==04911or die_error(404,"Base object does not exist");49124913# here errors should not hapen4914open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name4915or die_error(500,"Open git-ls-tree failed");4916my$line= <$fd>;4917close$fd;49184919#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'4920unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {4921 die_error(404,"File or directory for given base does not exist");4922}4923$type=$2;4924$hash=$3;4925}else{4926 die_error(400,"Not enough information to find object");4927}49284929print$cgi->redirect(-uri => href(action=>$type, -full=>1,4930 hash=>$hash, hash_base=>$hash_base,4931 file_name=>$file_name),4932-status =>'302 Found');4933}49344935sub git_blobdiff {4936my$format=shift||'html';49374938my$fd;4939my@difftree;4940my%diffinfo;4941my$expires;49424943# preparing $fd and %diffinfo for git_patchset_body4944# new style URI4945if(defined$hash_base&&defined$hash_parent_base) {4946if(defined$file_name) {4947# read raw output4948open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,4949$hash_parent_base,$hash_base,4950"--", (defined$file_parent?$file_parent: ()),$file_name4951or die_error(500,"Open git-diff-tree failed");4952@difftree=map{chomp;$_} <$fd>;4953close$fd4954or die_error(404,"Reading git-diff-tree failed");4955@difftree4956or die_error(404,"Blob diff not found");49574958}elsif(defined$hash&&4959$hash=~/[0-9a-fA-F]{40}/) {4960# try to find filename from $hash49614962# read filtered raw output4963open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,4964$hash_parent_base,$hash_base,"--"4965or die_error(500,"Open git-diff-tree failed");4966@difftree=4967# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'4968# $hash == to_id4969grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}4970map{chomp;$_} <$fd>;4971close$fd4972or die_error(404,"Reading git-diff-tree failed");4973@difftree4974or die_error(404,"Blob diff not found");49754976}else{4977 die_error(400,"Missing one of the blob diff parameters");4978}49794980if(@difftree>1) {4981 die_error(400,"Ambiguous blob diff specification");4982}49834984%diffinfo= parse_difftree_raw_line($difftree[0]);4985$file_parent||=$diffinfo{'from_file'} ||$file_name;4986$file_name||=$diffinfo{'to_file'};49874988$hash_parent||=$diffinfo{'from_id'};4989$hash||=$diffinfo{'to_id'};49904991# non-textual hash id's can be cached4992if($hash_base=~m/^[0-9a-fA-F]{40}$/&&4993$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {4994$expires='+1d';4995}49964997# open patch output4998open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,4999'-p', ($formateq'html'?"--full-index": ()),5000$hash_parent_base,$hash_base,5001"--", (defined$file_parent?$file_parent: ()),$file_name5002or die_error(500,"Open git-diff-tree failed");5003}50045005# old/legacy style URI5006if(!%diffinfo&&# if new style URI failed5007defined$hash&&defined$hash_parent) {5008# fake git-diff-tree raw output5009$diffinfo{'from_mode'} =$diffinfo{'to_mode'} ="blob";5010$diffinfo{'from_id'} =$hash_parent;5011$diffinfo{'to_id'} =$hash;5012if(defined$file_name) {5013if(defined$file_parent) {5014$diffinfo{'status'} ='2';5015$diffinfo{'from_file'} =$file_parent;5016$diffinfo{'to_file'} =$file_name;5017}else{# assume not renamed5018$diffinfo{'status'} ='1';5019$diffinfo{'from_file'} =$file_name;5020$diffinfo{'to_file'} =$file_name;5021}5022}else{# no filename given5023$diffinfo{'status'} ='2';5024$diffinfo{'from_file'} =$hash_parent;5025$diffinfo{'to_file'} =$hash;5026}50275028# non-textual hash id's can be cached5029if($hash=~m/^[0-9a-fA-F]{40}$/&&5030$hash_parent=~m/^[0-9a-fA-F]{40}$/) {5031$expires='+1d';5032}50335034# open patch output5035open$fd,"-|", git_cmd(),"diff",@diff_opts,5036'-p', ($formateq'html'?"--full-index": ()),5037$hash_parent,$hash,"--"5038or die_error(500,"Open git-diff failed");5039}else{5040 die_error(400,"Missing one of the blob diff parameters")5041unless%diffinfo;5042}50435044# header5045if($formateq'html') {5046my$formats_nav=5047$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},5048"raw");5049 git_header_html(undef,$expires);5050if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5051 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5052 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5053}else{5054print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";5055print"<div class=\"title\">$hashvs$hash_parent</div>\n";5056}5057if(defined$file_name) {5058 git_print_page_path($file_name,"blob",$hash_base);5059}else{5060print"<div class=\"page_path\"></div>\n";5061}50625063}elsif($formateq'plain') {5064print$cgi->header(5065-type =>'text/plain',5066-charset =>'utf-8',5067-expires =>$expires,5068-content_disposition =>'inline; filename="'."$file_name".'.patch"');50695070print"X-Git-Url: ".$cgi->self_url() ."\n\n";50715072}else{5073 die_error(400,"Unknown blobdiff format");5074}50755076# patch5077if($formateq'html') {5078print"<div class=\"page_body\">\n";50795080 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);5081close$fd;50825083print"</div>\n";# class="page_body"5084 git_footer_html();50855086}else{5087while(my$line= <$fd>) {5088$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;5089$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;50905091print$line;50925093last if$line=~m!^\+\+\+!;5094}5095local$/=undef;5096print<$fd>;5097close$fd;5098}5099}51005101sub git_blobdiff_plain {5102 git_blobdiff('plain');5103}51045105sub git_commitdiff {5106my$format=shift||'html';5107$hash||=$hash_base||"HEAD";5108my%co= parse_commit($hash)5109or die_error(404,"Unknown commit object");51105111# choose format for commitdiff for merge5112if(!defined$hash_parent&& @{$co{'parents'}} >1) {5113$hash_parent='--cc';5114}5115# we need to prepare $formats_nav before almost any parameter munging5116my$formats_nav;5117if($formateq'html') {5118$formats_nav=5119$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},5120"raw");51215122if(defined$hash_parent&&5123$hash_parentne'-c'&&$hash_parentne'--cc') {5124# commitdiff with two commits given5125my$hash_parent_short=$hash_parent;5126if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {5127$hash_parent_short=substr($hash_parent,0,7);5128}5129$formats_nav.=5130' (from';5131for(my$i=0;$i< @{$co{'parents'}};$i++) {5132if($co{'parents'}[$i]eq$hash_parent) {5133$formats_nav.=' parent '. ($i+1);5134last;5135}5136}5137$formats_nav.=': '.5138$cgi->a({-href => href(action=>"commitdiff",5139 hash=>$hash_parent)},5140 esc_html($hash_parent_short)) .5141')';5142}elsif(!$co{'parent'}) {5143# --root commitdiff5144$formats_nav.=' (initial)';5145}elsif(scalar@{$co{'parents'}} ==1) {5146# single parent commit5147$formats_nav.=5148' (parent: '.5149$cgi->a({-href => href(action=>"commitdiff",5150 hash=>$co{'parent'})},5151 esc_html(substr($co{'parent'},0,7))) .5152')';5153}else{5154# merge commit5155if($hash_parenteq'--cc') {5156$formats_nav.=' | '.5157$cgi->a({-href => href(action=>"commitdiff",5158 hash=>$hash, hash_parent=>'-c')},5159'combined');5160}else{# $hash_parent eq '-c'5161$formats_nav.=' | '.5162$cgi->a({-href => href(action=>"commitdiff",5163 hash=>$hash, hash_parent=>'--cc')},5164'compact');5165}5166$formats_nav.=5167' (merge: '.5168join(' ',map{5169$cgi->a({-href => href(action=>"commitdiff",5170 hash=>$_)},5171 esc_html(substr($_,0,7)));5172} @{$co{'parents'}} ) .5173')';5174}5175}51765177my$hash_parent_param=$hash_parent;5178if(!defined$hash_parent_param) {5179# --cc for multiple parents, --root for parentless5180$hash_parent_param=5181@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';5182}51835184# read commitdiff5185my$fd;5186my@difftree;5187if($formateq'html') {5188open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5189"--no-commit-id","--patch-with-raw","--full-index",5190$hash_parent_param,$hash,"--"5191or die_error(500,"Open git-diff-tree failed");51925193while(my$line= <$fd>) {5194chomp$line;5195# empty line ends raw part of diff-tree output5196last unless$line;5197push@difftree,scalar parse_difftree_raw_line($line);5198}51995200}elsif($formateq'plain') {5201open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5202'-p',$hash_parent_param,$hash,"--"5203or die_error(500,"Open git-diff-tree failed");52045205}else{5206 die_error(400,"Unknown commitdiff format");5207}52085209# non-textual hash id's can be cached5210my$expires;5211if($hash=~m/^[0-9a-fA-F]{40}$/) {5212$expires="+1d";5213}52145215# write commit message5216if($formateq'html') {5217my$refs= git_get_references();5218my$ref= format_ref_marker($refs,$co{'id'});52195220 git_header_html(undef,$expires);5221 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);5222 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);5223 git_print_authorship(\%co);5224print"<div class=\"page_body\">\n";5225if(@{$co{'comment'}} >1) {5226print"<div class=\"log\">\n";5227 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);5228print"</div>\n";# class="log"5229}52305231}elsif($formateq'plain') {5232my$refs= git_get_references("tags");5233my$tagname= git_get_rev_name_tags($hash);5234my$filename= basename($project) ."-$hash.patch";52355236print$cgi->header(5237-type =>'text/plain',5238-charset =>'utf-8',5239-expires =>$expires,5240-content_disposition =>'inline; filename="'."$filename".'"');5241my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});5242print"From: ". to_utf8($co{'author'}) ."\n";5243print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";5244print"Subject: ". to_utf8($co{'title'}) ."\n";52455246print"X-Git-Tag:$tagname\n"if$tagname;5247print"X-Git-Url: ".$cgi->self_url() ."\n\n";52485249foreachmy$line(@{$co{'comment'}}) {5250print to_utf8($line) ."\n";5251}5252print"---\n\n";5253}52545255# write patch5256if($formateq'html') {5257my$use_parents= !defined$hash_parent||5258$hash_parenteq'-c'||$hash_parenteq'--cc';5259 git_difftree_body(\@difftree,$hash,5260$use_parents? @{$co{'parents'}} :$hash_parent);5261print"<br/>\n";52625263 git_patchset_body($fd, \@difftree,$hash,5264$use_parents? @{$co{'parents'}} :$hash_parent);5265close$fd;5266print"</div>\n";# class="page_body"5267 git_footer_html();52685269}elsif($formateq'plain') {5270local$/=undef;5271print<$fd>;5272close$fd5273or print"Reading git-diff-tree failed\n";5274}5275}52765277sub git_commitdiff_plain {5278 git_commitdiff('plain');5279}52805281sub git_history {5282if(!defined$hash_base) {5283$hash_base= git_get_head_hash($project);5284}5285if(!defined$page) {5286$page=0;5287}5288my$ftype;5289my%co= parse_commit($hash_base)5290or die_error(404,"Unknown commit object");52915292my$refs= git_get_references();5293my$limit=sprintf("--max-count=%i", (100* ($page+1)));52945295my@commitlist= parse_commits($hash_base,101, (100*$page),5296$file_name,"--full-history")5297or die_error(404,"No such file or directory on given branch");52985299if(!defined$hash&&defined$file_name) {5300# some commits could have deleted file in question,5301# and not have it in tree, but one of them has to have it5302for(my$i=0;$i<=@commitlist;$i++) {5303$hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);5304last ifdefined$hash;5305}5306}5307if(defined$hash) {5308$ftype= git_get_type($hash);5309}5310if(!defined$ftype) {5311 die_error(500,"Unknown type of object");5312}53135314my$paging_nav='';5315if($page>0) {5316$paging_nav.=5317$cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,5318 file_name=>$file_name)},5319"first");5320$paging_nav.=" ⋅ ".5321$cgi->a({-href => href(-replay=>1, page=>$page-1),5322-accesskey =>"p", -title =>"Alt-p"},"prev");5323}else{5324$paging_nav.="first";5325$paging_nav.=" ⋅ prev";5326}5327my$next_link='';5328if($#commitlist>=100) {5329$next_link=5330$cgi->a({-href => href(-replay=>1, page=>$page+1),5331-accesskey =>"n", -title =>"Alt-n"},"next");5332$paging_nav.=" ⋅$next_link";5333}else{5334$paging_nav.=" ⋅ next";5335}53365337 git_header_html();5338 git_print_page_nav('history','',$hash_base,$co{'tree'},$hash_base,$paging_nav);5339 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5340 git_print_page_path($file_name,$ftype,$hash_base);53415342 git_history_body(\@commitlist,0,99,5343$refs,$hash_base,$ftype,$next_link);53445345 git_footer_html();5346}53475348sub git_search {5349 gitweb_check_feature('search')or die_error(403,"Search is disabled");5350if(!defined$searchtext) {5351 die_error(400,"Text field is empty");5352}5353if(!defined$hash) {5354$hash= git_get_head_hash($project);5355}5356my%co= parse_commit($hash);5357if(!%co) {5358 die_error(404,"Unknown commit object");5359}5360if(!defined$page) {5361$page=0;5362}53635364$searchtype||='commit';5365if($searchtypeeq'pickaxe') {5366# pickaxe may take all resources of your box and run for several minutes5367# with every query - so decide by yourself how public you make this feature5368 gitweb_check_feature('pickaxe')5369or die_error(403,"Pickaxe is disabled");5370}5371if($searchtypeeq'grep') {5372 gitweb_check_feature('grep')5373or die_error(403,"Grep is disabled");5374}53755376 git_header_html();53775378if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {5379my$greptype;5380if($searchtypeeq'commit') {5381$greptype="--grep=";5382}elsif($searchtypeeq'author') {5383$greptype="--author=";5384}elsif($searchtypeeq'committer') {5385$greptype="--committer=";5386}5387$greptype.=$searchtext;5388my@commitlist= parse_commits($hash,101, (100*$page),undef,5389$greptype,'--regexp-ignore-case',5390$search_use_regexp?'--extended-regexp':'--fixed-strings');53915392my$paging_nav='';5393if($page>0) {5394$paging_nav.=5395$cgi->a({-href => href(action=>"search", hash=>$hash,5396 searchtext=>$searchtext,5397 searchtype=>$searchtype)},5398"first");5399$paging_nav.=" ⋅ ".5400$cgi->a({-href => href(-replay=>1, page=>$page-1),5401-accesskey =>"p", -title =>"Alt-p"},"prev");5402}else{5403$paging_nav.="first";5404$paging_nav.=" ⋅ prev";5405}5406my$next_link='';5407if($#commitlist>=100) {5408$next_link=5409$cgi->a({-href => href(-replay=>1, page=>$page+1),5410-accesskey =>"n", -title =>"Alt-n"},"next");5411$paging_nav.=" ⋅$next_link";5412}else{5413$paging_nav.=" ⋅ next";5414}54155416if($#commitlist>=100) {5417}54185419 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);5420 git_print_header_div('commit', esc_html($co{'title'}),$hash);5421 git_search_grep_body(\@commitlist,0,99,$next_link);5422}54235424if($searchtypeeq'pickaxe') {5425 git_print_page_nav('','',$hash,$co{'tree'},$hash);5426 git_print_header_div('commit', esc_html($co{'title'}),$hash);54275428print"<table class=\"pickaxe search\">\n";5429my$alternate=1;5430$/="\n";5431open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,5432'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",5433($search_use_regexp?'--pickaxe-regex': ());5434undef%co;5435my@files;5436while(my$line= <$fd>) {5437chomp$line;5438next unless$line;54395440my%set= parse_difftree_raw_line($line);5441if(defined$set{'commit'}) {5442# finish previous commit5443if(%co) {5444print"</td>\n".5445"<td class=\"link\">".5446$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5447" | ".5448$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5449print"</td>\n".5450"</tr>\n";5451}54525453if($alternate) {5454print"<tr class=\"dark\">\n";5455}else{5456print"<tr class=\"light\">\n";5457}5458$alternate^=1;5459%co= parse_commit($set{'commit'});5460my$author= chop_and_escape_str($co{'author_name'},15,5);5461print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5462"<td><i>$author</i></td>\n".5463"<td>".5464$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5465-class=>"list subject"},5466 chop_and_escape_str($co{'title'},50) ."<br/>");5467}elsif(defined$set{'to_id'}) {5468next if($set{'to_id'} =~m/^0{40}$/);54695470print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},5471 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),5472-class=>"list"},5473"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .5474"<br/>\n";5475}5476}5477close$fd;54785479# finish last commit (warning: repetition!)5480if(%co) {5481print"</td>\n".5482"<td class=\"link\">".5483$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5484" | ".5485$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5486print"</td>\n".5487"</tr>\n";5488}54895490print"</table>\n";5491}54925493if($searchtypeeq'grep') {5494 git_print_page_nav('','',$hash,$co{'tree'},$hash);5495 git_print_header_div('commit', esc_html($co{'title'}),$hash);54965497print"<table class=\"grep_search\">\n";5498my$alternate=1;5499my$matches=0;5500$/="\n";5501open my$fd,"-|", git_cmd(),'grep','-n',5502$search_use_regexp? ('-E','-i') :'-F',5503$searchtext,$co{'tree'};5504my$lastfile='';5505while(my$line= <$fd>) {5506chomp$line;5507my($file,$lno,$ltext,$binary);5508last if($matches++>1000);5509if($line=~/^Binary file (.+) matches$/) {5510$file=$1;5511$binary=1;5512}else{5513(undef,$file,$lno,$ltext) =split(/:/,$line,4);5514}5515if($filene$lastfile) {5516$lastfileand print"</td></tr>\n";5517if($alternate++) {5518print"<tr class=\"dark\">\n";5519}else{5520print"<tr class=\"light\">\n";5521}5522print"<td class=\"list\">".5523$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},5524 file_name=>"$file"),5525-class=>"list"}, esc_path($file));5526print"</td><td>\n";5527$lastfile=$file;5528}5529if($binary) {5530print"<div class=\"binary\">Binary file</div>\n";5531}else{5532$ltext= untabify($ltext);5533if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {5534$ltext= esc_html($1, -nbsp=>1);5535$ltext.='<span class="match">';5536$ltext.= esc_html($2, -nbsp=>1);5537$ltext.='</span>';5538$ltext.= esc_html($3, -nbsp=>1);5539}else{5540$ltext= esc_html($ltext, -nbsp=>1);5541}5542print"<div class=\"pre\">".5543$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},5544 file_name=>"$file").'#l'.$lno,5545-class=>"linenr"},sprintf('%4i',$lno))5546.' '.$ltext."</div>\n";5547}5548}5549if($lastfile) {5550print"</td></tr>\n";5551if($matches>1000) {5552print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";5553}5554}else{5555print"<div class=\"diff nodifferences\">No matches found</div>\n";5556}5557close$fd;55585559print"</table>\n";5560}5561 git_footer_html();5562}55635564sub git_search_help {5565 git_header_html();5566 git_print_page_nav('','',$hash,$hash,$hash);5567print<<EOT;5568<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without5569regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,5570the pattern entered is recognized as the POSIX extended5571<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case5572insensitive).</p>5573<dl>5574<dt><b>commit</b></dt>5575<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>5576EOT5577my($have_grep) = gitweb_check_feature('grep');5578if($have_grep) {5579print<<EOT;5580<dt><b>grep</b></dt>5581<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing5582 a different one) are searched for the given pattern. On large trees, this search can take5583a while and put some strain on the server, so please use it with some consideration. Note that5584due to git-grep peculiarity, currently if regexp mode is turned off, the matches are5585case-sensitive.</dd>5586EOT5587}5588print<<EOT;5589<dt><b>author</b></dt>5590<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>5591<dt><b>committer</b></dt>5592<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>5593EOT5594my($have_pickaxe) = gitweb_check_feature('pickaxe');5595if($have_pickaxe) {5596print<<EOT;5597<dt><b>pickaxe</b></dt>5598<dd>All commits that caused the string to appear or disappear from any file (changes that5599added, removed or "modified" the string) will be listed. This search can take a while and5600takes a lot of strain on the server, so please use it wisely. Note that since you may be5601interested even in changes just changing the case as well, this search is case sensitive.</dd>5602EOT5603}5604print"</dl>\n";5605 git_footer_html();5606}56075608sub git_shortlog {5609my$head= git_get_head_hash($project);5610if(!defined$hash) {5611$hash=$head;5612}5613if(!defined$page) {5614$page=0;5615}5616my$refs= git_get_references();56175618my$commit_hash=$hash;5619if(defined$hash_parent) {5620$commit_hash="$hash_parent..$hash";5621}5622my@commitlist= parse_commits($commit_hash,101, (100*$page));56235624my$paging_nav= format_paging_nav('shortlog',$hash,$head,$page,$#commitlist>=100);5625my$next_link='';5626if($#commitlist>=100) {5627$next_link=5628$cgi->a({-href => href(-replay=>1, page=>$page+1),5629-accesskey =>"n", -title =>"Alt-n"},"next");5630}56315632 git_header_html();5633 git_print_page_nav('shortlog','',$hash,$hash,$hash,$paging_nav);5634 git_print_header_div('summary',$project);56355636 git_shortlog_body(\@commitlist,0,99,$refs,$next_link);56375638 git_footer_html();5639}56405641## ......................................................................5642## feeds (RSS, Atom; OPML)56435644sub git_feed {5645my$format=shift||'atom';5646my($have_blame) = gitweb_check_feature('blame');56475648# Atom: http://www.atomenabled.org/developers/syndication/5649# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ5650if($formatne'rss'&&$formatne'atom') {5651 die_error(400,"Unknown web feed format");5652}56535654# log/feed of current (HEAD) branch, log of given branch, history of file/directory5655my$head=$hash||'HEAD';5656my@commitlist= parse_commits($head,150,0,$file_name);56575658my%latest_commit;5659my%latest_date;5660my$content_type="application/$format+xml";5661if(defined$cgi->http('HTTP_ACCEPT') &&5662$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {5663# browser (feed reader) prefers text/xml5664$content_type='text/xml';5665}5666if(defined($commitlist[0])) {5667%latest_commit= %{$commitlist[0]};5668%latest_date= parse_date($latest_commit{'author_epoch'});5669print$cgi->header(5670-type =>$content_type,5671-charset =>'utf-8',5672-last_modified =>$latest_date{'rfc2822'});5673}else{5674print$cgi->header(5675-type =>$content_type,5676-charset =>'utf-8');5677}56785679# Optimization: skip generating the body if client asks only5680# for Last-Modified date.5681return if($cgi->request_method()eq'HEAD');56825683# header variables5684my$title="$site_name-$project/$action";5685my$feed_type='log';5686if(defined$hash) {5687$title.=" - '$hash'";5688$feed_type='branch log';5689if(defined$file_name) {5690$title.=" ::$file_name";5691$feed_type='history';5692}5693}elsif(defined$file_name) {5694$title.=" -$file_name";5695$feed_type='history';5696}5697$title.="$feed_type";5698my$descr= git_get_project_description($project);5699if(defined$descr) {5700$descr= esc_html($descr);5701}else{5702$descr="$project".5703($formateq'rss'?'RSS':'Atom') .5704" feed";5705}5706my$owner= git_get_project_owner($project);5707$owner= esc_html($owner);57085709#header5710my$alt_url;5711if(defined$file_name) {5712$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);5713}elsif(defined$hash) {5714$alt_url= href(-full=>1, action=>"log", hash=>$hash);5715}else{5716$alt_url= href(-full=>1, action=>"summary");5717}5718print qq!<?xml version="1.0" encoding="utf-8"?>\n!;5719if($formateq'rss') {5720print<<XML;5721<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">5722<channel>5723XML5724print"<title>$title</title>\n".5725"<link>$alt_url</link>\n".5726"<description>$descr</description>\n".5727"<language>en</language>\n";5728}elsif($formateq'atom') {5729print<<XML;5730<feed xmlns="http://www.w3.org/2005/Atom">5731XML5732print"<title>$title</title>\n".5733"<subtitle>$descr</subtitle>\n".5734'<link rel="alternate" type="text/html" href="'.5735$alt_url.'" />'."\n".5736'<link rel="self" type="'.$content_type.'" href="'.5737$cgi->self_url() .'" />'."\n".5738"<id>". href(-full=>1) ."</id>\n".5739# use project owner for feed author5740"<author><name>$owner</name></author>\n";5741if(defined$favicon) {5742print"<icon>". esc_url($favicon) ."</icon>\n";5743}5744if(defined$logo_url) {5745# not twice as wide as tall: 72 x 27 pixels5746print"<logo>". esc_url($logo) ."</logo>\n";5747}5748if(!%latest_date) {5749# dummy date to keep the feed valid until commits trickle in:5750print"<updated>1970-01-01T00:00:00Z</updated>\n";5751}else{5752print"<updated>$latest_date{'iso-8601'}</updated>\n";5753}5754}57555756# contents5757for(my$i=0;$i<=$#commitlist;$i++) {5758my%co= %{$commitlist[$i]};5759my$commit=$co{'id'};5760# we read 150, we always show 30 and the ones more recent than 48 hours5761if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {5762last;5763}5764my%cd= parse_date($co{'author_epoch'});57655766# get list of changed files5767open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5768$co{'parent'} ||"--root",5769$co{'id'},"--", (defined$file_name?$file_name: ())5770ornext;5771my@difftree=map{chomp;$_} <$fd>;5772close$fd5773ornext;57745775# print element (entry, item)5776my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);5777if($formateq'rss') {5778print"<item>\n".5779"<title>". esc_html($co{'title'}) ."</title>\n".5780"<author>". esc_html($co{'author'}) ."</author>\n".5781"<pubDate>$cd{'rfc2822'}</pubDate>\n".5782"<guid isPermaLink=\"true\">$co_url</guid>\n".5783"<link>$co_url</link>\n".5784"<description>". esc_html($co{'title'}) ."</description>\n".5785"<content:encoded>".5786"<![CDATA[\n";5787}elsif($formateq'atom') {5788print"<entry>\n".5789"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".5790"<updated>$cd{'iso-8601'}</updated>\n".5791"<author>\n".5792" <name>". esc_html($co{'author_name'}) ."</name>\n";5793if($co{'author_email'}) {5794print" <email>". esc_html($co{'author_email'}) ."</email>\n";5795}5796print"</author>\n".5797# use committer for contributor5798"<contributor>\n".5799" <name>". esc_html($co{'committer_name'}) ."</name>\n";5800if($co{'committer_email'}) {5801print" <email>". esc_html($co{'committer_email'}) ."</email>\n";5802}5803print"</contributor>\n".5804"<published>$cd{'iso-8601'}</published>\n".5805"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".5806"<id>$co_url</id>\n".5807"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".5808"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";5809}5810my$comment=$co{'comment'};5811print"<pre>\n";5812foreachmy$line(@$comment) {5813$line= esc_html($line);5814print"$line\n";5815}5816print"</pre><ul>\n";5817foreachmy$difftree_line(@difftree) {5818my%difftree= parse_difftree_raw_line($difftree_line);5819next if!$difftree{'from_id'};58205821my$file=$difftree{'file'} ||$difftree{'to_file'};58225823print"<li>".5824"[".5825$cgi->a({-href => href(-full=>1, action=>"blobdiff",5826 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},5827 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},5828 file_name=>$file, file_parent=>$difftree{'from_file'}),5829-title =>"diff"},'D');5830if($have_blame) {5831print$cgi->a({-href => href(-full=>1, action=>"blame",5832 file_name=>$file, hash_base=>$commit),5833-title =>"blame"},'B');5834}5835# if this is not a feed of a file history5836if(!defined$file_name||$file_namene$file) {5837print$cgi->a({-href => href(-full=>1, action=>"history",5838 file_name=>$file, hash=>$commit),5839-title =>"history"},'H');5840}5841$file= esc_path($file);5842print"] ".5843"$file</li>\n";5844}5845if($formateq'rss') {5846print"</ul>]]>\n".5847"</content:encoded>\n".5848"</item>\n";5849}elsif($formateq'atom') {5850print"</ul>\n</div>\n".5851"</content>\n".5852"</entry>\n";5853}5854}58555856# end of feed5857if($formateq'rss') {5858print"</channel>\n</rss>\n";5859}elsif($formateq'atom') {5860print"</feed>\n";5861}5862}58635864sub git_rss {5865 git_feed('rss');5866}58675868sub git_atom {5869 git_feed('atom');5870}58715872sub git_opml {5873my@list= git_get_projects_list();58745875print$cgi->header(-type =>'text/xml', -charset =>'utf-8');5876print<<XML;5877<?xml version="1.0" encoding="utf-8"?>5878<opml version="1.0">5879<head>5880 <title>$site_nameOPML Export</title>5881</head>5882<body>5883<outline text="git RSS feeds">5884XML58855886foreachmy$pr(@list) {5887my%proj=%$pr;5888my$head= git_get_head_hash($proj{'path'});5889if(!defined$head) {5890next;5891}5892$git_dir="$projectroot/$proj{'path'}";5893my%co= parse_commit($head);5894if(!%co) {5895next;5896}58975898my$path= esc_html(chop_str($proj{'path'},25,5));5899my$rss="$my_url?p=$proj{'path'};a=rss";5900my$html="$my_url?p=$proj{'path'};a=summary";5901print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";5902}5903print<<XML;5904</outline>5905</body>5906</opml>5907XML5908}