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_export_ok("$projectroot/$filter/$subdir")) {1893push@list, { path => ($filter?"$filter/":'') .$subdir};1894$File::Find::prune =1;1895}1896},1897},"$dir");18981899}elsif(-f $projects_list) {1900# read from file(url-encoded):1901# 'git%2Fgit.git Linus+Torvalds'1902# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'1903# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'1904my%paths;1905open my($fd),$projects_listorreturn;1906 PROJECT:1907while(my$line= <$fd>) {1908chomp$line;1909my($path,$owner) =split' ',$line;1910$path= unescape($path);1911$owner= unescape($owner);1912if(!defined$path) {1913next;1914}1915if($filterne'') {1916# looking for forks;1917my$pfx=substr($path,0,length($filter));1918if($pfxne$filter) {1919next PROJECT;1920}1921my$sfx=substr($path,length($filter));1922if($sfx!~/^\/.*\.git$/) {1923next PROJECT;1924}1925}elsif($check_forks) {1926 PATH:1927foreachmy$filter(keys%paths) {1928# looking for forks;1929my$pfx=substr($path,0,length($filter));1930if($pfxne$filter) {1931next PATH;1932}1933my$sfx=substr($path,length($filter));1934if($sfx!~/^\/.*\.git$/) {1935next PATH;1936}1937# is a fork, don't include it in1938# the list1939next PROJECT;1940}1941}1942if(check_export_ok("$projectroot/$path")) {1943my$pr= {1944 path =>$path,1945 owner => to_utf8($owner),1946};1947push@list,$pr;1948(my$forks_path=$path) =~s/\.git$//;1949$paths{$forks_path}++;1950}1951}1952close$fd;1953}1954return@list;1955}19561957our$gitweb_project_owner=undef;1958sub git_get_project_list_from_file {19591960return if(defined$gitweb_project_owner);19611962$gitweb_project_owner= {};1963# read from file (url-encoded):1964# 'git%2Fgit.git Linus+Torvalds'1965# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'1966# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'1967if(-f $projects_list) {1968open(my$fd,$projects_list);1969while(my$line= <$fd>) {1970chomp$line;1971my($pr,$ow) =split' ',$line;1972$pr= unescape($pr);1973$ow= unescape($ow);1974$gitweb_project_owner->{$pr} = to_utf8($ow);1975}1976close$fd;1977}1978}19791980sub git_get_project_owner {1981my$project=shift;1982my$owner;19831984returnundefunless$project;1985$git_dir="$projectroot/$project";19861987if(!defined$gitweb_project_owner) {1988 git_get_project_list_from_file();1989}19901991if(exists$gitweb_project_owner->{$project}) {1992$owner=$gitweb_project_owner->{$project};1993}1994if(!defined$owner){1995$owner= git_get_project_config('owner');1996}1997if(!defined$owner) {1998$owner= get_file_owner("$git_dir");1999}20002001return$owner;2002}20032004sub git_get_last_activity {2005my($path) =@_;2006my$fd;20072008$git_dir="$projectroot/$path";2009open($fd,"-|", git_cmd(),'for-each-ref',2010'--format=%(committer)',2011'--sort=-committerdate',2012'--count=1',2013'refs/heads')orreturn;2014my$most_recent= <$fd>;2015close$fdorreturn;2016if(defined$most_recent&&2017$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2018my$timestamp=$1;2019my$age=time-$timestamp;2020return($age, age_string($age));2021}2022return(undef,undef);2023}20242025sub git_get_references {2026my$type=shift||"";2027my%refs;2028# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112029# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2030open my$fd,"-|", git_cmd(),"show-ref","--dereference",2031($type? ("--","refs/$type") : ())# use -- <pattern> if $type2032orreturn;20332034while(my$line= <$fd>) {2035chomp$line;2036if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2037if(defined$refs{$1}) {2038push@{$refs{$1}},$2;2039}else{2040$refs{$1} = [$2];2041}2042}2043}2044close$fdorreturn;2045return \%refs;2046}20472048sub git_get_rev_name_tags {2049my$hash=shift||returnundef;20502051open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2052orreturn;2053my$name_rev= <$fd>;2054close$fd;20552056if($name_rev=~ m|^$hash tags/(.*)$|) {2057return$1;2058}else{2059# catches also '$hash undefined' output2060returnundef;2061}2062}20632064## ----------------------------------------------------------------------2065## parse to hash functions20662067sub parse_date {2068my$epoch=shift;2069my$tz=shift||"-0000";20702071my%date;2072my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2073my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2074my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2075$date{'hour'} =$hour;2076$date{'minute'} =$min;2077$date{'mday'} =$mday;2078$date{'day'} =$days[$wday];2079$date{'month'} =$months[$mon];2080$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2081$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2082$date{'mday-time'} =sprintf"%d%s%02d:%02d",2083$mday,$months[$mon],$hour,$min;2084$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",20851900+$year,1+$mon,$mday,$hour,$min,$sec;20862087$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2088my$local=$epoch+ ((int$1+ ($2/60)) *3600);2089($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2090$date{'hour_local'} =$hour;2091$date{'minute_local'} =$min;2092$date{'tz_local'} =$tz;2093$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",20941900+$year,$mon+1,$mday,2095$hour,$min,$sec,$tz);2096return%date;2097}20982099sub parse_tag {2100my$tag_id=shift;2101my%tag;2102my@comment;21032104open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2105$tag{'id'} =$tag_id;2106while(my$line= <$fd>) {2107chomp$line;2108if($line=~m/^object ([0-9a-fA-F]{40})$/) {2109$tag{'object'} =$1;2110}elsif($line=~m/^type (.+)$/) {2111$tag{'type'} =$1;2112}elsif($line=~m/^tag (.+)$/) {2113$tag{'name'} =$1;2114}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2115$tag{'author'} =$1;2116$tag{'epoch'} =$2;2117$tag{'tz'} =$3;2118}elsif($line=~m/--BEGIN/) {2119push@comment,$line;2120last;2121}elsif($lineeq"") {2122last;2123}2124}2125push@comment, <$fd>;2126$tag{'comment'} = \@comment;2127close$fdorreturn;2128if(!defined$tag{'name'}) {2129return2130};2131return%tag2132}21332134sub parse_commit_text {2135my($commit_text,$withparents) =@_;2136my@commit_lines=split'\n',$commit_text;2137my%co;21382139pop@commit_lines;# Remove '\0'21402141if(!@commit_lines) {2142return;2143}21442145my$header=shift@commit_lines;2146if($header!~m/^[0-9a-fA-F]{40}/) {2147return;2148}2149($co{'id'},my@parents) =split' ',$header;2150while(my$line=shift@commit_lines) {2151last if$lineeq"\n";2152if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2153$co{'tree'} =$1;2154}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2155push@parents,$1;2156}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2157$co{'author'} =$1;2158$co{'author_epoch'} =$2;2159$co{'author_tz'} =$3;2160if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2161$co{'author_name'} =$1;2162$co{'author_email'} =$2;2163}else{2164$co{'author_name'} =$co{'author'};2165}2166}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2167$co{'committer'} =$1;2168$co{'committer_epoch'} =$2;2169$co{'committer_tz'} =$3;2170$co{'committer_name'} =$co{'committer'};2171if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2172$co{'committer_name'} =$1;2173$co{'committer_email'} =$2;2174}else{2175$co{'committer_name'} =$co{'committer'};2176}2177}2178}2179if(!defined$co{'tree'}) {2180return;2181};2182$co{'parents'} = \@parents;2183$co{'parent'} =$parents[0];21842185foreachmy$title(@commit_lines) {2186$title=~s/^ //;2187if($titlene"") {2188$co{'title'} = chop_str($title,80,5);2189# remove leading stuff of merges to make the interesting part visible2190if(length($title) >50) {2191$title=~s/^Automatic //;2192$title=~s/^merge (of|with) /Merge ... /i;2193if(length($title) >50) {2194$title=~s/(http|rsync):\/\///;2195}2196if(length($title) >50) {2197$title=~s/(master|www|rsync)\.//;2198}2199if(length($title) >50) {2200$title=~s/kernel.org:?//;2201}2202if(length($title) >50) {2203$title=~s/\/pub\/scm//;2204}2205}2206$co{'title_short'} = chop_str($title,50,5);2207last;2208}2209}2210if(!defined$co{'title'} ||$co{'title'}eq"") {2211$co{'title'} =$co{'title_short'} ='(no commit message)';2212}2213# remove added spaces2214foreachmy$line(@commit_lines) {2215$line=~s/^ //;2216}2217$co{'comment'} = \@commit_lines;22182219my$age=time-$co{'committer_epoch'};2220$co{'age'} =$age;2221$co{'age_string'} = age_string($age);2222my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});2223if($age>60*60*24*7*2) {2224$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2225$co{'age_string_age'} =$co{'age_string'};2226}else{2227$co{'age_string_date'} =$co{'age_string'};2228$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;2229}2230return%co;2231}22322233sub parse_commit {2234my($commit_id) =@_;2235my%co;22362237local$/="\0";22382239open my$fd,"-|", git_cmd(),"rev-list",2240"--parents",2241"--header",2242"--max-count=1",2243$commit_id,2244"--",2245or die_error(500,"Open git-rev-list failed");2246%co= parse_commit_text(<$fd>,1);2247close$fd;22482249return%co;2250}22512252sub parse_commits {2253my($commit_id,$maxcount,$skip,$filename,@args) =@_;2254my@cos;22552256$maxcount||=1;2257$skip||=0;22582259local$/="\0";22602261open my$fd,"-|", git_cmd(),"rev-list",2262"--header",2263@args,2264("--max-count=".$maxcount),2265("--skip=".$skip),2266@extra_options,2267$commit_id,2268"--",2269($filename? ($filename) : ())2270or die_error(500,"Open git-rev-list failed");2271while(my$line= <$fd>) {2272my%co= parse_commit_text($line);2273push@cos, \%co;2274}2275close$fd;22762277returnwantarray?@cos: \@cos;2278}22792280# parse line of git-diff-tree "raw" output2281sub parse_difftree_raw_line {2282my$line=shift;2283my%res;22842285# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'2286# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'2287if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {2288$res{'from_mode'} =$1;2289$res{'to_mode'} =$2;2290$res{'from_id'} =$3;2291$res{'to_id'} =$4;2292$res{'status'} =$5;2293$res{'similarity'} =$6;2294if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied2295($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);2296}else{2297$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);2298}2299}2300# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'2301# combined diff (for merge commit)2302elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {2303$res{'nparents'} =length($1);2304$res{'from_mode'} = [split(' ',$2) ];2305$res{'to_mode'} =pop@{$res{'from_mode'}};2306$res{'from_id'} = [split(' ',$3) ];2307$res{'to_id'} =pop@{$res{'from_id'}};2308$res{'status'} = [split('',$4) ];2309$res{'to_file'} = unquote($5);2310}2311# 'c512b523472485aef4fff9e57b229d9d243c967f'2312elsif($line=~m/^([0-9a-fA-F]{40})$/) {2313$res{'commit'} =$1;2314}23152316returnwantarray?%res: \%res;2317}23182319# wrapper: return parsed line of git-diff-tree "raw" output2320# (the argument might be raw line, or parsed info)2321sub parsed_difftree_line {2322my$line_or_ref=shift;23232324if(ref($line_or_ref)eq"HASH") {2325# pre-parsed (or generated by hand)2326return$line_or_ref;2327}else{2328return parse_difftree_raw_line($line_or_ref);2329}2330}23312332# parse line of git-ls-tree output2333sub parse_ls_tree_line ($;%) {2334my$line=shift;2335my%opts=@_;2336my%res;23372338#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2339$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;23402341$res{'mode'} =$1;2342$res{'type'} =$2;2343$res{'hash'} =$3;2344if($opts{'-z'}) {2345$res{'name'} =$4;2346}else{2347$res{'name'} = unquote($4);2348}23492350returnwantarray?%res: \%res;2351}23522353# generates _two_ hashes, references to which are passed as 2 and 3 argument2354sub parse_from_to_diffinfo {2355my($diffinfo,$from,$to,@parents) =@_;23562357if($diffinfo->{'nparents'}) {2358# combined diff2359$from->{'file'} = [];2360$from->{'href'} = [];2361 fill_from_file_info($diffinfo,@parents)2362unlessexists$diffinfo->{'from_file'};2363for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2364$from->{'file'}[$i] =2365defined$diffinfo->{'from_file'}[$i] ?2366$diffinfo->{'from_file'}[$i] :2367$diffinfo->{'to_file'};2368if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file2369$from->{'href'}[$i] = href(action=>"blob",2370 hash_base=>$parents[$i],2371 hash=>$diffinfo->{'from_id'}[$i],2372 file_name=>$from->{'file'}[$i]);2373}else{2374$from->{'href'}[$i] =undef;2375}2376}2377}else{2378# ordinary (not combined) diff2379$from->{'file'} =$diffinfo->{'from_file'};2380if($diffinfo->{'status'}ne"A") {# not new (added) file2381$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,2382 hash=>$diffinfo->{'from_id'},2383 file_name=>$from->{'file'});2384}else{2385delete$from->{'href'};2386}2387}23882389$to->{'file'} =$diffinfo->{'to_file'};2390if(!is_deleted($diffinfo)) {# file exists in result2391$to->{'href'} = href(action=>"blob", hash_base=>$hash,2392 hash=>$diffinfo->{'to_id'},2393 file_name=>$to->{'file'});2394}else{2395delete$to->{'href'};2396}2397}23982399## ......................................................................2400## parse to array of hashes functions24012402sub git_get_heads_list {2403my$limit=shift;2404my@headslist;24052406open my$fd,'-|', git_cmd(),'for-each-ref',2407($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',2408'--format=%(objectname) %(refname) %(subject)%00%(committer)',2409'refs/heads'2410orreturn;2411while(my$line= <$fd>) {2412my%ref_item;24132414chomp$line;2415my($refinfo,$committerinfo) =split(/\0/,$line);2416my($hash,$name,$title) =split(' ',$refinfo,3);2417my($committer,$epoch,$tz) =2418($committerinfo=~/^(.*) ([0-9]+) (.*)$/);2419$ref_item{'fullname'} =$name;2420$name=~s!^refs/heads/!!;24212422$ref_item{'name'} =$name;2423$ref_item{'id'} =$hash;2424$ref_item{'title'} =$title||'(no commit message)';2425$ref_item{'epoch'} =$epoch;2426if($epoch) {2427$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2428}else{2429$ref_item{'age'} ="unknown";2430}24312432push@headslist, \%ref_item;2433}2434close$fd;24352436returnwantarray?@headslist: \@headslist;2437}24382439sub git_get_tags_list {2440my$limit=shift;2441my@tagslist;24422443open my$fd,'-|', git_cmd(),'for-each-ref',2444($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',2445'--format=%(objectname) %(objecttype) %(refname) '.2446'%(*objectname) %(*objecttype) %(subject)%00%(creator)',2447'refs/tags'2448orreturn;2449while(my$line= <$fd>) {2450my%ref_item;24512452chomp$line;2453my($refinfo,$creatorinfo) =split(/\0/,$line);2454my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);2455my($creator,$epoch,$tz) =2456($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);2457$ref_item{'fullname'} =$name;2458$name=~s!^refs/tags/!!;24592460$ref_item{'type'} =$type;2461$ref_item{'id'} =$id;2462$ref_item{'name'} =$name;2463if($typeeq"tag") {2464$ref_item{'subject'} =$title;2465$ref_item{'reftype'} =$reftype;2466$ref_item{'refid'} =$refid;2467}else{2468$ref_item{'reftype'} =$type;2469$ref_item{'refid'} =$id;2470}24712472if($typeeq"tag"||$typeeq"commit") {2473$ref_item{'epoch'} =$epoch;2474if($epoch) {2475$ref_item{'age'} = age_string(time-$ref_item{'epoch'});2476}else{2477$ref_item{'age'} ="unknown";2478}2479}24802481push@tagslist, \%ref_item;2482}2483close$fd;24842485returnwantarray?@tagslist: \@tagslist;2486}24872488## ----------------------------------------------------------------------2489## filesystem-related functions24902491sub get_file_owner {2492my$path=shift;24932494my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);2495my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);2496if(!defined$gcos) {2497returnundef;2498}2499my$owner=$gcos;2500$owner=~s/[,;].*$//;2501return to_utf8($owner);2502}25032504## ......................................................................2505## mimetype related functions25062507sub mimetype_guess_file {2508my$filename=shift;2509my$mimemap=shift;2510-r $mimemaporreturnundef;25112512my%mimemap;2513open(MIME,$mimemap)orreturnundef;2514while(<MIME>) {2515next ifm/^#/;# skip comments2516my($mime,$exts) =split(/\t+/);2517if(defined$exts) {2518my@exts=split(/\s+/,$exts);2519foreachmy$ext(@exts) {2520$mimemap{$ext} =$mime;2521}2522}2523}2524close(MIME);25252526$filename=~/\.([^.]*)$/;2527return$mimemap{$1};2528}25292530sub mimetype_guess {2531my$filename=shift;2532my$mime;2533$filename=~/\./orreturnundef;25342535if($mimetypes_file) {2536my$file=$mimetypes_file;2537if($file!~m!^/!) {# if it is relative path2538# it is relative to project2539$file="$projectroot/$project/$file";2540}2541$mime= mimetype_guess_file($filename,$file);2542}2543$mime||= mimetype_guess_file($filename,'/etc/mime.types');2544return$mime;2545}25462547sub blob_mimetype {2548my$fd=shift;2549my$filename=shift;25502551if($filename) {2552my$mime= mimetype_guess($filename);2553$mimeandreturn$mime;2554}25552556# just in case2557return$default_blob_plain_mimetypeunless$fd;25582559if(-T $fd) {2560return'text/plain';2561}elsif(!$filename) {2562return'application/octet-stream';2563}elsif($filename=~m/\.png$/i) {2564return'image/png';2565}elsif($filename=~m/\.gif$/i) {2566return'image/gif';2567}elsif($filename=~m/\.jpe?g$/i) {2568return'image/jpeg';2569}else{2570return'application/octet-stream';2571}2572}25732574sub blob_contenttype {2575my($fd,$file_name,$type) =@_;25762577$type||= blob_mimetype($fd,$file_name);2578if($typeeq'text/plain'&&defined$default_text_plain_charset) {2579$type.="; charset=$default_text_plain_charset";2580}25812582return$type;2583}25842585## ======================================================================2586## functions printing HTML: header, footer, error page25872588sub git_header_html {2589my$status=shift||"200 OK";2590my$expires=shift;25912592my$title="$site_name";2593if(defined$project) {2594$title.=" - ". to_utf8($project);2595if(defined$action) {2596$title.="/$action";2597if(defined$file_name) {2598$title.=" - ". esc_path($file_name);2599if($actioneq"tree"&&$file_name!~ m|/$|) {2600$title.="/";2601}2602}2603}2604}2605my$content_type;2606# require explicit support from the UA if we are to send the page as2607# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.2608# we have to do this because MSIE sometimes globs '*/*', pretending to2609# support xhtml+xml but choking when it gets what it asked for.2610if(defined$cgi->http('HTTP_ACCEPT') &&2611$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&2612$cgi->Accept('application/xhtml+xml') !=0) {2613$content_type='application/xhtml+xml';2614}else{2615$content_type='text/html';2616}2617print$cgi->header(-type=>$content_type, -charset =>'utf-8',2618-status=>$status, -expires =>$expires);2619my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';2620print<<EOF;2621<?xml version="1.0" encoding="utf-8"?>2622<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">2623<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">2624<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->2625<!-- git core binaries version$git_version-->2626<head>2627<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>2628<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>2629<meta name="robots" content="index, nofollow"/>2630<title>$title</title>2631EOF2632# print out each stylesheet that exist2633if(defined$stylesheet) {2634#provides backwards capability for those people who define style sheet in a config file2635print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";2636}else{2637foreachmy$stylesheet(@stylesheets) {2638next unless$stylesheet;2639print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";2640}2641}2642if(defined$project) {2643my%href_params= get_feed_info();2644if(!exists$href_params{'-title'}) {2645$href_params{'-title'} ='log';2646}26472648foreachmy$formatqw(RSS Atom){2649my$type=lc($format);2650my%link_attr= (2651'-rel'=>'alternate',2652'-title'=>"$project-$href_params{'-title'} -$formatfeed",2653'-type'=>"application/$type+xml"2654);26552656$href_params{'action'} =$type;2657$link_attr{'-href'} = href(%href_params);2658print"<link ".2659"rel=\"$link_attr{'-rel'}\"".2660"title=\"$link_attr{'-title'}\"".2661"href=\"$link_attr{'-href'}\"".2662"type=\"$link_attr{'-type'}\"".2663"/>\n";26642665$href_params{'extra_options'} ='--no-merges';2666$link_attr{'-href'} = href(%href_params);2667$link_attr{'-title'} .=' (no merges)';2668print"<link ".2669"rel=\"$link_attr{'-rel'}\"".2670"title=\"$link_attr{'-title'}\"".2671"href=\"$link_attr{'-href'}\"".2672"type=\"$link_attr{'-type'}\"".2673"/>\n";2674}26752676}else{2677printf('<link rel="alternate" title="%sprojects list" '.2678'href="%s" type="text/plain; charset=utf-8" />'."\n",2679$site_name, href(project=>undef, action=>"project_index"));2680printf('<link rel="alternate" title="%sprojects feeds" '.2681'href="%s" type="text/x-opml" />'."\n",2682$site_name, href(project=>undef, action=>"opml"));2683}2684if(defined$favicon) {2685printqq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n);2686}26872688print"</head>\n".2689"<body>\n";26902691if(-f $site_header) {2692open(my$fd,$site_header);2693print<$fd>;2694close$fd;2695}26962697print"<div class=\"page_header\">\n".2698$cgi->a({-href => esc_url($logo_url),2699-title =>$logo_label},2700qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));2701print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";2702if(defined$project) {2703print$cgi->a({-href => href(action=>"summary")}, esc_html($project));2704if(defined$action) {2705print" /$action";2706}2707print"\n";2708}2709print"</div>\n";27102711my($have_search) = gitweb_check_feature('search');2712if(defined$project&&$have_search) {2713if(!defined$searchtext) {2714$searchtext="";2715}2716my$search_hash;2717if(defined$hash_base) {2718$search_hash=$hash_base;2719}elsif(defined$hash) {2720$search_hash=$hash;2721}else{2722$search_hash="HEAD";2723}2724my$action=$my_uri;2725my($use_pathinfo) = gitweb_check_feature('pathinfo');2726if($use_pathinfo) {2727$action.="/".esc_url($project);2728}2729print$cgi->startform(-method=>"get", -action =>$action) .2730"<div class=\"search\">\n".2731(!$use_pathinfo&&2732$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .2733$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".2734$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".2735$cgi->popup_menu(-name =>'st', -default=>'commit',2736-values=> ['commit','grep','author','committer','pickaxe']) .2737$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .2738" search:\n",2739$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".2740"<span title=\"Extended regular expression\">".2741$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',2742-checked =>$search_use_regexp) .2743"</span>".2744"</div>".2745$cgi->end_form() ."\n";2746}2747}27482749sub git_footer_html {2750my$feed_class='rss_logo';27512752print"<div class=\"page_footer\">\n";2753if(defined$project) {2754my$descr= git_get_project_description($project);2755if(defined$descr) {2756print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";2757}27582759my%href_params= get_feed_info();2760if(!%href_params) {2761$feed_class.=' generic';2762}2763$href_params{'-title'} ||='log';27642765foreachmy$formatqw(RSS Atom){2766$href_params{'action'} =lc($format);2767print$cgi->a({-href => href(%href_params),2768-title =>"$href_params{'-title'}$formatfeed",2769-class=>$feed_class},$format)."\n";2770}27712772}else{2773print$cgi->a({-href => href(project=>undef, action=>"opml"),2774-class=>$feed_class},"OPML") ." ";2775print$cgi->a({-href => href(project=>undef, action=>"project_index"),2776-class=>$feed_class},"TXT") ."\n";2777}2778print"</div>\n";# class="page_footer"27792780if(-f $site_footer) {2781open(my$fd,$site_footer);2782print<$fd>;2783close$fd;2784}27852786print"</body>\n".2787"</html>";2788}27892790# die_error(<http_status_code>, <error_message>)2791# Example: die_error(404, 'Hash not found')2792# By convention, use the following status codes (as defined in RFC 2616):2793# 400: Invalid or missing CGI parameters, or2794# requested object exists but has wrong type.2795# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on2796# this server or project.2797# 404: Requested object/revision/project doesn't exist.2798# 500: The server isn't configured properly, or2799# an internal error occurred (e.g. failed assertions caused by bugs), or2800# an unknown error occurred (e.g. the git binary died unexpectedly).2801sub die_error {2802my$status=shift||500;2803my$error=shift||"Internal server error";28042805my%http_responses= (400=>'400 Bad Request',2806403=>'403 Forbidden',2807404=>'404 Not Found',2808500=>'500 Internal Server Error');2809 git_header_html($http_responses{$status});2810print<<EOF;2811<div class="page_body">2812<br /><br />2813$status-$error2814<br />2815</div>2816EOF2817 git_footer_html();2818exit;2819}28202821## ----------------------------------------------------------------------2822## functions printing or outputting HTML: navigation28232824sub git_print_page_nav {2825my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;2826$extra=''if!defined$extra;# pager or formats28272828my@navs=qw(summary shortlog log commit commitdiff tree);2829if($suppress) {2830@navs=grep{$_ne$suppress}@navs;2831}28322833my%arg=map{$_=> {action=>$_} }@navs;2834if(defined$head) {2835for(qw(commit commitdiff)) {2836$arg{$_}{'hash'} =$head;2837}2838if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {2839for(qw(shortlog log)) {2840$arg{$_}{'hash'} =$head;2841}2842}2843}2844$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;2845$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;28462847print"<div class=\"page_nav\">\n".2848(join" | ",2849map{$_eq$current?2850$_:$cgi->a({-href => href(%{$arg{$_}})},"$_")2851}@navs);2852print"<br/>\n$extra<br/>\n".2853"</div>\n";2854}28552856sub format_paging_nav {2857my($action,$hash,$head,$page,$has_next_link) =@_;2858my$paging_nav;285928602861if($hashne$head||$page) {2862$paging_nav.=$cgi->a({-href => href(action=>$action)},"HEAD");2863}else{2864$paging_nav.="HEAD";2865}28662867if($page>0) {2868$paging_nav.=" ⋅ ".2869$cgi->a({-href => href(-replay=>1, page=>$page-1),2870-accesskey =>"p", -title =>"Alt-p"},"prev");2871}else{2872$paging_nav.=" ⋅ prev";2873}28742875if($has_next_link) {2876$paging_nav.=" ⋅ ".2877$cgi->a({-href => href(-replay=>1, page=>$page+1),2878-accesskey =>"n", -title =>"Alt-n"},"next");2879}else{2880$paging_nav.=" ⋅ next";2881}28822883return$paging_nav;2884}28852886## ......................................................................2887## functions printing or outputting HTML: div28882889sub git_print_header_div {2890my($action,$title,$hash,$hash_base) =@_;2891my%args= ();28922893$args{'action'} =$action;2894$args{'hash'} =$hashif$hash;2895$args{'hash_base'} =$hash_baseif$hash_base;28962897print"<div class=\"header\">\n".2898$cgi->a({-href => href(%args), -class=>"title"},2899$title?$title:$action) .2900"\n</div>\n";2901}29022903#sub git_print_authorship (\%) {2904sub git_print_authorship {2905my$co=shift;29062907my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});2908print"<div class=\"author_date\">".2909 esc_html($co->{'author_name'}) .2910" [$ad{'rfc2822'}";2911if($ad{'hour_local'} <6) {2912printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",2913$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});2914}else{2915printf(" (%02d:%02d%s)",2916$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});2917}2918print"]</div>\n";2919}29202921sub git_print_page_path {2922my$name=shift;2923my$type=shift;2924my$hb=shift;292529262927print"<div class=\"page_path\">";2928print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),2929-title =>'tree root'}, to_utf8("[$project]"));2930print" / ";2931if(defined$name) {2932my@dirname=split'/',$name;2933my$basename=pop@dirname;2934my$fullname='';29352936foreachmy$dir(@dirname) {2937$fullname.= ($fullname?'/':'') .$dir;2938print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,2939 hash_base=>$hb),2940-title =>$fullname}, esc_path($dir));2941print" / ";2942}2943if(defined$type&&$typeeq'blob') {2944print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,2945 hash_base=>$hb),2946-title =>$name}, esc_path($basename));2947}elsif(defined$type&&$typeeq'tree') {2948print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,2949 hash_base=>$hb),2950-title =>$name}, esc_path($basename));2951print" / ";2952}else{2953print esc_path($basename);2954}2955}2956print"<br/></div>\n";2957}29582959# sub git_print_log (\@;%) {2960sub git_print_log ($;%) {2961my$log=shift;2962my%opts=@_;29632964if($opts{'-remove_title'}) {2965# remove title, i.e. first line of log2966shift@$log;2967}2968# remove leading empty lines2969while(defined$log->[0] &&$log->[0]eq"") {2970shift@$log;2971}29722973# print log2974my$signoff=0;2975my$empty=0;2976foreachmy$line(@$log) {2977if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {2978$signoff=1;2979$empty=0;2980if(!$opts{'-remove_signoff'}) {2981print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";2982next;2983}else{2984# remove signoff lines2985next;2986}2987}else{2988$signoff=0;2989}29902991# print only one empty line2992# do not print empty line after signoff2993if($lineeq"") {2994next if($empty||$signoff);2995$empty=1;2996}else{2997$empty=0;2998}29993000print format_log_line_html($line) ."<br/>\n";3001}30023003if($opts{'-final_empty_line'}) {3004# end with single empty line3005print"<br/>\n"unless$empty;3006}3007}30083009# return link target (what link points to)3010sub git_get_link_target {3011my$hash=shift;3012my$link_target;30133014# read link3015open my$fd,"-|", git_cmd(),"cat-file","blob",$hash3016orreturn;3017{3018local$/;3019$link_target= <$fd>;3020}3021close$fd3022orreturn;30233024return$link_target;3025}30263027# given link target, and the directory (basedir) the link is in,3028# return target of link relative to top directory (top tree);3029# return undef if it is not possible (including absolute links).3030sub normalize_link_target {3031my($link_target,$basedir,$hash_base) =@_;30323033# we can normalize symlink target only if $hash_base is provided3034return unless$hash_base;30353036# absolute symlinks (beginning with '/') cannot be normalized3037return if(substr($link_target,0,1)eq'/');30383039# normalize link target to path from top (root) tree (dir)3040my$path;3041if($basedir) {3042$path=$basedir.'/'.$link_target;3043}else{3044# we are in top (root) tree (dir)3045$path=$link_target;3046}30473048# remove //, /./, and /../3049my@path_parts;3050foreachmy$part(split('/',$path)) {3051# discard '.' and ''3052next if(!$part||$parteq'.');3053# handle '..'3054if($parteq'..') {3055if(@path_parts) {3056pop@path_parts;3057}else{3058# link leads outside repository (outside top dir)3059return;3060}3061}else{3062push@path_parts,$part;3063}3064}3065$path=join('/',@path_parts);30663067return$path;3068}30693070# print tree entry (row of git_tree), but without encompassing <tr> element3071sub git_print_tree_entry {3072my($t,$basedir,$hash_base,$have_blame) =@_;30733074my%base_key= ();3075$base_key{'hash_base'} =$hash_baseifdefined$hash_base;30763077# The format of a table row is: mode list link. Where mode is3078# the mode of the entry, list is the name of the entry, an href,3079# and link is the action links of the entry.30803081print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";3082if($t->{'type'}eq"blob") {3083print"<td class=\"list\">".3084$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3085 file_name=>"$basedir$t->{'name'}",%base_key),3086-class=>"list"}, esc_path($t->{'name'}));3087if(S_ISLNK(oct$t->{'mode'})) {3088my$link_target= git_get_link_target($t->{'hash'});3089if($link_target) {3090my$norm_target= normalize_link_target($link_target,$basedir,$hash_base);3091if(defined$norm_target) {3092print" -> ".3093$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,3094 file_name=>$norm_target),3095-title =>$norm_target}, esc_path($link_target));3096}else{3097print" -> ". esc_path($link_target);3098}3099}3100}3101print"</td>\n";3102print"<td class=\"link\">";3103print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},3104 file_name=>"$basedir$t->{'name'}",%base_key)},3105"blob");3106if($have_blame) {3107print" | ".3108$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},3109 file_name=>"$basedir$t->{'name'}",%base_key)},3110"blame");3111}3112if(defined$hash_base) {3113print" | ".3114$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3115 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},3116"history");3117}3118print" | ".3119$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,3120 file_name=>"$basedir$t->{'name'}")},3121"raw");3122print"</td>\n";31233124}elsif($t->{'type'}eq"tree") {3125print"<td class=\"list\">";3126print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3127 file_name=>"$basedir$t->{'name'}",%base_key)},3128 esc_path($t->{'name'}));3129print"</td>\n";3130print"<td class=\"link\">";3131print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},3132 file_name=>"$basedir$t->{'name'}",%base_key)},3133"tree");3134if(defined$hash_base) {3135print" | ".3136$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,3137 file_name=>"$basedir$t->{'name'}")},3138"history");3139}3140print"</td>\n";3141}else{3142# unknown object: we can only present history for it3143# (this includes 'commit' object, i.e. submodule support)3144print"<td class=\"list\">".3145 esc_path($t->{'name'}) .3146"</td>\n";3147print"<td class=\"link\">";3148if(defined$hash_base) {3149print$cgi->a({-href => href(action=>"history",3150 hash_base=>$hash_base,3151 file_name=>"$basedir$t->{'name'}")},3152"history");3153}3154print"</td>\n";3155}3156}31573158## ......................................................................3159## functions printing large fragments of HTML31603161# get pre-image filenames for merge (combined) diff3162sub fill_from_file_info {3163my($diff,@parents) =@_;31643165$diff->{'from_file'} = [ ];3166$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;3167for(my$i=0;$i<$diff->{'nparents'};$i++) {3168if($diff->{'status'}[$i]eq'R'||3169$diff->{'status'}[$i]eq'C') {3170$diff->{'from_file'}[$i] =3171 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);3172}3173}31743175return$diff;3176}31773178# is current raw difftree line of file deletion3179sub is_deleted {3180my$diffinfo=shift;31813182return$diffinfo->{'to_id'}eq('0' x 40);3183}31843185# does patch correspond to [previous] difftree raw line3186# $diffinfo - hashref of parsed raw diff format3187# $patchinfo - hashref of parsed patch diff format3188# (the same keys as in $diffinfo)3189sub is_patch_split {3190my($diffinfo,$patchinfo) =@_;31913192returndefined$diffinfo&&defined$patchinfo3193&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};3194}319531963197sub git_difftree_body {3198my($difftree,$hash,@parents) =@_;3199my($parent) =$parents[0];3200my($have_blame) = gitweb_check_feature('blame');3201print"<div class=\"list_head\">\n";3202if($#{$difftree} >10) {3203print(($#{$difftree} +1) ." files changed:\n");3204}3205print"</div>\n";32063207print"<table class=\"".3208(@parents>1?"combined ":"") .3209"diff_tree\">\n";32103211# header only for combined diff in 'commitdiff' view3212my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';3213if($has_header) {3214# table header3215print"<thead><tr>\n".3216"<th></th><th></th>\n";# filename, patchN link3217for(my$i=0;$i<@parents;$i++) {3218my$par=$parents[$i];3219print"<th>".3220$cgi->a({-href => href(action=>"commitdiff",3221 hash=>$hash, hash_parent=>$par),3222-title =>'commitdiff to parent number '.3223($i+1) .': '.substr($par,0,7)},3224$i+1) .3225" </th>\n";3226}3227print"</tr></thead>\n<tbody>\n";3228}32293230my$alternate=1;3231my$patchno=0;3232foreachmy$line(@{$difftree}) {3233my$diff= parsed_difftree_line($line);32343235if($alternate) {3236print"<tr class=\"dark\">\n";3237}else{3238print"<tr class=\"light\">\n";3239}3240$alternate^=1;32413242if(exists$diff->{'nparents'}) {# combined diff32433244 fill_from_file_info($diff,@parents)3245unlessexists$diff->{'from_file'};32463247if(!is_deleted($diff)) {3248# file exists in the result (child) commit3249print"<td>".3250$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3251 file_name=>$diff->{'to_file'},3252 hash_base=>$hash),3253-class=>"list"}, esc_path($diff->{'to_file'})) .3254"</td>\n";3255}else{3256print"<td>".3257 esc_path($diff->{'to_file'}) .3258"</td>\n";3259}32603261if($actioneq'commitdiff') {3262# link to patch3263$patchno++;3264print"<td class=\"link\">".3265$cgi->a({-href =>"#patch$patchno"},"patch") .3266" | ".3267"</td>\n";3268}32693270my$has_history=0;3271my$not_deleted=0;3272for(my$i=0;$i<$diff->{'nparents'};$i++) {3273my$hash_parent=$parents[$i];3274my$from_hash=$diff->{'from_id'}[$i];3275my$from_path=$diff->{'from_file'}[$i];3276my$status=$diff->{'status'}[$i];32773278$has_history||= ($statusne'A');3279$not_deleted||= ($statusne'D');32803281if($statuseq'A') {3282print"<td class=\"link\"align=\"right\"> | </td>\n";3283}elsif($statuseq'D') {3284print"<td class=\"link\">".3285$cgi->a({-href => href(action=>"blob",3286 hash_base=>$hash,3287 hash=>$from_hash,3288 file_name=>$from_path)},3289"blob". ($i+1)) .3290" | </td>\n";3291}else{3292if($diff->{'to_id'}eq$from_hash) {3293print"<td class=\"link nochange\">";3294}else{3295print"<td class=\"link\">";3296}3297print$cgi->a({-href => href(action=>"blobdiff",3298 hash=>$diff->{'to_id'},3299 hash_parent=>$from_hash,3300 hash_base=>$hash,3301 hash_parent_base=>$hash_parent,3302 file_name=>$diff->{'to_file'},3303 file_parent=>$from_path)},3304"diff". ($i+1)) .3305" | </td>\n";3306}3307}33083309print"<td class=\"link\">";3310if($not_deleted) {3311print$cgi->a({-href => href(action=>"blob",3312 hash=>$diff->{'to_id'},3313 file_name=>$diff->{'to_file'},3314 hash_base=>$hash)},3315"blob");3316print" | "if($has_history);3317}3318if($has_history) {3319print$cgi->a({-href => href(action=>"history",3320 file_name=>$diff->{'to_file'},3321 hash_base=>$hash)},3322"history");3323}3324print"</td>\n";33253326print"</tr>\n";3327next;# instead of 'else' clause, to avoid extra indent3328}3329# else ordinary diff33303331my($to_mode_oct,$to_mode_str,$to_file_type);3332my($from_mode_oct,$from_mode_str,$from_file_type);3333if($diff->{'to_mode'}ne('0' x 6)) {3334$to_mode_oct=oct$diff->{'to_mode'};3335if(S_ISREG($to_mode_oct)) {# only for regular file3336$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits3337}3338$to_file_type= file_type($diff->{'to_mode'});3339}3340if($diff->{'from_mode'}ne('0' x 6)) {3341$from_mode_oct=oct$diff->{'from_mode'};3342if(S_ISREG($to_mode_oct)) {# only for regular file3343$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits3344}3345$from_file_type= file_type($diff->{'from_mode'});3346}33473348if($diff->{'status'}eq"A") {# created3349my$mode_chng="<span class=\"file_status new\">[new$to_file_type";3350$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;3351$mode_chng.="]</span>";3352print"<td>";3353print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3354 hash_base=>$hash, file_name=>$diff->{'file'}),3355-class=>"list"}, esc_path($diff->{'file'}));3356print"</td>\n";3357print"<td>$mode_chng</td>\n";3358print"<td class=\"link\">";3359if($actioneq'commitdiff') {3360# link to patch3361$patchno++;3362print$cgi->a({-href =>"#patch$patchno"},"patch");3363print" | ";3364}3365print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3366 hash_base=>$hash, file_name=>$diff->{'file'})},3367"blob");3368print"</td>\n";33693370}elsif($diff->{'status'}eq"D") {# deleted3371my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";3372print"<td>";3373print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3374 hash_base=>$parent, file_name=>$diff->{'file'}),3375-class=>"list"}, esc_path($diff->{'file'}));3376print"</td>\n";3377print"<td>$mode_chng</td>\n";3378print"<td class=\"link\">";3379if($actioneq'commitdiff') {3380# link to patch3381$patchno++;3382print$cgi->a({-href =>"#patch$patchno"},"patch");3383print" | ";3384}3385print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},3386 hash_base=>$parent, file_name=>$diff->{'file'})},3387"blob") ." | ";3388if($have_blame) {3389print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,3390 file_name=>$diff->{'file'})},3391"blame") ." | ";3392}3393print$cgi->a({-href => href(action=>"history", hash_base=>$parent,3394 file_name=>$diff->{'file'})},3395"history");3396print"</td>\n";33973398}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed3399my$mode_chnge="";3400if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3401$mode_chnge="<span class=\"file_status mode_chnge\">[changed";3402if($from_file_typene$to_file_type) {3403$mode_chnge.=" from$from_file_typeto$to_file_type";3404}3405if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {3406if($from_mode_str&&$to_mode_str) {3407$mode_chnge.=" mode:$from_mode_str->$to_mode_str";3408}elsif($to_mode_str) {3409$mode_chnge.=" mode:$to_mode_str";3410}3411}3412$mode_chnge.="]</span>\n";3413}3414print"<td>";3415print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3416 hash_base=>$hash, file_name=>$diff->{'file'}),3417-class=>"list"}, esc_path($diff->{'file'}));3418print"</td>\n";3419print"<td>$mode_chnge</td>\n";3420print"<td class=\"link\">";3421if($actioneq'commitdiff') {3422# link to patch3423$patchno++;3424print$cgi->a({-href =>"#patch$patchno"},"patch") .3425" | ";3426}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3427# "commit" view and modified file (not onlu mode changed)3428print$cgi->a({-href => href(action=>"blobdiff",3429 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3430 hash_base=>$hash, hash_parent_base=>$parent,3431 file_name=>$diff->{'file'})},3432"diff") .3433" | ";3434}3435print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3436 hash_base=>$hash, file_name=>$diff->{'file'})},3437"blob") ." | ";3438if($have_blame) {3439print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3440 file_name=>$diff->{'file'})},3441"blame") ." | ";3442}3443print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3444 file_name=>$diff->{'file'})},3445"history");3446print"</td>\n";34473448}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied3449my%status_name= ('R'=>'moved','C'=>'copied');3450my$nstatus=$status_name{$diff->{'status'}};3451my$mode_chng="";3452if($diff->{'from_mode'} !=$diff->{'to_mode'}) {3453# mode also for directories, so we cannot use $to_mode_str3454$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);3455}3456print"<td>".3457$cgi->a({-href => href(action=>"blob", hash_base=>$hash,3458 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),3459-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".3460"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".3461$cgi->a({-href => href(action=>"blob", hash_base=>$parent,3462 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),3463-class=>"list"}, esc_path($diff->{'from_file'})) .3464" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".3465"<td class=\"link\">";3466if($actioneq'commitdiff') {3467# link to patch3468$patchno++;3469print$cgi->a({-href =>"#patch$patchno"},"patch") .3470" | ";3471}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {3472# "commit" view and modified file (not only pure rename or copy)3473print$cgi->a({-href => href(action=>"blobdiff",3474 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},3475 hash_base=>$hash, hash_parent_base=>$parent,3476 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},3477"diff") .3478" | ";3479}3480print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},3481 hash_base=>$parent, file_name=>$diff->{'to_file'})},3482"blob") ." | ";3483if($have_blame) {3484print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,3485 file_name=>$diff->{'to_file'})},3486"blame") ." | ";3487}3488print$cgi->a({-href => href(action=>"history", hash_base=>$hash,3489 file_name=>$diff->{'to_file'})},3490"history");3491print"</td>\n";34923493}# we should not encounter Unmerged (U) or Unknown (X) status3494print"</tr>\n";3495}3496print"</tbody>"if$has_header;3497print"</table>\n";3498}34993500sub git_patchset_body {3501my($fd,$difftree,$hash,@hash_parents) =@_;3502my($hash_parent) =$hash_parents[0];35033504my$is_combined= (@hash_parents>1);3505my$patch_idx=0;3506my$patch_number=0;3507my$patch_line;3508my$diffinfo;3509my$to_name;3510my(%from,%to);35113512print"<div class=\"patchset\">\n";35133514# skip to first patch3515while($patch_line= <$fd>) {3516chomp$patch_line;35173518last if($patch_line=~m/^diff /);3519}35203521 PATCH:3522while($patch_line) {35233524# parse "git diff" header line3525if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {3526# $1 is from_name, which we do not use3527$to_name= unquote($2);3528$to_name=~s!^b/!!;3529}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {3530# $1 is 'cc' or 'combined', which we do not use3531$to_name= unquote($2);3532}else{3533$to_name=undef;3534}35353536# check if current patch belong to current raw line3537# and parse raw git-diff line if needed3538if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {3539# this is continuation of a split patch3540print"<div class=\"patch cont\">\n";3541}else{3542# advance raw git-diff output if needed3543$patch_idx++ifdefined$diffinfo;35443545# read and prepare patch information3546$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);35473548# compact combined diff output can have some patches skipped3549# find which patch (using pathname of result) we are at now;3550if($is_combined) {3551while($to_namene$diffinfo->{'to_file'}) {3552print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".3553 format_diff_cc_simplified($diffinfo,@hash_parents) .3554"</div>\n";# class="patch"35553556$patch_idx++;3557$patch_number++;35583559last if$patch_idx>$#$difftree;3560$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);3561}3562}35633564# modifies %from, %to hashes3565 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);35663567# this is first patch for raw difftree line with $patch_idx index3568# we index @$difftree array from 0, but number patches from 13569print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";3570}35713572# git diff header3573#assert($patch_line =~ m/^diff /) if DEBUG;3574#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed3575$patch_number++;3576# print "git diff" header3577print format_git_diff_header_line($patch_line,$diffinfo,3578 \%from, \%to);35793580# print extended diff header3581print"<div class=\"diff extended_header\">\n";3582 EXTENDED_HEADER:3583while($patch_line= <$fd>) {3584chomp$patch_line;35853586last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);35873588print format_extended_diff_header_line($patch_line,$diffinfo,3589 \%from, \%to);3590}3591print"</div>\n";# class="diff extended_header"35923593# from-file/to-file diff header3594if(!$patch_line) {3595print"</div>\n";# class="patch"3596last PATCH;3597}3598next PATCH if($patch_line=~m/^diff /);3599#assert($patch_line =~ m/^---/) if DEBUG;36003601my$last_patch_line=$patch_line;3602$patch_line= <$fd>;3603chomp$patch_line;3604#assert($patch_line =~ m/^\+\+\+/) if DEBUG;36053606print format_diff_from_to_header($last_patch_line,$patch_line,3607$diffinfo, \%from, \%to,3608@hash_parents);36093610# the patch itself3611 LINE:3612while($patch_line= <$fd>) {3613chomp$patch_line;36143615next PATCH if($patch_line=~m/^diff /);36163617print format_diff_line($patch_line, \%from, \%to);3618}36193620}continue{3621print"</div>\n";# class="patch"3622}36233624# for compact combined (--cc) format, with chunk and patch simpliciaction3625# patchset might be empty, but there might be unprocessed raw lines3626for(++$patch_idxif$patch_number>0;3627$patch_idx<@$difftree;3628++$patch_idx) {3629# read and prepare patch information3630$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);36313632# generate anchor for "patch" links in difftree / whatchanged part3633print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".3634 format_diff_cc_simplified($diffinfo,@hash_parents) .3635"</div>\n";# class="patch"36363637$patch_number++;3638}36393640if($patch_number==0) {3641if(@hash_parents>1) {3642print"<div class=\"diff nodifferences\">Trivial merge</div>\n";3643}else{3644print"<div class=\"diff nodifferences\">No differences found</div>\n";3645}3646}36473648print"</div>\n";# class="patchset"3649}36503651# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .36523653# fills project list info (age, description, owner, forks) for each3654# project in the list, removing invalid projects from returned list3655# NOTE: modifies $projlist, but does not remove entries from it3656sub fill_project_list_info {3657my($projlist,$check_forks) =@_;3658my@projects;36593660my$show_ctags= gitweb_check_feature('ctags');3661 PROJECT:3662foreachmy$pr(@$projlist) {3663my(@activity) = git_get_last_activity($pr->{'path'});3664unless(@activity) {3665next PROJECT;3666}3667($pr->{'age'},$pr->{'age_string'}) =@activity;3668if(!defined$pr->{'descr'}) {3669my$descr= git_get_project_description($pr->{'path'}) ||"";3670$descr= to_utf8($descr);3671$pr->{'descr_long'} =$descr;3672$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);3673}3674if(!defined$pr->{'owner'}) {3675$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";3676}3677if($check_forks) {3678my$pname=$pr->{'path'};3679if(($pname=~s/\.git$//) &&3680($pname!~/\/$/) &&3681(-d "$projectroot/$pname")) {3682$pr->{'forks'} ="-d$projectroot/$pname";3683}else{3684$pr->{'forks'} =0;3685}3686}3687$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});3688push@projects,$pr;3689}36903691return@projects;3692}36933694# print 'sort by' <th> element, either sorting by $key if $name eq $order3695# (changing $list), or generating 'sort by $name' replay link otherwise3696sub print_sort_th {3697my($str_sort,$name,$order,$key,$header,$list) =@_;3698$key||=$name;3699$header||=ucfirst($name);37003701if($ordereq$name) {3702if($str_sort) {3703@$list=sort{$a->{$key}cmp$b->{$key}}@$list;3704}else{3705@$list=sort{$a->{$key} <=>$b->{$key}}@$list;3706}3707print"<th>$header</th>\n";3708}else{3709print"<th>".3710$cgi->a({-href => href(-replay=>1, order=>$name),3711-class=>"header"},$header) .3712"</th>\n";3713}3714}37153716sub print_sort_th_str {3717 print_sort_th(1,@_);3718}37193720sub print_sort_th_num {3721 print_sort_th(0,@_);3722}37233724sub git_project_list_body {3725# actually uses global variable $project3726my($projlist,$order,$from,$to,$extra,$no_header) =@_;37273728my($check_forks) = gitweb_check_feature('forks');3729my@projects= fill_project_list_info($projlist,$check_forks);37303731$order||=$default_projects_order;3732$from=0unlessdefined$from;3733$to=$#projectsif(!defined$to||$#projects<$to);37343735my$show_ctags= gitweb_check_feature('ctags');3736if($show_ctags) {3737my%ctags;3738foreachmy$p(@projects) {3739foreachmy$ct(keys%{$p->{'ctags'}}) {3740$ctags{$ct} +=$p->{'ctags'}->{$ct};3741}3742}3743my$cloud= git_populate_project_tagcloud(\%ctags);3744print git_show_project_tagcloud($cloud,64);3745}37463747print"<table class=\"project_list\">\n";3748unless($no_header) {3749print"<tr>\n";3750if($check_forks) {3751print"<th></th>\n";3752}3753 print_sort_th_str('project',$order,'path',3754'Project', \@projects);3755 print_sort_th_str('descr',$order,'descr_long',3756'Description', \@projects);3757 print_sort_th_str('owner',$order,'owner',3758'Owner', \@projects);3759 print_sort_th_num('age',$order,'age',3760'Last Change', \@projects);3761print"<th></th>\n".# for links3762"</tr>\n";3763}3764my$alternate=1;3765my$tagfilter=$cgi->param('by_tag');3766for(my$i=$from;$i<=$to;$i++) {3767my$pr=$projects[$i];37683769next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};3770# Weed out forks3771if($check_forks) {3772my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;3773$forkbase="^$forkbase"if$forkbase;3774next ifnot$tagfilterand$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe3775}37763777if($alternate) {3778print"<tr class=\"dark\">\n";3779}else{3780print"<tr class=\"light\">\n";3781}3782$alternate^=1;3783if($check_forks) {3784print"<td>";3785if($pr->{'forks'}) {3786print"<!--$pr->{'forks'} -->\n";3787print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");3788}3789print"</td>\n";3790}3791print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),3792-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".3793"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),3794-class=>"list", -title =>$pr->{'descr_long'}},3795 esc_html($pr->{'descr'})) ."</td>\n".3796"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";3797print"<td class=\"". age_class($pr->{'age'}) ."\">".3798(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".3799"<td class=\"link\">".3800$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".3801$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".3802$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".3803$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .3804($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .3805"</td>\n".3806"</tr>\n";3807}3808if(defined$extra) {3809print"<tr>\n";3810if($check_forks) {3811print"<td></td>\n";3812}3813print"<td colspan=\"5\">$extra</td>\n".3814"</tr>\n";3815}3816print"</table>\n";3817}38183819sub git_shortlog_body {3820# uses global variable $project3821my($commitlist,$from,$to,$refs,$extra) =@_;38223823$from=0unlessdefined$from;3824$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);38253826print"<table class=\"shortlog\">\n";3827my$alternate=1;3828for(my$i=$from;$i<=$to;$i++) {3829my%co= %{$commitlist->[$i]};3830my$commit=$co{'id'};3831my$ref= format_ref_marker($refs,$commit);3832if($alternate) {3833print"<tr class=\"dark\">\n";3834}else{3835print"<tr class=\"light\">\n";3836}3837$alternate^=1;3838my$author= chop_and_escape_str($co{'author_name'},10);3839# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .3840print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".3841"<td><i>".$author."</i></td>\n".3842"<td>";3843print format_subject_html($co{'title'},$co{'title_short'},3844 href(action=>"commit", hash=>$commit),$ref);3845print"</td>\n".3846"<td class=\"link\">".3847$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".3848$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".3849$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");3850my$snapshot_links= format_snapshot_links($commit);3851if(defined$snapshot_links) {3852print" | ".$snapshot_links;3853}3854print"</td>\n".3855"</tr>\n";3856}3857if(defined$extra) {3858print"<tr>\n".3859"<td colspan=\"4\">$extra</td>\n".3860"</tr>\n";3861}3862print"</table>\n";3863}38643865sub git_history_body {3866# Warning: assumes constant type (blob or tree) during history3867my($commitlist,$from,$to,$refs,$hash_base,$ftype,$extra) =@_;38683869$from=0unlessdefined$from;3870$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});38713872print"<table class=\"history\">\n";3873my$alternate=1;3874for(my$i=$from;$i<=$to;$i++) {3875my%co= %{$commitlist->[$i]};3876if(!%co) {3877next;3878}3879my$commit=$co{'id'};38803881my$ref= format_ref_marker($refs,$commit);38823883if($alternate) {3884print"<tr class=\"dark\">\n";3885}else{3886print"<tr class=\"light\">\n";3887}3888$alternate^=1;3889# shortlog uses chop_str($co{'author_name'}, 10)3890my$author= chop_and_escape_str($co{'author_name'},15,3);3891print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".3892"<td><i>".$author."</i></td>\n".3893"<td>";3894# originally git_history used chop_str($co{'title'}, 50)3895print format_subject_html($co{'title'},$co{'title_short'},3896 href(action=>"commit", hash=>$commit),$ref);3897print"</td>\n".3898"<td class=\"link\">".3899$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".3900$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");39013902if($ftypeeq'blob') {3903my$blob_current= git_get_hash_by_path($hash_base,$file_name);3904my$blob_parent= git_get_hash_by_path($commit,$file_name);3905if(defined$blob_current&&defined$blob_parent&&3906$blob_currentne$blob_parent) {3907print" | ".3908$cgi->a({-href => href(action=>"blobdiff",3909 hash=>$blob_current, hash_parent=>$blob_parent,3910 hash_base=>$hash_base, hash_parent_base=>$commit,3911 file_name=>$file_name)},3912"diff to current");3913}3914}3915print"</td>\n".3916"</tr>\n";3917}3918if(defined$extra) {3919print"<tr>\n".3920"<td colspan=\"4\">$extra</td>\n".3921"</tr>\n";3922}3923print"</table>\n";3924}39253926sub git_tags_body {3927# uses global variable $project3928my($taglist,$from,$to,$extra) =@_;3929$from=0unlessdefined$from;3930$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);39313932print"<table class=\"tags\">\n";3933my$alternate=1;3934for(my$i=$from;$i<=$to;$i++) {3935my$entry=$taglist->[$i];3936my%tag=%$entry;3937my$comment=$tag{'subject'};3938my$comment_short;3939if(defined$comment) {3940$comment_short= chop_str($comment,30,5);3941}3942if($alternate) {3943print"<tr class=\"dark\">\n";3944}else{3945print"<tr class=\"light\">\n";3946}3947$alternate^=1;3948if(defined$tag{'age'}) {3949print"<td><i>$tag{'age'}</i></td>\n";3950}else{3951print"<td></td>\n";3952}3953print"<td>".3954$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),3955-class=>"list name"}, esc_html($tag{'name'})) .3956"</td>\n".3957"<td>";3958if(defined$comment) {3959print format_subject_html($comment,$comment_short,3960 href(action=>"tag", hash=>$tag{'id'}));3961}3962print"</td>\n".3963"<td class=\"selflink\">";3964if($tag{'type'}eq"tag") {3965print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");3966}else{3967print" ";3968}3969print"</td>\n".3970"<td class=\"link\">"." | ".3971$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});3972if($tag{'reftype'}eq"commit") {3973print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .3974" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");3975}elsif($tag{'reftype'}eq"blob") {3976print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");3977}3978print"</td>\n".3979"</tr>";3980}3981if(defined$extra) {3982print"<tr>\n".3983"<td colspan=\"5\">$extra</td>\n".3984"</tr>\n";3985}3986print"</table>\n";3987}39883989sub git_heads_body {3990# uses global variable $project3991my($headlist,$head,$from,$to,$extra) =@_;3992$from=0unlessdefined$from;3993$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);39943995print"<table class=\"heads\">\n";3996my$alternate=1;3997for(my$i=$from;$i<=$to;$i++) {3998my$entry=$headlist->[$i];3999my%ref=%$entry;4000my$curr=$ref{'id'}eq$head;4001if($alternate) {4002print"<tr class=\"dark\">\n";4003}else{4004print"<tr class=\"light\">\n";4005}4006$alternate^=1;4007print"<td><i>$ref{'age'}</i></td>\n".4008($curr?"<td class=\"current_head\">":"<td>") .4009$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),4010-class=>"list name"},esc_html($ref{'name'})) .4011"</td>\n".4012"<td class=\"link\">".4013$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".4014$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".4015$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'name'})},"tree") .4016"</td>\n".4017"</tr>";4018}4019if(defined$extra) {4020print"<tr>\n".4021"<td colspan=\"3\">$extra</td>\n".4022"</tr>\n";4023}4024print"</table>\n";4025}40264027sub git_search_grep_body {4028my($commitlist,$from,$to,$extra) =@_;4029$from=0unlessdefined$from;4030$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);40314032print"<table class=\"commit_search\">\n";4033my$alternate=1;4034for(my$i=$from;$i<=$to;$i++) {4035my%co= %{$commitlist->[$i]};4036if(!%co) {4037next;4038}4039my$commit=$co{'id'};4040if($alternate) {4041print"<tr class=\"dark\">\n";4042}else{4043print"<tr class=\"light\">\n";4044}4045$alternate^=1;4046my$author= chop_and_escape_str($co{'author_name'},15,5);4047print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4048"<td><i>".$author."</i></td>\n".4049"<td>".4050$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),4051-class=>"list subject"},4052 chop_and_escape_str($co{'title'},50) ."<br/>");4053my$comment=$co{'comment'};4054foreachmy$line(@$comment) {4055if($line=~m/^(.*?)($search_regexp)(.*)$/i) {4056my($lead,$match,$trail) = ($1,$2,$3);4057$match= chop_str($match,70,5,'center');4058my$contextlen=int((80-length($match))/2);4059$contextlen=30if($contextlen>30);4060$lead= chop_str($lead,$contextlen,10,'left');4061$trail= chop_str($trail,$contextlen,10,'right');40624063$lead= esc_html($lead);4064$match= esc_html($match);4065$trail= esc_html($trail);40664067print"$lead<span class=\"match\">$match</span>$trail<br />";4068}4069}4070print"</td>\n".4071"<td class=\"link\">".4072$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .4073" | ".4074$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .4075" | ".4076$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");4077print"</td>\n".4078"</tr>\n";4079}4080if(defined$extra) {4081print"<tr>\n".4082"<td colspan=\"3\">$extra</td>\n".4083"</tr>\n";4084}4085print"</table>\n";4086}40874088## ======================================================================4089## ======================================================================4090## actions40914092sub git_project_list {4093my$order=$cgi->param('o');4094if(defined$order&&$order!~m/none|project|descr|owner|age/) {4095 die_error(400,"Unknown order parameter");4096}40974098my@list= git_get_projects_list();4099if(!@list) {4100 die_error(404,"No projects found");4101}41024103 git_header_html();4104if(-f $home_text) {4105print"<div class=\"index_include\">\n";4106open(my$fd,$home_text);4107print<$fd>;4108close$fd;4109print"</div>\n";4110}4111 git_project_list_body(\@list,$order);4112 git_footer_html();4113}41144115sub git_forks {4116my$order=$cgi->param('o');4117if(defined$order&&$order!~m/none|project|descr|owner|age/) {4118 die_error(400,"Unknown order parameter");4119}41204121my@list= git_get_projects_list($project);4122if(!@list) {4123 die_error(404,"No forks found");4124}41254126 git_header_html();4127 git_print_page_nav('','');4128 git_print_header_div('summary',"$projectforks");4129 git_project_list_body(\@list,$order);4130 git_footer_html();4131}41324133sub git_project_index {4134my@projects= git_get_projects_list($project);41354136print$cgi->header(4137-type =>'text/plain',4138-charset =>'utf-8',4139-content_disposition =>'inline; filename="index.aux"');41404141foreachmy$pr(@projects) {4142if(!exists$pr->{'owner'}) {4143$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");4144}41454146my($path,$owner) = ($pr->{'path'},$pr->{'owner'});4147# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '4148$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4149$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;4150$path=~s/ /\+/g;4151$owner=~s/ /\+/g;41524153print"$path$owner\n";4154}4155}41564157sub git_summary {4158my$descr= git_get_project_description($project) ||"none";4159my%co= parse_commit("HEAD");4160my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();4161my$head=$co{'id'};41624163my$owner= git_get_project_owner($project);41644165my$refs= git_get_references();4166# These get_*_list functions return one more to allow us to see if4167# there are more ...4168my@taglist= git_get_tags_list(16);4169my@headlist= git_get_heads_list(16);4170my@forklist;4171my($check_forks) = gitweb_check_feature('forks');41724173if($check_forks) {4174@forklist= git_get_projects_list($project);4175}41764177 git_header_html();4178 git_print_page_nav('summary','',$head);41794180print"<div class=\"title\"> </div>\n";4181print"<table class=\"projects_list\">\n".4182"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".4183"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";4184if(defined$cd{'rfc2822'}) {4185print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";4186}41874188# use per project git URL list in $projectroot/$project/cloneurl4189# or make project git URL from git base URL and project name4190my$url_tag="URL";4191my@url_list= git_get_project_url_list($project);4192@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;4193foreachmy$git_url(@url_list) {4194next unless$git_url;4195print"<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";4196$url_tag="";4197}41984199# Tag cloud4200my$show_ctags= (gitweb_check_feature('ctags'))[0];4201if($show_ctags) {4202my$ctags= git_get_project_ctags($project);4203my$cloud= git_populate_project_tagcloud($ctags);4204print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";4205print"</td>\n<td>"unless%$ctags;4206print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";4207print"</td>\n<td>"if%$ctags;4208print git_show_project_tagcloud($cloud,48);4209print"</td></tr>";4210}42114212print"</table>\n";42134214if(-s "$projectroot/$project/README.html") {4215if(open my$fd,"$projectroot/$project/README.html") {4216print"<div class=\"title\">readme</div>\n".4217"<div class=\"readme\">\n";4218print$_while(<$fd>);4219print"\n</div>\n";# class="readme"4220close$fd;4221}4222}42234224# we need to request one more than 16 (0..15) to check if4225# those 16 are all4226my@commitlist=$head? parse_commits($head,17) : ();4227if(@commitlist) {4228 git_print_header_div('shortlog');4229 git_shortlog_body(\@commitlist,0,15,$refs,4230$#commitlist<=15?undef:4231$cgi->a({-href => href(action=>"shortlog")},"..."));4232}42334234if(@taglist) {4235 git_print_header_div('tags');4236 git_tags_body(\@taglist,0,15,4237$#taglist<=15?undef:4238$cgi->a({-href => href(action=>"tags")},"..."));4239}42404241if(@headlist) {4242 git_print_header_div('heads');4243 git_heads_body(\@headlist,$head,0,15,4244$#headlist<=15?undef:4245$cgi->a({-href => href(action=>"heads")},"..."));4246}42474248if(@forklist) {4249 git_print_header_div('forks');4250 git_project_list_body(\@forklist,undef,0,15,4251$#forklist<=15?undef:4252$cgi->a({-href => href(action=>"forks")},"..."),4253'noheader');4254}42554256 git_footer_html();4257}42584259sub git_tag {4260my$head= git_get_head_hash($project);4261 git_header_html();4262 git_print_page_nav('','',$head,undef,$head);4263my%tag= parse_tag($hash);42644265if(!%tag) {4266 die_error(404,"Unknown tag object");4267}42684269 git_print_header_div('commit', esc_html($tag{'name'}),$hash);4270print"<div class=\"title_text\">\n".4271"<table class=\"object_header\">\n".4272"<tr>\n".4273"<td>object</td>\n".4274"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4275$tag{'object'}) ."</td>\n".4276"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},4277$tag{'type'}) ."</td>\n".4278"</tr>\n";4279if(defined($tag{'author'})) {4280my%ad= parse_date($tag{'epoch'},$tag{'tz'});4281print"<tr><td>author</td><td>". esc_html($tag{'author'}) ."</td></tr>\n";4282print"<tr><td></td><td>".$ad{'rfc2822'} .4283sprintf(" (%02d:%02d%s)",$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'}) .4284"</td></tr>\n";4285}4286print"</table>\n\n".4287"</div>\n";4288print"<div class=\"page_body\">";4289my$comment=$tag{'comment'};4290foreachmy$line(@$comment) {4291chomp$line;4292print esc_html($line, -nbsp=>1) ."<br/>\n";4293}4294print"</div>\n";4295 git_footer_html();4296}42974298sub git_blame {4299my$fd;4300my$ftype;43014302 gitweb_check_feature('blame')4303or die_error(403,"Blame view not allowed");43044305 die_error(400,"No file name given")unless$file_name;4306$hash_base||= git_get_head_hash($project);4307 die_error(404,"Couldn't find base commit")unless($hash_base);4308my%co= parse_commit($hash_base)4309or die_error(404,"Commit not found");4310if(!defined$hash) {4311$hash= git_get_hash_by_path($hash_base,$file_name,"blob")4312or die_error(404,"Error looking up file");4313}4314$ftype= git_get_type($hash);4315if($ftype!~"blob") {4316 die_error(400,"Object is not a blob");4317}4318open($fd,"-|", git_cmd(),"blame",'-p','--',4319$file_name,$hash_base)4320or die_error(500,"Open git-blame failed");4321 git_header_html();4322my$formats_nav=4323$cgi->a({-href => href(action=>"blob", -replay=>1)},4324"blob") .4325" | ".4326$cgi->a({-href => href(action=>"history", -replay=>1)},4327"history") .4328" | ".4329$cgi->a({-href => href(action=>"blame", file_name=>$file_name)},4330"HEAD");4331 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4332 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4333 git_print_page_path($file_name,$ftype,$hash_base);4334my@rev_color= (qw(light2 dark2));4335my$num_colors=scalar(@rev_color);4336my$current_color=0;4337my$last_rev;4338print<<HTML;4339<div class="page_body">4340<table class="blame">4341<tr><th>Commit</th><th>Line</th><th>Data</th></tr>4342HTML4343my%metainfo= ();4344while(1) {4345$_= <$fd>;4346last unlessdefined$_;4347my($full_rev,$orig_lineno,$lineno,$group_size) =4348/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;4349if(!exists$metainfo{$full_rev}) {4350$metainfo{$full_rev} = {};4351}4352my$meta=$metainfo{$full_rev};4353while(<$fd>) {4354last if(s/^\t//);4355if(/^(\S+) (.*)$/) {4356$meta->{$1} =$2;4357}4358}4359my$data=$_;4360chomp$data;4361my$rev=substr($full_rev,0,8);4362my$author=$meta->{'author'};4363my%date= parse_date($meta->{'author-time'},4364$meta->{'author-tz'});4365my$date=$date{'iso-tz'};4366if($group_size) {4367$current_color= ++$current_color%$num_colors;4368}4369print"<tr class=\"$rev_color[$current_color]\">\n";4370if($group_size) {4371print"<td class=\"sha1\"";4372print" title=\"". esc_html($author) .",$date\"";4373print" rowspan=\"$group_size\""if($group_size>1);4374print">";4375print$cgi->a({-href => href(action=>"commit",4376 hash=>$full_rev,4377 file_name=>$file_name)},4378 esc_html($rev));4379print"</td>\n";4380}4381open(my$dd,"-|", git_cmd(),"rev-parse","$full_rev^")4382or die_error(500,"Open git-rev-parse failed");4383my$parent_commit= <$dd>;4384close$dd;4385chomp($parent_commit);4386my$blamed= href(action =>'blame',4387 file_name =>$meta->{'filename'},4388 hash_base =>$parent_commit);4389print"<td class=\"linenr\">";4390print$cgi->a({ -href =>"$blamed#l$orig_lineno",4391-id =>"l$lineno",4392-class=>"linenr"},4393 esc_html($lineno));4394print"</td>";4395print"<td class=\"pre\">". esc_html($data) ."</td>\n";4396print"</tr>\n";4397}4398print"</table>\n";4399print"</div>";4400close$fd4401or print"Reading blob failed\n";4402 git_footer_html();4403}44044405sub git_tags {4406my$head= git_get_head_hash($project);4407 git_header_html();4408 git_print_page_nav('','',$head,undef,$head);4409 git_print_header_div('summary',$project);44104411my@tagslist= git_get_tags_list();4412if(@tagslist) {4413 git_tags_body(\@tagslist);4414}4415 git_footer_html();4416}44174418sub git_heads {4419my$head= git_get_head_hash($project);4420 git_header_html();4421 git_print_page_nav('','',$head,undef,$head);4422 git_print_header_div('summary',$project);44234424my@headslist= git_get_heads_list();4425if(@headslist) {4426 git_heads_body(\@headslist,$head);4427}4428 git_footer_html();4429}44304431sub git_blob_plain {4432my$type=shift;4433my$expires;44344435if(!defined$hash) {4436if(defined$file_name) {4437my$base=$hash_base|| git_get_head_hash($project);4438$hash= git_get_hash_by_path($base,$file_name,"blob")4439or die_error(404,"Cannot find file");4440}else{4441 die_error(400,"No file name defined");4442}4443}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4444# blobs defined by non-textual hash id's can be cached4445$expires="+1d";4446}44474448open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4449or die_error(500,"Open git-cat-file blob '$hash' failed");44504451# content-type (can include charset)4452$type= blob_contenttype($fd,$file_name,$type);44534454# "save as" filename, even when no $file_name is given4455my$save_as="$hash";4456if(defined$file_name) {4457$save_as=$file_name;4458}elsif($type=~m/^text\//) {4459$save_as.='.txt';4460}44614462print$cgi->header(4463-type =>$type,4464-expires =>$expires,4465-content_disposition =>'inline; filename="'.$save_as.'"');4466undef$/;4467binmode STDOUT,':raw';4468print<$fd>;4469binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4470$/="\n";4471close$fd;4472}44734474sub git_blob {4475my$expires;44764477if(!defined$hash) {4478if(defined$file_name) {4479my$base=$hash_base|| git_get_head_hash($project);4480$hash= git_get_hash_by_path($base,$file_name,"blob")4481or die_error(404,"Cannot find file");4482}else{4483 die_error(400,"No file name defined");4484}4485}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {4486# blobs defined by non-textual hash id's can be cached4487$expires="+1d";4488}44894490my($have_blame) = gitweb_check_feature('blame');4491open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4492or die_error(500,"Couldn't cat$file_name,$hash");4493my$mimetype= blob_mimetype($fd,$file_name);4494if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {4495close$fd;4496return git_blob_plain($mimetype);4497}4498# we can have blame only for text/* mimetype4499$have_blame&&= ($mimetype=~m!^text/!);45004501 git_header_html(undef,$expires);4502my$formats_nav='';4503if(defined$hash_base&& (my%co= parse_commit($hash_base))) {4504if(defined$file_name) {4505if($have_blame) {4506$formats_nav.=4507$cgi->a({-href => href(action=>"blame", -replay=>1)},4508"blame") .4509" | ";4510}4511$formats_nav.=4512$cgi->a({-href => href(action=>"history", -replay=>1)},4513"history") .4514" | ".4515$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},4516"raw") .4517" | ".4518$cgi->a({-href => href(action=>"blob",4519 hash_base=>"HEAD", file_name=>$file_name)},4520"HEAD");4521}else{4522$formats_nav.=4523$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},4524"raw");4525}4526 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);4527 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);4528}else{4529print"<div class=\"page_nav\">\n".4530"<br/><br/></div>\n".4531"<div class=\"title\">$hash</div>\n";4532}4533 git_print_page_path($file_name,"blob",$hash_base);4534print"<div class=\"page_body\">\n";4535if($mimetype=~m!^image/!) {4536print qq!<img type="$mimetype"!;4537if($file_name) {4538print qq! alt="$file_name" title="$file_name"!;4539}4540print qq! src="! .4541 href(action=>"blob_plain", hash=>$hash,4542 hash_base=>$hash_base, file_name=>$file_name) .4543 qq!"/>\n!;4544}else{4545my$nr;4546while(my$line= <$fd>) {4547chomp$line;4548$nr++;4549$line= untabify($line);4550printf"<div class=\"pre\"><a id=\"l%i\"href=\"#l%i\"class=\"linenr\">%4i</a>%s</div>\n",4551$nr,$nr,$nr, esc_html($line, -nbsp=>1);4552}4553}4554close$fd4555or print"Reading blob failed.\n";4556print"</div>";4557 git_footer_html();4558}45594560sub git_tree {4561if(!defined$hash_base) {4562$hash_base="HEAD";4563}4564if(!defined$hash) {4565if(defined$file_name) {4566$hash= git_get_hash_by_path($hash_base,$file_name,"tree");4567}else{4568$hash=$hash_base;4569}4570}4571 die_error(404,"No such tree")unlessdefined($hash);4572$/="\0";4573open my$fd,"-|", git_cmd(),"ls-tree",'-z',$hash4574or die_error(500,"Open git-ls-tree failed");4575my@entries=map{chomp;$_} <$fd>;4576close$fdor die_error(404,"Reading tree failed");4577$/="\n";45784579my$refs= git_get_references();4580my$ref= format_ref_marker($refs,$hash_base);4581 git_header_html();4582my$basedir='';4583my($have_blame) = gitweb_check_feature('blame');4584if(defined$hash_base&& (my%co= parse_commit($hash_base))) {4585my@views_nav= ();4586if(defined$file_name) {4587push@views_nav,4588$cgi->a({-href => href(action=>"history", -replay=>1)},4589"history"),4590$cgi->a({-href => href(action=>"tree",4591 hash_base=>"HEAD", file_name=>$file_name)},4592"HEAD"),4593}4594my$snapshot_links= format_snapshot_links($hash);4595if(defined$snapshot_links) {4596# FIXME: Should be available when we have no hash base as well.4597push@views_nav,$snapshot_links;4598}4599 git_print_page_nav('tree','',$hash_base,undef,undef,join(' | ',@views_nav));4600 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);4601}else{4602undef$hash_base;4603print"<div class=\"page_nav\">\n";4604print"<br/><br/></div>\n";4605print"<div class=\"title\">$hash</div>\n";4606}4607if(defined$file_name) {4608$basedir=$file_name;4609if($basedirne''&&substr($basedir, -1)ne'/') {4610$basedir.='/';4611}4612 git_print_page_path($file_name,'tree',$hash_base);4613}4614print"<div class=\"page_body\">\n";4615print"<table class=\"tree\">\n";4616my$alternate=1;4617# '..' (top directory) link if possible4618if(defined$hash_base&&4619defined$file_name&&$file_name=~m![^/]+$!) {4620if($alternate) {4621print"<tr class=\"dark\">\n";4622}else{4623print"<tr class=\"light\">\n";4624}4625$alternate^=1;46264627my$up=$file_name;4628$up=~s!/?[^/]+$!!;4629undef$upunless$up;4630# based on git_print_tree_entry4631print'<td class="mode">'. mode_str('040000') ."</td>\n";4632print'<td class="list">';4633print$cgi->a({-href => href(action=>"tree", hash_base=>$hash_base,4634 file_name=>$up)},4635"..");4636print"</td>\n";4637print"<td class=\"link\"></td>\n";46384639print"</tr>\n";4640}4641foreachmy$line(@entries) {4642my%t= parse_ls_tree_line($line, -z =>1);46434644if($alternate) {4645print"<tr class=\"dark\">\n";4646}else{4647print"<tr class=\"light\">\n";4648}4649$alternate^=1;46504651 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);46524653print"</tr>\n";4654}4655print"</table>\n".4656"</div>";4657 git_footer_html();4658}46594660sub git_snapshot {4661my@supported_fmts= gitweb_check_feature('snapshot');4662@supported_fmts= filter_snapshot_fmts(@supported_fmts);46634664my$format=$cgi->param('sf');4665if(!@supported_fmts) {4666 die_error(403,"Snapshots not allowed");4667}4668# default to first supported snapshot format4669$format||=$supported_fmts[0];4670if($format!~m/^[a-z0-9]+$/) {4671 die_error(400,"Invalid snapshot format parameter");4672}elsif(!exists($known_snapshot_formats{$format})) {4673 die_error(400,"Unknown snapshot format");4674}elsif(!grep($_eq$format,@supported_fmts)) {4675 die_error(403,"Unsupported snapshot format");4676}46774678if(!defined$hash) {4679$hash= git_get_head_hash($project);4680}46814682my$name=$project;4683$name=~ s,([^/])/*\.git$,$1,;4684$name= basename($name);4685my$filename= to_utf8($name);4686$name=~s/\047/\047\\\047\047/g;4687my$cmd;4688$filename.="-$hash$known_snapshot_formats{$format}{'suffix'}";4689$cmd= quote_command(4690 git_cmd(),'archive',4691"--format=$known_snapshot_formats{$format}{'format'}",4692"--prefix=$name/",$hash);4693if(exists$known_snapshot_formats{$format}{'compressor'}) {4694$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});4695}46964697print$cgi->header(4698-type =>$known_snapshot_formats{$format}{'type'},4699-content_disposition =>'inline; filename="'."$filename".'"',4700-status =>'200 OK');47014702open my$fd,"-|",$cmd4703or die_error(500,"Execute git-archive failed");4704binmode STDOUT,':raw';4705print<$fd>;4706binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi4707close$fd;4708}47094710sub git_log {4711my$head= git_get_head_hash($project);4712if(!defined$hash) {4713$hash=$head;4714}4715if(!defined$page) {4716$page=0;4717}4718my$refs= git_get_references();47194720my@commitlist= parse_commits($hash,101, (100*$page));47214722my$paging_nav= format_paging_nav('log',$hash,$head,$page,$#commitlist>=100);47234724 git_header_html();4725 git_print_page_nav('log','',$hash,undef,undef,$paging_nav);47264727if(!@commitlist) {4728my%co= parse_commit($hash);47294730 git_print_header_div('summary',$project);4731print"<div class=\"page_body\"> Last change$co{'age_string'}.<br/><br/></div>\n";4732}4733my$to= ($#commitlist>=99) ? (99) : ($#commitlist);4734for(my$i=0;$i<=$to;$i++) {4735my%co= %{$commitlist[$i]};4736next if!%co;4737my$commit=$co{'id'};4738my$ref= format_ref_marker($refs,$commit);4739my%ad= parse_date($co{'author_epoch'});4740 git_print_header_div('commit',4741"<span class=\"age\">$co{'age_string'}</span>".4742 esc_html($co{'title'}) .$ref,4743$commit);4744print"<div class=\"title_text\">\n".4745"<div class=\"log_link\">\n".4746$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4747" | ".4748$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4749" | ".4750$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4751"<br/>\n".4752"</div>\n".4753"<i>". esc_html($co{'author_name'}) ." [$ad{'rfc2822'}]</i><br/>\n".4754"</div>\n";47554756print"<div class=\"log_body\">\n";4757 git_print_log($co{'comment'}, -final_empty_line=>1);4758print"</div>\n";4759}4760if($#commitlist>=100) {4761print"<div class=\"page_nav\">\n";4762print$cgi->a({-href => href(-replay=>1, page=>$page+1),4763-accesskey =>"n", -title =>"Alt-n"},"next");4764print"</div>\n";4765}4766 git_footer_html();4767}47684769sub git_commit {4770$hash||=$hash_base||"HEAD";4771my%co= parse_commit($hash)4772or die_error(404,"Unknown commit object");4773my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});4774my%cd= parse_date($co{'committer_epoch'},$co{'committer_tz'});47754776my$parent=$co{'parent'};4777my$parents=$co{'parents'};# listref47784779# we need to prepare $formats_nav before any parameter munging4780my$formats_nav;4781if(!defined$parent) {4782# --root commitdiff4783$formats_nav.='(initial)';4784}elsif(@$parents==1) {4785# single parent commit4786$formats_nav.=4787'(parent: '.4788$cgi->a({-href => href(action=>"commit",4789 hash=>$parent)},4790 esc_html(substr($parent,0,7))) .4791')';4792}else{4793# merge commit4794$formats_nav.=4795'(merge: '.4796join(' ',map{4797$cgi->a({-href => href(action=>"commit",4798 hash=>$_)},4799 esc_html(substr($_,0,7)));4800}@$parents) .4801')';4802}48034804if(!defined$parent) {4805$parent="--root";4806}4807my@difftree;4808open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",4809@diff_opts,4810(@$parents<=1?$parent:'-c'),4811$hash,"--"4812or die_error(500,"Open git-diff-tree failed");4813@difftree=map{chomp;$_} <$fd>;4814close$fdor die_error(404,"Reading git-diff-tree failed");48154816# non-textual hash id's can be cached4817my$expires;4818if($hash=~m/^[0-9a-fA-F]{40}$/) {4819$expires="+1d";4820}4821my$refs= git_get_references();4822my$ref= format_ref_marker($refs,$co{'id'});48234824 git_header_html(undef,$expires);4825 git_print_page_nav('commit','',4826$hash,$co{'tree'},$hash,4827$formats_nav);48284829if(defined$co{'parent'}) {4830 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);4831}else{4832 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);4833}4834print"<div class=\"title_text\">\n".4835"<table class=\"object_header\">\n";4836print"<tr><td>author</td><td>". esc_html($co{'author'}) ."</td></tr>\n".4837"<tr>".4838"<td></td><td>$ad{'rfc2822'}";4839if($ad{'hour_local'} <6) {4840printf(" (<span class=\"atnight\">%02d:%02d</span>%s)",4841$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});4842}else{4843printf(" (%02d:%02d%s)",4844$ad{'hour_local'},$ad{'minute_local'},$ad{'tz_local'});4845}4846print"</td>".4847"</tr>\n";4848print"<tr><td>committer</td><td>". esc_html($co{'committer'}) ."</td></tr>\n";4849print"<tr><td></td><td>$cd{'rfc2822'}".4850sprintf(" (%02d:%02d%s)",$cd{'hour_local'},$cd{'minute_local'},$cd{'tz_local'}) .4851"</td></tr>\n";4852print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";4853print"<tr>".4854"<td>tree</td>".4855"<td class=\"sha1\">".4856$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),4857class=>"list"},$co{'tree'}) .4858"</td>".4859"<td class=\"link\">".4860$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},4861"tree");4862my$snapshot_links= format_snapshot_links($hash);4863if(defined$snapshot_links) {4864print" | ".$snapshot_links;4865}4866print"</td>".4867"</tr>\n";48684869foreachmy$par(@$parents) {4870print"<tr>".4871"<td>parent</td>".4872"<td class=\"sha1\">".4873$cgi->a({-href => href(action=>"commit", hash=>$par),4874class=>"list"},$par) .4875"</td>".4876"<td class=\"link\">".4877$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .4878" | ".4879$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .4880"</td>".4881"</tr>\n";4882}4883print"</table>".4884"</div>\n";48854886print"<div class=\"page_body\">\n";4887 git_print_log($co{'comment'});4888print"</div>\n";48894890 git_difftree_body(\@difftree,$hash,@$parents);48914892 git_footer_html();4893}48944895sub git_object {4896# object is defined by:4897# - hash or hash_base alone4898# - hash_base and file_name4899my$type;49004901# - hash or hash_base alone4902if($hash|| ($hash_base&& !defined$file_name)) {4903my$object_id=$hash||$hash_base;49044905open my$fd,"-|", quote_command(4906 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'4907or die_error(404,"Object does not exist");4908$type= <$fd>;4909chomp$type;4910close$fd4911or die_error(404,"Object does not exist");49124913# - hash_base and file_name4914}elsif($hash_base&&defined$file_name) {4915$file_name=~ s,/+$,,;49164917system(git_cmd(),"cat-file",'-e',$hash_base) ==04918or die_error(404,"Base object does not exist");49194920# here errors should not hapen4921open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name4922or die_error(500,"Open git-ls-tree failed");4923my$line= <$fd>;4924close$fd;49254926#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'4927unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {4928 die_error(404,"File or directory for given base does not exist");4929}4930$type=$2;4931$hash=$3;4932}else{4933 die_error(400,"Not enough information to find object");4934}49354936print$cgi->redirect(-uri => href(action=>$type, -full=>1,4937 hash=>$hash, hash_base=>$hash_base,4938 file_name=>$file_name),4939-status =>'302 Found');4940}49414942sub git_blobdiff {4943my$format=shift||'html';49444945my$fd;4946my@difftree;4947my%diffinfo;4948my$expires;49494950# preparing $fd and %diffinfo for git_patchset_body4951# new style URI4952if(defined$hash_base&&defined$hash_parent_base) {4953if(defined$file_name) {4954# read raw output4955open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,4956$hash_parent_base,$hash_base,4957"--", (defined$file_parent?$file_parent: ()),$file_name4958or die_error(500,"Open git-diff-tree failed");4959@difftree=map{chomp;$_} <$fd>;4960close$fd4961or die_error(404,"Reading git-diff-tree failed");4962@difftree4963or die_error(404,"Blob diff not found");49644965}elsif(defined$hash&&4966$hash=~/[0-9a-fA-F]{40}/) {4967# try to find filename from $hash49684969# read filtered raw output4970open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,4971$hash_parent_base,$hash_base,"--"4972or die_error(500,"Open git-diff-tree failed");4973@difftree=4974# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'4975# $hash == to_id4976grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}4977map{chomp;$_} <$fd>;4978close$fd4979or die_error(404,"Reading git-diff-tree failed");4980@difftree4981or die_error(404,"Blob diff not found");49824983}else{4984 die_error(400,"Missing one of the blob diff parameters");4985}49864987if(@difftree>1) {4988 die_error(400,"Ambiguous blob diff specification");4989}49904991%diffinfo= parse_difftree_raw_line($difftree[0]);4992$file_parent||=$diffinfo{'from_file'} ||$file_name;4993$file_name||=$diffinfo{'to_file'};49944995$hash_parent||=$diffinfo{'from_id'};4996$hash||=$diffinfo{'to_id'};49974998# non-textual hash id's can be cached4999if($hash_base=~m/^[0-9a-fA-F]{40}$/&&5000$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {5001$expires='+1d';5002}50035004# open patch output5005open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5006'-p', ($formateq'html'?"--full-index": ()),5007$hash_parent_base,$hash_base,5008"--", (defined$file_parent?$file_parent: ()),$file_name5009or die_error(500,"Open git-diff-tree failed");5010}50115012# old/legacy style URI5013if(!%diffinfo&&# if new style URI failed5014defined$hash&&defined$hash_parent) {5015# fake git-diff-tree raw output5016$diffinfo{'from_mode'} =$diffinfo{'to_mode'} ="blob";5017$diffinfo{'from_id'} =$hash_parent;5018$diffinfo{'to_id'} =$hash;5019if(defined$file_name) {5020if(defined$file_parent) {5021$diffinfo{'status'} ='2';5022$diffinfo{'from_file'} =$file_parent;5023$diffinfo{'to_file'} =$file_name;5024}else{# assume not renamed5025$diffinfo{'status'} ='1';5026$diffinfo{'from_file'} =$file_name;5027$diffinfo{'to_file'} =$file_name;5028}5029}else{# no filename given5030$diffinfo{'status'} ='2';5031$diffinfo{'from_file'} =$hash_parent;5032$diffinfo{'to_file'} =$hash;5033}50345035# non-textual hash id's can be cached5036if($hash=~m/^[0-9a-fA-F]{40}$/&&5037$hash_parent=~m/^[0-9a-fA-F]{40}$/) {5038$expires='+1d';5039}50405041# open patch output5042open$fd,"-|", git_cmd(),"diff",@diff_opts,5043'-p', ($formateq'html'?"--full-index": ()),5044$hash_parent,$hash,"--"5045or die_error(500,"Open git-diff failed");5046}else{5047 die_error(400,"Missing one of the blob diff parameters")5048unless%diffinfo;5049}50505051# header5052if($formateq'html') {5053my$formats_nav=5054$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},5055"raw");5056 git_header_html(undef,$expires);5057if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5058 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5059 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5060}else{5061print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";5062print"<div class=\"title\">$hashvs$hash_parent</div>\n";5063}5064if(defined$file_name) {5065 git_print_page_path($file_name,"blob",$hash_base);5066}else{5067print"<div class=\"page_path\"></div>\n";5068}50695070}elsif($formateq'plain') {5071print$cgi->header(5072-type =>'text/plain',5073-charset =>'utf-8',5074-expires =>$expires,5075-content_disposition =>'inline; filename="'."$file_name".'.patch"');50765077print"X-Git-Url: ".$cgi->self_url() ."\n\n";50785079}else{5080 die_error(400,"Unknown blobdiff format");5081}50825083# patch5084if($formateq'html') {5085print"<div class=\"page_body\">\n";50865087 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);5088close$fd;50895090print"</div>\n";# class="page_body"5091 git_footer_html();50925093}else{5094while(my$line= <$fd>) {5095$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;5096$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;50975098print$line;50995100last if$line=~m!^\+\+\+!;5101}5102local$/=undef;5103print<$fd>;5104close$fd;5105}5106}51075108sub git_blobdiff_plain {5109 git_blobdiff('plain');5110}51115112sub git_commitdiff {5113my$format=shift||'html';5114$hash||=$hash_base||"HEAD";5115my%co= parse_commit($hash)5116or die_error(404,"Unknown commit object");51175118# choose format for commitdiff for merge5119if(!defined$hash_parent&& @{$co{'parents'}} >1) {5120$hash_parent='--cc';5121}5122# we need to prepare $formats_nav before almost any parameter munging5123my$formats_nav;5124if($formateq'html') {5125$formats_nav=5126$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},5127"raw");51285129if(defined$hash_parent&&5130$hash_parentne'-c'&&$hash_parentne'--cc') {5131# commitdiff with two commits given5132my$hash_parent_short=$hash_parent;5133if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {5134$hash_parent_short=substr($hash_parent,0,7);5135}5136$formats_nav.=5137' (from';5138for(my$i=0;$i< @{$co{'parents'}};$i++) {5139if($co{'parents'}[$i]eq$hash_parent) {5140$formats_nav.=' parent '. ($i+1);5141last;5142}5143}5144$formats_nav.=': '.5145$cgi->a({-href => href(action=>"commitdiff",5146 hash=>$hash_parent)},5147 esc_html($hash_parent_short)) .5148')';5149}elsif(!$co{'parent'}) {5150# --root commitdiff5151$formats_nav.=' (initial)';5152}elsif(scalar@{$co{'parents'}} ==1) {5153# single parent commit5154$formats_nav.=5155' (parent: '.5156$cgi->a({-href => href(action=>"commitdiff",5157 hash=>$co{'parent'})},5158 esc_html(substr($co{'parent'},0,7))) .5159')';5160}else{5161# merge commit5162if($hash_parenteq'--cc') {5163$formats_nav.=' | '.5164$cgi->a({-href => href(action=>"commitdiff",5165 hash=>$hash, hash_parent=>'-c')},5166'combined');5167}else{# $hash_parent eq '-c'5168$formats_nav.=' | '.5169$cgi->a({-href => href(action=>"commitdiff",5170 hash=>$hash, hash_parent=>'--cc')},5171'compact');5172}5173$formats_nav.=5174' (merge: '.5175join(' ',map{5176$cgi->a({-href => href(action=>"commitdiff",5177 hash=>$_)},5178 esc_html(substr($_,0,7)));5179} @{$co{'parents'}} ) .5180')';5181}5182}51835184my$hash_parent_param=$hash_parent;5185if(!defined$hash_parent_param) {5186# --cc for multiple parents, --root for parentless5187$hash_parent_param=5188@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';5189}51905191# read commitdiff5192my$fd;5193my@difftree;5194if($formateq'html') {5195open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5196"--no-commit-id","--patch-with-raw","--full-index",5197$hash_parent_param,$hash,"--"5198or die_error(500,"Open git-diff-tree failed");51995200while(my$line= <$fd>) {5201chomp$line;5202# empty line ends raw part of diff-tree output5203last unless$line;5204push@difftree,scalar parse_difftree_raw_line($line);5205}52065207}elsif($formateq'plain') {5208open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5209'-p',$hash_parent_param,$hash,"--"5210or die_error(500,"Open git-diff-tree failed");52115212}else{5213 die_error(400,"Unknown commitdiff format");5214}52155216# non-textual hash id's can be cached5217my$expires;5218if($hash=~m/^[0-9a-fA-F]{40}$/) {5219$expires="+1d";5220}52215222# write commit message5223if($formateq'html') {5224my$refs= git_get_references();5225my$ref= format_ref_marker($refs,$co{'id'});52265227 git_header_html(undef,$expires);5228 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);5229 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);5230 git_print_authorship(\%co);5231print"<div class=\"page_body\">\n";5232if(@{$co{'comment'}} >1) {5233print"<div class=\"log\">\n";5234 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);5235print"</div>\n";# class="log"5236}52375238}elsif($formateq'plain') {5239my$refs= git_get_references("tags");5240my$tagname= git_get_rev_name_tags($hash);5241my$filename= basename($project) ."-$hash.patch";52425243print$cgi->header(5244-type =>'text/plain',5245-charset =>'utf-8',5246-expires =>$expires,5247-content_disposition =>'inline; filename="'."$filename".'"');5248my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});5249print"From: ". to_utf8($co{'author'}) ."\n";5250print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";5251print"Subject: ". to_utf8($co{'title'}) ."\n";52525253print"X-Git-Tag:$tagname\n"if$tagname;5254print"X-Git-Url: ".$cgi->self_url() ."\n\n";52555256foreachmy$line(@{$co{'comment'}}) {5257print to_utf8($line) ."\n";5258}5259print"---\n\n";5260}52615262# write patch5263if($formateq'html') {5264my$use_parents= !defined$hash_parent||5265$hash_parenteq'-c'||$hash_parenteq'--cc';5266 git_difftree_body(\@difftree,$hash,5267$use_parents? @{$co{'parents'}} :$hash_parent);5268print"<br/>\n";52695270 git_patchset_body($fd, \@difftree,$hash,5271$use_parents? @{$co{'parents'}} :$hash_parent);5272close$fd;5273print"</div>\n";# class="page_body"5274 git_footer_html();52755276}elsif($formateq'plain') {5277local$/=undef;5278print<$fd>;5279close$fd5280or print"Reading git-diff-tree failed\n";5281}5282}52835284sub git_commitdiff_plain {5285 git_commitdiff('plain');5286}52875288sub git_history {5289if(!defined$hash_base) {5290$hash_base= git_get_head_hash($project);5291}5292if(!defined$page) {5293$page=0;5294}5295my$ftype;5296my%co= parse_commit($hash_base)5297or die_error(404,"Unknown commit object");52985299my$refs= git_get_references();5300my$limit=sprintf("--max-count=%i", (100* ($page+1)));53015302my@commitlist= parse_commits($hash_base,101, (100*$page),5303$file_name,"--full-history")5304or die_error(404,"No such file or directory on given branch");53055306if(!defined$hash&&defined$file_name) {5307# some commits could have deleted file in question,5308# and not have it in tree, but one of them has to have it5309for(my$i=0;$i<=@commitlist;$i++) {5310$hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);5311last ifdefined$hash;5312}5313}5314if(defined$hash) {5315$ftype= git_get_type($hash);5316}5317if(!defined$ftype) {5318 die_error(500,"Unknown type of object");5319}53205321my$paging_nav='';5322if($page>0) {5323$paging_nav.=5324$cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,5325 file_name=>$file_name)},5326"first");5327$paging_nav.=" ⋅ ".5328$cgi->a({-href => href(-replay=>1, page=>$page-1),5329-accesskey =>"p", -title =>"Alt-p"},"prev");5330}else{5331$paging_nav.="first";5332$paging_nav.=" ⋅ prev";5333}5334my$next_link='';5335if($#commitlist>=100) {5336$next_link=5337$cgi->a({-href => href(-replay=>1, page=>$page+1),5338-accesskey =>"n", -title =>"Alt-n"},"next");5339$paging_nav.=" ⋅$next_link";5340}else{5341$paging_nav.=" ⋅ next";5342}53435344 git_header_html();5345 git_print_page_nav('history','',$hash_base,$co{'tree'},$hash_base,$paging_nav);5346 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5347 git_print_page_path($file_name,$ftype,$hash_base);53485349 git_history_body(\@commitlist,0,99,5350$refs,$hash_base,$ftype,$next_link);53515352 git_footer_html();5353}53545355sub git_search {5356 gitweb_check_feature('search')or die_error(403,"Search is disabled");5357if(!defined$searchtext) {5358 die_error(400,"Text field is empty");5359}5360if(!defined$hash) {5361$hash= git_get_head_hash($project);5362}5363my%co= parse_commit($hash);5364if(!%co) {5365 die_error(404,"Unknown commit object");5366}5367if(!defined$page) {5368$page=0;5369}53705371$searchtype||='commit';5372if($searchtypeeq'pickaxe') {5373# pickaxe may take all resources of your box and run for several minutes5374# with every query - so decide by yourself how public you make this feature5375 gitweb_check_feature('pickaxe')5376or die_error(403,"Pickaxe is disabled");5377}5378if($searchtypeeq'grep') {5379 gitweb_check_feature('grep')5380or die_error(403,"Grep is disabled");5381}53825383 git_header_html();53845385if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {5386my$greptype;5387if($searchtypeeq'commit') {5388$greptype="--grep=";5389}elsif($searchtypeeq'author') {5390$greptype="--author=";5391}elsif($searchtypeeq'committer') {5392$greptype="--committer=";5393}5394$greptype.=$searchtext;5395my@commitlist= parse_commits($hash,101, (100*$page),undef,5396$greptype,'--regexp-ignore-case',5397$search_use_regexp?'--extended-regexp':'--fixed-strings');53985399my$paging_nav='';5400if($page>0) {5401$paging_nav.=5402$cgi->a({-href => href(action=>"search", hash=>$hash,5403 searchtext=>$searchtext,5404 searchtype=>$searchtype)},5405"first");5406$paging_nav.=" ⋅ ".5407$cgi->a({-href => href(-replay=>1, page=>$page-1),5408-accesskey =>"p", -title =>"Alt-p"},"prev");5409}else{5410$paging_nav.="first";5411$paging_nav.=" ⋅ prev";5412}5413my$next_link='';5414if($#commitlist>=100) {5415$next_link=5416$cgi->a({-href => href(-replay=>1, page=>$page+1),5417-accesskey =>"n", -title =>"Alt-n"},"next");5418$paging_nav.=" ⋅$next_link";5419}else{5420$paging_nav.=" ⋅ next";5421}54225423if($#commitlist>=100) {5424}54255426 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);5427 git_print_header_div('commit', esc_html($co{'title'}),$hash);5428 git_search_grep_body(\@commitlist,0,99,$next_link);5429}54305431if($searchtypeeq'pickaxe') {5432 git_print_page_nav('','',$hash,$co{'tree'},$hash);5433 git_print_header_div('commit', esc_html($co{'title'}),$hash);54345435print"<table class=\"pickaxe search\">\n";5436my$alternate=1;5437$/="\n";5438open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,5439'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",5440($search_use_regexp?'--pickaxe-regex': ());5441undef%co;5442my@files;5443while(my$line= <$fd>) {5444chomp$line;5445next unless$line;54465447my%set= parse_difftree_raw_line($line);5448if(defined$set{'commit'}) {5449# finish previous commit5450if(%co) {5451print"</td>\n".5452"<td class=\"link\">".5453$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5454" | ".5455$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5456print"</td>\n".5457"</tr>\n";5458}54595460if($alternate) {5461print"<tr class=\"dark\">\n";5462}else{5463print"<tr class=\"light\">\n";5464}5465$alternate^=1;5466%co= parse_commit($set{'commit'});5467my$author= chop_and_escape_str($co{'author_name'},15,5);5468print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5469"<td><i>$author</i></td>\n".5470"<td>".5471$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5472-class=>"list subject"},5473 chop_and_escape_str($co{'title'},50) ."<br/>");5474}elsif(defined$set{'to_id'}) {5475next if($set{'to_id'} =~m/^0{40}$/);54765477print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},5478 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),5479-class=>"list"},5480"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .5481"<br/>\n";5482}5483}5484close$fd;54855486# finish last commit (warning: repetition!)5487if(%co) {5488print"</td>\n".5489"<td class=\"link\">".5490$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5491" | ".5492$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5493print"</td>\n".5494"</tr>\n";5495}54965497print"</table>\n";5498}54995500if($searchtypeeq'grep') {5501 git_print_page_nav('','',$hash,$co{'tree'},$hash);5502 git_print_header_div('commit', esc_html($co{'title'}),$hash);55035504print"<table class=\"grep_search\">\n";5505my$alternate=1;5506my$matches=0;5507$/="\n";5508open my$fd,"-|", git_cmd(),'grep','-n',5509$search_use_regexp? ('-E','-i') :'-F',5510$searchtext,$co{'tree'};5511my$lastfile='';5512while(my$line= <$fd>) {5513chomp$line;5514my($file,$lno,$ltext,$binary);5515last if($matches++>1000);5516if($line=~/^Binary file (.+) matches$/) {5517$file=$1;5518$binary=1;5519}else{5520(undef,$file,$lno,$ltext) =split(/:/,$line,4);5521}5522if($filene$lastfile) {5523$lastfileand print"</td></tr>\n";5524if($alternate++) {5525print"<tr class=\"dark\">\n";5526}else{5527print"<tr class=\"light\">\n";5528}5529print"<td class=\"list\">".5530$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},5531 file_name=>"$file"),5532-class=>"list"}, esc_path($file));5533print"</td><td>\n";5534$lastfile=$file;5535}5536if($binary) {5537print"<div class=\"binary\">Binary file</div>\n";5538}else{5539$ltext= untabify($ltext);5540if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {5541$ltext= esc_html($1, -nbsp=>1);5542$ltext.='<span class="match">';5543$ltext.= esc_html($2, -nbsp=>1);5544$ltext.='</span>';5545$ltext.= esc_html($3, -nbsp=>1);5546}else{5547$ltext= esc_html($ltext, -nbsp=>1);5548}5549print"<div class=\"pre\">".5550$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},5551 file_name=>"$file").'#l'.$lno,5552-class=>"linenr"},sprintf('%4i',$lno))5553.' '.$ltext."</div>\n";5554}5555}5556if($lastfile) {5557print"</td></tr>\n";5558if($matches>1000) {5559print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";5560}5561}else{5562print"<div class=\"diff nodifferences\">No matches found</div>\n";5563}5564close$fd;55655566print"</table>\n";5567}5568 git_footer_html();5569}55705571sub git_search_help {5572 git_header_html();5573 git_print_page_nav('','',$hash,$hash,$hash);5574print<<EOT;5575<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without5576regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,5577the pattern entered is recognized as the POSIX extended5578<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case5579insensitive).</p>5580<dl>5581<dt><b>commit</b></dt>5582<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>5583EOT5584my($have_grep) = gitweb_check_feature('grep');5585if($have_grep) {5586print<<EOT;5587<dt><b>grep</b></dt>5588<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing5589 a different one) are searched for the given pattern. On large trees, this search can take5590a while and put some strain on the server, so please use it with some consideration. Note that5591due to git-grep peculiarity, currently if regexp mode is turned off, the matches are5592case-sensitive.</dd>5593EOT5594}5595print<<EOT;5596<dt><b>author</b></dt>5597<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>5598<dt><b>committer</b></dt>5599<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>5600EOT5601my($have_pickaxe) = gitweb_check_feature('pickaxe');5602if($have_pickaxe) {5603print<<EOT;5604<dt><b>pickaxe</b></dt>5605<dd>All commits that caused the string to appear or disappear from any file (changes that5606added, removed or "modified" the string) will be listed. This search can take a while and5607takes a lot of strain on the server, so please use it wisely. Note that since you may be5608interested even in changes just changing the case as well, this search is case sensitive.</dd>5609EOT5610}5611print"</dl>\n";5612 git_footer_html();5613}56145615sub git_shortlog {5616my$head= git_get_head_hash($project);5617if(!defined$hash) {5618$hash=$head;5619}5620if(!defined$page) {5621$page=0;5622}5623my$refs= git_get_references();56245625my$commit_hash=$hash;5626if(defined$hash_parent) {5627$commit_hash="$hash_parent..$hash";5628}5629my@commitlist= parse_commits($commit_hash,101, (100*$page));56305631my$paging_nav= format_paging_nav('shortlog',$hash,$head,$page,$#commitlist>=100);5632my$next_link='';5633if($#commitlist>=100) {5634$next_link=5635$cgi->a({-href => href(-replay=>1, page=>$page+1),5636-accesskey =>"n", -title =>"Alt-n"},"next");5637}56385639 git_header_html();5640 git_print_page_nav('shortlog','',$hash,$hash,$hash,$paging_nav);5641 git_print_header_div('summary',$project);56425643 git_shortlog_body(\@commitlist,0,99,$refs,$next_link);56445645 git_footer_html();5646}56475648## ......................................................................5649## feeds (RSS, Atom; OPML)56505651sub git_feed {5652my$format=shift||'atom';5653my($have_blame) = gitweb_check_feature('blame');56545655# Atom: http://www.atomenabled.org/developers/syndication/5656# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ5657if($formatne'rss'&&$formatne'atom') {5658 die_error(400,"Unknown web feed format");5659}56605661# log/feed of current (HEAD) branch, log of given branch, history of file/directory5662my$head=$hash||'HEAD';5663my@commitlist= parse_commits($head,150,0,$file_name);56645665my%latest_commit;5666my%latest_date;5667my$content_type="application/$format+xml";5668if(defined$cgi->http('HTTP_ACCEPT') &&5669$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {5670# browser (feed reader) prefers text/xml5671$content_type='text/xml';5672}5673if(defined($commitlist[0])) {5674%latest_commit= %{$commitlist[0]};5675%latest_date= parse_date($latest_commit{'author_epoch'});5676print$cgi->header(5677-type =>$content_type,5678-charset =>'utf-8',5679-last_modified =>$latest_date{'rfc2822'});5680}else{5681print$cgi->header(5682-type =>$content_type,5683-charset =>'utf-8');5684}56855686# Optimization: skip generating the body if client asks only5687# for Last-Modified date.5688return if($cgi->request_method()eq'HEAD');56895690# header variables5691my$title="$site_name-$project/$action";5692my$feed_type='log';5693if(defined$hash) {5694$title.=" - '$hash'";5695$feed_type='branch log';5696if(defined$file_name) {5697$title.=" ::$file_name";5698$feed_type='history';5699}5700}elsif(defined$file_name) {5701$title.=" -$file_name";5702$feed_type='history';5703}5704$title.="$feed_type";5705my$descr= git_get_project_description($project);5706if(defined$descr) {5707$descr= esc_html($descr);5708}else{5709$descr="$project".5710($formateq'rss'?'RSS':'Atom') .5711" feed";5712}5713my$owner= git_get_project_owner($project);5714$owner= esc_html($owner);57155716#header5717my$alt_url;5718if(defined$file_name) {5719$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);5720}elsif(defined$hash) {5721$alt_url= href(-full=>1, action=>"log", hash=>$hash);5722}else{5723$alt_url= href(-full=>1, action=>"summary");5724}5725print qq!<?xml version="1.0" encoding="utf-8"?>\n!;5726if($formateq'rss') {5727print<<XML;5728<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">5729<channel>5730XML5731print"<title>$title</title>\n".5732"<link>$alt_url</link>\n".5733"<description>$descr</description>\n".5734"<language>en</language>\n";5735}elsif($formateq'atom') {5736print<<XML;5737<feed xmlns="http://www.w3.org/2005/Atom">5738XML5739print"<title>$title</title>\n".5740"<subtitle>$descr</subtitle>\n".5741'<link rel="alternate" type="text/html" href="'.5742$alt_url.'" />'."\n".5743'<link rel="self" type="'.$content_type.'" href="'.5744$cgi->self_url() .'" />'."\n".5745"<id>". href(-full=>1) ."</id>\n".5746# use project owner for feed author5747"<author><name>$owner</name></author>\n";5748if(defined$favicon) {5749print"<icon>". esc_url($favicon) ."</icon>\n";5750}5751if(defined$logo_url) {5752# not twice as wide as tall: 72 x 27 pixels5753print"<logo>". esc_url($logo) ."</logo>\n";5754}5755if(!%latest_date) {5756# dummy date to keep the feed valid until commits trickle in:5757print"<updated>1970-01-01T00:00:00Z</updated>\n";5758}else{5759print"<updated>$latest_date{'iso-8601'}</updated>\n";5760}5761}57625763# contents5764for(my$i=0;$i<=$#commitlist;$i++) {5765my%co= %{$commitlist[$i]};5766my$commit=$co{'id'};5767# we read 150, we always show 30 and the ones more recent than 48 hours5768if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {5769last;5770}5771my%cd= parse_date($co{'author_epoch'});57725773# get list of changed files5774open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,5775$co{'parent'} ||"--root",5776$co{'id'},"--", (defined$file_name?$file_name: ())5777ornext;5778my@difftree=map{chomp;$_} <$fd>;5779close$fd5780ornext;57815782# print element (entry, item)5783my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);5784if($formateq'rss') {5785print"<item>\n".5786"<title>". esc_html($co{'title'}) ."</title>\n".5787"<author>". esc_html($co{'author'}) ."</author>\n".5788"<pubDate>$cd{'rfc2822'}</pubDate>\n".5789"<guid isPermaLink=\"true\">$co_url</guid>\n".5790"<link>$co_url</link>\n".5791"<description>". esc_html($co{'title'}) ."</description>\n".5792"<content:encoded>".5793"<![CDATA[\n";5794}elsif($formateq'atom') {5795print"<entry>\n".5796"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".5797"<updated>$cd{'iso-8601'}</updated>\n".5798"<author>\n".5799" <name>". esc_html($co{'author_name'}) ."</name>\n";5800if($co{'author_email'}) {5801print" <email>". esc_html($co{'author_email'}) ."</email>\n";5802}5803print"</author>\n".5804# use committer for contributor5805"<contributor>\n".5806" <name>". esc_html($co{'committer_name'}) ."</name>\n";5807if($co{'committer_email'}) {5808print" <email>". esc_html($co{'committer_email'}) ."</email>\n";5809}5810print"</contributor>\n".5811"<published>$cd{'iso-8601'}</published>\n".5812"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".5813"<id>$co_url</id>\n".5814"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".5815"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";5816}5817my$comment=$co{'comment'};5818print"<pre>\n";5819foreachmy$line(@$comment) {5820$line= esc_html($line);5821print"$line\n";5822}5823print"</pre><ul>\n";5824foreachmy$difftree_line(@difftree) {5825my%difftree= parse_difftree_raw_line($difftree_line);5826next if!$difftree{'from_id'};58275828my$file=$difftree{'file'} ||$difftree{'to_file'};58295830print"<li>".5831"[".5832$cgi->a({-href => href(-full=>1, action=>"blobdiff",5833 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},5834 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},5835 file_name=>$file, file_parent=>$difftree{'from_file'}),5836-title =>"diff"},'D');5837if($have_blame) {5838print$cgi->a({-href => href(-full=>1, action=>"blame",5839 file_name=>$file, hash_base=>$commit),5840-title =>"blame"},'B');5841}5842# if this is not a feed of a file history5843if(!defined$file_name||$file_namene$file) {5844print$cgi->a({-href => href(-full=>1, action=>"history",5845 file_name=>$file, hash=>$commit),5846-title =>"history"},'H');5847}5848$file= esc_path($file);5849print"] ".5850"$file</li>\n";5851}5852if($formateq'rss') {5853print"</ul>]]>\n".5854"</content:encoded>\n".5855"</item>\n";5856}elsif($formateq'atom') {5857print"</ul>\n</div>\n".5858"</content>\n".5859"</entry>\n";5860}5861}58625863# end of feed5864if($formateq'rss') {5865print"</channel>\n</rss>\n";5866}elsif($formateq'atom') {5867print"</feed>\n";5868}5869}58705871sub git_rss {5872 git_feed('rss');5873}58745875sub git_atom {5876 git_feed('atom');5877}58785879sub git_opml {5880my@list= git_get_projects_list();58815882print$cgi->header(-type =>'text/xml', -charset =>'utf-8');5883print<<XML;5884<?xml version="1.0" encoding="utf-8"?>5885<opml version="1.0">5886<head>5887 <title>$site_nameOPML Export</title>5888</head>5889<body>5890<outline text="git RSS feeds">5891XML58925893foreachmy$pr(@list) {5894my%proj=%$pr;5895my$head= git_get_head_hash($proj{'path'});5896if(!defined$head) {5897next;5898}5899$git_dir="$projectroot/$proj{'path'}";5900my%co= parse_commit($head);5901if(!%co) {5902next;5903}59045905my$path= esc_html(chop_str($proj{'path'},25,5));5906my$rss="$my_url?p=$proj{'path'};a=rss";5907my$html="$my_url?p=$proj{'path'};a=summary";5908print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";5909}5910print<<XML;5911</outline>5912</body>5913</opml>5914XML5915}