1#!/usr/bin/perl 2 3# gitweb - simple web interface to track changes in git repositories 4# 5# (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org> 6# (C) 2005, Christian Gierke 7# 8# This program is licensed under the GPLv2 9 10use5.008; 11use strict; 12use warnings; 13use CGI qw(:standard :escapeHTML -nosticky); 14use CGI::Util qw(unescape); 15use CGI::Carp qw(fatalsToBrowser set_message); 16use Encode; 17use Fcntl ':mode'; 18use File::Find qw(); 19use File::Basename qw(basename); 20use Time::HiRes qw(gettimeofday tv_interval); 21binmode STDOUT,':utf8'; 22 23our$t0= [ gettimeofday() ]; 24our$number_of_git_cmds=0; 25 26BEGIN{ 27 CGI->compile()if$ENV{'MOD_PERL'}; 28} 29 30our$version="++GIT_VERSION++"; 31 32our($my_url,$my_uri,$base_url,$path_info,$home_link); 33sub evaluate_uri { 34our$cgi; 35 36our$my_url=$cgi->url(); 37our$my_uri=$cgi->url(-absolute =>1); 38 39# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 40# needed and used only for URLs with nonempty PATH_INFO 41our$base_url=$my_url; 42 43# When the script is used as DirectoryIndex, the URL does not contain the name 44# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 45# have to do it ourselves. We make $path_info global because it's also used 46# later on. 47# 48# Another issue with the script being the DirectoryIndex is that the resulting 49# $my_url data is not the full script URL: this is good, because we want 50# generated links to keep implying the script name if it wasn't explicitly 51# indicated in the URL we're handling, but it means that $my_url cannot be used 52# as base URL. 53# Therefore, if we needed to strip PATH_INFO, then we know that we have 54# to build the base URL ourselves: 55our$path_info=$ENV{"PATH_INFO"}; 56if($path_info) { 57if($my_url=~ s,\Q$path_info\E$,, && 58$my_uri=~ s,\Q$path_info\E$,, && 59defined$ENV{'SCRIPT_NAME'}) { 60$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 61} 62} 63 64# target of the home link on top of all pages 65our$home_link=$my_uri||"/"; 66} 67 68# core git executable to use 69# this can just be "git" if your webserver has a sensible PATH 70our$GIT="++GIT_BINDIR++/git"; 71 72# absolute fs-path which will be prepended to the project path 73#our $projectroot = "/pub/scm"; 74our$projectroot="++GITWEB_PROJECTROOT++"; 75 76# fs traversing limit for getting project list 77# the number is relative to the projectroot 78our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 79 80# string of the home link on top of all pages 81our$home_link_str="++GITWEB_HOME_LINK_STR++"; 82 83# name of your site or organization to appear in page titles 84# replace this with something more descriptive for clearer bookmarks 85our$site_name="++GITWEB_SITENAME++" 86|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 87 88# filename of html text to include at top of each page 89our$site_header="++GITWEB_SITE_HEADER++"; 90# html text to include at home page 91our$home_text="++GITWEB_HOMETEXT++"; 92# filename of html text to include at bottom of each page 93our$site_footer="++GITWEB_SITE_FOOTER++"; 94 95# URI of stylesheets 96our@stylesheets= ("++GITWEB_CSS++"); 97# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 98our$stylesheet=undef; 99# URI of GIT logo (72x27 size) 100our$logo="++GITWEB_LOGO++"; 101# URI of GIT favicon, assumed to be image/png type 102our$favicon="++GITWEB_FAVICON++"; 103# URI of gitweb.js (JavaScript code for gitweb) 104our$javascript="++GITWEB_JS++"; 105 106# URI and label (title) of GIT logo link 107#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 108#our $logo_label = "git documentation"; 109our$logo_url="http://git-scm.com/"; 110our$logo_label="git homepage"; 111 112# source of projects list 113our$projects_list="++GITWEB_LIST++"; 114 115# the width (in characters) of the projects list "Description" column 116our$projects_list_description_width=25; 117 118# default order of projects list 119# valid values are none, project, descr, owner, and age 120our$default_projects_order="project"; 121 122# show repository only if this file exists 123# (only effective if this variable evaluates to true) 124our$export_ok="++GITWEB_EXPORT_OK++"; 125 126# show repository only if this subroutine returns true 127# when given the path to the project, for example: 128# sub { return -e "$_[0]/git-daemon-export-ok"; } 129our$export_auth_hook=undef; 130 131# only allow viewing of repositories also shown on the overview page 132our$strict_export="++GITWEB_STRICT_EXPORT++"; 133 134# list of git base URLs used for URL to where fetch project from, 135# i.e. full URL is "$git_base_url/$project" 136our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 137 138# default blob_plain mimetype and default charset for text/plain blob 139our$default_blob_plain_mimetype='text/plain'; 140our$default_text_plain_charset=undef; 141 142# file to use for guessing MIME types before trying /etc/mime.types 143# (relative to the current git repository) 144our$mimetypes_file=undef; 145 146# assume this charset if line contains non-UTF-8 characters; 147# it should be valid encoding (see Encoding::Supported(3pm) for list), 148# for which encoding all byte sequences are valid, for example 149# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 150# could be even 'utf-8' for the old behavior) 151our$fallback_encoding='latin1'; 152 153# rename detection options for git-diff and git-diff-tree 154# - default is '-M', with the cost proportional to 155# (number of removed files) * (number of new files). 156# - more costly is '-C' (which implies '-M'), with the cost proportional to 157# (number of changed files + number of removed files) * (number of new files) 158# - even more costly is '-C', '--find-copies-harder' with cost 159# (number of files in the original tree) * (number of new files) 160# - one might want to include '-B' option, e.g. '-B', '-M' 161our@diff_opts= ('-M');# taken from git_commit 162 163# Disables features that would allow repository owners to inject script into 164# the gitweb domain. 165our$prevent_xss=0; 166 167# Path to the highlight executable to use (must be the one from 168# http://www.andre-simon.de due to assumptions about parameters and output). 169# Useful if highlight is not installed on your webserver's PATH. 170# [Default: highlight] 171our$highlight_bin="++HIGHLIGHT_BIN++"; 172 173# information about snapshot formats that gitweb is capable of serving 174our%known_snapshot_formats= ( 175# name => { 176# 'display' => display name, 177# 'type' => mime type, 178# 'suffix' => filename suffix, 179# 'format' => --format for git-archive, 180# 'compressor' => [compressor command and arguments] 181# (array reference, optional) 182# 'disabled' => boolean (optional)} 183# 184'tgz'=> { 185'display'=>'tar.gz', 186'type'=>'application/x-gzip', 187'suffix'=>'.tar.gz', 188'format'=>'tar', 189'compressor'=> ['gzip']}, 190 191'tbz2'=> { 192'display'=>'tar.bz2', 193'type'=>'application/x-bzip2', 194'suffix'=>'.tar.bz2', 195'format'=>'tar', 196'compressor'=> ['bzip2']}, 197 198'txz'=> { 199'display'=>'tar.xz', 200'type'=>'application/x-xz', 201'suffix'=>'.tar.xz', 202'format'=>'tar', 203'compressor'=> ['xz'], 204'disabled'=>1}, 205 206'zip'=> { 207'display'=>'zip', 208'type'=>'application/x-zip', 209'suffix'=>'.zip', 210'format'=>'zip'}, 211); 212 213# Aliases so we understand old gitweb.snapshot values in repository 214# configuration. 215our%known_snapshot_format_aliases= ( 216'gzip'=>'tgz', 217'bzip2'=>'tbz2', 218'xz'=>'txz', 219 220# backward compatibility: legacy gitweb config support 221'x-gzip'=>undef,'gz'=>undef, 222'x-bzip2'=>undef,'bz2'=>undef, 223'x-zip'=>undef,''=>undef, 224); 225 226# Pixel sizes for icons and avatars. If the default font sizes or lineheights 227# are changed, it may be appropriate to change these values too via 228# $GITWEB_CONFIG. 229our%avatar_size= ( 230'default'=>16, 231'double'=>32 232); 233 234# Used to set the maximum load that we will still respond to gitweb queries. 235# If server load exceed this value then return "503 server busy" error. 236# If gitweb cannot determined server load, it is taken to be 0. 237# Leave it undefined (or set to 'undef') to turn off load checking. 238our$maxload=300; 239 240# configuration for 'highlight' (http://www.andre-simon.de/) 241# match by basename 242our%highlight_basename= ( 243#'Program' => 'py', 244#'Library' => 'py', 245'SConstruct'=>'py',# SCons equivalent of Makefile 246'Makefile'=>'make', 247); 248# match by extension 249our%highlight_ext= ( 250# main extensions, defining name of syntax; 251# see files in /usr/share/highlight/langDefs/ directory 252map{$_=>$_} 253qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make), 254# alternate extensions, see /etc/highlight/filetypes.conf 255'h'=>'c', 256map{$_=>'sh'}qw(bash zsh ksh), 257map{$_=>'cpp'}qw(cxx c++ cc), 258map{$_=>'php'}qw(php3 php4 php5 phps), 259map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 260map{$_=>'make'}qw(mak mk), 261map{$_=>'xml'}qw(xhtml html htm), 262); 263 264# You define site-wide feature defaults here; override them with 265# $GITWEB_CONFIG as necessary. 266our%feature= ( 267# feature => { 268# 'sub' => feature-sub (subroutine), 269# 'override' => allow-override (boolean), 270# 'default' => [ default options...] (array reference)} 271# 272# if feature is overridable (it means that allow-override has true value), 273# then feature-sub will be called with default options as parameters; 274# return value of feature-sub indicates if to enable specified feature 275# 276# if there is no 'sub' key (no feature-sub), then feature cannot be 277# overridden 278# 279# use gitweb_get_feature(<feature>) to retrieve the <feature> value 280# (an array) or gitweb_check_feature(<feature>) to check if <feature> 281# is enabled 282 283# Enable the 'blame' blob view, showing the last commit that modified 284# each line in the file. This can be very CPU-intensive. 285 286# To enable system wide have in $GITWEB_CONFIG 287# $feature{'blame'}{'default'} = [1]; 288# To have project specific config enable override in $GITWEB_CONFIG 289# $feature{'blame'}{'override'} = 1; 290# and in project config gitweb.blame = 0|1; 291'blame'=> { 292'sub'=>sub{ feature_bool('blame',@_) }, 293'override'=>0, 294'default'=> [0]}, 295 296# Enable the 'snapshot' link, providing a compressed archive of any 297# tree. This can potentially generate high traffic if you have large 298# project. 299 300# Value is a list of formats defined in %known_snapshot_formats that 301# you wish to offer. 302# To disable system wide have in $GITWEB_CONFIG 303# $feature{'snapshot'}{'default'} = []; 304# To have project specific config enable override in $GITWEB_CONFIG 305# $feature{'snapshot'}{'override'} = 1; 306# and in project config, a comma-separated list of formats or "none" 307# to disable. Example: gitweb.snapshot = tbz2,zip; 308'snapshot'=> { 309'sub'=> \&feature_snapshot, 310'override'=>0, 311'default'=> ['tgz']}, 312 313# Enable text search, which will list the commits which match author, 314# committer or commit text to a given string. Enabled by default. 315# Project specific override is not supported. 316'search'=> { 317'override'=>0, 318'default'=> [1]}, 319 320# Enable grep search, which will list the files in currently selected 321# tree containing the given string. Enabled by default. This can be 322# potentially CPU-intensive, of course. 323 324# To enable system wide have in $GITWEB_CONFIG 325# $feature{'grep'}{'default'} = [1]; 326# To have project specific config enable override in $GITWEB_CONFIG 327# $feature{'grep'}{'override'} = 1; 328# and in project config gitweb.grep = 0|1; 329'grep'=> { 330'sub'=>sub{ feature_bool('grep',@_) }, 331'override'=>0, 332'default'=> [1]}, 333 334# Enable the pickaxe search, which will list the commits that modified 335# a given string in a file. This can be practical and quite faster 336# alternative to 'blame', but still potentially CPU-intensive. 337 338# To enable system wide have in $GITWEB_CONFIG 339# $feature{'pickaxe'}{'default'} = [1]; 340# To have project specific config enable override in $GITWEB_CONFIG 341# $feature{'pickaxe'}{'override'} = 1; 342# and in project config gitweb.pickaxe = 0|1; 343'pickaxe'=> { 344'sub'=>sub{ feature_bool('pickaxe',@_) }, 345'override'=>0, 346'default'=> [1]}, 347 348# Enable showing size of blobs in a 'tree' view, in a separate 349# column, similar to what 'ls -l' does. This cost a bit of IO. 350 351# To disable system wide have in $GITWEB_CONFIG 352# $feature{'show-sizes'}{'default'} = [0]; 353# To have project specific config enable override in $GITWEB_CONFIG 354# $feature{'show-sizes'}{'override'} = 1; 355# and in project config gitweb.showsizes = 0|1; 356'show-sizes'=> { 357'sub'=>sub{ feature_bool('showsizes',@_) }, 358'override'=>0, 359'default'=> [1]}, 360 361# Make gitweb use an alternative format of the URLs which can be 362# more readable and natural-looking: project name is embedded 363# directly in the path and the query string contains other 364# auxiliary information. All gitweb installations recognize 365# URL in either format; this configures in which formats gitweb 366# generates links. 367 368# To enable system wide have in $GITWEB_CONFIG 369# $feature{'pathinfo'}{'default'} = [1]; 370# Project specific override is not supported. 371 372# Note that you will need to change the default location of CSS, 373# favicon, logo and possibly other files to an absolute URL. Also, 374# if gitweb.cgi serves as your indexfile, you will need to force 375# $my_uri to contain the script name in your $GITWEB_CONFIG. 376'pathinfo'=> { 377'override'=>0, 378'default'=> [0]}, 379 380# Make gitweb consider projects in project root subdirectories 381# to be forks of existing projects. Given project $projname.git, 382# projects matching $projname/*.git will not be shown in the main 383# projects list, instead a '+' mark will be added to $projname 384# there and a 'forks' view will be enabled for the project, listing 385# all the forks. If project list is taken from a file, forks have 386# to be listed after the main project. 387 388# To enable system wide have in $GITWEB_CONFIG 389# $feature{'forks'}{'default'} = [1]; 390# Project specific override is not supported. 391'forks'=> { 392'override'=>0, 393'default'=> [0]}, 394 395# Insert custom links to the action bar of all project pages. 396# This enables you mainly to link to third-party scripts integrating 397# into gitweb; e.g. git-browser for graphical history representation 398# or custom web-based repository administration interface. 399 400# The 'default' value consists of a list of triplets in the form 401# (label, link, position) where position is the label after which 402# to insert the link and link is a format string where %n expands 403# to the project name, %f to the project path within the filesystem, 404# %h to the current hash (h gitweb parameter) and %b to the current 405# hash base (hb gitweb parameter); %% expands to %. 406 407# To enable system wide have in $GITWEB_CONFIG e.g. 408# $feature{'actions'}{'default'} = [('graphiclog', 409# '/git-browser/by-commit.html?r=%n', 'summary')]; 410# Project specific override is not supported. 411'actions'=> { 412'override'=>0, 413'default'=> []}, 414 415# Allow gitweb scan project content tags described in ctags/ 416# of project repository, and display the popular Web 2.0-ish 417# "tag cloud" near the project list. Note that this is something 418# COMPLETELY different from the normal Git tags. 419 420# gitweb by itself can show existing tags, but it does not handle 421# tagging itself; you need an external application for that. 422# For an example script, check Girocco's cgi/tagproj.cgi. 423# You may want to install the HTML::TagCloud Perl module to get 424# a pretty tag cloud instead of just a list of tags. 425 426# To enable system wide have in $GITWEB_CONFIG 427# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 428# Project specific override is not supported. 429'ctags'=> { 430'override'=>0, 431'default'=> [0]}, 432 433# The maximum number of patches in a patchset generated in patch 434# view. Set this to 0 or undef to disable patch view, or to a 435# negative number to remove any limit. 436 437# To disable system wide have in $GITWEB_CONFIG 438# $feature{'patches'}{'default'} = [0]; 439# To have project specific config enable override in $GITWEB_CONFIG 440# $feature{'patches'}{'override'} = 1; 441# and in project config gitweb.patches = 0|n; 442# where n is the maximum number of patches allowed in a patchset. 443'patches'=> { 444'sub'=> \&feature_patches, 445'override'=>0, 446'default'=> [16]}, 447 448# Avatar support. When this feature is enabled, views such as 449# shortlog or commit will display an avatar associated with 450# the email of the committer(s) and/or author(s). 451 452# Currently available providers are gravatar and picon. 453# If an unknown provider is specified, the feature is disabled. 454 455# Gravatar depends on Digest::MD5. 456# Picon currently relies on the indiana.edu database. 457 458# To enable system wide have in $GITWEB_CONFIG 459# $feature{'avatar'}{'default'} = ['<provider>']; 460# where <provider> is either gravatar or picon. 461# To have project specific config enable override in $GITWEB_CONFIG 462# $feature{'avatar'}{'override'} = 1; 463# and in project config gitweb.avatar = <provider>; 464'avatar'=> { 465'sub'=> \&feature_avatar, 466'override'=>0, 467'default'=> ['']}, 468 469# Enable displaying how much time and how many git commands 470# it took to generate and display page. Disabled by default. 471# Project specific override is not supported. 472'timed'=> { 473'override'=>0, 474'default'=> [0]}, 475 476# Enable turning some links into links to actions which require 477# JavaScript to run (like 'blame_incremental'). Not enabled by 478# default. Project specific override is currently not supported. 479'javascript-actions'=> { 480'override'=>0, 481'default'=> [0]}, 482 483# Syntax highlighting support. This is based on Daniel Svensson's 484# and Sham Chukoury's work in gitweb-xmms2.git. 485# It requires the 'highlight' program present in $PATH, 486# and therefore is disabled by default. 487 488# To enable system wide have in $GITWEB_CONFIG 489# $feature{'highlight'}{'default'} = [1]; 490 491'highlight'=> { 492'sub'=>sub{ feature_bool('highlight',@_) }, 493'override'=>0, 494'default'=> [0]}, 495 496# Enable displaying of remote heads in the heads list 497 498# To enable system wide have in $GITWEB_CONFIG 499# $feature{'remote_heads'}{'default'} = [1]; 500# To have project specific config enable override in $GITWEB_CONFIG 501# $feature{'remote_heads'}{'override'} = 1; 502# and in project config gitweb.remote_heads = 0|1; 503'remote_heads'=> { 504'sub'=>sub{ feature_bool('remote_heads',@_) }, 505'override'=>0, 506'default'=> [0]}, 507); 508 509sub gitweb_get_feature { 510my($name) =@_; 511return unlessexists$feature{$name}; 512my($sub,$override,@defaults) = ( 513$feature{$name}{'sub'}, 514$feature{$name}{'override'}, 515@{$feature{$name}{'default'}}); 516# project specific override is possible only if we have project 517our$git_dir;# global variable, declared later 518if(!$override|| !defined$git_dir) { 519return@defaults; 520} 521if(!defined$sub) { 522warn"feature$nameis not overridable"; 523return@defaults; 524} 525return$sub->(@defaults); 526} 527 528# A wrapper to check if a given feature is enabled. 529# With this, you can say 530# 531# my $bool_feat = gitweb_check_feature('bool_feat'); 532# gitweb_check_feature('bool_feat') or somecode; 533# 534# instead of 535# 536# my ($bool_feat) = gitweb_get_feature('bool_feat'); 537# (gitweb_get_feature('bool_feat'))[0] or somecode; 538# 539sub gitweb_check_feature { 540return(gitweb_get_feature(@_))[0]; 541} 542 543 544sub feature_bool { 545my$key=shift; 546my($val) = git_get_project_config($key,'--bool'); 547 548if(!defined$val) { 549return($_[0]); 550}elsif($valeq'true') { 551return(1); 552}elsif($valeq'false') { 553return(0); 554} 555} 556 557sub feature_snapshot { 558my(@fmts) =@_; 559 560my($val) = git_get_project_config('snapshot'); 561 562if($val) { 563@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 564} 565 566return@fmts; 567} 568 569sub feature_patches { 570my@val= (git_get_project_config('patches','--int')); 571 572if(@val) { 573return@val; 574} 575 576return($_[0]); 577} 578 579sub feature_avatar { 580my@val= (git_get_project_config('avatar')); 581 582return@val?@val:@_; 583} 584 585# checking HEAD file with -e is fragile if the repository was 586# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 587# and then pruned. 588sub check_head_link { 589my($dir) =@_; 590my$headfile="$dir/HEAD"; 591return((-e $headfile) || 592(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 593} 594 595sub check_export_ok { 596my($dir) =@_; 597return(check_head_link($dir) && 598(!$export_ok|| -e "$dir/$export_ok") && 599(!$export_auth_hook||$export_auth_hook->($dir))); 600} 601 602# process alternate names for backward compatibility 603# filter out unsupported (unknown) snapshot formats 604sub filter_snapshot_fmts { 605my@fmts=@_; 606 607@fmts=map{ 608exists$known_snapshot_format_aliases{$_} ? 609$known_snapshot_format_aliases{$_} :$_}@fmts; 610@fmts=grep{ 611exists$known_snapshot_formats{$_} && 612!$known_snapshot_formats{$_}{'disabled'}}@fmts; 613} 614 615# If it is set to code reference, it is code that it is to be run once per 616# request, allowing updating configurations that change with each request, 617# while running other code in config file only once. 618# 619# Otherwise, if it is false then gitweb would process config file only once; 620# if it is true then gitweb config would be run for each request. 621our$per_request_config=1; 622 623our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 624sub evaluate_gitweb_config { 625our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 626our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 627# die if there are errors parsing config file 628if(-e $GITWEB_CONFIG) { 629do$GITWEB_CONFIG; 630die$@if$@; 631}elsif(-e $GITWEB_CONFIG_SYSTEM) { 632do$GITWEB_CONFIG_SYSTEM; 633die$@if$@; 634} 635} 636 637# Get loadavg of system, to compare against $maxload. 638# Currently it requires '/proc/loadavg' present to get loadavg; 639# if it is not present it returns 0, which means no load checking. 640sub get_loadavg { 641if( -e '/proc/loadavg'){ 642open my$fd,'<','/proc/loadavg' 643orreturn0; 644my@load=split(/\s+/,scalar<$fd>); 645close$fd; 646 647# The first three columns measure CPU and IO utilization of the last one, 648# five, and 10 minute periods. The fourth column shows the number of 649# currently running processes and the total number of processes in the m/n 650# format. The last column displays the last process ID used. 651return$load[0] ||0; 652} 653# additional checks for load average should go here for things that don't export 654# /proc/loadavg 655 656return0; 657} 658 659# version of the core git binary 660our$git_version; 661sub evaluate_git_version { 662our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 663$number_of_git_cmds++; 664} 665 666sub check_loadavg { 667if(defined$maxload&& get_loadavg() >$maxload) { 668 die_error(503,"The load average on the server is too high"); 669} 670} 671 672# ====================================================================== 673# input validation and dispatch 674 675# input parameters can be collected from a variety of sources (presently, CGI 676# and PATH_INFO), so we define an %input_params hash that collects them all 677# together during validation: this allows subsequent uses (e.g. href()) to be 678# agnostic of the parameter origin 679 680our%input_params= (); 681 682# input parameters are stored with the long parameter name as key. This will 683# also be used in the href subroutine to convert parameters to their CGI 684# equivalent, and since the href() usage is the most frequent one, we store 685# the name -> CGI key mapping here, instead of the reverse. 686# 687# XXX: Warning: If you touch this, check the search form for updating, 688# too. 689 690our@cgi_param_mapping= ( 691 project =>"p", 692 action =>"a", 693 file_name =>"f", 694 file_parent =>"fp", 695 hash =>"h", 696 hash_parent =>"hp", 697 hash_base =>"hb", 698 hash_parent_base =>"hpb", 699 page =>"pg", 700 order =>"o", 701 searchtext =>"s", 702 searchtype =>"st", 703 snapshot_format =>"sf", 704 extra_options =>"opt", 705 search_use_regexp =>"sr", 706# this must be last entry (for manipulation from JavaScript) 707 javascript =>"js" 708); 709our%cgi_param_mapping=@cgi_param_mapping; 710 711# we will also need to know the possible actions, for validation 712our%actions= ( 713"blame"=> \&git_blame, 714"blame_incremental"=> \&git_blame_incremental, 715"blame_data"=> \&git_blame_data, 716"blobdiff"=> \&git_blobdiff, 717"blobdiff_plain"=> \&git_blobdiff_plain, 718"blob"=> \&git_blob, 719"blob_plain"=> \&git_blob_plain, 720"commitdiff"=> \&git_commitdiff, 721"commitdiff_plain"=> \&git_commitdiff_plain, 722"commit"=> \&git_commit, 723"forks"=> \&git_forks, 724"heads"=> \&git_heads, 725"history"=> \&git_history, 726"log"=> \&git_log, 727"patch"=> \&git_patch, 728"patches"=> \&git_patches, 729"remotes"=> \&git_remotes, 730"rss"=> \&git_rss, 731"atom"=> \&git_atom, 732"search"=> \&git_search, 733"search_help"=> \&git_search_help, 734"shortlog"=> \&git_shortlog, 735"summary"=> \&git_summary, 736"tag"=> \&git_tag, 737"tags"=> \&git_tags, 738"tree"=> \&git_tree, 739"snapshot"=> \&git_snapshot, 740"object"=> \&git_object, 741# those below don't need $project 742"opml"=> \&git_opml, 743"project_list"=> \&git_project_list, 744"project_index"=> \&git_project_index, 745); 746 747# finally, we have the hash of allowed extra_options for the commands that 748# allow them 749our%allowed_options= ( 750"--no-merges"=> [qw(rss atom log shortlog history)], 751); 752 753# fill %input_params with the CGI parameters. All values except for 'opt' 754# should be single values, but opt can be an array. We should probably 755# build an array of parameters that can be multi-valued, but since for the time 756# being it's only this one, we just single it out 757sub evaluate_query_params { 758our$cgi; 759 760while(my($name,$symbol) =each%cgi_param_mapping) { 761if($symboleq'opt') { 762$input_params{$name} = [$cgi->param($symbol) ]; 763}else{ 764$input_params{$name} =$cgi->param($symbol); 765} 766} 767} 768 769# now read PATH_INFO and update the parameter list for missing parameters 770sub evaluate_path_info { 771return ifdefined$input_params{'project'}; 772return if!$path_info; 773$path_info=~ s,^/+,,; 774return if!$path_info; 775 776# find which part of PATH_INFO is project 777my$project=$path_info; 778$project=~ s,/+$,,; 779while($project&& !check_head_link("$projectroot/$project")) { 780$project=~ s,/*[^/]*$,,; 781} 782return unless$project; 783$input_params{'project'} =$project; 784 785# do not change any parameters if an action is given using the query string 786return if$input_params{'action'}; 787$path_info=~ s,^\Q$project\E/*,,; 788 789# next, check if we have an action 790my$action=$path_info; 791$action=~ s,/.*$,,; 792if(exists$actions{$action}) { 793$path_info=~ s,^$action/*,,; 794$input_params{'action'} =$action; 795} 796 797# list of actions that want hash_base instead of hash, but can have no 798# pathname (f) parameter 799my@wants_base= ( 800'tree', 801'history', 802); 803 804# we want to catch, among others 805# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 806my($parentrefname,$parentpathname,$refname,$pathname) = 807($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 808 809# first, analyze the 'current' part 810if(defined$pathname) { 811# we got "branch:filename" or "branch:dir/" 812# we could use git_get_type(branch:pathname), but: 813# - it needs $git_dir 814# - it does a git() call 815# - the convention of terminating directories with a slash 816# makes it superfluous 817# - embedding the action in the PATH_INFO would make it even 818# more superfluous 819$pathname=~ s,^/+,,; 820if(!$pathname||substr($pathname, -1)eq"/") { 821$input_params{'action'} ||="tree"; 822$pathname=~ s,/$,,; 823}else{ 824# the default action depends on whether we had parent info 825# or not 826if($parentrefname) { 827$input_params{'action'} ||="blobdiff_plain"; 828}else{ 829$input_params{'action'} ||="blob_plain"; 830} 831} 832$input_params{'hash_base'} ||=$refname; 833$input_params{'file_name'} ||=$pathname; 834}elsif(defined$refname) { 835# we got "branch". In this case we have to choose if we have to 836# set hash or hash_base. 837# 838# Most of the actions without a pathname only want hash to be 839# set, except for the ones specified in @wants_base that want 840# hash_base instead. It should also be noted that hand-crafted 841# links having 'history' as an action and no pathname or hash 842# set will fail, but that happens regardless of PATH_INFO. 843if(defined$parentrefname) { 844# if there is parent let the default be 'shortlog' action 845# (for http://git.example.com/repo.git/A..B links); if there 846# is no parent, dispatch will detect type of object and set 847# action appropriately if required (if action is not set) 848$input_params{'action'} ||="shortlog"; 849} 850if($input_params{'action'} && 851grep{$_eq$input_params{'action'} }@wants_base) { 852$input_params{'hash_base'} ||=$refname; 853}else{ 854$input_params{'hash'} ||=$refname; 855} 856} 857 858# next, handle the 'parent' part, if present 859if(defined$parentrefname) { 860# a missing pathspec defaults to the 'current' filename, allowing e.g. 861# someproject/blobdiff/oldrev..newrev:/filename 862if($parentpathname) { 863$parentpathname=~ s,^/+,,; 864$parentpathname=~ s,/$,,; 865$input_params{'file_parent'} ||=$parentpathname; 866}else{ 867$input_params{'file_parent'} ||=$input_params{'file_name'}; 868} 869# we assume that hash_parent_base is wanted if a path was specified, 870# or if the action wants hash_base instead of hash 871if(defined$input_params{'file_parent'} || 872grep{$_eq$input_params{'action'} }@wants_base) { 873$input_params{'hash_parent_base'} ||=$parentrefname; 874}else{ 875$input_params{'hash_parent'} ||=$parentrefname; 876} 877} 878 879# for the snapshot action, we allow URLs in the form 880# $project/snapshot/$hash.ext 881# where .ext determines the snapshot and gets removed from the 882# passed $refname to provide the $hash. 883# 884# To be able to tell that $refname includes the format extension, we 885# require the following two conditions to be satisfied: 886# - the hash input parameter MUST have been set from the $refname part 887# of the URL (i.e. they must be equal) 888# - the snapshot format MUST NOT have been defined already (e.g. from 889# CGI parameter sf) 890# It's also useless to try any matching unless $refname has a dot, 891# so we check for that too 892if(defined$input_params{'action'} && 893$input_params{'action'}eq'snapshot'&& 894defined$refname&&index($refname,'.') != -1&& 895$refnameeq$input_params{'hash'} && 896!defined$input_params{'snapshot_format'}) { 897# We loop over the known snapshot formats, checking for 898# extensions. Allowed extensions are both the defined suffix 899# (which includes the initial dot already) and the snapshot 900# format key itself, with a prepended dot 901while(my($fmt,$opt) =each%known_snapshot_formats) { 902my$hash=$refname; 903unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 904next; 905} 906my$sfx=$1; 907# a valid suffix was found, so set the snapshot format 908# and reset the hash parameter 909$input_params{'snapshot_format'} =$fmt; 910$input_params{'hash'} =$hash; 911# we also set the format suffix to the one requested 912# in the URL: this way a request for e.g. .tgz returns 913# a .tgz instead of a .tar.gz 914$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 915last; 916} 917} 918} 919 920our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 921$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 922$searchtext,$search_regexp); 923sub evaluate_and_validate_params { 924our$action=$input_params{'action'}; 925if(defined$action) { 926if(!validate_action($action)) { 927 die_error(400,"Invalid action parameter"); 928} 929} 930 931# parameters which are pathnames 932our$project=$input_params{'project'}; 933if(defined$project) { 934if(!validate_project($project)) { 935undef$project; 936 die_error(404,"No such project"); 937} 938} 939 940our$file_name=$input_params{'file_name'}; 941if(defined$file_name) { 942if(!validate_pathname($file_name)) { 943 die_error(400,"Invalid file parameter"); 944} 945} 946 947our$file_parent=$input_params{'file_parent'}; 948if(defined$file_parent) { 949if(!validate_pathname($file_parent)) { 950 die_error(400,"Invalid file parent parameter"); 951} 952} 953 954# parameters which are refnames 955our$hash=$input_params{'hash'}; 956if(defined$hash) { 957if(!validate_refname($hash)) { 958 die_error(400,"Invalid hash parameter"); 959} 960} 961 962our$hash_parent=$input_params{'hash_parent'}; 963if(defined$hash_parent) { 964if(!validate_refname($hash_parent)) { 965 die_error(400,"Invalid hash parent parameter"); 966} 967} 968 969our$hash_base=$input_params{'hash_base'}; 970if(defined$hash_base) { 971if(!validate_refname($hash_base)) { 972 die_error(400,"Invalid hash base parameter"); 973} 974} 975 976our@extra_options= @{$input_params{'extra_options'}}; 977# @extra_options is always defined, since it can only be (currently) set from 978# CGI, and $cgi->param() returns the empty array in array context if the param 979# is not set 980foreachmy$opt(@extra_options) { 981if(not exists$allowed_options{$opt}) { 982 die_error(400,"Invalid option parameter"); 983} 984if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 985 die_error(400,"Invalid option parameter for this action"); 986} 987} 988 989our$hash_parent_base=$input_params{'hash_parent_base'}; 990if(defined$hash_parent_base) { 991if(!validate_refname($hash_parent_base)) { 992 die_error(400,"Invalid hash parent base parameter"); 993} 994} 995 996# other parameters 997our$page=$input_params{'page'}; 998if(defined$page) { 999if($page=~m/[^0-9]/) {1000 die_error(400,"Invalid page parameter");1001}1002}10031004our$searchtype=$input_params{'searchtype'};1005if(defined$searchtype) {1006if($searchtype=~m/[^a-z]/) {1007 die_error(400,"Invalid searchtype parameter");1008}1009}10101011our$search_use_regexp=$input_params{'search_use_regexp'};10121013our$searchtext=$input_params{'searchtext'};1014our$search_regexp;1015if(defined$searchtext) {1016if(length($searchtext) <2) {1017 die_error(403,"At least two characters are required for search parameter");1018}1019$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1020}1021}10221023# path to the current git repository1024our$git_dir;1025sub evaluate_git_dir {1026our$git_dir="$projectroot/$project"if$project;1027}10281029our(@snapshot_fmts,$git_avatar);1030sub configure_gitweb_features {1031# list of supported snapshot formats1032our@snapshot_fmts= gitweb_get_feature('snapshot');1033@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10341035# check that the avatar feature is set to a known provider name,1036# and for each provider check if the dependencies are satisfied.1037# if the provider name is invalid or the dependencies are not met,1038# reset $git_avatar to the empty string.1039our($git_avatar) = gitweb_get_feature('avatar');1040if($git_avatareq'gravatar') {1041$git_avatar=''unless(eval{require Digest::MD5;1; });1042}elsif($git_avatareq'picon') {1043# no dependencies1044}else{1045$git_avatar='';1046}1047}10481049# custom error handler: 'die <message>' is Internal Server Error1050sub handle_errors_html {1051my$msg=shift;# it is already HTML escaped10521053# to avoid infinite loop where error occurs in die_error,1054# change handler to default handler, disabling handle_errors_html1055 set_message("Error occured when inside die_error:\n$msg");10561057# you cannot jump out of die_error when called as error handler;1058# the subroutine set via CGI::Carp::set_message is called _after_1059# HTTP headers are already written, so it cannot write them itself1060 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1061}1062set_message(\&handle_errors_html);10631064# dispatch1065sub dispatch {1066if(!defined$action) {1067if(defined$hash) {1068$action= git_get_type($hash);1069}elsif(defined$hash_base&&defined$file_name) {1070$action= git_get_type("$hash_base:$file_name");1071}elsif(defined$project) {1072$action='summary';1073}else{1074$action='project_list';1075}1076}1077if(!defined($actions{$action})) {1078 die_error(400,"Unknown action");1079}1080if($action!~m/^(?:opml|project_list|project_index)$/&&1081!$project) {1082 die_error(400,"Project needed");1083}1084$actions{$action}->();1085}10861087sub reset_timer {1088our$t0= [ gettimeofday() ]1089ifdefined$t0;1090our$number_of_git_cmds=0;1091}10921093our$first_request=1;1094sub run_request {1095 reset_timer();10961097 evaluate_uri();1098if($first_request) {1099 evaluate_gitweb_config();1100 evaluate_git_version();1101}1102if($per_request_config) {1103if(ref($per_request_config)eq'CODE') {1104$per_request_config->();1105}elsif(!$first_request) {1106 evaluate_gitweb_config();1107}1108}1109 check_loadavg();11101111# $projectroot and $projects_list might be set in gitweb config file1112$projects_list||=$projectroot;11131114 evaluate_query_params();1115 evaluate_path_info();1116 evaluate_and_validate_params();1117 evaluate_git_dir();11181119 configure_gitweb_features();11201121 dispatch();1122}11231124our$is_last_request=sub{1};1125our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1126our$CGI='CGI';1127our$cgi;1128sub configure_as_fcgi {1129require CGI::Fast;1130our$CGI='CGI::Fast';11311132my$request_number=0;1133# let each child service 100 requests1134our$is_last_request=sub{ ++$request_number>100};1135}1136sub evaluate_argv {1137my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1138 configure_as_fcgi()1139if$script_name=~/\.fcgi$/;11401141return unless(@ARGV);11421143require Getopt::Long;1144 Getopt::Long::GetOptions(1145'fastcgi|fcgi|f'=> \&configure_as_fcgi,1146'nproc|n=i'=>sub{1147my($arg,$val) =@_;1148return unlesseval{require FCGI::ProcManager;1; };1149my$proc_manager= FCGI::ProcManager->new({1150 n_processes =>$val,1151});1152our$pre_listen_hook=sub{$proc_manager->pm_manage() };1153our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1154our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1155},1156);1157}11581159sub run {1160 evaluate_argv();11611162$first_request=1;1163$pre_listen_hook->()1164if$pre_listen_hook;11651166 REQUEST:1167while($cgi=$CGI->new()) {1168$pre_dispatch_hook->()1169if$pre_dispatch_hook;11701171 run_request();11721173$post_dispatch_hook->()1174if$post_dispatch_hook;1175$first_request=0;11761177last REQUEST if($is_last_request->());1178}11791180 DONE_GITWEB:11811;1182}11831184run();11851186if(defined caller) {1187# wrapped in a subroutine processing requests,1188# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1189return;1190}else{1191# pure CGI script, serving single request1192exit;1193}11941195## ======================================================================1196## action links11971198# possible values of extra options1199# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1200# -replay => 1 - start from a current view (replay with modifications)1201# -path_info => 0|1 - don't use/use path_info URL (if possible)1202# -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone1203sub href {1204my%params=@_;1205# default is to use -absolute url() i.e. $my_uri1206my$href=$params{-full} ?$my_url:$my_uri;12071208# implicit -replay, must be first of implicit params1209$params{-replay} =1if(keys%params==1&&$params{-anchor});12101211$params{'project'} =$projectunlessexists$params{'project'};12121213if($params{-replay}) {1214while(my($name,$symbol) =each%cgi_param_mapping) {1215if(!exists$params{$name}) {1216$params{$name} =$input_params{$name};1217}1218}1219}12201221my$use_pathinfo= gitweb_check_feature('pathinfo');1222if(defined$params{'project'} &&1223(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1224# try to put as many parameters as possible in PATH_INFO:1225# - project name1226# - action1227# - hash_parent or hash_parent_base:/file_parent1228# - hash or hash_base:/filename1229# - the snapshot_format as an appropriate suffix12301231# When the script is the root DirectoryIndex for the domain,1232# $href here would be something like http://gitweb.example.com/1233# Thus, we strip any trailing / from $href, to spare us double1234# slashes in the final URL1235$href=~ s,/$,,;12361237# Then add the project name, if present1238$href.="/".esc_path_info($params{'project'});1239delete$params{'project'};12401241# since we destructively absorb parameters, we keep this1242# boolean that remembers if we're handling a snapshot1243my$is_snapshot=$params{'action'}eq'snapshot';12441245# Summary just uses the project path URL, any other action is1246# added to the URL1247if(defined$params{'action'}) {1248$href.="/".esc_path_info($params{'action'})1249unless$params{'action'}eq'summary';1250delete$params{'action'};1251}12521253# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1254# stripping nonexistent or useless pieces1255$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1256||$params{'hash_parent'} ||$params{'hash'});1257if(defined$params{'hash_base'}) {1258if(defined$params{'hash_parent_base'}) {1259$href.= esc_path_info($params{'hash_parent_base'});1260# skip the file_parent if it's the same as the file_name1261if(defined$params{'file_parent'}) {1262if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1263delete$params{'file_parent'};1264}elsif($params{'file_parent'} !~/\.\./) {1265$href.=":/".esc_path_info($params{'file_parent'});1266delete$params{'file_parent'};1267}1268}1269$href.="..";1270delete$params{'hash_parent'};1271delete$params{'hash_parent_base'};1272}elsif(defined$params{'hash_parent'}) {1273$href.= esc_path_info($params{'hash_parent'})."..";1274delete$params{'hash_parent'};1275}12761277$href.= esc_path_info($params{'hash_base'});1278if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1279$href.=":/".esc_path_info($params{'file_name'});1280delete$params{'file_name'};1281}1282delete$params{'hash'};1283delete$params{'hash_base'};1284}elsif(defined$params{'hash'}) {1285$href.= esc_path_info($params{'hash'});1286delete$params{'hash'};1287}12881289# If the action was a snapshot, we can absorb the1290# snapshot_format parameter too1291if($is_snapshot) {1292my$fmt=$params{'snapshot_format'};1293# snapshot_format should always be defined when href()1294# is called, but just in case some code forgets, we1295# fall back to the default1296$fmt||=$snapshot_fmts[0];1297$href.=$known_snapshot_formats{$fmt}{'suffix'};1298delete$params{'snapshot_format'};1299}1300}13011302# now encode the parameters explicitly1303my@result= ();1304for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1305my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1306if(defined$params{$name}) {1307if(ref($params{$name})eq"ARRAY") {1308foreachmy$par(@{$params{$name}}) {1309push@result,$symbol."=". esc_param($par);1310}1311}else{1312push@result,$symbol."=". esc_param($params{$name});1313}1314}1315}1316$href.="?".join(';',@result)ifscalar@result;13171318# final transformation: trailing spaces must be escaped (URI-encoded)1319$href=~s/(\s+)$/CGI::escape($1)/e;13201321if($params{-anchor}) {1322$href.="#".esc_param($params{-anchor});1323}13241325return$href;1326}132713281329## ======================================================================1330## validation, quoting/unquoting and escaping13311332sub validate_action {1333my$input=shift||returnundef;1334returnundefunlessexists$actions{$input};1335return$input;1336}13371338sub validate_project {1339my$input=shift||returnundef;1340if(!validate_pathname($input) ||1341!(-d "$projectroot/$input") ||1342!check_export_ok("$projectroot/$input") ||1343($strict_export&& !project_in_list($input))) {1344returnundef;1345}else{1346return$input;1347}1348}13491350sub validate_pathname {1351my$input=shift||returnundef;13521353# no '.' or '..' as elements of path, i.e. no '.' nor '..'1354# at the beginning, at the end, and between slashes.1355# also this catches doubled slashes1356if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1357returnundef;1358}1359# no null characters1360if($input=~m!\0!) {1361returnundef;1362}1363return$input;1364}13651366sub validate_refname {1367my$input=shift||returnundef;13681369# textual hashes are O.K.1370if($input=~m/^[0-9a-fA-F]{40}$/) {1371return$input;1372}1373# it must be correct pathname1374$input= validate_pathname($input)1375orreturnundef;1376# restrictions on ref name according to git-check-ref-format1377if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1378returnundef;1379}1380return$input;1381}13821383# decode sequences of octets in utf8 into Perl's internal form,1384# which is utf-8 with utf8 flag set if needed. gitweb writes out1385# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1386sub to_utf8 {1387my$str=shift;1388returnundefunlessdefined$str;1389if(utf8::valid($str)) {1390 utf8::decode($str);1391return$str;1392}else{1393return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1394}1395}13961397# quote unsafe chars, but keep the slash, even when it's not1398# correct, but quoted slashes look too horrible in bookmarks1399sub esc_param {1400my$str=shift;1401returnundefunlessdefined$str;1402$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1403$str=~s/ /\+/g;1404return$str;1405}14061407# the quoting rules for path_info fragment are slightly different1408sub esc_path_info {1409my$str=shift;1410returnundefunlessdefined$str;14111412# path_info doesn't treat '+' as space (specially), but '?' must be escaped1413$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;14141415return$str;1416}14171418# quote unsafe chars in whole URL, so some characters cannot be quoted1419sub esc_url {1420my$str=shift;1421returnundefunlessdefined$str;1422$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1423$str=~s/ /\+/g;1424return$str;1425}14261427# quote unsafe characters in HTML attributes1428sub esc_attr {14291430# for XHTML conformance escaping '"' to '"' is not enough1431return esc_html(@_);1432}14331434# replace invalid utf8 character with SUBSTITUTION sequence1435sub esc_html {1436my$str=shift;1437my%opts=@_;14381439returnundefunlessdefined$str;14401441$str= to_utf8($str);1442$str=$cgi->escapeHTML($str);1443if($opts{'-nbsp'}) {1444$str=~s/ / /g;1445}1446$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1447return$str;1448}14491450# quote control characters and escape filename to HTML1451sub esc_path {1452my$str=shift;1453my%opts=@_;14541455returnundefunlessdefined$str;14561457$str= to_utf8($str);1458$str=$cgi->escapeHTML($str);1459if($opts{'-nbsp'}) {1460$str=~s/ / /g;1461}1462$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1463return$str;1464}14651466# Make control characters "printable", using character escape codes (CEC)1467sub quot_cec {1468my$cntrl=shift;1469my%opts=@_;1470my%es= (# character escape codes, aka escape sequences1471"\t"=>'\t',# tab (HT)1472"\n"=>'\n',# line feed (LF)1473"\r"=>'\r',# carrige return (CR)1474"\f"=>'\f',# form feed (FF)1475"\b"=>'\b',# backspace (BS)1476"\a"=>'\a',# alarm (bell) (BEL)1477"\e"=>'\e',# escape (ESC)1478"\013"=>'\v',# vertical tab (VT)1479"\000"=>'\0',# nul character (NUL)1480);1481my$chr= ( (exists$es{$cntrl})1482?$es{$cntrl}1483:sprintf('\%2x',ord($cntrl)) );1484if($opts{-nohtml}) {1485return$chr;1486}else{1487return"<span class=\"cntrl\">$chr</span>";1488}1489}14901491# Alternatively use unicode control pictures codepoints,1492# Unicode "printable representation" (PR)1493sub quot_upr {1494my$cntrl=shift;1495my%opts=@_;14961497my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1498if($opts{-nohtml}) {1499return$chr;1500}else{1501return"<span class=\"cntrl\">$chr</span>";1502}1503}15041505# git may return quoted and escaped filenames1506sub unquote {1507my$str=shift;15081509sub unq {1510my$seq=shift;1511my%es= (# character escape codes, aka escape sequences1512't'=>"\t",# tab (HT, TAB)1513'n'=>"\n",# newline (NL)1514'r'=>"\r",# return (CR)1515'f'=>"\f",# form feed (FF)1516'b'=>"\b",# backspace (BS)1517'a'=>"\a",# alarm (bell) (BEL)1518'e'=>"\e",# escape (ESC)1519'v'=>"\013",# vertical tab (VT)1520);15211522if($seq=~m/^[0-7]{1,3}$/) {1523# octal char sequence1524returnchr(oct($seq));1525}elsif(exists$es{$seq}) {1526# C escape sequence, aka character escape code1527return$es{$seq};1528}1529# quoted ordinary character1530return$seq;1531}15321533if($str=~m/^"(.*)"$/) {1534# needs unquoting1535$str=$1;1536$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1537}1538return$str;1539}15401541# escape tabs (convert tabs to spaces)1542sub untabify {1543my$line=shift;15441545while((my$pos=index($line,"\t")) != -1) {1546if(my$count= (8- ($pos%8))) {1547my$spaces=' ' x $count;1548$line=~s/\t/$spaces/;1549}1550}15511552return$line;1553}15541555sub project_in_list {1556my$project=shift;1557my@list= git_get_projects_list();1558return@list&&scalar(grep{$_->{'path'}eq$project}@list);1559}15601561## ----------------------------------------------------------------------1562## HTML aware string manipulation15631564# Try to chop given string on a word boundary between position1565# $len and $len+$add_len. If there is no word boundary there,1566# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1567# (marking chopped part) would be longer than given string.1568sub chop_str {1569my$str=shift;1570my$len=shift;1571my$add_len=shift||10;1572my$where=shift||'right';# 'left' | 'center' | 'right'15731574# Make sure perl knows it is utf8 encoded so we don't1575# cut in the middle of a utf8 multibyte char.1576$str= to_utf8($str);15771578# allow only $len chars, but don't cut a word if it would fit in $add_len1579# if it doesn't fit, cut it if it's still longer than the dots we would add1580# remove chopped character entities entirely15811582# when chopping in the middle, distribute $len into left and right part1583# return early if chopping wouldn't make string shorter1584if($whereeq'center') {1585return$strif($len+5>=length($str));# filler is length 51586$len=int($len/2);1587}else{1588return$strif($len+4>=length($str));# filler is length 41589}15901591# regexps: ending and beginning with word part up to $add_len1592my$endre=qr/.{$len}\w{0,$add_len}/;1593my$begre=qr/\w{0,$add_len}.{$len}/;15941595if($whereeq'left') {1596$str=~m/^(.*?)($begre)$/;1597my($lead,$body) = ($1,$2);1598if(length($lead) >4) {1599$lead=" ...";1600}1601return"$lead$body";16021603}elsif($whereeq'center') {1604$str=~m/^($endre)(.*)$/;1605my($left,$str) = ($1,$2);1606$str=~m/^(.*?)($begre)$/;1607my($mid,$right) = ($1,$2);1608if(length($mid) >5) {1609$mid=" ... ";1610}1611return"$left$mid$right";16121613}else{1614$str=~m/^($endre)(.*)$/;1615my$body=$1;1616my$tail=$2;1617if(length($tail) >4) {1618$tail="... ";1619}1620return"$body$tail";1621}1622}16231624# takes the same arguments as chop_str, but also wraps a <span> around the1625# result with a title attribute if it does get chopped. Additionally, the1626# string is HTML-escaped.1627sub chop_and_escape_str {1628my($str) =@_;16291630my$chopped= chop_str(@_);1631if($choppedeq$str) {1632return esc_html($chopped);1633}else{1634$str=~s/[[:cntrl:]]/?/g;1635return$cgi->span({-title=>$str}, esc_html($chopped));1636}1637}16381639## ----------------------------------------------------------------------1640## functions returning short strings16411642# CSS class for given age value (in seconds)1643sub age_class {1644my$age=shift;16451646if(!defined$age) {1647return"noage";1648}elsif($age<60*60*2) {1649return"age0";1650}elsif($age<60*60*24*2) {1651return"age1";1652}else{1653return"age2";1654}1655}16561657# convert age in seconds to "nn units ago" string1658sub age_string {1659my$age=shift;1660my$age_str;16611662if($age>60*60*24*365*2) {1663$age_str= (int$age/60/60/24/365);1664$age_str.=" years ago";1665}elsif($age>60*60*24*(365/12)*2) {1666$age_str=int$age/60/60/24/(365/12);1667$age_str.=" months ago";1668}elsif($age>60*60*24*7*2) {1669$age_str=int$age/60/60/24/7;1670$age_str.=" weeks ago";1671}elsif($age>60*60*24*2) {1672$age_str=int$age/60/60/24;1673$age_str.=" days ago";1674}elsif($age>60*60*2) {1675$age_str=int$age/60/60;1676$age_str.=" hours ago";1677}elsif($age>60*2) {1678$age_str=int$age/60;1679$age_str.=" min ago";1680}elsif($age>2) {1681$age_str=int$age;1682$age_str.=" sec ago";1683}else{1684$age_str.=" right now";1685}1686return$age_str;1687}16881689useconstant{1690 S_IFINVALID =>0030000,1691 S_IFGITLINK =>0160000,1692};16931694# submodule/subproject, a commit object reference1695sub S_ISGITLINK {1696my$mode=shift;16971698return(($mode& S_IFMT) == S_IFGITLINK)1699}17001701# convert file mode in octal to symbolic file mode string1702sub mode_str {1703my$mode=oct shift;17041705if(S_ISGITLINK($mode)) {1706return'm---------';1707}elsif(S_ISDIR($mode& S_IFMT)) {1708return'drwxr-xr-x';1709}elsif(S_ISLNK($mode)) {1710return'lrwxrwxrwx';1711}elsif(S_ISREG($mode)) {1712# git cares only about the executable bit1713if($mode& S_IXUSR) {1714return'-rwxr-xr-x';1715}else{1716return'-rw-r--r--';1717};1718}else{1719return'----------';1720}1721}17221723# convert file mode in octal to file type string1724sub file_type {1725my$mode=shift;17261727if($mode!~m/^[0-7]+$/) {1728return$mode;1729}else{1730$mode=oct$mode;1731}17321733if(S_ISGITLINK($mode)) {1734return"submodule";1735}elsif(S_ISDIR($mode& S_IFMT)) {1736return"directory";1737}elsif(S_ISLNK($mode)) {1738return"symlink";1739}elsif(S_ISREG($mode)) {1740return"file";1741}else{1742return"unknown";1743}1744}17451746# convert file mode in octal to file type description string1747sub file_type_long {1748my$mode=shift;17491750if($mode!~m/^[0-7]+$/) {1751return$mode;1752}else{1753$mode=oct$mode;1754}17551756if(S_ISGITLINK($mode)) {1757return"submodule";1758}elsif(S_ISDIR($mode& S_IFMT)) {1759return"directory";1760}elsif(S_ISLNK($mode)) {1761return"symlink";1762}elsif(S_ISREG($mode)) {1763if($mode& S_IXUSR) {1764return"executable";1765}else{1766return"file";1767};1768}else{1769return"unknown";1770}1771}177217731774## ----------------------------------------------------------------------1775## functions returning short HTML fragments, or transforming HTML fragments1776## which don't belong to other sections17771778# format line of commit message.1779sub format_log_line_html {1780my$line=shift;17811782$line= esc_html($line, -nbsp=>1);1783$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1784$cgi->a({-href => href(action=>"object", hash=>$1),1785-class=>"text"},$1);1786}eg;17871788return$line;1789}17901791# format marker of refs pointing to given object17921793# the destination action is chosen based on object type and current context:1794# - for annotated tags, we choose the tag view unless it's the current view1795# already, in which case we go to shortlog view1796# - for other refs, we keep the current view if we're in history, shortlog or1797# log view, and select shortlog otherwise1798sub format_ref_marker {1799my($refs,$id) =@_;1800my$markers='';18011802if(defined$refs->{$id}) {1803foreachmy$ref(@{$refs->{$id}}) {1804# this code exploits the fact that non-lightweight tags are the1805# only indirect objects, and that they are the only objects for which1806# we want to use tag instead of shortlog as action1807my($type,$name) =qw();1808my$indirect= ($ref=~s/\^\{\}$//);1809# e.g. tags/v2.6.11 or heads/next1810if($ref=~m!^(.*?)s?/(.*)$!) {1811$type=$1;1812$name=$2;1813}else{1814$type="ref";1815$name=$ref;1816}18171818my$class=$type;1819$class.=" indirect"if$indirect;18201821my$dest_action="shortlog";18221823if($indirect) {1824$dest_action="tag"unless$actioneq"tag";1825}elsif($action=~/^(history|(short)?log)$/) {1826$dest_action=$action;1827}18281829my$dest="";1830$dest.="refs/"unless$ref=~ m!^refs/!;1831$dest.=$ref;18321833my$link=$cgi->a({1834-href => href(1835 action=>$dest_action,1836 hash=>$dest1837)},$name);18381839$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".1840$link."</span>";1841}1842}18431844if($markers) {1845return' <span class="refs">'.$markers.'</span>';1846}else{1847return"";1848}1849}18501851# format, perhaps shortened and with markers, title line1852sub format_subject_html {1853my($long,$short,$href,$extra) =@_;1854$extra=''unlessdefined($extra);18551856if(length($short) <length($long)) {1857$long=~s/[[:cntrl:]]/?/g;1858return$cgi->a({-href =>$href, -class=>"list subject",1859-title => to_utf8($long)},1860 esc_html($short)) .$extra;1861}else{1862return$cgi->a({-href =>$href, -class=>"list subject"},1863 esc_html($long)) .$extra;1864}1865}18661867# Rather than recomputing the url for an email multiple times, we cache it1868# after the first hit. This gives a visible benefit in views where the avatar1869# for the same email is used repeatedly (e.g. shortlog).1870# The cache is shared by all avatar engines (currently gravatar only), which1871# are free to use it as preferred. Since only one avatar engine is used for any1872# given page, there's no risk for cache conflicts.1873our%avatar_cache= ();18741875# Compute the picon url for a given email, by using the picon search service over at1876# http://www.cs.indiana.edu/picons/search.html1877sub picon_url {1878my$email=lc shift;1879if(!$avatar_cache{$email}) {1880my($user,$domain) =split('@',$email);1881$avatar_cache{$email} =1882"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1883"$domain/$user/".1884"users+domains+unknown/up/single";1885}1886return$avatar_cache{$email};1887}18881889# Compute the gravatar url for a given email, if it's not in the cache already.1890# Gravatar stores only the part of the URL before the size, since that's the1891# one computationally more expensive. This also allows reuse of the cache for1892# different sizes (for this particular engine).1893sub gravatar_url {1894my$email=lc shift;1895my$size=shift;1896$avatar_cache{$email} ||=1897"http://www.gravatar.com/avatar/".1898 Digest::MD5::md5_hex($email) ."?s=";1899return$avatar_cache{$email} .$size;1900}19011902# Insert an avatar for the given $email at the given $size if the feature1903# is enabled.1904sub git_get_avatar {1905my($email,%opts) =@_;1906my$pre_white= ($opts{-pad_before} ?" ":"");1907my$post_white= ($opts{-pad_after} ?" ":"");1908$opts{-size} ||='default';1909my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1910my$url="";1911if($git_avatareq'gravatar') {1912$url= gravatar_url($email,$size);1913}elsif($git_avatareq'picon') {1914$url= picon_url($email);1915}1916# Other providers can be added by extending the if chain, defining $url1917# as needed. If no variant puts something in $url, we assume avatars1918# are completely disabled/unavailable.1919if($url) {1920return$pre_white.1921"<img width=\"$size\"".1922"class=\"avatar\"".1923"src=\"".esc_url($url)."\"".1924"alt=\"\"".1925"/>".$post_white;1926}else{1927return"";1928}1929}19301931sub format_search_author {1932my($author,$searchtype,$displaytext) =@_;1933my$have_search= gitweb_check_feature('search');19341935if($have_search) {1936my$performed="";1937if($searchtypeeq'author') {1938$performed="authored";1939}elsif($searchtypeeq'committer') {1940$performed="committed";1941}19421943return$cgi->a({-href => href(action=>"search", hash=>$hash,1944 searchtext=>$author,1945 searchtype=>$searchtype),class=>"list",1946 title=>"Search for commits$performedby$author"},1947$displaytext);19481949}else{1950return$displaytext;1951}1952}19531954# format the author name of the given commit with the given tag1955# the author name is chopped and escaped according to the other1956# optional parameters (see chop_str).1957sub format_author_html {1958my$tag=shift;1959my$co=shift;1960my$author= chop_and_escape_str($co->{'author_name'},@_);1961return"<$tagclass=\"author\">".1962 format_search_author($co->{'author_name'},"author",1963 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1964$author) .1965"</$tag>";1966}19671968# format git diff header line, i.e. "diff --(git|combined|cc) ..."1969sub format_git_diff_header_line {1970my$line=shift;1971my$diffinfo=shift;1972my($from,$to) =@_;19731974if($diffinfo->{'nparents'}) {1975# combined diff1976$line=~s!^(diff (.*?) )"?.*$!$1!;1977if($to->{'href'}) {1978$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1979 esc_path($to->{'file'}));1980}else{# file was deleted (no href)1981$line.= esc_path($to->{'file'});1982}1983}else{1984# "ordinary" diff1985$line=~s!^(diff (.*?) )"?a/.*$!$1!;1986if($from->{'href'}) {1987$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1988'a/'. esc_path($from->{'file'}));1989}else{# file was added (no href)1990$line.='a/'. esc_path($from->{'file'});1991}1992$line.=' ';1993if($to->{'href'}) {1994$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1995'b/'. esc_path($to->{'file'}));1996}else{# file was deleted1997$line.='b/'. esc_path($to->{'file'});1998}1999}20002001return"<div class=\"diff header\">$line</div>\n";2002}20032004# format extended diff header line, before patch itself2005sub format_extended_diff_header_line {2006my$line=shift;2007my$diffinfo=shift;2008my($from,$to) =@_;20092010# match <path>2011if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {2012$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},2013 esc_path($from->{'file'}));2014}2015if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {2016$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},2017 esc_path($to->{'file'}));2018}2019# match single <mode>2020if($line=~m/\s(\d{6})$/) {2021$line.='<span class="info"> ('.2022 file_type_long($1) .2023')</span>';2024}2025# match <hash>2026if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {2027# can match only for combined diff2028$line='index ';2029for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2030if($from->{'href'}[$i]) {2031$line.=$cgi->a({-href=>$from->{'href'}[$i],2032-class=>"hash"},2033substr($diffinfo->{'from_id'}[$i],0,7));2034}else{2035$line.='0' x 7;2036}2037# separator2038$line.=','if($i<$diffinfo->{'nparents'} -1);2039}2040$line.='..';2041if($to->{'href'}) {2042$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2043substr($diffinfo->{'to_id'},0,7));2044}else{2045$line.='0' x 7;2046}20472048}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2049# can match only for ordinary diff2050my($from_link,$to_link);2051if($from->{'href'}) {2052$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2053substr($diffinfo->{'from_id'},0,7));2054}else{2055$from_link='0' x 7;2056}2057if($to->{'href'}) {2058$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2059substr($diffinfo->{'to_id'},0,7));2060}else{2061$to_link='0' x 7;2062}2063my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2064$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2065}20662067return$line."<br/>\n";2068}20692070# format from-file/to-file diff header2071sub format_diff_from_to_header {2072my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2073my$line;2074my$result='';20752076$line=$from_line;2077#assert($line =~ m/^---/) if DEBUG;2078# no extra formatting for "^--- /dev/null"2079if(!$diffinfo->{'nparents'}) {2080# ordinary (single parent) diff2081if($line=~m!^--- "?a/!) {2082if($from->{'href'}) {2083$line='--- a/'.2084$cgi->a({-href=>$from->{'href'}, -class=>"path"},2085 esc_path($from->{'file'}));2086}else{2087$line='--- a/'.2088 esc_path($from->{'file'});2089}2090}2091$result.= qq!<div class="diff from_file">$line</div>\n!;20922093}else{2094# combined diff (merge commit)2095for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2096if($from->{'href'}[$i]) {2097$line='--- '.2098$cgi->a({-href=>href(action=>"blobdiff",2099 hash_parent=>$diffinfo->{'from_id'}[$i],2100 hash_parent_base=>$parents[$i],2101 file_parent=>$from->{'file'}[$i],2102 hash=>$diffinfo->{'to_id'},2103 hash_base=>$hash,2104 file_name=>$to->{'file'}),2105-class=>"path",2106-title=>"diff". ($i+1)},2107$i+1) .2108'/'.2109$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2110 esc_path($from->{'file'}[$i]));2111}else{2112$line='--- /dev/null';2113}2114$result.= qq!<div class="diff from_file">$line</div>\n!;2115}2116}21172118$line=$to_line;2119#assert($line =~ m/^\+\+\+/) if DEBUG;2120# no extra formatting for "^+++ /dev/null"2121if($line=~m!^\+\+\+ "?b/!) {2122if($to->{'href'}) {2123$line='+++ b/'.2124$cgi->a({-href=>$to->{'href'}, -class=>"path"},2125 esc_path($to->{'file'}));2126}else{2127$line='+++ b/'.2128 esc_path($to->{'file'});2129}2130}2131$result.= qq!<div class="diff to_file">$line</div>\n!;21322133return$result;2134}21352136# create note for patch simplified by combined diff2137sub format_diff_cc_simplified {2138my($diffinfo,@parents) =@_;2139my$result='';21402141$result.="<div class=\"diff header\">".2142"diff --cc ";2143if(!is_deleted($diffinfo)) {2144$result.=$cgi->a({-href => href(action=>"blob",2145 hash_base=>$hash,2146 hash=>$diffinfo->{'to_id'},2147 file_name=>$diffinfo->{'to_file'}),2148-class=>"path"},2149 esc_path($diffinfo->{'to_file'}));2150}else{2151$result.= esc_path($diffinfo->{'to_file'});2152}2153$result.="</div>\n".# class="diff header"2154"<div class=\"diff nodifferences\">".2155"Simple merge".2156"</div>\n";# class="diff nodifferences"21572158return$result;2159}21602161# format patch (diff) line (not to be used for diff headers)2162sub format_diff_line {2163my$line=shift;2164my($from,$to) =@_;2165my$diff_class="";21662167chomp$line;21682169if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2170# combined diff2171my$prefix=substr($line,0,scalar@{$from->{'href'}});2172if($line=~m/^\@{3}/) {2173$diff_class=" chunk_header";2174}elsif($line=~m/^\\/) {2175$diff_class=" incomplete";2176}elsif($prefix=~tr/+/+/) {2177$diff_class=" add";2178}elsif($prefix=~tr/-/-/) {2179$diff_class=" rem";2180}2181}else{2182# assume ordinary diff2183my$char=substr($line,0,1);2184if($chareq'+') {2185$diff_class=" add";2186}elsif($chareq'-') {2187$diff_class=" rem";2188}elsif($chareq'@') {2189$diff_class=" chunk_header";2190}elsif($chareq"\\") {2191$diff_class=" incomplete";2192}2193}2194$line= untabify($line);2195if($from&&$to&&$line=~m/^\@{2} /) {2196my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2197$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21982199$from_lines=0unlessdefined$from_lines;2200$to_lines=0unlessdefined$to_lines;22012202if($from->{'href'}) {2203$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2204-class=>"list"},$from_text);2205}2206if($to->{'href'}) {2207$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2208-class=>"list"},$to_text);2209}2210$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2211"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2212return"<div class=\"diff$diff_class\">$line</div>\n";2213}elsif($from&&$to&&$line=~m/^\@{3}/) {2214my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2215my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);22162217@from_text=split(' ',$ranges);2218for(my$i=0;$i<@from_text; ++$i) {2219($from_start[$i],$from_nlines[$i]) =2220(split(',',substr($from_text[$i],1)),0);2221}22222223$to_text=pop@from_text;2224$to_start=pop@from_start;2225$to_nlines=pop@from_nlines;22262227$line="<span class=\"chunk_info\">$prefix";2228for(my$i=0;$i<@from_text; ++$i) {2229if($from->{'href'}[$i]) {2230$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2231-class=>"list"},$from_text[$i]);2232}else{2233$line.=$from_text[$i];2234}2235$line.=" ";2236}2237if($to->{'href'}) {2238$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2239-class=>"list"},$to_text);2240}else{2241$line.=$to_text;2242}2243$line.="$prefix</span>".2244"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2245return"<div class=\"diff$diff_class\">$line</div>\n";2246}2247return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2248}22492250# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2251# linked. Pass the hash of the tree/commit to snapshot.2252sub format_snapshot_links {2253my($hash) =@_;2254my$num_fmts=@snapshot_fmts;2255if($num_fmts>1) {2256# A parenthesized list of links bearing format names.2257# e.g. "snapshot (_tar.gz_ _zip_)"2258return"snapshot (".join(' ',map2259$cgi->a({2260-href => href(2261 action=>"snapshot",2262 hash=>$hash,2263 snapshot_format=>$_2264)2265},$known_snapshot_formats{$_}{'display'})2266,@snapshot_fmts) .")";2267}elsif($num_fmts==1) {2268# A single "snapshot" link whose tooltip bears the format name.2269# i.e. "_snapshot_"2270my($fmt) =@snapshot_fmts;2271return2272$cgi->a({2273-href => href(2274 action=>"snapshot",2275 hash=>$hash,2276 snapshot_format=>$fmt2277),2278-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2279},"snapshot");2280}else{# $num_fmts == 02281returnundef;2282}2283}22842285## ......................................................................2286## functions returning values to be passed, perhaps after some2287## transformation, to other functions; e.g. returning arguments to href()22882289# returns hash to be passed to href to generate gitweb URL2290# in -title key it returns description of link2291sub get_feed_info {2292my$format=shift||'Atom';2293my%res= (action =>lc($format));22942295# feed links are possible only for project views2296return unless(defined$project);2297# some views should link to OPML, or to generic project feed,2298# or don't have specific feed yet (so they should use generic)2299return if($action=~/^(?:tags|heads|forks|tag|search)$/x);23002301my$branch;2302# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2303# from tag links; this also makes possible to detect branch links2304if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2305(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2306$branch=$1;2307}2308# find log type for feed description (title)2309my$type='log';2310if(defined$file_name) {2311$type="history of$file_name";2312$type.="/"if($actioneq'tree');2313$type.=" on '$branch'"if(defined$branch);2314}else{2315$type="log of$branch"if(defined$branch);2316}23172318$res{-title} =$type;2319$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2320$res{'file_name'} =$file_name;23212322return%res;2323}23242325## ----------------------------------------------------------------------2326## git utility subroutines, invoking git commands23272328# returns path to the core git executable and the --git-dir parameter as list2329sub git_cmd {2330$number_of_git_cmds++;2331return$GIT,'--git-dir='.$git_dir;2332}23332334# quote the given arguments for passing them to the shell2335# quote_command("command", "arg 1", "arg with ' and ! characters")2336# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2337# Try to avoid using this function wherever possible.2338sub quote_command {2339returnjoin(' ',2340map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2341}23422343# get HEAD ref of given project as hash2344sub git_get_head_hash {2345return git_get_full_hash(shift,'HEAD');2346}23472348sub git_get_full_hash {2349return git_get_hash(@_);2350}23512352sub git_get_short_hash {2353return git_get_hash(@_,'--short=7');2354}23552356sub git_get_hash {2357my($project,$hash,@options) =@_;2358my$o_git_dir=$git_dir;2359my$retval=undef;2360$git_dir="$projectroot/$project";2361if(open my$fd,'-|', git_cmd(),'rev-parse',2362'--verify','-q',@options,$hash) {2363$retval= <$fd>;2364chomp$retvalifdefined$retval;2365close$fd;2366}2367if(defined$o_git_dir) {2368$git_dir=$o_git_dir;2369}2370return$retval;2371}23722373# get type of given object2374sub git_get_type {2375my$hash=shift;23762377open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2378my$type= <$fd>;2379close$fdorreturn;2380chomp$type;2381return$type;2382}23832384# repository configuration2385our$config_file='';2386our%config;23872388# store multiple values for single key as anonymous array reference2389# single values stored directly in the hash, not as [ <value> ]2390sub hash_set_multi {2391my($hash,$key,$value) =@_;23922393if(!exists$hash->{$key}) {2394$hash->{$key} =$value;2395}elsif(!ref$hash->{$key}) {2396$hash->{$key} = [$hash->{$key},$value];2397}else{2398push@{$hash->{$key}},$value;2399}2400}24012402# return hash of git project configuration2403# optionally limited to some section, e.g. 'gitweb'2404sub git_parse_project_config {2405my$section_regexp=shift;2406my%config;24072408local$/="\0";24092410open my$fh,"-|", git_cmd(),"config",'-z','-l',2411orreturn;24122413while(my$keyval= <$fh>) {2414chomp$keyval;2415my($key,$value) =split(/\n/,$keyval,2);24162417 hash_set_multi(\%config,$key,$value)2418if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2419}2420close$fh;24212422return%config;2423}24242425# convert config value to boolean: 'true' or 'false'2426# no value, number > 0, 'true' and 'yes' values are true2427# rest of values are treated as false (never as error)2428sub config_to_bool {2429my$val=shift;24302431return1if!defined$val;# section.key24322433# strip leading and trailing whitespace2434$val=~s/^\s+//;2435$val=~s/\s+$//;24362437return(($val=~/^\d+$/&&$val) ||# section.key = 12438($val=~/^(?:true|yes)$/i));# section.key = true2439}24402441# convert config value to simple decimal number2442# an optional value suffix of 'k', 'm', or 'g' will cause the value2443# to be multiplied by 1024, 1048576, or 10737418242444sub config_to_int {2445my$val=shift;24462447# strip leading and trailing whitespace2448$val=~s/^\s+//;2449$val=~s/\s+$//;24502451if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2452$unit=lc($unit);2453# unknown unit is treated as 12454return$num* ($uniteq'g'?1073741824:2455$uniteq'm'?1048576:2456$uniteq'k'?1024:1);2457}2458return$val;2459}24602461# convert config value to array reference, if needed2462sub config_to_multi {2463my$val=shift;24642465returnref($val) ?$val: (defined($val) ? [$val] : []);2466}24672468sub git_get_project_config {2469my($key,$type) =@_;24702471return unlessdefined$git_dir;24722473# key sanity check2474return unless($key);2475$key=~s/^gitweb\.//;2476return if($key=~m/\W/);24772478# type sanity check2479if(defined$type) {2480$type=~s/^--//;2481$type=undef2482unless($typeeq'bool'||$typeeq'int');2483}24842485# get config2486if(!defined$config_file||2487$config_filene"$git_dir/config") {2488%config= git_parse_project_config('gitweb');2489$config_file="$git_dir/config";2490}24912492# check if config variable (key) exists2493return unlessexists$config{"gitweb.$key"};24942495# ensure given type2496if(!defined$type) {2497return$config{"gitweb.$key"};2498}elsif($typeeq'bool') {2499# backward compatibility: 'git config --bool' returns true/false2500return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2501}elsif($typeeq'int') {2502return config_to_int($config{"gitweb.$key"});2503}2504return$config{"gitweb.$key"};2505}25062507# get hash of given path at given ref2508sub git_get_hash_by_path {2509my$base=shift;2510my$path=shift||returnundef;2511my$type=shift;25122513$path=~ s,/+$,,;25142515open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2516or die_error(500,"Open git-ls-tree failed");2517my$line= <$fd>;2518close$fdorreturnundef;25192520if(!defined$line) {2521# there is no tree or hash given by $path at $base2522returnundef;2523}25242525#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2526$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2527if(defined$type&&$typene$2) {2528# type doesn't match2529returnundef;2530}2531return$3;2532}25332534# get path of entry with given hash at given tree-ish (ref)2535# used to get 'from' filename for combined diff (merge commit) for renames2536sub git_get_path_by_hash {2537my$base=shift||return;2538my$hash=shift||return;25392540local$/="\0";25412542open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2543orreturnundef;2544while(my$line= <$fd>) {2545chomp$line;25462547#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2548#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2549if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2550close$fd;2551return$1;2552}2553}2554close$fd;2555returnundef;2556}25572558## ......................................................................2559## git utility functions, directly accessing git repository25602561sub git_get_project_description {2562my$path=shift;25632564$git_dir="$projectroot/$path";2565open my$fd,'<',"$git_dir/description"2566orreturn git_get_project_config('description');2567my$descr= <$fd>;2568close$fd;2569if(defined$descr) {2570chomp$descr;2571}2572return$descr;2573}25742575sub git_get_project_ctags {2576my$path=shift;2577my$ctags= {};25782579$git_dir="$projectroot/$path";2580opendir my$dh,"$git_dir/ctags"2581orreturn$ctags;2582foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2583open my$ct,'<',$_ornext;2584my$val= <$ct>;2585chomp$val;2586close$ct;2587my$ctag=$_;$ctag=~ s#.*/##;2588$ctags->{$ctag} =$val;2589}2590closedir$dh;2591$ctags;2592}25932594sub git_populate_project_tagcloud {2595my$ctags=shift;25962597# First, merge different-cased tags; tags vote on casing2598my%ctags_lc;2599foreach(keys%$ctags) {2600$ctags_lc{lc$_}->{count} +=$ctags->{$_};2601if(not$ctags_lc{lc$_}->{topcount}2602or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2603$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2604$ctags_lc{lc$_}->{topname} =$_;2605}2606}26072608my$cloud;2609if(eval{require HTML::TagCloud;1; }) {2610$cloud= HTML::TagCloud->new;2611foreach(sort keys%ctags_lc) {2612# Pad the title with spaces so that the cloud looks2613# less crammed.2614my$title=$ctags_lc{$_}->{topname};2615$title=~s/ / /g;2616$title=~s/^/ /g;2617$title=~s/$/ /g;2618$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2619}2620}else{2621$cloud= \%ctags_lc;2622}2623$cloud;2624}26252626sub git_show_project_tagcloud {2627my($cloud,$count) =@_;2628print STDERR ref($cloud)."..\n";2629if(ref$cloudeq'HTML::TagCloud') {2630return$cloud->html_and_css($count);2631}else{2632my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2633return'<p align="center">'.join(', ',map{2634$cgi->a({-href=>"$home_link?by_tag=$_"},$cloud->{$_}->{topname})2635}splice(@tags,0,$count)) .'</p>';2636}2637}26382639sub git_get_project_url_list {2640my$path=shift;26412642$git_dir="$projectroot/$path";2643open my$fd,'<',"$git_dir/cloneurl"2644orreturnwantarray?2645@{ config_to_multi(git_get_project_config('url')) } :2646 config_to_multi(git_get_project_config('url'));2647my@git_project_url_list=map{chomp;$_} <$fd>;2648close$fd;26492650returnwantarray?@git_project_url_list: \@git_project_url_list;2651}26522653sub git_get_projects_list {2654my($filter) =@_;2655my@list;26562657$filter||='';2658$filter=~s/\.git$//;26592660my$check_forks= gitweb_check_feature('forks');26612662if(-d $projects_list) {2663# search in directory2664my$dir=$projects_list. ($filter?"/$filter":'');2665# remove the trailing "/"2666$dir=~s!/+$!!;2667my$pfxlen=length("$dir");2668my$pfxdepth= ($dir=~tr!/!!);26692670 File::Find::find({2671 follow_fast =>1,# follow symbolic links2672 follow_skip =>2,# ignore duplicates2673 dangling_symlinks =>0,# ignore dangling symlinks, silently2674 wanted =>sub{2675# global variables2676our$project_maxdepth;2677our$projectroot;2678# skip project-list toplevel, if we get it.2679return if(m!^[/.]$!);2680# only directories can be git repositories2681return unless(-d $_);2682# don't traverse too deep (Find is super slow on os x)2683if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2684$File::Find::prune =1;2685return;2686}26872688my$subdir=substr($File::Find::name,$pfxlen+1);2689# we check related file in $projectroot2690my$path= ($filter?"$filter/":'') .$subdir;2691if(check_export_ok("$projectroot/$path")) {2692push@list, { path =>$path};2693$File::Find::prune =1;2694}2695},2696},"$dir");26972698}elsif(-f $projects_list) {2699# read from file(url-encoded):2700# 'git%2Fgit.git Linus+Torvalds'2701# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2702# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2703my%paths;2704open my$fd,'<',$projects_listorreturn;2705 PROJECT:2706while(my$line= <$fd>) {2707chomp$line;2708my($path,$owner) =split' ',$line;2709$path= unescape($path);2710$owner= unescape($owner);2711if(!defined$path) {2712next;2713}2714if($filterne'') {2715# looking for forks;2716my$pfx=substr($path,0,length($filter));2717if($pfxne$filter) {2718next PROJECT;2719}2720my$sfx=substr($path,length($filter));2721if($sfx!~/^\/.*\.git$/) {2722next PROJECT;2723}2724}elsif($check_forks) {2725 PATH:2726foreachmy$filter(keys%paths) {2727# looking for forks;2728my$pfx=substr($path,0,length($filter));2729if($pfxne$filter) {2730next PATH;2731}2732my$sfx=substr($path,length($filter));2733if($sfx!~/^\/.*\.git$/) {2734next PATH;2735}2736# is a fork, don't include it in2737# the list2738next PROJECT;2739}2740}2741if(check_export_ok("$projectroot/$path")) {2742my$pr= {2743 path =>$path,2744 owner => to_utf8($owner),2745};2746push@list,$pr;2747(my$forks_path=$path) =~s/\.git$//;2748$paths{$forks_path}++;2749}2750}2751close$fd;2752}2753return@list;2754}27552756our$gitweb_project_owner=undef;2757sub git_get_project_list_from_file {27582759return if(defined$gitweb_project_owner);27602761$gitweb_project_owner= {};2762# read from file (url-encoded):2763# 'git%2Fgit.git Linus+Torvalds'2764# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2765# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2766if(-f $projects_list) {2767open(my$fd,'<',$projects_list);2768while(my$line= <$fd>) {2769chomp$line;2770my($pr,$ow) =split' ',$line;2771$pr= unescape($pr);2772$ow= unescape($ow);2773$gitweb_project_owner->{$pr} = to_utf8($ow);2774}2775close$fd;2776}2777}27782779sub git_get_project_owner {2780my$project=shift;2781my$owner;27822783returnundefunless$project;2784$git_dir="$projectroot/$project";27852786if(!defined$gitweb_project_owner) {2787 git_get_project_list_from_file();2788}27892790if(exists$gitweb_project_owner->{$project}) {2791$owner=$gitweb_project_owner->{$project};2792}2793if(!defined$owner){2794$owner= git_get_project_config('owner');2795}2796if(!defined$owner) {2797$owner= get_file_owner("$git_dir");2798}27992800return$owner;2801}28022803sub git_get_last_activity {2804my($path) =@_;2805my$fd;28062807$git_dir="$projectroot/$path";2808open($fd,"-|", git_cmd(),'for-each-ref',2809'--format=%(committer)',2810'--sort=-committerdate',2811'--count=1',2812'refs/heads')orreturn;2813my$most_recent= <$fd>;2814close$fdorreturn;2815if(defined$most_recent&&2816$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2817my$timestamp=$1;2818my$age=time-$timestamp;2819return($age, age_string($age));2820}2821return(undef,undef);2822}28232824# Implementation note: when a single remote is wanted, we cannot use 'git2825# remote show -n' because that command always work (assuming it's a remote URL2826# if it's not defined), and we cannot use 'git remote show' because that would2827# try to make a network roundtrip. So the only way to find if that particular2828# remote is defined is to walk the list provided by 'git remote -v' and stop if2829# and when we find what we want.2830sub git_get_remotes_list {2831my$wanted=shift;2832my%remotes= ();28332834open my$fd,'-|', git_cmd(),'remote','-v';2835return unless$fd;2836while(my$remote= <$fd>) {2837chomp$remote;2838$remote=~s!\t(.*?)\s+\((\w+)\)$!!;2839next if$wantedand not$remoteeq$wanted;2840my($url,$key) = ($1,$2);28412842$remotes{$remote} ||= {'heads'=> () };2843$remotes{$remote}{$key} =$url;2844}2845close$fdorreturn;2846returnwantarray?%remotes: \%remotes;2847}28482849# Takes a hash of remotes as first parameter and fills it by adding the2850# available remote heads for each of the indicated remotes.2851sub fill_remote_heads {2852my$remotes=shift;2853my@heads=map{"remotes/$_"}keys%$remotes;2854my@remoteheads= git_get_heads_list(undef,@heads);2855foreachmy$remote(keys%$remotes) {2856$remotes->{$remote}{'heads'} = [grep{2857$_->{'name'} =~s!^$remote/!!2858}@remoteheads];2859}2860}28612862sub git_get_references {2863my$type=shift||"";2864my%refs;2865# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112866# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2867open my$fd,"-|", git_cmd(),"show-ref","--dereference",2868($type? ("--","refs/$type") : ())# use -- <pattern> if $type2869orreturn;28702871while(my$line= <$fd>) {2872chomp$line;2873if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2874if(defined$refs{$1}) {2875push@{$refs{$1}},$2;2876}else{2877$refs{$1} = [$2];2878}2879}2880}2881close$fdorreturn;2882return \%refs;2883}28842885sub git_get_rev_name_tags {2886my$hash=shift||returnundef;28872888open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2889orreturn;2890my$name_rev= <$fd>;2891close$fd;28922893if($name_rev=~ m|^$hash tags/(.*)$|) {2894return$1;2895}else{2896# catches also '$hash undefined' output2897returnundef;2898}2899}29002901## ----------------------------------------------------------------------2902## parse to hash functions29032904sub parse_date {2905my$epoch=shift;2906my$tz=shift||"-0000";29072908my%date;2909my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2910my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2911my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2912$date{'hour'} =$hour;2913$date{'minute'} =$min;2914$date{'mday'} =$mday;2915$date{'day'} =$days[$wday];2916$date{'month'} =$months[$mon];2917$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2918$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2919$date{'mday-time'} =sprintf"%d%s%02d:%02d",2920$mday,$months[$mon],$hour,$min;2921$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",29221900+$year,1+$mon,$mday,$hour,$min,$sec;29232924my($tz_sign,$tz_hour,$tz_min) =2925($tz=~m/^([-+])(\d\d)(\d\d)$/);2926$tz_sign= ($tz_signeq'-'? -1: +1);2927my$local=$epoch+$tz_sign*((($tz_hour*60) +$tz_min)*60);2928($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2929$date{'hour_local'} =$hour;2930$date{'minute_local'} =$min;2931$date{'tz_local'} =$tz;2932$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",29331900+$year,$mon+1,$mday,2934$hour,$min,$sec,$tz);2935return%date;2936}29372938sub parse_tag {2939my$tag_id=shift;2940my%tag;2941my@comment;29422943open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2944$tag{'id'} =$tag_id;2945while(my$line= <$fd>) {2946chomp$line;2947if($line=~m/^object ([0-9a-fA-F]{40})$/) {2948$tag{'object'} =$1;2949}elsif($line=~m/^type (.+)$/) {2950$tag{'type'} =$1;2951}elsif($line=~m/^tag (.+)$/) {2952$tag{'name'} =$1;2953}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2954$tag{'author'} =$1;2955$tag{'author_epoch'} =$2;2956$tag{'author_tz'} =$3;2957if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2958$tag{'author_name'} =$1;2959$tag{'author_email'} =$2;2960}else{2961$tag{'author_name'} =$tag{'author'};2962}2963}elsif($line=~m/--BEGIN/) {2964push@comment,$line;2965last;2966}elsif($lineeq"") {2967last;2968}2969}2970push@comment, <$fd>;2971$tag{'comment'} = \@comment;2972close$fdorreturn;2973if(!defined$tag{'name'}) {2974return2975};2976return%tag2977}29782979sub parse_commit_text {2980my($commit_text,$withparents) =@_;2981my@commit_lines=split'\n',$commit_text;2982my%co;29832984pop@commit_lines;# Remove '\0'29852986if(!@commit_lines) {2987return;2988}29892990my$header=shift@commit_lines;2991if($header!~m/^[0-9a-fA-F]{40}/) {2992return;2993}2994($co{'id'},my@parents) =split' ',$header;2995while(my$line=shift@commit_lines) {2996last if$lineeq"\n";2997if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2998$co{'tree'} =$1;2999}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {3000push@parents,$1;3001}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {3002$co{'author'} = to_utf8($1);3003$co{'author_epoch'} =$2;3004$co{'author_tz'} =$3;3005if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {3006$co{'author_name'} =$1;3007$co{'author_email'} =$2;3008}else{3009$co{'author_name'} =$co{'author'};3010}3011}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3012$co{'committer'} = to_utf8($1);3013$co{'committer_epoch'} =$2;3014$co{'committer_tz'} =$3;3015if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3016$co{'committer_name'} =$1;3017$co{'committer_email'} =$2;3018}else{3019$co{'committer_name'} =$co{'committer'};3020}3021}3022}3023if(!defined$co{'tree'}) {3024return;3025};3026$co{'parents'} = \@parents;3027$co{'parent'} =$parents[0];30283029foreachmy$title(@commit_lines) {3030$title=~s/^ //;3031if($titlene"") {3032$co{'title'} = chop_str($title,80,5);3033# remove leading stuff of merges to make the interesting part visible3034if(length($title) >50) {3035$title=~s/^Automatic //;3036$title=~s/^merge (of|with) /Merge ... /i;3037if(length($title) >50) {3038$title=~s/(http|rsync):\/\///;3039}3040if(length($title) >50) {3041$title=~s/(master|www|rsync)\.//;3042}3043if(length($title) >50) {3044$title=~s/kernel.org:?//;3045}3046if(length($title) >50) {3047$title=~s/\/pub\/scm//;3048}3049}3050$co{'title_short'} = chop_str($title,50,5);3051last;3052}3053}3054if(!defined$co{'title'} ||$co{'title'}eq"") {3055$co{'title'} =$co{'title_short'} ='(no commit message)';3056}3057# remove added spaces3058foreachmy$line(@commit_lines) {3059$line=~s/^ //;3060}3061$co{'comment'} = \@commit_lines;30623063my$age=time-$co{'committer_epoch'};3064$co{'age'} =$age;3065$co{'age_string'} = age_string($age);3066my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3067if($age>60*60*24*7*2) {3068$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3069$co{'age_string_age'} =$co{'age_string'};3070}else{3071$co{'age_string_date'} =$co{'age_string'};3072$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3073}3074return%co;3075}30763077sub parse_commit {3078my($commit_id) =@_;3079my%co;30803081local$/="\0";30823083open my$fd,"-|", git_cmd(),"rev-list",3084"--parents",3085"--header",3086"--max-count=1",3087$commit_id,3088"--",3089or die_error(500,"Open git-rev-list failed");3090%co= parse_commit_text(<$fd>,1);3091close$fd;30923093return%co;3094}30953096sub parse_commits {3097my($commit_id,$maxcount,$skip,$filename,@args) =@_;3098my@cos;30993100$maxcount||=1;3101$skip||=0;31023103local$/="\0";31043105open my$fd,"-|", git_cmd(),"rev-list",3106"--header",3107@args,3108("--max-count=".$maxcount),3109("--skip=".$skip),3110@extra_options,3111$commit_id,3112"--",3113($filename? ($filename) : ())3114or die_error(500,"Open git-rev-list failed");3115while(my$line= <$fd>) {3116my%co= parse_commit_text($line);3117push@cos, \%co;3118}3119close$fd;31203121returnwantarray?@cos: \@cos;3122}31233124# parse line of git-diff-tree "raw" output3125sub parse_difftree_raw_line {3126my$line=shift;3127my%res;31283129# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3130# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3131if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3132$res{'from_mode'} =$1;3133$res{'to_mode'} =$2;3134$res{'from_id'} =$3;3135$res{'to_id'} =$4;3136$res{'status'} =$5;3137$res{'similarity'} =$6;3138if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3139($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3140}else{3141$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3142}3143}3144# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3145# combined diff (for merge commit)3146elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3147$res{'nparents'} =length($1);3148$res{'from_mode'} = [split(' ',$2) ];3149$res{'to_mode'} =pop@{$res{'from_mode'}};3150$res{'from_id'} = [split(' ',$3) ];3151$res{'to_id'} =pop@{$res{'from_id'}};3152$res{'status'} = [split('',$4) ];3153$res{'to_file'} = unquote($5);3154}3155# 'c512b523472485aef4fff9e57b229d9d243c967f'3156elsif($line=~m/^([0-9a-fA-F]{40})$/) {3157$res{'commit'} =$1;3158}31593160returnwantarray?%res: \%res;3161}31623163# wrapper: return parsed line of git-diff-tree "raw" output3164# (the argument might be raw line, or parsed info)3165sub parsed_difftree_line {3166my$line_or_ref=shift;31673168if(ref($line_or_ref)eq"HASH") {3169# pre-parsed (or generated by hand)3170return$line_or_ref;3171}else{3172return parse_difftree_raw_line($line_or_ref);3173}3174}31753176# parse line of git-ls-tree output3177sub parse_ls_tree_line {3178my$line=shift;3179my%opts=@_;3180my%res;31813182if($opts{'-l'}) {3183#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3184$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;31853186$res{'mode'} =$1;3187$res{'type'} =$2;3188$res{'hash'} =$3;3189$res{'size'} =$4;3190if($opts{'-z'}) {3191$res{'name'} =$5;3192}else{3193$res{'name'} = unquote($5);3194}3195}else{3196#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3197$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;31983199$res{'mode'} =$1;3200$res{'type'} =$2;3201$res{'hash'} =$3;3202if($opts{'-z'}) {3203$res{'name'} =$4;3204}else{3205$res{'name'} = unquote($4);3206}3207}32083209returnwantarray?%res: \%res;3210}32113212# generates _two_ hashes, references to which are passed as 2 and 3 argument3213sub parse_from_to_diffinfo {3214my($diffinfo,$from,$to,@parents) =@_;32153216if($diffinfo->{'nparents'}) {3217# combined diff3218$from->{'file'} = [];3219$from->{'href'} = [];3220 fill_from_file_info($diffinfo,@parents)3221unlessexists$diffinfo->{'from_file'};3222for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3223$from->{'file'}[$i] =3224defined$diffinfo->{'from_file'}[$i] ?3225$diffinfo->{'from_file'}[$i] :3226$diffinfo->{'to_file'};3227if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3228$from->{'href'}[$i] = href(action=>"blob",3229 hash_base=>$parents[$i],3230 hash=>$diffinfo->{'from_id'}[$i],3231 file_name=>$from->{'file'}[$i]);3232}else{3233$from->{'href'}[$i] =undef;3234}3235}3236}else{3237# ordinary (not combined) diff3238$from->{'file'} =$diffinfo->{'from_file'};3239if($diffinfo->{'status'}ne"A") {# not new (added) file3240$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3241 hash=>$diffinfo->{'from_id'},3242 file_name=>$from->{'file'});3243}else{3244delete$from->{'href'};3245}3246}32473248$to->{'file'} =$diffinfo->{'to_file'};3249if(!is_deleted($diffinfo)) {# file exists in result3250$to->{'href'} = href(action=>"blob", hash_base=>$hash,3251 hash=>$diffinfo->{'to_id'},3252 file_name=>$to->{'file'});3253}else{3254delete$to->{'href'};3255}3256}32573258## ......................................................................3259## parse to array of hashes functions32603261sub git_get_heads_list {3262my($limit,@classes) =@_;3263@classes= ('heads')unless@classes;3264my@patterns=map{"refs/$_"}@classes;3265my@headslist;32663267open my$fd,'-|', git_cmd(),'for-each-ref',3268($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3269'--format=%(objectname) %(refname) %(subject)%00%(committer)',3270@patterns3271orreturn;3272while(my$line= <$fd>) {3273my%ref_item;32743275chomp$line;3276my($refinfo,$committerinfo) =split(/\0/,$line);3277my($hash,$name,$title) =split(' ',$refinfo,3);3278my($committer,$epoch,$tz) =3279($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3280$ref_item{'fullname'} =$name;3281$name=~s!^refs/(?:head|remote)s/!!;32823283$ref_item{'name'} =$name;3284$ref_item{'id'} =$hash;3285$ref_item{'title'} =$title||'(no commit message)';3286$ref_item{'epoch'} =$epoch;3287if($epoch) {3288$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3289}else{3290$ref_item{'age'} ="unknown";3291}32923293push@headslist, \%ref_item;3294}3295close$fd;32963297returnwantarray?@headslist: \@headslist;3298}32993300sub git_get_tags_list {3301my$limit=shift;3302my@tagslist;33033304open my$fd,'-|', git_cmd(),'for-each-ref',3305($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3306'--format=%(objectname) %(objecttype) %(refname) '.3307'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3308'refs/tags'3309orreturn;3310while(my$line= <$fd>) {3311my%ref_item;33123313chomp$line;3314my($refinfo,$creatorinfo) =split(/\0/,$line);3315my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3316my($creator,$epoch,$tz) =3317($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3318$ref_item{'fullname'} =$name;3319$name=~s!^refs/tags/!!;33203321$ref_item{'type'} =$type;3322$ref_item{'id'} =$id;3323$ref_item{'name'} =$name;3324if($typeeq"tag") {3325$ref_item{'subject'} =$title;3326$ref_item{'reftype'} =$reftype;3327$ref_item{'refid'} =$refid;3328}else{3329$ref_item{'reftype'} =$type;3330$ref_item{'refid'} =$id;3331}33323333if($typeeq"tag"||$typeeq"commit") {3334$ref_item{'epoch'} =$epoch;3335if($epoch) {3336$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3337}else{3338$ref_item{'age'} ="unknown";3339}3340}33413342push@tagslist, \%ref_item;3343}3344close$fd;33453346returnwantarray?@tagslist: \@tagslist;3347}33483349## ----------------------------------------------------------------------3350## filesystem-related functions33513352sub get_file_owner {3353my$path=shift;33543355my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3356my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3357if(!defined$gcos) {3358returnundef;3359}3360my$owner=$gcos;3361$owner=~s/[,;].*$//;3362return to_utf8($owner);3363}33643365# assume that file exists3366sub insert_file {3367my$filename=shift;33683369open my$fd,'<',$filename;3370print map{ to_utf8($_) } <$fd>;3371close$fd;3372}33733374## ......................................................................3375## mimetype related functions33763377sub mimetype_guess_file {3378my$filename=shift;3379my$mimemap=shift;3380-r $mimemaporreturnundef;33813382my%mimemap;3383open(my$mh,'<',$mimemap)orreturnundef;3384while(<$mh>) {3385next ifm/^#/;# skip comments3386my($mimetype,$exts) =split(/\t+/);3387if(defined$exts) {3388my@exts=split(/\s+/,$exts);3389foreachmy$ext(@exts) {3390$mimemap{$ext} =$mimetype;3391}3392}3393}3394close($mh);33953396$filename=~/\.([^.]*)$/;3397return$mimemap{$1};3398}33993400sub mimetype_guess {3401my$filename=shift;3402my$mime;3403$filename=~/\./orreturnundef;34043405if($mimetypes_file) {3406my$file=$mimetypes_file;3407if($file!~m!^/!) {# if it is relative path3408# it is relative to project3409$file="$projectroot/$project/$file";3410}3411$mime= mimetype_guess_file($filename,$file);3412}3413$mime||= mimetype_guess_file($filename,'/etc/mime.types');3414return$mime;3415}34163417sub blob_mimetype {3418my$fd=shift;3419my$filename=shift;34203421if($filename) {3422my$mime= mimetype_guess($filename);3423$mimeandreturn$mime;3424}34253426# just in case3427return$default_blob_plain_mimetypeunless$fd;34283429if(-T $fd) {3430return'text/plain';3431}elsif(!$filename) {3432return'application/octet-stream';3433}elsif($filename=~m/\.png$/i) {3434return'image/png';3435}elsif($filename=~m/\.gif$/i) {3436return'image/gif';3437}elsif($filename=~m/\.jpe?g$/i) {3438return'image/jpeg';3439}else{3440return'application/octet-stream';3441}3442}34433444sub blob_contenttype {3445my($fd,$file_name,$type) =@_;34463447$type||= blob_mimetype($fd,$file_name);3448if($typeeq'text/plain'&&defined$default_text_plain_charset) {3449$type.="; charset=$default_text_plain_charset";3450}34513452return$type;3453}34543455# guess file syntax for syntax highlighting; return undef if no highlighting3456# the name of syntax can (in the future) depend on syntax highlighter used3457sub guess_file_syntax {3458my($highlight,$mimetype,$file_name) =@_;3459returnundefunless($highlight&&defined$file_name);3460my$basename= basename($file_name,'.in');3461return$highlight_basename{$basename}3462ifexists$highlight_basename{$basename};34633464$basename=~/\.([^.]*)$/;3465my$ext=$1orreturnundef;3466return$highlight_ext{$ext}3467ifexists$highlight_ext{$ext};34683469returnundef;3470}34713472# run highlighter and return FD of its output,3473# or return original FD if no highlighting3474sub run_highlighter {3475my($fd,$highlight,$syntax) =@_;3476return$fdunless($highlight&&defined$syntax);34773478close$fd;3479open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3480 quote_command($highlight_bin).3481" --replace-tabs=8 --fragment --syntax$syntax|"3482or die_error(500,"Couldn't open file or run syntax highlighter");3483return$fd;3484}34853486## ======================================================================3487## functions printing HTML: header, footer, error page34883489sub get_page_title {3490my$title= to_utf8($site_name);34913492return$titleunless(defined$project);3493$title.=" - ". to_utf8($project);34943495return$titleunless(defined$action);3496$title.="/$action";# $action is US-ASCII (7bit ASCII)34973498return$titleunless(defined$file_name);3499$title.=" - ". esc_path($file_name);3500if($actioneq"tree"&&$file_name!~ m|/$|) {3501$title.="/";3502}35033504return$title;3505}35063507sub print_feed_meta {3508if(defined$project) {3509my%href_params= get_feed_info();3510if(!exists$href_params{'-title'}) {3511$href_params{'-title'} ='log';3512}35133514foreachmy$format(qw(RSS Atom)) {3515my$type=lc($format);3516my%link_attr= (3517'-rel'=>'alternate',3518'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),3519'-type'=>"application/$type+xml"3520);35213522$href_params{'action'} =$type;3523$link_attr{'-href'} = href(%href_params);3524print"<link ".3525"rel=\"$link_attr{'-rel'}\"".3526"title=\"$link_attr{'-title'}\"".3527"href=\"$link_attr{'-href'}\"".3528"type=\"$link_attr{'-type'}\"".3529"/>\n";35303531$href_params{'extra_options'} ='--no-merges';3532$link_attr{'-href'} = href(%href_params);3533$link_attr{'-title'} .=' (no merges)';3534print"<link ".3535"rel=\"$link_attr{'-rel'}\"".3536"title=\"$link_attr{'-title'}\"".3537"href=\"$link_attr{'-href'}\"".3538"type=\"$link_attr{'-type'}\"".3539"/>\n";3540}35413542}else{3543printf('<link rel="alternate" title="%sprojects list" '.3544'href="%s" type="text/plain; charset=utf-8" />'."\n",3545 esc_attr($site_name), href(project=>undef, action=>"project_index"));3546printf('<link rel="alternate" title="%sprojects feeds" '.3547'href="%s" type="text/x-opml" />'."\n",3548 esc_attr($site_name), href(project=>undef, action=>"opml"));3549}3550}35513552sub git_header_html {3553my$status=shift||"200 OK";3554my$expires=shift;3555my%opts=@_;35563557my$title= get_page_title();3558my$content_type;3559# require explicit support from the UA if we are to send the page as3560# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3561# we have to do this because MSIE sometimes globs '*/*', pretending to3562# support xhtml+xml but choking when it gets what it asked for.3563if(defined$cgi->http('HTTP_ACCEPT') &&3564$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3565$cgi->Accept('application/xhtml+xml') !=0) {3566$content_type='application/xhtml+xml';3567}else{3568$content_type='text/html';3569}3570print$cgi->header(-type=>$content_type, -charset =>'utf-8',3571-status=>$status, -expires =>$expires)3572unless($opts{'-no_http_header'});3573my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3574print<<EOF;3575<?xml version="1.0" encoding="utf-8"?>3576<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3577<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3578<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3579<!-- git core binaries version$git_version-->3580<head>3581<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3582<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3583<meta name="robots" content="index, nofollow"/>3584<title>$title</title>3585EOF3586# the stylesheet, favicon etc urls won't work correctly with path_info3587# unless we set the appropriate base URL3588if($ENV{'PATH_INFO'}) {3589print"<base href=\"".esc_url($base_url)."\"/>\n";3590}3591# print out each stylesheet that exist, providing backwards capability3592# for those people who defined $stylesheet in a config file3593if(defined$stylesheet) {3594print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3595}else{3596foreachmy$stylesheet(@stylesheets) {3597next unless$stylesheet;3598print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3599}3600}3601 print_feed_meta()3602if($statuseq'200 OK');3603if(defined$favicon) {3604printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);3605}36063607print"</head>\n".3608"<body>\n";36093610if(defined$site_header&& -f $site_header) {3611 insert_file($site_header);3612}36133614print"<div class=\"page_header\">\n";3615if(defined$logo) {3616print$cgi->a({-href => esc_url($logo_url),3617-title =>$logo_label},3618$cgi->img({-src => esc_url($logo),3619-width =>72, -height =>27,3620-alt =>"git",3621-class=>"logo"}));3622}3623print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3624if(defined$project) {3625print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3626if(defined$action) {3627my$action_print=$action;3628if(defined$opts{-action_extra}) {3629$action_print=$cgi->a({-href => href(action=>$action)},3630$action);3631}3632print" /$action_print";3633}3634if(defined$opts{-action_extra}) {3635print" /$opts{-action_extra}";3636}3637print"\n";3638}3639print"</div>\n";36403641my$have_search= gitweb_check_feature('search');3642if(defined$project&&$have_search) {3643if(!defined$searchtext) {3644$searchtext="";3645}3646my$search_hash;3647if(defined$hash_base) {3648$search_hash=$hash_base;3649}elsif(defined$hash) {3650$search_hash=$hash;3651}else{3652$search_hash="HEAD";3653}3654my$action=$my_uri;3655my$use_pathinfo= gitweb_check_feature('pathinfo');3656if($use_pathinfo) {3657$action.="/".esc_url($project);3658}3659print$cgi->startform(-method=>"get", -action =>$action) .3660"<div class=\"search\">\n".3661(!$use_pathinfo&&3662$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3663$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3664$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3665$cgi->popup_menu(-name =>'st', -default=>'commit',3666-values=> ['commit','grep','author','committer','pickaxe']) .3667$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3668" search:\n",3669$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3670"<span title=\"Extended regular expression\">".3671$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3672-checked =>$search_use_regexp) .3673"</span>".3674"</div>".3675$cgi->end_form() ."\n";3676}3677}36783679sub git_footer_html {3680my$feed_class='rss_logo';36813682print"<div class=\"page_footer\">\n";3683if(defined$project) {3684my$descr= git_get_project_description($project);3685if(defined$descr) {3686print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3687}36883689my%href_params= get_feed_info();3690if(!%href_params) {3691$feed_class.=' generic';3692}3693$href_params{'-title'} ||='log';36943695foreachmy$format(qw(RSS Atom)) {3696$href_params{'action'} =lc($format);3697print$cgi->a({-href => href(%href_params),3698-title =>"$href_params{'-title'}$formatfeed",3699-class=>$feed_class},$format)."\n";3700}37013702}else{3703print$cgi->a({-href => href(project=>undef, action=>"opml"),3704-class=>$feed_class},"OPML") ." ";3705print$cgi->a({-href => href(project=>undef, action=>"project_index"),3706-class=>$feed_class},"TXT") ."\n";3707}3708print"</div>\n";# class="page_footer"37093710if(defined$t0&& gitweb_check_feature('timed')) {3711print"<div id=\"generating_info\">\n";3712print'This page took '.3713'<span id="generating_time" class="time_span">'.3714 tv_interval($t0, [ gettimeofday() ]).3715' seconds </span>'.3716' and '.3717'<span id="generating_cmd">'.3718$number_of_git_cmds.3719'</span> git commands '.3720" to generate.\n";3721print"</div>\n";# class="page_footer"3722}37233724if(defined$site_footer&& -f $site_footer) {3725 insert_file($site_footer);3726}37273728print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;3729if(defined$action&&3730$actioneq'blame_incremental') {3731print qq!<script type="text/javascript">\n!.3732 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3733 qq!"!. href() .qq!");\n!.3734 qq!</script>\n!;3735}else{3736print qq!<script type="text/javascript">\n!.3737 qq!window.onload = function () {\n!.3738(gitweb_check_feature('javascript-actions') ?3739 qq! fixLinks();\n! :'').3740# last parameter to onloadTZSetup must be CSS class used by format_timestamp_html3741 qq! var tz_cookie = { name:'gitweb_tz', expires:14, path:'/'};\n!.# in days3742 qq! onloadTZSetup('local', tz_cookie,'datetime');\n!.3743 qq!};\n!.3744 qq!</script>\n!;3745}37463747print"</body>\n".3748"</html>";3749}37503751# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3752# Example: die_error(404, 'Hash not found')3753# By convention, use the following status codes (as defined in RFC 2616):3754# 400: Invalid or missing CGI parameters, or3755# requested object exists but has wrong type.3756# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3757# this server or project.3758# 404: Requested object/revision/project doesn't exist.3759# 500: The server isn't configured properly, or3760# an internal error occurred (e.g. failed assertions caused by bugs), or3761# an unknown error occurred (e.g. the git binary died unexpectedly).3762# 503: The server is currently unavailable (because it is overloaded,3763# or down for maintenance). Generally, this is a temporary state.3764sub die_error {3765my$status=shift||500;3766my$error= esc_html(shift) ||"Internal Server Error";3767my$extra=shift;3768my%opts=@_;37693770my%http_responses= (3771400=>'400 Bad Request',3772403=>'403 Forbidden',3773404=>'404 Not Found',3774500=>'500 Internal Server Error',3775503=>'503 Service Unavailable',3776);3777 git_header_html($http_responses{$status},undef,%opts);3778print<<EOF;3779<div class="page_body">3780<br /><br />3781$status-$error3782<br />3783EOF3784if(defined$extra) {3785print"<hr />\n".3786"$extra\n";3787}3788print"</div>\n";37893790 git_footer_html();3791goto DONE_GITWEB3792unless($opts{'-error_handler'});3793}37943795## ----------------------------------------------------------------------3796## functions printing or outputting HTML: navigation37973798sub git_print_page_nav {3799my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3800$extra=''if!defined$extra;# pager or formats38013802my@navs=qw(summary shortlog log commit commitdiff tree);3803if($suppress) {3804@navs=grep{$_ne$suppress}@navs;3805}38063807my%arg=map{$_=> {action=>$_} }@navs;3808if(defined$head) {3809for(qw(commit commitdiff)) {3810$arg{$_}{'hash'} =$head;3811}3812if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3813for(qw(shortlog log)) {3814$arg{$_}{'hash'} =$head;3815}3816}3817}38183819$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3820$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;38213822my@actions= gitweb_get_feature('actions');3823my%repl= (3824'%'=>'%',3825'n'=>$project,# project name3826'f'=>$git_dir,# project path within filesystem3827'h'=>$treehead||'',# current hash ('h' parameter)3828'b'=>$treebase||'',# hash base ('hb' parameter)3829);3830while(@actions) {3831my($label,$link,$pos) =splice(@actions,0,3);3832# insert3833@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3834# munch munch3835$link=~s/%([%nfhb])/$repl{$1}/g;3836$arg{$label}{'_href'} =$link;3837}38383839print"<div class=\"page_nav\">\n".3840(join" | ",3841map{$_eq$current?3842$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3843}@navs);3844print"<br/>\n$extra<br/>\n".3845"</div>\n";3846}38473848# returns a submenu for the nagivation of the refs views (tags, heads,3849# remotes) with the current view disabled and the remotes view only3850# available if the feature is enabled3851sub format_ref_views {3852my($current) =@_;3853my@ref_views=qw{tags heads};3854push@ref_views,'remotes'if gitweb_check_feature('remote_heads');3855returnjoin" | ",map{3856$_eq$current?$_:3857$cgi->a({-href => href(action=>$_)},$_)3858}@ref_views3859}38603861sub format_paging_nav {3862my($action,$page,$has_next_link) =@_;3863my$paging_nav;386438653866if($page>0) {3867$paging_nav.=3868$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3869" ⋅ ".3870$cgi->a({-href => href(-replay=>1, page=>$page-1),3871-accesskey =>"p", -title =>"Alt-p"},"prev");3872}else{3873$paging_nav.="first ⋅ prev";3874}38753876if($has_next_link) {3877$paging_nav.=" ⋅ ".3878$cgi->a({-href => href(-replay=>1, page=>$page+1),3879-accesskey =>"n", -title =>"Alt-n"},"next");3880}else{3881$paging_nav.=" ⋅ next";3882}38833884return$paging_nav;3885}38863887## ......................................................................3888## functions printing or outputting HTML: div38893890sub git_print_header_div {3891my($action,$title,$hash,$hash_base) =@_;3892my%args= ();38933894$args{'action'} =$action;3895$args{'hash'} =$hashif$hash;3896$args{'hash_base'} =$hash_baseif$hash_base;38973898print"<div class=\"header\">\n".3899$cgi->a({-href => href(%args), -class=>"title"},3900$title?$title:$action) .3901"\n</div>\n";3902}39033904sub format_repo_url {3905my($name,$url) =@_;3906return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";3907}39083909# Group output by placing it in a DIV element and adding a header.3910# Options for start_div() can be provided by passing a hash reference as the3911# first parameter to the function.3912# Options to git_print_header_div() can be provided by passing an array3913# reference. This must follow the options to start_div if they are present.3914# The content can be a scalar, which is output as-is, a scalar reference, which3915# is output after html escaping, an IO handle passed either as *handle or3916# *handle{IO}, or a function reference. In the latter case all following3917# parameters will be taken as argument to the content function call.3918sub git_print_section {3919my($div_args,$header_args,$content);3920my$arg=shift;3921if(ref($arg)eq'HASH') {3922$div_args=$arg;3923$arg=shift;3924}3925if(ref($arg)eq'ARRAY') {3926$header_args=$arg;3927$arg=shift;3928}3929$content=$arg;39303931print$cgi->start_div($div_args);3932 git_print_header_div(@$header_args);39333934if(ref($content)eq'CODE') {3935$content->(@_);3936}elsif(ref($content)eq'SCALAR') {3937print esc_html($$content);3938}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {3939print<$content>;3940}elsif(!ref($content) &&defined($content)) {3941print$content;3942}39433944print$cgi->end_div;3945}39463947sub format_timestamp_html {3948my$date=shift;3949my$strtime='<span class="datetime">'.$date->{'rfc2822'}.'</span>';39503951my$localtime_format='(%02d:%02d%s)';3952if($date->{'hour_local'} <6) {3953$localtime_format='(<span class="atnight">%02d:%02d</span>%s)';3954}3955$strtime.=' '.3956sprintf($localtime_format,3957$date->{'hour_local'},$date->{'minute_local'},$date->{'tz_local'});39583959return$strtime;3960}39613962# Outputs the author name and date in long form3963sub git_print_authorship {3964my$co=shift;3965my%opts=@_;3966my$tag=$opts{-tag} ||'div';3967my$author=$co->{'author_name'};39683969my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3970print"<$tagclass=\"author_date\">".3971 format_search_author($author,"author", esc_html($author)) .3972" [".format_timestamp_html(\%ad)."]".3973 git_get_avatar($co->{'author_email'}, -pad_before =>1) .3974"</$tag>\n";3975}39763977# Outputs table rows containing the full author or committer information,3978# in the format expected for 'commit' view (& similar).3979# Parameters are a commit hash reference, followed by the list of people3980# to output information for. If the list is empty it defaults to both3981# author and committer.3982sub git_print_authorship_rows {3983my$co=shift;3984# too bad we can't use @people = @_ || ('author', 'committer')3985my@people=@_;3986@people= ('author','committer')unless@people;3987foreachmy$who(@people) {3988my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3989print"<tr><td>$who</td><td>".3990 format_search_author($co->{"${who}_name"},$who,3991 esc_html($co->{"${who}_name"})) ." ".3992 format_search_author($co->{"${who}_email"},$who,3993 esc_html("<".$co->{"${who}_email"} .">")) .3994"</td><td rowspan=\"2\">".3995 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3996"</td></tr>\n".3997"<tr>".3998"<td></td><td>".3999 format_timestamp_html(\%wd) .4000"</td>".4001"</tr>\n";4002}4003}40044005sub git_print_page_path {4006my$name=shift;4007my$type=shift;4008my$hb=shift;400940104011print"<div class=\"page_path\">";4012print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),4013-title =>'tree root'}, to_utf8("[$project]"));4014print" / ";4015if(defined$name) {4016my@dirname=split'/',$name;4017my$basename=pop@dirname;4018my$fullname='';40194020foreachmy$dir(@dirname) {4021$fullname.= ($fullname?'/':'') .$dir;4022print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4023 hash_base=>$hb),4024-title =>$fullname}, esc_path($dir));4025print" / ";4026}4027if(defined$type&&$typeeq'blob') {4028print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4029 hash_base=>$hb),4030-title =>$name}, esc_path($basename));4031}elsif(defined$type&&$typeeq'tree') {4032print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4033 hash_base=>$hb),4034-title =>$name}, esc_path($basename));4035print" / ";4036}else{4037print esc_path($basename);4038}4039}4040print"<br/></div>\n";4041}40424043sub git_print_log {4044my$log=shift;4045my%opts=@_;40464047if($opts{'-remove_title'}) {4048# remove title, i.e. first line of log4049shift@$log;4050}4051# remove leading empty lines4052while(defined$log->[0] &&$log->[0]eq"") {4053shift@$log;4054}40554056# print log4057my$signoff=0;4058my$empty=0;4059foreachmy$line(@$log) {4060if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {4061$signoff=1;4062$empty=0;4063if(!$opts{'-remove_signoff'}) {4064print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4065next;4066}else{4067# remove signoff lines4068next;4069}4070}else{4071$signoff=0;4072}40734074# print only one empty line4075# do not print empty line after signoff4076if($lineeq"") {4077next if($empty||$signoff);4078$empty=1;4079}else{4080$empty=0;4081}40824083print format_log_line_html($line) ."<br/>\n";4084}40854086if($opts{'-final_empty_line'}) {4087# end with single empty line4088print"<br/>\n"unless$empty;4089}4090}40914092# return link target (what link points to)4093sub git_get_link_target {4094my$hash=shift;4095my$link_target;40964097# read link4098open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4099orreturn;4100{4101local$/=undef;4102$link_target= <$fd>;4103}4104close$fd4105orreturn;41064107return$link_target;4108}41094110# given link target, and the directory (basedir) the link is in,4111# return target of link relative to top directory (top tree);4112# return undef if it is not possible (including absolute links).4113sub normalize_link_target {4114my($link_target,$basedir) =@_;41154116# absolute symlinks (beginning with '/') cannot be normalized4117return if(substr($link_target,0,1)eq'/');41184119# normalize link target to path from top (root) tree (dir)4120my$path;4121if($basedir) {4122$path=$basedir.'/'.$link_target;4123}else{4124# we are in top (root) tree (dir)4125$path=$link_target;4126}41274128# remove //, /./, and /../4129my@path_parts;4130foreachmy$part(split('/',$path)) {4131# discard '.' and ''4132next if(!$part||$parteq'.');4133# handle '..'4134if($parteq'..') {4135if(@path_parts) {4136pop@path_parts;4137}else{4138# link leads outside repository (outside top dir)4139return;4140}4141}else{4142push@path_parts,$part;4143}4144}4145$path=join('/',@path_parts);41464147return$path;4148}41494150# print tree entry (row of git_tree), but without encompassing <tr> element4151sub git_print_tree_entry {4152my($t,$basedir,$hash_base,$have_blame) =@_;41534154my%base_key= ();4155$base_key{'hash_base'} =$hash_baseifdefined$hash_base;41564157# The format of a table row is: mode list link. Where mode is4158# the mode of the entry, list is the name of the entry, an href,4159# and link is the action links of the entry.41604161print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4162if(exists$t->{'size'}) {4163print"<td class=\"size\">$t->{'size'}</td>\n";4164}4165if($t->{'type'}eq"blob") {4166print"<td class=\"list\">".4167$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4168 file_name=>"$basedir$t->{'name'}",%base_key),4169-class=>"list"}, esc_path($t->{'name'}));4170if(S_ISLNK(oct$t->{'mode'})) {4171my$link_target= git_get_link_target($t->{'hash'});4172if($link_target) {4173my$norm_target= normalize_link_target($link_target,$basedir);4174if(defined$norm_target) {4175print" -> ".4176$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4177 file_name=>$norm_target),4178-title =>$norm_target}, esc_path($link_target));4179}else{4180print" -> ". esc_path($link_target);4181}4182}4183}4184print"</td>\n";4185print"<td class=\"link\">";4186print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4187 file_name=>"$basedir$t->{'name'}",%base_key)},4188"blob");4189if($have_blame) {4190print" | ".4191$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4192 file_name=>"$basedir$t->{'name'}",%base_key)},4193"blame");4194}4195if(defined$hash_base) {4196print" | ".4197$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4198 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4199"history");4200}4201print" | ".4202$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4203 file_name=>"$basedir$t->{'name'}")},4204"raw");4205print"</td>\n";42064207}elsif($t->{'type'}eq"tree") {4208print"<td class=\"list\">";4209print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4210 file_name=>"$basedir$t->{'name'}",4211%base_key)},4212 esc_path($t->{'name'}));4213print"</td>\n";4214print"<td class=\"link\">";4215print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4216 file_name=>"$basedir$t->{'name'}",4217%base_key)},4218"tree");4219if(defined$hash_base) {4220print" | ".4221$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4222 file_name=>"$basedir$t->{'name'}")},4223"history");4224}4225print"</td>\n";4226}else{4227# unknown object: we can only present history for it4228# (this includes 'commit' object, i.e. submodule support)4229print"<td class=\"list\">".4230 esc_path($t->{'name'}) .4231"</td>\n";4232print"<td class=\"link\">";4233if(defined$hash_base) {4234print$cgi->a({-href => href(action=>"history",4235 hash_base=>$hash_base,4236 file_name=>"$basedir$t->{'name'}")},4237"history");4238}4239print"</td>\n";4240}4241}42424243## ......................................................................4244## functions printing large fragments of HTML42454246# get pre-image filenames for merge (combined) diff4247sub fill_from_file_info {4248my($diff,@parents) =@_;42494250$diff->{'from_file'} = [ ];4251$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4252for(my$i=0;$i<$diff->{'nparents'};$i++) {4253if($diff->{'status'}[$i]eq'R'||4254$diff->{'status'}[$i]eq'C') {4255$diff->{'from_file'}[$i] =4256 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4257}4258}42594260return$diff;4261}42624263# is current raw difftree line of file deletion4264sub is_deleted {4265my$diffinfo=shift;42664267return$diffinfo->{'to_id'}eq('0' x 40);4268}42694270# does patch correspond to [previous] difftree raw line4271# $diffinfo - hashref of parsed raw diff format4272# $patchinfo - hashref of parsed patch diff format4273# (the same keys as in $diffinfo)4274sub is_patch_split {4275my($diffinfo,$patchinfo) =@_;42764277returndefined$diffinfo&&defined$patchinfo4278&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4279}428042814282sub git_difftree_body {4283my($difftree,$hash,@parents) =@_;4284my($parent) =$parents[0];4285my$have_blame= gitweb_check_feature('blame');4286print"<div class=\"list_head\">\n";4287if($#{$difftree} >10) {4288print(($#{$difftree} +1) ." files changed:\n");4289}4290print"</div>\n";42914292print"<table class=\"".4293(@parents>1?"combined ":"") .4294"diff_tree\">\n";42954296# header only for combined diff in 'commitdiff' view4297my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4298if($has_header) {4299# table header4300print"<thead><tr>\n".4301"<th></th><th></th>\n";# filename, patchN link4302for(my$i=0;$i<@parents;$i++) {4303my$par=$parents[$i];4304print"<th>".4305$cgi->a({-href => href(action=>"commitdiff",4306 hash=>$hash, hash_parent=>$par),4307-title =>'commitdiff to parent number '.4308($i+1) .': '.substr($par,0,7)},4309$i+1) .4310" </th>\n";4311}4312print"</tr></thead>\n<tbody>\n";4313}43144315my$alternate=1;4316my$patchno=0;4317foreachmy$line(@{$difftree}) {4318my$diff= parsed_difftree_line($line);43194320if($alternate) {4321print"<tr class=\"dark\">\n";4322}else{4323print"<tr class=\"light\">\n";4324}4325$alternate^=1;43264327if(exists$diff->{'nparents'}) {# combined diff43284329 fill_from_file_info($diff,@parents)4330unlessexists$diff->{'from_file'};43314332if(!is_deleted($diff)) {4333# file exists in the result (child) commit4334print"<td>".4335$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4336 file_name=>$diff->{'to_file'},4337 hash_base=>$hash),4338-class=>"list"}, esc_path($diff->{'to_file'})) .4339"</td>\n";4340}else{4341print"<td>".4342 esc_path($diff->{'to_file'}) .4343"</td>\n";4344}43454346if($actioneq'commitdiff') {4347# link to patch4348$patchno++;4349print"<td class=\"link\">".4350$cgi->a({-href => href(-anchor=>"patch$patchno")},4351"patch") .4352" | ".4353"</td>\n";4354}43554356my$has_history=0;4357my$not_deleted=0;4358for(my$i=0;$i<$diff->{'nparents'};$i++) {4359my$hash_parent=$parents[$i];4360my$from_hash=$diff->{'from_id'}[$i];4361my$from_path=$diff->{'from_file'}[$i];4362my$status=$diff->{'status'}[$i];43634364$has_history||= ($statusne'A');4365$not_deleted||= ($statusne'D');43664367if($statuseq'A') {4368print"<td class=\"link\"align=\"right\"> | </td>\n";4369}elsif($statuseq'D') {4370print"<td class=\"link\">".4371$cgi->a({-href => href(action=>"blob",4372 hash_base=>$hash,4373 hash=>$from_hash,4374 file_name=>$from_path)},4375"blob". ($i+1)) .4376" | </td>\n";4377}else{4378if($diff->{'to_id'}eq$from_hash) {4379print"<td class=\"link nochange\">";4380}else{4381print"<td class=\"link\">";4382}4383print$cgi->a({-href => href(action=>"blobdiff",4384 hash=>$diff->{'to_id'},4385 hash_parent=>$from_hash,4386 hash_base=>$hash,4387 hash_parent_base=>$hash_parent,4388 file_name=>$diff->{'to_file'},4389 file_parent=>$from_path)},4390"diff". ($i+1)) .4391" | </td>\n";4392}4393}43944395print"<td class=\"link\">";4396if($not_deleted) {4397print$cgi->a({-href => href(action=>"blob",4398 hash=>$diff->{'to_id'},4399 file_name=>$diff->{'to_file'},4400 hash_base=>$hash)},4401"blob");4402print" | "if($has_history);4403}4404if($has_history) {4405print$cgi->a({-href => href(action=>"history",4406 file_name=>$diff->{'to_file'},4407 hash_base=>$hash)},4408"history");4409}4410print"</td>\n";44114412print"</tr>\n";4413next;# instead of 'else' clause, to avoid extra indent4414}4415# else ordinary diff44164417my($to_mode_oct,$to_mode_str,$to_file_type);4418my($from_mode_oct,$from_mode_str,$from_file_type);4419if($diff->{'to_mode'}ne('0' x 6)) {4420$to_mode_oct=oct$diff->{'to_mode'};4421if(S_ISREG($to_mode_oct)) {# only for regular file4422$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4423}4424$to_file_type= file_type($diff->{'to_mode'});4425}4426if($diff->{'from_mode'}ne('0' x 6)) {4427$from_mode_oct=oct$diff->{'from_mode'};4428if(S_ISREG($from_mode_oct)) {# only for regular file4429$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4430}4431$from_file_type= file_type($diff->{'from_mode'});4432}44334434if($diff->{'status'}eq"A") {# created4435my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4436$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4437$mode_chng.="]</span>";4438print"<td>";4439print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4440 hash_base=>$hash, file_name=>$diff->{'file'}),4441-class=>"list"}, esc_path($diff->{'file'}));4442print"</td>\n";4443print"<td>$mode_chng</td>\n";4444print"<td class=\"link\">";4445if($actioneq'commitdiff') {4446# link to patch4447$patchno++;4448print$cgi->a({-href => href(-anchor=>"patch$patchno")},4449"patch") .4450" | ";4451}4452print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4453 hash_base=>$hash, file_name=>$diff->{'file'})},4454"blob");4455print"</td>\n";44564457}elsif($diff->{'status'}eq"D") {# deleted4458my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4459print"<td>";4460print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4461 hash_base=>$parent, file_name=>$diff->{'file'}),4462-class=>"list"}, esc_path($diff->{'file'}));4463print"</td>\n";4464print"<td>$mode_chng</td>\n";4465print"<td class=\"link\">";4466if($actioneq'commitdiff') {4467# link to patch4468$patchno++;4469print$cgi->a({-href => href(-anchor=>"patch$patchno")},4470"patch") .4471" | ";4472}4473print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4474 hash_base=>$parent, file_name=>$diff->{'file'})},4475"blob") ." | ";4476if($have_blame) {4477print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4478 file_name=>$diff->{'file'})},4479"blame") ." | ";4480}4481print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4482 file_name=>$diff->{'file'})},4483"history");4484print"</td>\n";44854486}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4487my$mode_chnge="";4488if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4489$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4490if($from_file_typene$to_file_type) {4491$mode_chnge.=" from$from_file_typeto$to_file_type";4492}4493if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4494if($from_mode_str&&$to_mode_str) {4495$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4496}elsif($to_mode_str) {4497$mode_chnge.=" mode:$to_mode_str";4498}4499}4500$mode_chnge.="]</span>\n";4501}4502print"<td>";4503print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4504 hash_base=>$hash, file_name=>$diff->{'file'}),4505-class=>"list"}, esc_path($diff->{'file'}));4506print"</td>\n";4507print"<td>$mode_chnge</td>\n";4508print"<td class=\"link\">";4509if($actioneq'commitdiff') {4510# link to patch4511$patchno++;4512print$cgi->a({-href => href(-anchor=>"patch$patchno")},4513"patch") .4514" | ";4515}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4516# "commit" view and modified file (not onlu mode changed)4517print$cgi->a({-href => href(action=>"blobdiff",4518 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4519 hash_base=>$hash, hash_parent_base=>$parent,4520 file_name=>$diff->{'file'})},4521"diff") .4522" | ";4523}4524print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4525 hash_base=>$hash, file_name=>$diff->{'file'})},4526"blob") ." | ";4527if($have_blame) {4528print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4529 file_name=>$diff->{'file'})},4530"blame") ." | ";4531}4532print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4533 file_name=>$diff->{'file'})},4534"history");4535print"</td>\n";45364537}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4538my%status_name= ('R'=>'moved','C'=>'copied');4539my$nstatus=$status_name{$diff->{'status'}};4540my$mode_chng="";4541if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4542# mode also for directories, so we cannot use $to_mode_str4543$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4544}4545print"<td>".4546$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4547 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4548-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4549"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4550$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4551 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4552-class=>"list"}, esc_path($diff->{'from_file'})) .4553" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4554"<td class=\"link\">";4555if($actioneq'commitdiff') {4556# link to patch4557$patchno++;4558print$cgi->a({-href => href(-anchor=>"patch$patchno")},4559"patch") .4560" | ";4561}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4562# "commit" view and modified file (not only pure rename or copy)4563print$cgi->a({-href => href(action=>"blobdiff",4564 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4565 hash_base=>$hash, hash_parent_base=>$parent,4566 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4567"diff") .4568" | ";4569}4570print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4571 hash_base=>$parent, file_name=>$diff->{'to_file'})},4572"blob") ." | ";4573if($have_blame) {4574print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4575 file_name=>$diff->{'to_file'})},4576"blame") ." | ";4577}4578print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4579 file_name=>$diff->{'to_file'})},4580"history");4581print"</td>\n";45824583}# we should not encounter Unmerged (U) or Unknown (X) status4584print"</tr>\n";4585}4586print"</tbody>"if$has_header;4587print"</table>\n";4588}45894590sub git_patchset_body {4591my($fd,$difftree,$hash,@hash_parents) =@_;4592my($hash_parent) =$hash_parents[0];45934594my$is_combined= (@hash_parents>1);4595my$patch_idx=0;4596my$patch_number=0;4597my$patch_line;4598my$diffinfo;4599my$to_name;4600my(%from,%to);46014602print"<div class=\"patchset\">\n";46034604# skip to first patch4605while($patch_line= <$fd>) {4606chomp$patch_line;46074608last if($patch_line=~m/^diff /);4609}46104611 PATCH:4612while($patch_line) {46134614# parse "git diff" header line4615if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4616# $1 is from_name, which we do not use4617$to_name= unquote($2);4618$to_name=~s!^b/!!;4619}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4620# $1 is 'cc' or 'combined', which we do not use4621$to_name= unquote($2);4622}else{4623$to_name=undef;4624}46254626# check if current patch belong to current raw line4627# and parse raw git-diff line if needed4628if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4629# this is continuation of a split patch4630print"<div class=\"patch cont\">\n";4631}else{4632# advance raw git-diff output if needed4633$patch_idx++ifdefined$diffinfo;46344635# read and prepare patch information4636$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);46374638# compact combined diff output can have some patches skipped4639# find which patch (using pathname of result) we are at now;4640if($is_combined) {4641while($to_namene$diffinfo->{'to_file'}) {4642print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4643 format_diff_cc_simplified($diffinfo,@hash_parents) .4644"</div>\n";# class="patch"46454646$patch_idx++;4647$patch_number++;46484649last if$patch_idx>$#$difftree;4650$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4651}4652}46534654# modifies %from, %to hashes4655 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);46564657# this is first patch for raw difftree line with $patch_idx index4658# we index @$difftree array from 0, but number patches from 14659print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4660}46614662# git diff header4663#assert($patch_line =~ m/^diff /) if DEBUG;4664#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4665$patch_number++;4666# print "git diff" header4667print format_git_diff_header_line($patch_line,$diffinfo,4668 \%from, \%to);46694670# print extended diff header4671print"<div class=\"diff extended_header\">\n";4672 EXTENDED_HEADER:4673while($patch_line= <$fd>) {4674chomp$patch_line;46754676last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);46774678print format_extended_diff_header_line($patch_line,$diffinfo,4679 \%from, \%to);4680}4681print"</div>\n";# class="diff extended_header"46824683# from-file/to-file diff header4684if(!$patch_line) {4685print"</div>\n";# class="patch"4686last PATCH;4687}4688next PATCH if($patch_line=~m/^diff /);4689#assert($patch_line =~ m/^---/) if DEBUG;46904691my$last_patch_line=$patch_line;4692$patch_line= <$fd>;4693chomp$patch_line;4694#assert($patch_line =~ m/^\+\+\+/) if DEBUG;46954696print format_diff_from_to_header($last_patch_line,$patch_line,4697$diffinfo, \%from, \%to,4698@hash_parents);46994700# the patch itself4701 LINE:4702while($patch_line= <$fd>) {4703chomp$patch_line;47044705next PATCH if($patch_line=~m/^diff /);47064707print format_diff_line($patch_line, \%from, \%to);4708}47094710}continue{4711print"</div>\n";# class="patch"4712}47134714# for compact combined (--cc) format, with chunk and patch simplification4715# the patchset might be empty, but there might be unprocessed raw lines4716for(++$patch_idxif$patch_number>0;4717$patch_idx<@$difftree;4718++$patch_idx) {4719# read and prepare patch information4720$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);47214722# generate anchor for "patch" links in difftree / whatchanged part4723print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4724 format_diff_cc_simplified($diffinfo,@hash_parents) .4725"</div>\n";# class="patch"47264727$patch_number++;4728}47294730if($patch_number==0) {4731if(@hash_parents>1) {4732print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4733}else{4734print"<div class=\"diff nodifferences\">No differences found</div>\n";4735}4736}47374738print"</div>\n";# class="patchset"4739}47404741# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .47424743# fills project list info (age, description, owner, forks) for each4744# project in the list, removing invalid projects from returned list4745# NOTE: modifies $projlist, but does not remove entries from it4746sub fill_project_list_info {4747my($projlist,$check_forks) =@_;4748my@projects;47494750my$show_ctags= gitweb_check_feature('ctags');4751 PROJECT:4752foreachmy$pr(@$projlist) {4753my(@activity) = git_get_last_activity($pr->{'path'});4754unless(@activity) {4755next PROJECT;4756}4757($pr->{'age'},$pr->{'age_string'}) =@activity;4758if(!defined$pr->{'descr'}) {4759my$descr= git_get_project_description($pr->{'path'}) ||"";4760$descr= to_utf8($descr);4761$pr->{'descr_long'} =$descr;4762$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4763}4764if(!defined$pr->{'owner'}) {4765$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4766}4767if($check_forks) {4768my$pname=$pr->{'path'};4769if(($pname=~s/\.git$//) &&4770($pname!~/\/$/) &&4771(-d "$projectroot/$pname")) {4772$pr->{'forks'} ="-d$projectroot/$pname";4773}else{4774$pr->{'forks'} =0;4775}4776}4777$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4778push@projects,$pr;4779}47804781return@projects;4782}47834784# print 'sort by' <th> element, generating 'sort by $name' replay link4785# if that order is not selected4786sub print_sort_th {4787print format_sort_th(@_);4788}47894790sub format_sort_th {4791my($name,$order,$header) =@_;4792my$sort_th="";4793$header||=ucfirst($name);47944795if($ordereq$name) {4796$sort_th.="<th>$header</th>\n";4797}else{4798$sort_th.="<th>".4799$cgi->a({-href => href(-replay=>1, order=>$name),4800-class=>"header"},$header) .4801"</th>\n";4802}48034804return$sort_th;4805}48064807sub git_project_list_body {4808# actually uses global variable $project4809my($projlist,$order,$from,$to,$extra,$no_header) =@_;48104811my$check_forks= gitweb_check_feature('forks');4812my@projects= fill_project_list_info($projlist,$check_forks);48134814$order||=$default_projects_order;4815$from=0unlessdefined$from;4816$to=$#projectsif(!defined$to||$#projects<$to);48174818my%order_info= (4819 project => { key =>'path', type =>'str'},4820 descr => { key =>'descr_long', type =>'str'},4821 owner => { key =>'owner', type =>'str'},4822 age => { key =>'age', type =>'num'}4823);4824my$oi=$order_info{$order};4825if($oi->{'type'}eq'str') {4826@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4827}else{4828@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4829}48304831my$show_ctags= gitweb_check_feature('ctags');4832if($show_ctags) {4833my%ctags;4834foreachmy$p(@projects) {4835foreachmy$ct(keys%{$p->{'ctags'}}) {4836$ctags{$ct} +=$p->{'ctags'}->{$ct};4837}4838}4839my$cloud= git_populate_project_tagcloud(\%ctags);4840print git_show_project_tagcloud($cloud,64);4841}48424843print"<table class=\"project_list\">\n";4844unless($no_header) {4845print"<tr>\n";4846if($check_forks) {4847print"<th></th>\n";4848}4849 print_sort_th('project',$order,'Project');4850 print_sort_th('descr',$order,'Description');4851 print_sort_th('owner',$order,'Owner');4852 print_sort_th('age',$order,'Last Change');4853print"<th></th>\n".# for links4854"</tr>\n";4855}4856my$alternate=1;4857my$tagfilter=$cgi->param('by_tag');4858for(my$i=$from;$i<=$to;$i++) {4859my$pr=$projects[$i];48604861next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4862next if$searchtextand not$pr->{'path'} =~/$searchtext/4863and not$pr->{'descr_long'} =~/$searchtext/;4864# Weed out forks or non-matching entries of search4865if($check_forks) {4866my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4867$forkbase="^$forkbase"if$forkbase;4868next ifnot$searchtextand not$tagfilterand$show_ctags4869and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4870}48714872if($alternate) {4873print"<tr class=\"dark\">\n";4874}else{4875print"<tr class=\"light\">\n";4876}4877$alternate^=1;4878if($check_forks) {4879print"<td>";4880if($pr->{'forks'}) {4881print"<!--$pr->{'forks'} -->\n";4882print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4883}4884print"</td>\n";4885}4886print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4887-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4888"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4889-class=>"list", -title =>$pr->{'descr_long'}},4890 esc_html($pr->{'descr'})) ."</td>\n".4891"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4892print"<td class=\"". age_class($pr->{'age'}) ."\">".4893(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4894"<td class=\"link\">".4895$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4896$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4897$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4898$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4899($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4900"</td>\n".4901"</tr>\n";4902}4903if(defined$extra) {4904print"<tr>\n";4905if($check_forks) {4906print"<td></td>\n";4907}4908print"<td colspan=\"5\">$extra</td>\n".4909"</tr>\n";4910}4911print"</table>\n";4912}49134914sub git_log_body {4915# uses global variable $project4916my($commitlist,$from,$to,$refs,$extra) =@_;49174918$from=0unlessdefined$from;4919$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49204921for(my$i=0;$i<=$to;$i++) {4922my%co= %{$commitlist->[$i]};4923next if!%co;4924my$commit=$co{'id'};4925my$ref= format_ref_marker($refs,$commit);4926 git_print_header_div('commit',4927"<span class=\"age\">$co{'age_string'}</span>".4928 esc_html($co{'title'}) .$ref,4929$commit);4930print"<div class=\"title_text\">\n".4931"<div class=\"log_link\">\n".4932$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4933" | ".4934$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4935" | ".4936$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4937"<br/>\n".4938"</div>\n";4939 git_print_authorship(\%co, -tag =>'span');4940print"<br/>\n</div>\n";49414942print"<div class=\"log_body\">\n";4943 git_print_log($co{'comment'}, -final_empty_line=>1);4944print"</div>\n";4945}4946if($extra) {4947print"<div class=\"page_nav\">\n";4948print"$extra\n";4949print"</div>\n";4950}4951}49524953sub git_shortlog_body {4954# uses global variable $project4955my($commitlist,$from,$to,$refs,$extra) =@_;49564957$from=0unlessdefined$from;4958$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49594960print"<table class=\"shortlog\">\n";4961my$alternate=1;4962for(my$i=$from;$i<=$to;$i++) {4963my%co= %{$commitlist->[$i]};4964my$commit=$co{'id'};4965my$ref= format_ref_marker($refs,$commit);4966if($alternate) {4967print"<tr class=\"dark\">\n";4968}else{4969print"<tr class=\"light\">\n";4970}4971$alternate^=1;4972# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4973print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4974 format_author_html('td', \%co,10) ."<td>";4975print format_subject_html($co{'title'},$co{'title_short'},4976 href(action=>"commit", hash=>$commit),$ref);4977print"</td>\n".4978"<td class=\"link\">".4979$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4980$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4981$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4982my$snapshot_links= format_snapshot_links($commit);4983if(defined$snapshot_links) {4984print" | ".$snapshot_links;4985}4986print"</td>\n".4987"</tr>\n";4988}4989if(defined$extra) {4990print"<tr>\n".4991"<td colspan=\"4\">$extra</td>\n".4992"</tr>\n";4993}4994print"</table>\n";4995}49964997sub git_history_body {4998# Warning: assumes constant type (blob or tree) during history4999my($commitlist,$from,$to,$refs,$extra,5000$file_name,$file_hash,$ftype) =@_;50015002$from=0unlessdefined$from;5003$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});50045005print"<table class=\"history\">\n";5006my$alternate=1;5007for(my$i=$from;$i<=$to;$i++) {5008my%co= %{$commitlist->[$i]};5009if(!%co) {5010next;5011}5012my$commit=$co{'id'};50135014my$ref= format_ref_marker($refs,$commit);50155016if($alternate) {5017print"<tr class=\"dark\">\n";5018}else{5019print"<tr class=\"light\">\n";5020}5021$alternate^=1;5022print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5023# shortlog: format_author_html('td', \%co, 10)5024 format_author_html('td', \%co,15,3) ."<td>";5025# originally git_history used chop_str($co{'title'}, 50)5026print format_subject_html($co{'title'},$co{'title_short'},5027 href(action=>"commit", hash=>$commit),$ref);5028print"</td>\n".5029"<td class=\"link\">".5030$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5031$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");50325033if($ftypeeq'blob') {5034my$blob_current=$file_hash;5035my$blob_parent= git_get_hash_by_path($commit,$file_name);5036if(defined$blob_current&&defined$blob_parent&&5037$blob_currentne$blob_parent) {5038print" | ".5039$cgi->a({-href => href(action=>"blobdiff",5040 hash=>$blob_current, hash_parent=>$blob_parent,5041 hash_base=>$hash_base, hash_parent_base=>$commit,5042 file_name=>$file_name)},5043"diff to current");5044}5045}5046print"</td>\n".5047"</tr>\n";5048}5049if(defined$extra) {5050print"<tr>\n".5051"<td colspan=\"4\">$extra</td>\n".5052"</tr>\n";5053}5054print"</table>\n";5055}50565057sub git_tags_body {5058# uses global variable $project5059my($taglist,$from,$to,$extra) =@_;5060$from=0unlessdefined$from;5061$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);50625063print"<table class=\"tags\">\n";5064my$alternate=1;5065for(my$i=$from;$i<=$to;$i++) {5066my$entry=$taglist->[$i];5067my%tag=%$entry;5068my$comment=$tag{'subject'};5069my$comment_short;5070if(defined$comment) {5071$comment_short= chop_str($comment,30,5);5072}5073if($alternate) {5074print"<tr class=\"dark\">\n";5075}else{5076print"<tr class=\"light\">\n";5077}5078$alternate^=1;5079if(defined$tag{'age'}) {5080print"<td><i>$tag{'age'}</i></td>\n";5081}else{5082print"<td></td>\n";5083}5084print"<td>".5085$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),5086-class=>"list name"}, esc_html($tag{'name'})) .5087"</td>\n".5088"<td>";5089if(defined$comment) {5090print format_subject_html($comment,$comment_short,5091 href(action=>"tag", hash=>$tag{'id'}));5092}5093print"</td>\n".5094"<td class=\"selflink\">";5095if($tag{'type'}eq"tag") {5096print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");5097}else{5098print" ";5099}5100print"</td>\n".5101"<td class=\"link\">"." | ".5102$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});5103if($tag{'reftype'}eq"commit") {5104print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .5105" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");5106}elsif($tag{'reftype'}eq"blob") {5107print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");5108}5109print"</td>\n".5110"</tr>";5111}5112if(defined$extra) {5113print"<tr>\n".5114"<td colspan=\"5\">$extra</td>\n".5115"</tr>\n";5116}5117print"</table>\n";5118}51195120sub git_heads_body {5121# uses global variable $project5122my($headlist,$head,$from,$to,$extra) =@_;5123$from=0unlessdefined$from;5124$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);51255126print"<table class=\"heads\">\n";5127my$alternate=1;5128for(my$i=$from;$i<=$to;$i++) {5129my$entry=$headlist->[$i];5130my%ref=%$entry;5131my$curr=$ref{'id'}eq$head;5132if($alternate) {5133print"<tr class=\"dark\">\n";5134}else{5135print"<tr class=\"light\">\n";5136}5137$alternate^=1;5138print"<td><i>$ref{'age'}</i></td>\n".5139($curr?"<td class=\"current_head\">":"<td>") .5140$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),5141-class=>"list name"},esc_html($ref{'name'})) .5142"</td>\n".5143"<td class=\"link\">".5144$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".5145$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".5146$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .5147"</td>\n".5148"</tr>";5149}5150if(defined$extra) {5151print"<tr>\n".5152"<td colspan=\"3\">$extra</td>\n".5153"</tr>\n";5154}5155print"</table>\n";5156}51575158# Display a single remote block5159sub git_remote_block {5160my($remote,$rdata,$limit,$head) =@_;51615162my$heads=$rdata->{'heads'};5163my$fetch=$rdata->{'fetch'};5164my$push=$rdata->{'push'};51655166my$urls_table="<table class=\"projects_list\">\n";51675168if(defined$fetch) {5169if($fetcheq$push) {5170$urls_table.= format_repo_url("URL",$fetch);5171}else{5172$urls_table.= format_repo_url("Fetch URL",$fetch);5173$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;5174}5175}elsif(defined$push) {5176$urls_table.= format_repo_url("Push URL",$push);5177}else{5178$urls_table.= format_repo_url("","No remote URL");5179}51805181$urls_table.="</table>\n";51825183my$dots;5184if(defined$limit&&$limit<@$heads) {5185$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");5186}51875188print$urls_table;5189 git_heads_body($heads,$head,0,$limit,$dots);5190}51915192# Display a list of remote names with the respective fetch and push URLs5193sub git_remotes_list {5194my($remotedata,$limit) =@_;5195print"<table class=\"heads\">\n";5196my$alternate=1;5197my@remotes=sort keys%$remotedata;51985199my$limited=$limit&&$limit<@remotes;52005201$#remotes=$limit-1if$limited;52025203while(my$remote=shift@remotes) {5204my$rdata=$remotedata->{$remote};5205my$fetch=$rdata->{'fetch'};5206my$push=$rdata->{'push'};5207if($alternate) {5208print"<tr class=\"dark\">\n";5209}else{5210print"<tr class=\"light\">\n";5211}5212$alternate^=1;5213print"<td>".5214$cgi->a({-href=> href(action=>'remotes', hash=>$remote),5215-class=>"list name"},esc_html($remote)) .5216"</td>";5217print"<td class=\"link\">".5218(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .5219" | ".5220(defined$push?$cgi->a({-href=>$push},"push") :"push") .5221"</td>";52225223print"</tr>\n";5224}52255226if($limited) {5227print"<tr>\n".5228"<td colspan=\"3\">".5229$cgi->a({-href => href(action=>"remotes")},"...") .5230"</td>\n"."</tr>\n";5231}52325233print"</table>";5234}52355236# Display remote heads grouped by remote, unless there are too many5237# remotes, in which case we only display the remote names5238sub git_remotes_body {5239my($remotedata,$limit,$head) =@_;5240if($limitand$limit<keys%$remotedata) {5241 git_remotes_list($remotedata,$limit);5242}else{5243 fill_remote_heads($remotedata);5244while(my($remote,$rdata) =each%$remotedata) {5245 git_print_section({-class=>"remote", -id=>$remote},5246["remotes",$remote,$remote],sub{5247 git_remote_block($remote,$rdata,$limit,$head);5248});5249}5250}5251}52525253sub git_search_grep_body {5254my($commitlist,$from,$to,$extra) =@_;5255$from=0unlessdefined$from;5256$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);52575258print"<table class=\"commit_search\">\n";5259my$alternate=1;5260for(my$i=$from;$i<=$to;$i++) {5261my%co= %{$commitlist->[$i]};5262if(!%co) {5263next;5264}5265my$commit=$co{'id'};5266if($alternate) {5267print"<tr class=\"dark\">\n";5268}else{5269print"<tr class=\"light\">\n";5270}5271$alternate^=1;5272print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5273 format_author_html('td', \%co,15,5) .5274"<td>".5275$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5276-class=>"list subject"},5277 chop_and_escape_str($co{'title'},50) ."<br/>");5278my$comment=$co{'comment'};5279foreachmy$line(@$comment) {5280if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5281my($lead,$match,$trail) = ($1,$2,$3);5282$match= chop_str($match,70,5,'center');5283my$contextlen=int((80-length($match))/2);5284$contextlen=30if($contextlen>30);5285$lead= chop_str($lead,$contextlen,10,'left');5286$trail= chop_str($trail,$contextlen,10,'right');52875288$lead= esc_html($lead);5289$match= esc_html($match);5290$trail= esc_html($trail);52915292print"$lead<span class=\"match\">$match</span>$trail<br />";5293}5294}5295print"</td>\n".5296"<td class=\"link\">".5297$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5298" | ".5299$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5300" | ".5301$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5302print"</td>\n".5303"</tr>\n";5304}5305if(defined$extra) {5306print"<tr>\n".5307"<td colspan=\"3\">$extra</td>\n".5308"</tr>\n";5309}5310print"</table>\n";5311}53125313## ======================================================================5314## ======================================================================5315## actions53165317sub git_project_list {5318my$order=$input_params{'order'};5319if(defined$order&&$order!~m/none|project|descr|owner|age/) {5320 die_error(400,"Unknown order parameter");5321}53225323my@list= git_get_projects_list();5324if(!@list) {5325 die_error(404,"No projects found");5326}53275328 git_header_html();5329if(defined$home_text&& -f $home_text) {5330print"<div class=\"index_include\">\n";5331 insert_file($home_text);5332print"</div>\n";5333}5334print$cgi->startform(-method=>"get") .5335"<p class=\"projsearch\">Search:\n".5336$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5337"</p>".5338$cgi->end_form() ."\n";5339 git_project_list_body(\@list,$order);5340 git_footer_html();5341}53425343sub git_forks {5344my$order=$input_params{'order'};5345if(defined$order&&$order!~m/none|project|descr|owner|age/) {5346 die_error(400,"Unknown order parameter");5347}53485349my@list= git_get_projects_list($project);5350if(!@list) {5351 die_error(404,"No forks found");5352}53535354 git_header_html();5355 git_print_page_nav('','');5356 git_print_header_div('summary',"$projectforks");5357 git_project_list_body(\@list,$order);5358 git_footer_html();5359}53605361sub git_project_index {5362my@projects= git_get_projects_list($project);53635364print$cgi->header(5365-type =>'text/plain',5366-charset =>'utf-8',5367-content_disposition =>'inline; filename="index.aux"');53685369foreachmy$pr(@projects) {5370if(!exists$pr->{'owner'}) {5371$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5372}53735374my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5375# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5376$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5377$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5378$path=~s/ /\+/g;5379$owner=~s/ /\+/g;53805381print"$path$owner\n";5382}5383}53845385sub git_summary {5386my$descr= git_get_project_description($project) ||"none";5387my%co= parse_commit("HEAD");5388my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5389my$head=$co{'id'};5390my$remote_heads= gitweb_check_feature('remote_heads');53915392my$owner= git_get_project_owner($project);53935394my$refs= git_get_references();5395# These get_*_list functions return one more to allow us to see if5396# there are more ...5397my@taglist= git_get_tags_list(16);5398my@headlist= git_get_heads_list(16);5399my%remotedata=$remote_heads? git_get_remotes_list() : ();5400my@forklist;5401my$check_forks= gitweb_check_feature('forks');54025403if($check_forks) {5404@forklist= git_get_projects_list($project);5405}54065407 git_header_html();5408 git_print_page_nav('summary','',$head);54095410print"<div class=\"title\"> </div>\n";5411print"<table class=\"projects_list\">\n".5412"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5413"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5414if(defined$cd{'rfc2822'}) {5415print"<tr id=\"metadata_lchange\"><td>last change</td>".5416"<td>".format_timestamp_html(\%cd)."</td></tr>\n";5417}54185419# use per project git URL list in $projectroot/$project/cloneurl5420# or make project git URL from git base URL and project name5421my$url_tag="URL";5422my@url_list= git_get_project_url_list($project);5423@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5424foreachmy$git_url(@url_list) {5425next unless$git_url;5426print format_repo_url($url_tag,$git_url);5427$url_tag="";5428}54295430# Tag cloud5431my$show_ctags= gitweb_check_feature('ctags');5432if($show_ctags) {5433my$ctags= git_get_project_ctags($project);5434my$cloud= git_populate_project_tagcloud($ctags);5435print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5436print"</td>\n<td>"unless%$ctags;5437print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5438print"</td>\n<td>"if%$ctags;5439print git_show_project_tagcloud($cloud,48);5440print"</td></tr>";5441}54425443print"</table>\n";54445445# If XSS prevention is on, we don't include README.html.5446# TODO: Allow a readme in some safe format.5447if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5448print"<div class=\"title\">readme</div>\n".5449"<div class=\"readme\">\n";5450 insert_file("$projectroot/$project/README.html");5451print"\n</div>\n";# class="readme"5452}54535454# we need to request one more than 16 (0..15) to check if5455# those 16 are all5456my@commitlist=$head? parse_commits($head,17) : ();5457if(@commitlist) {5458 git_print_header_div('shortlog');5459 git_shortlog_body(\@commitlist,0,15,$refs,5460$#commitlist<=15?undef:5461$cgi->a({-href => href(action=>"shortlog")},"..."));5462}54635464if(@taglist) {5465 git_print_header_div('tags');5466 git_tags_body(\@taglist,0,15,5467$#taglist<=15?undef:5468$cgi->a({-href => href(action=>"tags")},"..."));5469}54705471if(@headlist) {5472 git_print_header_div('heads');5473 git_heads_body(\@headlist,$head,0,15,5474$#headlist<=15?undef:5475$cgi->a({-href => href(action=>"heads")},"..."));5476}54775478if(%remotedata) {5479 git_print_header_div('remotes');5480 git_remotes_body(\%remotedata,15,$head);5481}54825483if(@forklist) {5484 git_print_header_div('forks');5485 git_project_list_body(\@forklist,'age',0,15,5486$#forklist<=15?undef:5487$cgi->a({-href => href(action=>"forks")},"..."),5488'no_header');5489}54905491 git_footer_html();5492}54935494sub git_tag {5495my%tag= parse_tag($hash);54965497if(!%tag) {5498 die_error(404,"Unknown tag object");5499}55005501my$head= git_get_head_hash($project);5502 git_header_html();5503 git_print_page_nav('','',$head,undef,$head);5504 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5505print"<div class=\"title_text\">\n".5506"<table class=\"object_header\">\n".5507"<tr>\n".5508"<td>object</td>\n".5509"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5510$tag{'object'}) ."</td>\n".5511"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5512$tag{'type'}) ."</td>\n".5513"</tr>\n";5514if(defined($tag{'author'})) {5515 git_print_authorship_rows(\%tag,'author');5516}5517print"</table>\n\n".5518"</div>\n";5519print"<div class=\"page_body\">";5520my$comment=$tag{'comment'};5521foreachmy$line(@$comment) {5522chomp$line;5523print esc_html($line, -nbsp=>1) ."<br/>\n";5524}5525print"</div>\n";5526 git_footer_html();5527}55285529sub git_blame_common {5530my$format=shift||'porcelain';5531if($formateq'porcelain'&&$cgi->param('js')) {5532$format='incremental';5533$action='blame_incremental';# for page title etc5534}55355536# permissions5537 gitweb_check_feature('blame')5538or die_error(403,"Blame view not allowed");55395540# error checking5541 die_error(400,"No file name given")unless$file_name;5542$hash_base||= git_get_head_hash($project);5543 die_error(404,"Couldn't find base commit")unless$hash_base;5544my%co= parse_commit($hash_base)5545or die_error(404,"Commit not found");5546my$ftype="blob";5547if(!defined$hash) {5548$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5549or die_error(404,"Error looking up file");5550}else{5551$ftype= git_get_type($hash);5552if($ftype!~"blob") {5553 die_error(400,"Object is not a blob");5554}5555}55565557my$fd;5558if($formateq'incremental') {5559# get file contents (as base)5560open$fd,"-|", git_cmd(),'cat-file','blob',$hash5561or die_error(500,"Open git-cat-file failed");5562}elsif($formateq'data') {5563# run git-blame --incremental5564open$fd,"-|", git_cmd(),"blame","--incremental",5565$hash_base,"--",$file_name5566or die_error(500,"Open git-blame --incremental failed");5567}else{5568# run git-blame --porcelain5569open$fd,"-|", git_cmd(),"blame",'-p',5570$hash_base,'--',$file_name5571or die_error(500,"Open git-blame --porcelain failed");5572}55735574# incremental blame data returns early5575if($formateq'data') {5576print$cgi->header(5577-type=>"text/plain", -charset =>"utf-8",5578-status=>"200 OK");5579local$| =1;# output autoflush5580printwhile<$fd>;5581close$fd5582or print"ERROR$!\n";55835584print'END';5585if(defined$t0&& gitweb_check_feature('timed')) {5586print' '.5587 tv_interval($t0, [ gettimeofday() ]).5588' '.$number_of_git_cmds;5589}5590print"\n";55915592return;5593}55945595# page header5596 git_header_html();5597my$formats_nav=5598$cgi->a({-href => href(action=>"blob", -replay=>1)},5599"blob") .5600" | ";5601if($formateq'incremental') {5602$formats_nav.=5603$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5604"blame") ." (non-incremental)";5605}else{5606$formats_nav.=5607$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5608"blame") ." (incremental)";5609}5610$formats_nav.=5611" | ".5612$cgi->a({-href => href(action=>"history", -replay=>1)},5613"history") .5614" | ".5615$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5616"HEAD");5617 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5618 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5619 git_print_page_path($file_name,$ftype,$hash_base);56205621# page body5622if($formateq'incremental') {5623print"<noscript>\n<div class=\"error\"><center><b>\n".5624"This page requires JavaScript to run.\nUse ".5625$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5626'this page').5627" instead.\n".5628"</b></center></div>\n</noscript>\n";56295630print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5631}56325633print qq!<div class="page_body">\n!;5634print qq!<div id="progress_info">.../ ...</div>\n!5635if($formateq'incremental');5636print qq!<table id="blame_table"class="blame" width="100%">\n!.5637#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5638 qq!<thead>\n!.5639 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5640 qq!</thead>\n!.5641 qq!<tbody>\n!;56425643my@rev_color=qw(light dark);5644my$num_colors=scalar(@rev_color);5645my$current_color=0;56465647if($formateq'incremental') {5648my$color_class=$rev_color[$current_color];56495650#contents of a file5651my$linenr=0;5652 LINE:5653while(my$line= <$fd>) {5654chomp$line;5655$linenr++;56565657print qq!<tr id="l$linenr"class="$color_class">!.5658 qq!<td class="sha1"><a href=""> </a></td>!.5659 qq!<td class="linenr">!.5660 qq!<a class="linenr" href="">$linenr</a></td>!;5661print qq!<td class="pre">! . esc_html($line) ."</td>\n";5662print qq!</tr>\n!;5663}56645665}else{# porcelain, i.e. ordinary blame5666my%metainfo= ();# saves information about commits56675668# blame data5669 LINE:5670while(my$line= <$fd>) {5671chomp$line;5672# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5673# no <lines in group> for subsequent lines in group of lines5674my($full_rev,$orig_lineno,$lineno,$group_size) =5675($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5676if(!exists$metainfo{$full_rev}) {5677$metainfo{$full_rev} = {'nprevious'=>0};5678}5679my$meta=$metainfo{$full_rev};5680my$data;5681while($data= <$fd>) {5682chomp$data;5683last if($data=~s/^\t//);# contents of line5684if($data=~/^(\S+)(?: (.*))?$/) {5685$meta->{$1} =$2unlessexists$meta->{$1};5686}5687if($data=~/^previous /) {5688$meta->{'nprevious'}++;5689}5690}5691my$short_rev=substr($full_rev,0,8);5692my$author=$meta->{'author'};5693my%date=5694 parse_date($meta->{'author-time'},$meta->{'author-tz'});5695my$date=$date{'iso-tz'};5696if($group_size) {5697$current_color= ($current_color+1) %$num_colors;5698}5699my$tr_class=$rev_color[$current_color];5700$tr_class.=' boundary'if(exists$meta->{'boundary'});5701$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5702$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5703print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5704if($group_size) {5705print"<td class=\"sha1\"";5706print" title=\"". esc_html($author) .",$date\"";5707print" rowspan=\"$group_size\""if($group_size>1);5708print">";5709print$cgi->a({-href => href(action=>"commit",5710 hash=>$full_rev,5711 file_name=>$file_name)},5712 esc_html($short_rev));5713if($group_size>=2) {5714my@author_initials= ($author=~/\b([[:upper:]])\B/g);5715if(@author_initials) {5716print"<br />".5717 esc_html(join('',@author_initials));5718# or join('.', ...)5719}5720}5721print"</td>\n";5722}5723# 'previous' <sha1 of parent commit> <filename at commit>5724if(exists$meta->{'previous'} &&5725$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5726$meta->{'parent'} =$1;5727$meta->{'file_parent'} = unquote($2);5728}5729my$linenr_commit=5730exists($meta->{'parent'}) ?5731$meta->{'parent'} :$full_rev;5732my$linenr_filename=5733exists($meta->{'file_parent'}) ?5734$meta->{'file_parent'} : unquote($meta->{'filename'});5735my$blamed= href(action =>'blame',5736 file_name =>$linenr_filename,5737 hash_base =>$linenr_commit);5738print"<td class=\"linenr\">";5739print$cgi->a({ -href =>"$blamed#l$orig_lineno",5740-class=>"linenr"},5741 esc_html($lineno));5742print"</td>";5743print"<td class=\"pre\">". esc_html($data) ."</td>\n";5744print"</tr>\n";5745}# end while57465747}57485749# footer5750print"</tbody>\n".5751"</table>\n";# class="blame"5752print"</div>\n";# class="blame_body"5753close$fd5754or print"Reading blob failed\n";57555756 git_footer_html();5757}57585759sub git_blame {5760 git_blame_common();5761}57625763sub git_blame_incremental {5764 git_blame_common('incremental');5765}57665767sub git_blame_data {5768 git_blame_common('data');5769}57705771sub git_tags {5772my$head= git_get_head_hash($project);5773 git_header_html();5774 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));5775 git_print_header_div('summary',$project);57765777my@tagslist= git_get_tags_list();5778if(@tagslist) {5779 git_tags_body(\@tagslist);5780}5781 git_footer_html();5782}57835784sub git_heads {5785my$head= git_get_head_hash($project);5786 git_header_html();5787 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));5788 git_print_header_div('summary',$project);57895790my@headslist= git_get_heads_list();5791if(@headslist) {5792 git_heads_body(\@headslist,$head);5793}5794 git_footer_html();5795}57965797# used both for single remote view and for list of all the remotes5798sub git_remotes {5799 gitweb_check_feature('remote_heads')5800or die_error(403,"Remote heads view is disabled");58015802my$head= git_get_head_hash($project);5803my$remote=$input_params{'hash'};58045805my$remotedata= git_get_remotes_list($remote);5806 die_error(500,"Unable to get remote information")unlessdefined$remotedata;58075808unless(%$remotedata) {5809 die_error(404,defined$remote?5810"Remote$remotenot found":5811"No remotes found");5812}58135814 git_header_html(undef,undef, -action_extra =>$remote);5815 git_print_page_nav('','',$head,undef,$head,5816 format_ref_views($remote?'':'remotes'));58175818 fill_remote_heads($remotedata);5819if(defined$remote) {5820 git_print_header_div('remotes',"$remoteremote for$project");5821 git_remote_block($remote,$remotedata->{$remote},undef,$head);5822}else{5823 git_print_header_div('summary',"$projectremotes");5824 git_remotes_body($remotedata,undef,$head);5825}58265827 git_footer_html();5828}58295830sub git_blob_plain {5831my$type=shift;5832my$expires;58335834if(!defined$hash) {5835if(defined$file_name) {5836my$base=$hash_base|| git_get_head_hash($project);5837$hash= git_get_hash_by_path($base,$file_name,"blob")5838or die_error(404,"Cannot find file");5839}else{5840 die_error(400,"No file name defined");5841}5842}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5843# blobs defined by non-textual hash id's can be cached5844$expires="+1d";5845}58465847open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5848or die_error(500,"Open git-cat-file blob '$hash' failed");58495850# content-type (can include charset)5851$type= blob_contenttype($fd,$file_name,$type);58525853# "save as" filename, even when no $file_name is given5854my$save_as="$hash";5855if(defined$file_name) {5856$save_as=$file_name;5857}elsif($type=~m/^text\//) {5858$save_as.='.txt';5859}58605861# With XSS prevention on, blobs of all types except a few known safe5862# ones are served with "Content-Disposition: attachment" to make sure5863# they don't run in our security domain. For certain image types,5864# blob view writes an <img> tag referring to blob_plain view, and we5865# want to be sure not to break that by serving the image as an5866# attachment (though Firefox 3 doesn't seem to care).5867my$sandbox=$prevent_xss&&5868$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;58695870print$cgi->header(5871-type =>$type,5872-expires =>$expires,5873-content_disposition =>5874($sandbox?'attachment':'inline')5875.'; filename="'.$save_as.'"');5876local$/=undef;5877binmode STDOUT,':raw';5878print<$fd>;5879binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5880close$fd;5881}58825883sub git_blob {5884my$expires;58855886if(!defined$hash) {5887if(defined$file_name) {5888my$base=$hash_base|| git_get_head_hash($project);5889$hash= git_get_hash_by_path($base,$file_name,"blob")5890or die_error(404,"Cannot find file");5891}else{5892 die_error(400,"No file name defined");5893}5894}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5895# blobs defined by non-textual hash id's can be cached5896$expires="+1d";5897}58985899my$have_blame= gitweb_check_feature('blame');5900open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5901or die_error(500,"Couldn't cat$file_name,$hash");5902my$mimetype= blob_mimetype($fd,$file_name);5903# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5904if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5905close$fd;5906return git_blob_plain($mimetype);5907}5908# we can have blame only for text/* mimetype5909$have_blame&&= ($mimetype=~m!^text/!);59105911my$highlight= gitweb_check_feature('highlight');5912my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);5913$fd= run_highlighter($fd,$highlight,$syntax)5914if$syntax;59155916 git_header_html(undef,$expires);5917my$formats_nav='';5918if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5919if(defined$file_name) {5920if($have_blame) {5921$formats_nav.=5922$cgi->a({-href => href(action=>"blame", -replay=>1)},5923"blame") .5924" | ";5925}5926$formats_nav.=5927$cgi->a({-href => href(action=>"history", -replay=>1)},5928"history") .5929" | ".5930$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5931"raw") .5932" | ".5933$cgi->a({-href => href(action=>"blob",5934 hash_base=>"HEAD", file_name=>$file_name)},5935"HEAD");5936}else{5937$formats_nav.=5938$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5939"raw");5940}5941 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5942 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5943}else{5944print"<div class=\"page_nav\">\n".5945"<br/><br/></div>\n".5946"<div class=\"title\">".esc_html($hash)."</div>\n";5947}5948 git_print_page_path($file_name,"blob",$hash_base);5949print"<div class=\"page_body\">\n";5950if($mimetype=~m!^image/!) {5951print qq!<img type="!.esc_attr($mimetype).qq!"!;5952if($file_name) {5953print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;5954}5955print qq! src="! .5956 href(action=>"blob_plain", hash=>$hash,5957 hash_base=>$hash_base, file_name=>$file_name) .5958 qq!"/>\n!;5959}else{5960my$nr;5961while(my$line= <$fd>) {5962chomp$line;5963$nr++;5964$line= untabify($line);5965printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,5966$nr, esc_attr(href(-replay =>1)),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);5967}5968}5969close$fd5970or print"Reading blob failed.\n";5971print"</div>";5972 git_footer_html();5973}59745975sub git_tree {5976if(!defined$hash_base) {5977$hash_base="HEAD";5978}5979if(!defined$hash) {5980if(defined$file_name) {5981$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5982}else{5983$hash=$hash_base;5984}5985}5986 die_error(404,"No such tree")unlessdefined($hash);59875988my$show_sizes= gitweb_check_feature('show-sizes');5989my$have_blame= gitweb_check_feature('blame');59905991my@entries= ();5992{5993local$/="\0";5994open my$fd,"-|", git_cmd(),"ls-tree",'-z',5995($show_sizes?'-l': ()),@extra_options,$hash5996or die_error(500,"Open git-ls-tree failed");5997@entries=map{chomp;$_} <$fd>;5998close$fd5999or die_error(404,"Reading tree failed");6000}60016002my$refs= git_get_references();6003my$ref= format_ref_marker($refs,$hash_base);6004 git_header_html();6005my$basedir='';6006if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6007my@views_nav= ();6008if(defined$file_name) {6009push@views_nav,6010$cgi->a({-href => href(action=>"history", -replay=>1)},6011"history"),6012$cgi->a({-href => href(action=>"tree",6013 hash_base=>"HEAD", file_name=>$file_name)},6014"HEAD"),6015}6016my$snapshot_links= format_snapshot_links($hash);6017if(defined$snapshot_links) {6018# FIXME: Should be available when we have no hash base as well.6019push@views_nav,$snapshot_links;6020}6021 git_print_page_nav('tree','',$hash_base,undef,undef,6022join(' | ',@views_nav));6023 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);6024}else{6025undef$hash_base;6026print"<div class=\"page_nav\">\n";6027print"<br/><br/></div>\n";6028print"<div class=\"title\">".esc_html($hash)."</div>\n";6029}6030if(defined$file_name) {6031$basedir=$file_name;6032if($basedirne''&&substr($basedir, -1)ne'/') {6033$basedir.='/';6034}6035 git_print_page_path($file_name,'tree',$hash_base);6036}6037print"<div class=\"page_body\">\n";6038print"<table class=\"tree\">\n";6039my$alternate=1;6040# '..' (top directory) link if possible6041if(defined$hash_base&&6042defined$file_name&&$file_name=~m![^/]+$!) {6043if($alternate) {6044print"<tr class=\"dark\">\n";6045}else{6046print"<tr class=\"light\">\n";6047}6048$alternate^=1;60496050my$up=$file_name;6051$up=~s!/?[^/]+$!!;6052undef$upunless$up;6053# based on git_print_tree_entry6054print'<td class="mode">'. mode_str('040000') ."</td>\n";6055print'<td class="size"> </td>'."\n"if$show_sizes;6056print'<td class="list">';6057print$cgi->a({-href => href(action=>"tree",6058 hash_base=>$hash_base,6059 file_name=>$up)},6060"..");6061print"</td>\n";6062print"<td class=\"link\"></td>\n";60636064print"</tr>\n";6065}6066foreachmy$line(@entries) {6067my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);60686069if($alternate) {6070print"<tr class=\"dark\">\n";6071}else{6072print"<tr class=\"light\">\n";6073}6074$alternate^=1;60756076 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);60776078print"</tr>\n";6079}6080print"</table>\n".6081"</div>";6082 git_footer_html();6083}60846085sub snapshot_name {6086my($project,$hash) =@_;60876088# path/to/project.git -> project6089# path/to/project/.git -> project6090my$name= to_utf8($project);6091$name=~ s,([^/])/*\.git$,$1,;6092$name= basename($name);6093# sanitize name6094$name=~s/[[:cntrl:]]/?/g;60956096my$ver=$hash;6097if($hash=~/^[0-9a-fA-F]+$/) {6098# shorten SHA-1 hash6099my$full_hash= git_get_full_hash($project,$hash);6100if($full_hash=~/^$hash/&&length($hash) >7) {6101$ver= git_get_short_hash($project,$hash);6102}6103}elsif($hash=~m!^refs/tags/(.*)$!) {6104# tags don't need shortened SHA-1 hash6105$ver=$1;6106}else{6107# branches and other need shortened SHA-1 hash6108if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {6109$ver=$1;6110}6111$ver.='-'. git_get_short_hash($project,$hash);6112}6113# in case of hierarchical branch names6114$ver=~s!/!.!g;61156116# name = project-version_string6117$name="$name-$ver";61186119returnwantarray? ($name,$name) :$name;6120}61216122sub git_snapshot {6123my$format=$input_params{'snapshot_format'};6124if(!@snapshot_fmts) {6125 die_error(403,"Snapshots not allowed");6126}6127# default to first supported snapshot format6128$format||=$snapshot_fmts[0];6129if($format!~m/^[a-z0-9]+$/) {6130 die_error(400,"Invalid snapshot format parameter");6131}elsif(!exists($known_snapshot_formats{$format})) {6132 die_error(400,"Unknown snapshot format");6133}elsif($known_snapshot_formats{$format}{'disabled'}) {6134 die_error(403,"Snapshot format not allowed");6135}elsif(!grep($_eq$format,@snapshot_fmts)) {6136 die_error(403,"Unsupported snapshot format");6137}61386139my$type= git_get_type("$hash^{}");6140if(!$type) {6141 die_error(404,'Object does not exist');6142}elsif($typeeq'blob') {6143 die_error(400,'Object is not a tree-ish');6144}61456146my($name,$prefix) = snapshot_name($project,$hash);6147my$filename="$name$known_snapshot_formats{$format}{'suffix'}";6148my$cmd= quote_command(6149 git_cmd(),'archive',6150"--format=$known_snapshot_formats{$format}{'format'}",6151"--prefix=$prefix/",$hash);6152if(exists$known_snapshot_formats{$format}{'compressor'}) {6153$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});6154}61556156$filename=~s/(["\\])/\\$1/g;6157print$cgi->header(6158-type =>$known_snapshot_formats{$format}{'type'},6159-content_disposition =>'inline; filename="'.$filename.'"',6160-status =>'200 OK');61616162open my$fd,"-|",$cmd6163or die_error(500,"Execute git-archive failed");6164binmode STDOUT,':raw';6165print<$fd>;6166binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6167close$fd;6168}61696170sub git_log_generic {6171my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;61726173my$head= git_get_head_hash($project);6174if(!defined$base) {6175$base=$head;6176}6177if(!defined$page) {6178$page=0;6179}6180my$refs= git_get_references();61816182my$commit_hash=$base;6183if(defined$parent) {6184$commit_hash="$parent..$base";6185}6186my@commitlist=6187 parse_commits($commit_hash,101, (100*$page),6188defined$file_name? ($file_name,"--full-history") : ());61896190my$ftype;6191if(!defined$file_hash&&defined$file_name) {6192# some commits could have deleted file in question,6193# and not have it in tree, but one of them has to have it6194for(my$i=0;$i<@commitlist;$i++) {6195$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);6196last ifdefined$file_hash;6197}6198}6199if(defined$file_hash) {6200$ftype= git_get_type($file_hash);6201}6202if(defined$file_name&& !defined$ftype) {6203 die_error(500,"Unknown type of object");6204}6205my%co;6206if(defined$file_name) {6207%co= parse_commit($base)6208or die_error(404,"Unknown commit object");6209}621062116212my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);6213my$next_link='';6214if($#commitlist>=100) {6215$next_link=6216$cgi->a({-href => href(-replay=>1, page=>$page+1),6217-accesskey =>"n", -title =>"Alt-n"},"next");6218}6219my$patch_max= gitweb_get_feature('patches');6220if($patch_max&& !defined$file_name) {6221if($patch_max<0||@commitlist<=$patch_max) {6222$paging_nav.=" ⋅ ".6223$cgi->a({-href => href(action=>"patches", -replay=>1)},6224"patches");6225}6226}62276228 git_header_html();6229 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);6230if(defined$file_name) {6231 git_print_header_div('commit', esc_html($co{'title'}),$base);6232}else{6233 git_print_header_div('summary',$project)6234}6235 git_print_page_path($file_name,$ftype,$hash_base)6236if(defined$file_name);62376238$body_subr->(\@commitlist,0,99,$refs,$next_link,6239$file_name,$file_hash,$ftype);62406241 git_footer_html();6242}62436244sub git_log {6245 git_log_generic('log', \&git_log_body,6246$hash,$hash_parent);6247}62486249sub git_commit {6250$hash||=$hash_base||"HEAD";6251my%co= parse_commit($hash)6252or die_error(404,"Unknown commit object");62536254my$parent=$co{'parent'};6255my$parents=$co{'parents'};# listref62566257# we need to prepare $formats_nav before any parameter munging6258my$formats_nav;6259if(!defined$parent) {6260# --root commitdiff6261$formats_nav.='(initial)';6262}elsif(@$parents==1) {6263# single parent commit6264$formats_nav.=6265'(parent: '.6266$cgi->a({-href => href(action=>"commit",6267 hash=>$parent)},6268 esc_html(substr($parent,0,7))) .6269')';6270}else{6271# merge commit6272$formats_nav.=6273'(merge: '.6274join(' ',map{6275$cgi->a({-href => href(action=>"commit",6276 hash=>$_)},6277 esc_html(substr($_,0,7)));6278}@$parents) .6279')';6280}6281if(gitweb_check_feature('patches') &&@$parents<=1) {6282$formats_nav.=" | ".6283$cgi->a({-href => href(action=>"patch", -replay=>1)},6284"patch");6285}62866287if(!defined$parent) {6288$parent="--root";6289}6290my@difftree;6291open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",6292@diff_opts,6293(@$parents<=1?$parent:'-c'),6294$hash,"--"6295or die_error(500,"Open git-diff-tree failed");6296@difftree=map{chomp;$_} <$fd>;6297close$fdor die_error(404,"Reading git-diff-tree failed");62986299# non-textual hash id's can be cached6300my$expires;6301if($hash=~m/^[0-9a-fA-F]{40}$/) {6302$expires="+1d";6303}6304my$refs= git_get_references();6305my$ref= format_ref_marker($refs,$co{'id'});63066307 git_header_html(undef,$expires);6308 git_print_page_nav('commit','',6309$hash,$co{'tree'},$hash,6310$formats_nav);63116312if(defined$co{'parent'}) {6313 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6314}else{6315 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6316}6317print"<div class=\"title_text\">\n".6318"<table class=\"object_header\">\n";6319 git_print_authorship_rows(\%co);6320print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6321print"<tr>".6322"<td>tree</td>".6323"<td class=\"sha1\">".6324$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6325class=>"list"},$co{'tree'}) .6326"</td>".6327"<td class=\"link\">".6328$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6329"tree");6330my$snapshot_links= format_snapshot_links($hash);6331if(defined$snapshot_links) {6332print" | ".$snapshot_links;6333}6334print"</td>".6335"</tr>\n";63366337foreachmy$par(@$parents) {6338print"<tr>".6339"<td>parent</td>".6340"<td class=\"sha1\">".6341$cgi->a({-href => href(action=>"commit", hash=>$par),6342class=>"list"},$par) .6343"</td>".6344"<td class=\"link\">".6345$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6346" | ".6347$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6348"</td>".6349"</tr>\n";6350}6351print"</table>".6352"</div>\n";63536354print"<div class=\"page_body\">\n";6355 git_print_log($co{'comment'});6356print"</div>\n";63576358 git_difftree_body(\@difftree,$hash,@$parents);63596360 git_footer_html();6361}63626363sub git_object {6364# object is defined by:6365# - hash or hash_base alone6366# - hash_base and file_name6367my$type;63686369# - hash or hash_base alone6370if($hash|| ($hash_base&& !defined$file_name)) {6371my$object_id=$hash||$hash_base;63726373open my$fd,"-|", quote_command(6374 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6375or die_error(404,"Object does not exist");6376$type= <$fd>;6377chomp$type;6378close$fd6379or die_error(404,"Object does not exist");63806381# - hash_base and file_name6382}elsif($hash_base&&defined$file_name) {6383$file_name=~ s,/+$,,;63846385system(git_cmd(),"cat-file",'-e',$hash_base) ==06386or die_error(404,"Base object does not exist");63876388# here errors should not hapen6389open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6390or die_error(500,"Open git-ls-tree failed");6391my$line= <$fd>;6392close$fd;63936394#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6395unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6396 die_error(404,"File or directory for given base does not exist");6397}6398$type=$2;6399$hash=$3;6400}else{6401 die_error(400,"Not enough information to find object");6402}64036404print$cgi->redirect(-uri => href(action=>$type, -full=>1,6405 hash=>$hash, hash_base=>$hash_base,6406 file_name=>$file_name),6407-status =>'302 Found');6408}64096410sub git_blobdiff {6411my$format=shift||'html';64126413my$fd;6414my@difftree;6415my%diffinfo;6416my$expires;64176418# preparing $fd and %diffinfo for git_patchset_body6419# new style URI6420if(defined$hash_base&&defined$hash_parent_base) {6421if(defined$file_name) {6422# read raw output6423open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6424$hash_parent_base,$hash_base,6425"--", (defined$file_parent?$file_parent: ()),$file_name6426or die_error(500,"Open git-diff-tree failed");6427@difftree=map{chomp;$_} <$fd>;6428close$fd6429or die_error(404,"Reading git-diff-tree failed");6430@difftree6431or die_error(404,"Blob diff not found");64326433}elsif(defined$hash&&6434$hash=~/[0-9a-fA-F]{40}/) {6435# try to find filename from $hash64366437# read filtered raw output6438open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6439$hash_parent_base,$hash_base,"--"6440or die_error(500,"Open git-diff-tree failed");6441@difftree=6442# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6443# $hash == to_id6444grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6445map{chomp;$_} <$fd>;6446close$fd6447or die_error(404,"Reading git-diff-tree failed");6448@difftree6449or die_error(404,"Blob diff not found");64506451}else{6452 die_error(400,"Missing one of the blob diff parameters");6453}64546455if(@difftree>1) {6456 die_error(400,"Ambiguous blob diff specification");6457}64586459%diffinfo= parse_difftree_raw_line($difftree[0]);6460$file_parent||=$diffinfo{'from_file'} ||$file_name;6461$file_name||=$diffinfo{'to_file'};64626463$hash_parent||=$diffinfo{'from_id'};6464$hash||=$diffinfo{'to_id'};64656466# non-textual hash id's can be cached6467if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6468$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6469$expires='+1d';6470}64716472# open patch output6473open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6474'-p', ($formateq'html'?"--full-index": ()),6475$hash_parent_base,$hash_base,6476"--", (defined$file_parent?$file_parent: ()),$file_name6477or die_error(500,"Open git-diff-tree failed");6478}64796480# old/legacy style URI -- not generated anymore since 1.4.3.6481if(!%diffinfo) {6482 die_error('404 Not Found',"Missing one of the blob diff parameters")6483}64846485# header6486if($formateq'html') {6487my$formats_nav=6488$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6489"raw");6490 git_header_html(undef,$expires);6491if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6492 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6493 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6494}else{6495print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6496print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";6497}6498if(defined$file_name) {6499 git_print_page_path($file_name,"blob",$hash_base);6500}else{6501print"<div class=\"page_path\"></div>\n";6502}65036504}elsif($formateq'plain') {6505print$cgi->header(6506-type =>'text/plain',6507-charset =>'utf-8',6508-expires =>$expires,6509-content_disposition =>'inline; filename="'."$file_name".'.patch"');65106511print"X-Git-Url: ".$cgi->self_url() ."\n\n";65126513}else{6514 die_error(400,"Unknown blobdiff format");6515}65166517# patch6518if($formateq'html') {6519print"<div class=\"page_body\">\n";65206521 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6522close$fd;65236524print"</div>\n";# class="page_body"6525 git_footer_html();65266527}else{6528while(my$line= <$fd>) {6529$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6530$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;65316532print$line;65336534last if$line=~m!^\+\+\+!;6535}6536local$/=undef;6537print<$fd>;6538close$fd;6539}6540}65416542sub git_blobdiff_plain {6543 git_blobdiff('plain');6544}65456546sub git_commitdiff {6547my%params=@_;6548my$format=$params{-format} ||'html';65496550my($patch_max) = gitweb_get_feature('patches');6551if($formateq'patch') {6552 die_error(403,"Patch view not allowed")unless$patch_max;6553}65546555$hash||=$hash_base||"HEAD";6556my%co= parse_commit($hash)6557or die_error(404,"Unknown commit object");65586559# choose format for commitdiff for merge6560if(!defined$hash_parent&& @{$co{'parents'}} >1) {6561$hash_parent='--cc';6562}6563# we need to prepare $formats_nav before almost any parameter munging6564my$formats_nav;6565if($formateq'html') {6566$formats_nav=6567$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6568"raw");6569if($patch_max&& @{$co{'parents'}} <=1) {6570$formats_nav.=" | ".6571$cgi->a({-href => href(action=>"patch", -replay=>1)},6572"patch");6573}65746575if(defined$hash_parent&&6576$hash_parentne'-c'&&$hash_parentne'--cc') {6577# commitdiff with two commits given6578my$hash_parent_short=$hash_parent;6579if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6580$hash_parent_short=substr($hash_parent,0,7);6581}6582$formats_nav.=6583' (from';6584for(my$i=0;$i< @{$co{'parents'}};$i++) {6585if($co{'parents'}[$i]eq$hash_parent) {6586$formats_nav.=' parent '. ($i+1);6587last;6588}6589}6590$formats_nav.=': '.6591$cgi->a({-href => href(action=>"commitdiff",6592 hash=>$hash_parent)},6593 esc_html($hash_parent_short)) .6594')';6595}elsif(!$co{'parent'}) {6596# --root commitdiff6597$formats_nav.=' (initial)';6598}elsif(scalar@{$co{'parents'}} ==1) {6599# single parent commit6600$formats_nav.=6601' (parent: '.6602$cgi->a({-href => href(action=>"commitdiff",6603 hash=>$co{'parent'})},6604 esc_html(substr($co{'parent'},0,7))) .6605')';6606}else{6607# merge commit6608if($hash_parenteq'--cc') {6609$formats_nav.=' | '.6610$cgi->a({-href => href(action=>"commitdiff",6611 hash=>$hash, hash_parent=>'-c')},6612'combined');6613}else{# $hash_parent eq '-c'6614$formats_nav.=' | '.6615$cgi->a({-href => href(action=>"commitdiff",6616 hash=>$hash, hash_parent=>'--cc')},6617'compact');6618}6619$formats_nav.=6620' (merge: '.6621join(' ',map{6622$cgi->a({-href => href(action=>"commitdiff",6623 hash=>$_)},6624 esc_html(substr($_,0,7)));6625} @{$co{'parents'}} ) .6626')';6627}6628}66296630my$hash_parent_param=$hash_parent;6631if(!defined$hash_parent_param) {6632# --cc for multiple parents, --root for parentless6633$hash_parent_param=6634@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6635}66366637# read commitdiff6638my$fd;6639my@difftree;6640if($formateq'html') {6641open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6642"--no-commit-id","--patch-with-raw","--full-index",6643$hash_parent_param,$hash,"--"6644or die_error(500,"Open git-diff-tree failed");66456646while(my$line= <$fd>) {6647chomp$line;6648# empty line ends raw part of diff-tree output6649last unless$line;6650push@difftree,scalar parse_difftree_raw_line($line);6651}66526653}elsif($formateq'plain') {6654open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6655'-p',$hash_parent_param,$hash,"--"6656or die_error(500,"Open git-diff-tree failed");6657}elsif($formateq'patch') {6658# For commit ranges, we limit the output to the number of6659# patches specified in the 'patches' feature.6660# For single commits, we limit the output to a single patch,6661# diverging from the git-format-patch default.6662my@commit_spec= ();6663if($hash_parent) {6664if($patch_max>0) {6665push@commit_spec,"-$patch_max";6666}6667push@commit_spec,'-n',"$hash_parent..$hash";6668}else{6669if($params{-single}) {6670push@commit_spec,'-1';6671}else{6672if($patch_max>0) {6673push@commit_spec,"-$patch_max";6674}6675push@commit_spec,"-n";6676}6677push@commit_spec,'--root',$hash;6678}6679open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6680'--encoding=utf8','--stdout',@commit_spec6681or die_error(500,"Open git-format-patch failed");6682}else{6683 die_error(400,"Unknown commitdiff format");6684}66856686# non-textual hash id's can be cached6687my$expires;6688if($hash=~m/^[0-9a-fA-F]{40}$/) {6689$expires="+1d";6690}66916692# write commit message6693if($formateq'html') {6694my$refs= git_get_references();6695my$ref= format_ref_marker($refs,$co{'id'});66966697 git_header_html(undef,$expires);6698 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6699 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6700print"<div class=\"title_text\">\n".6701"<table class=\"object_header\">\n";6702 git_print_authorship_rows(\%co);6703print"</table>".6704"</div>\n";6705print"<div class=\"page_body\">\n";6706if(@{$co{'comment'}} >1) {6707print"<div class=\"log\">\n";6708 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6709print"</div>\n";# class="log"6710}67116712}elsif($formateq'plain') {6713my$refs= git_get_references("tags");6714my$tagname= git_get_rev_name_tags($hash);6715my$filename= basename($project) ."-$hash.patch";67166717print$cgi->header(6718-type =>'text/plain',6719-charset =>'utf-8',6720-expires =>$expires,6721-content_disposition =>'inline; filename="'."$filename".'"');6722my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6723print"From: ". to_utf8($co{'author'}) ."\n";6724print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6725print"Subject: ". to_utf8($co{'title'}) ."\n";67266727print"X-Git-Tag:$tagname\n"if$tagname;6728print"X-Git-Url: ".$cgi->self_url() ."\n\n";67296730foreachmy$line(@{$co{'comment'}}) {6731print to_utf8($line) ."\n";6732}6733print"---\n\n";6734}elsif($formateq'patch') {6735my$filename= basename($project) ."-$hash.patch";67366737print$cgi->header(6738-type =>'text/plain',6739-charset =>'utf-8',6740-expires =>$expires,6741-content_disposition =>'inline; filename="'."$filename".'"');6742}67436744# write patch6745if($formateq'html') {6746my$use_parents= !defined$hash_parent||6747$hash_parenteq'-c'||$hash_parenteq'--cc';6748 git_difftree_body(\@difftree,$hash,6749$use_parents? @{$co{'parents'}} :$hash_parent);6750print"<br/>\n";67516752 git_patchset_body($fd, \@difftree,$hash,6753$use_parents? @{$co{'parents'}} :$hash_parent);6754close$fd;6755print"</div>\n";# class="page_body"6756 git_footer_html();67576758}elsif($formateq'plain') {6759local$/=undef;6760print<$fd>;6761close$fd6762or print"Reading git-diff-tree failed\n";6763}elsif($formateq'patch') {6764local$/=undef;6765print<$fd>;6766close$fd6767or print"Reading git-format-patch failed\n";6768}6769}67706771sub git_commitdiff_plain {6772 git_commitdiff(-format =>'plain');6773}67746775# format-patch-style patches6776sub git_patch {6777 git_commitdiff(-format =>'patch', -single =>1);6778}67796780sub git_patches {6781 git_commitdiff(-format =>'patch');6782}67836784sub git_history {6785 git_log_generic('history', \&git_history_body,6786$hash_base,$hash_parent_base,6787$file_name,$hash);6788}67896790sub git_search {6791 gitweb_check_feature('search')or die_error(403,"Search is disabled");6792if(!defined$searchtext) {6793 die_error(400,"Text field is empty");6794}6795if(!defined$hash) {6796$hash= git_get_head_hash($project);6797}6798my%co= parse_commit($hash);6799if(!%co) {6800 die_error(404,"Unknown commit object");6801}6802if(!defined$page) {6803$page=0;6804}68056806$searchtype||='commit';6807if($searchtypeeq'pickaxe') {6808# pickaxe may take all resources of your box and run for several minutes6809# with every query - so decide by yourself how public you make this feature6810 gitweb_check_feature('pickaxe')6811or die_error(403,"Pickaxe is disabled");6812}6813if($searchtypeeq'grep') {6814 gitweb_check_feature('grep')6815or die_error(403,"Grep is disabled");6816}68176818 git_header_html();68196820if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6821my$greptype;6822if($searchtypeeq'commit') {6823$greptype="--grep=";6824}elsif($searchtypeeq'author') {6825$greptype="--author=";6826}elsif($searchtypeeq'committer') {6827$greptype="--committer=";6828}6829$greptype.=$searchtext;6830my@commitlist= parse_commits($hash,101, (100*$page),undef,6831$greptype,'--regexp-ignore-case',6832$search_use_regexp?'--extended-regexp':'--fixed-strings');68336834my$paging_nav='';6835if($page>0) {6836$paging_nav.=6837$cgi->a({-href => href(action=>"search", hash=>$hash,6838 searchtext=>$searchtext,6839 searchtype=>$searchtype)},6840"first");6841$paging_nav.=" ⋅ ".6842$cgi->a({-href => href(-replay=>1, page=>$page-1),6843-accesskey =>"p", -title =>"Alt-p"},"prev");6844}else{6845$paging_nav.="first";6846$paging_nav.=" ⋅ prev";6847}6848my$next_link='';6849if($#commitlist>=100) {6850$next_link=6851$cgi->a({-href => href(-replay=>1, page=>$page+1),6852-accesskey =>"n", -title =>"Alt-n"},"next");6853$paging_nav.=" ⋅$next_link";6854}else{6855$paging_nav.=" ⋅ next";6856}68576858 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6859 git_print_header_div('commit', esc_html($co{'title'}),$hash);6860if($page==0&& !@commitlist) {6861print"<p>No match.</p>\n";6862}else{6863 git_search_grep_body(\@commitlist,0,99,$next_link);6864}6865}68666867if($searchtypeeq'pickaxe') {6868 git_print_page_nav('','',$hash,$co{'tree'},$hash);6869 git_print_header_div('commit', esc_html($co{'title'}),$hash);68706871print"<table class=\"pickaxe search\">\n";6872my$alternate=1;6873local$/="\n";6874open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6875'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6876($search_use_regexp?'--pickaxe-regex': ());6877undef%co;6878my@files;6879while(my$line= <$fd>) {6880chomp$line;6881next unless$line;68826883my%set= parse_difftree_raw_line($line);6884if(defined$set{'commit'}) {6885# finish previous commit6886if(%co) {6887print"</td>\n".6888"<td class=\"link\">".6889$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6890" | ".6891$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6892print"</td>\n".6893"</tr>\n";6894}68956896if($alternate) {6897print"<tr class=\"dark\">\n";6898}else{6899print"<tr class=\"light\">\n";6900}6901$alternate^=1;6902%co= parse_commit($set{'commit'});6903my$author= chop_and_escape_str($co{'author_name'},15,5);6904print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6905"<td><i>$author</i></td>\n".6906"<td>".6907$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6908-class=>"list subject"},6909 chop_and_escape_str($co{'title'},50) ."<br/>");6910}elsif(defined$set{'to_id'}) {6911next if($set{'to_id'} =~m/^0{40}$/);69126913print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6914 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6915-class=>"list"},6916"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6917"<br/>\n";6918}6919}6920close$fd;69216922# finish last commit (warning: repetition!)6923if(%co) {6924print"</td>\n".6925"<td class=\"link\">".6926$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6927" | ".6928$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6929print"</td>\n".6930"</tr>\n";6931}69326933print"</table>\n";6934}69356936if($searchtypeeq'grep') {6937 git_print_page_nav('','',$hash,$co{'tree'},$hash);6938 git_print_header_div('commit', esc_html($co{'title'}),$hash);69396940print"<table class=\"grep_search\">\n";6941my$alternate=1;6942my$matches=0;6943local$/="\n";6944open my$fd,"-|", git_cmd(),'grep','-n',6945$search_use_regexp? ('-E','-i') :'-F',6946$searchtext,$co{'tree'};6947my$lastfile='';6948while(my$line= <$fd>) {6949chomp$line;6950my($file,$lno,$ltext,$binary);6951last if($matches++>1000);6952if($line=~/^Binary file (.+) matches$/) {6953$file=$1;6954$binary=1;6955}else{6956(undef,$file,$lno,$ltext) =split(/:/,$line,4);6957}6958if($filene$lastfile) {6959$lastfileand print"</td></tr>\n";6960if($alternate++) {6961print"<tr class=\"dark\">\n";6962}else{6963print"<tr class=\"light\">\n";6964}6965print"<td class=\"list\">".6966$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6967 file_name=>"$file"),6968-class=>"list"}, esc_path($file));6969print"</td><td>\n";6970$lastfile=$file;6971}6972if($binary) {6973print"<div class=\"binary\">Binary file</div>\n";6974}else{6975$ltext= untabify($ltext);6976if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6977$ltext= esc_html($1, -nbsp=>1);6978$ltext.='<span class="match">';6979$ltext.= esc_html($2, -nbsp=>1);6980$ltext.='</span>';6981$ltext.= esc_html($3, -nbsp=>1);6982}else{6983$ltext= esc_html($ltext, -nbsp=>1);6984}6985print"<div class=\"pre\">".6986$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6987 file_name=>"$file").'#l'.$lno,6988-class=>"linenr"},sprintf('%4i',$lno))6989.' '.$ltext."</div>\n";6990}6991}6992if($lastfile) {6993print"</td></tr>\n";6994if($matches>1000) {6995print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6996}6997}else{6998print"<div class=\"diff nodifferences\">No matches found</div>\n";6999}7000close$fd;70017002print"</table>\n";7003}7004 git_footer_html();7005}70067007sub git_search_help {7008 git_header_html();7009 git_print_page_nav('','',$hash,$hash,$hash);7010print<<EOT;7011<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without7012regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,7013the pattern entered is recognized as the POSIX extended7014<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case7015insensitive).</p>7016<dl>7017<dt><b>commit</b></dt>7018<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>7019EOT7020my$have_grep= gitweb_check_feature('grep');7021if($have_grep) {7022print<<EOT;7023<dt><b>grep</b></dt>7024<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing7025 a different one) are searched for the given pattern. On large trees, this search can take7026a while and put some strain on the server, so please use it with some consideration. Note that7027due to git-grep peculiarity, currently if regexp mode is turned off, the matches are7028case-sensitive.</dd>7029EOT7030}7031print<<EOT;7032<dt><b>author</b></dt>7033<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>7034<dt><b>committer</b></dt>7035<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>7036EOT7037my$have_pickaxe= gitweb_check_feature('pickaxe');7038if($have_pickaxe) {7039print<<EOT;7040<dt><b>pickaxe</b></dt>7041<dd>All commits that caused the string to appear or disappear from any file (changes that7042added, removed or "modified" the string) will be listed. This search can take a while and7043takes a lot of strain on the server, so please use it wisely. Note that since you may be7044interested even in changes just changing the case as well, this search is case sensitive.</dd>7045EOT7046}7047print"</dl>\n";7048 git_footer_html();7049}70507051sub git_shortlog {7052 git_log_generic('shortlog', \&git_shortlog_body,7053$hash,$hash_parent);7054}70557056## ......................................................................7057## feeds (RSS, Atom; OPML)70587059sub git_feed {7060my$format=shift||'atom';7061my$have_blame= gitweb_check_feature('blame');70627063# Atom: http://www.atomenabled.org/developers/syndication/7064# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ7065if($formatne'rss'&&$formatne'atom') {7066 die_error(400,"Unknown web feed format");7067}70687069# log/feed of current (HEAD) branch, log of given branch, history of file/directory7070my$head=$hash||'HEAD';7071my@commitlist= parse_commits($head,150,0,$file_name);70727073my%latest_commit;7074my%latest_date;7075my$content_type="application/$format+xml";7076if(defined$cgi->http('HTTP_ACCEPT') &&7077$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {7078# browser (feed reader) prefers text/xml7079$content_type='text/xml';7080}7081if(defined($commitlist[0])) {7082%latest_commit= %{$commitlist[0]};7083my$latest_epoch=$latest_commit{'committer_epoch'};7084%latest_date= parse_date($latest_epoch,$latest_commit{'comitter_tz'});7085my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7086if(defined$if_modified) {7087my$since;7088if(eval{require HTTP::Date;1; }) {7089$since= HTTP::Date::str2time($if_modified);7090}elsif(eval{require Time::ParseDate;1; }) {7091$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7092}7093if(defined$since&&$latest_epoch<=$since) {7094print$cgi->header(7095-type =>$content_type,7096-charset =>'utf-8',7097-last_modified =>$latest_date{'rfc2822'},7098-status =>'304 Not Modified');7099return;7100}7101}7102print$cgi->header(7103-type =>$content_type,7104-charset =>'utf-8',7105-last_modified =>$latest_date{'rfc2822'});7106}else{7107print$cgi->header(7108-type =>$content_type,7109-charset =>'utf-8');7110}71117112# Optimization: skip generating the body if client asks only7113# for Last-Modified date.7114return if($cgi->request_method()eq'HEAD');71157116# header variables7117my$title="$site_name-$project/$action";7118my$feed_type='log';7119if(defined$hash) {7120$title.=" - '$hash'";7121$feed_type='branch log';7122if(defined$file_name) {7123$title.=" ::$file_name";7124$feed_type='history';7125}7126}elsif(defined$file_name) {7127$title.=" -$file_name";7128$feed_type='history';7129}7130$title.="$feed_type";7131my$descr= git_get_project_description($project);7132if(defined$descr) {7133$descr= esc_html($descr);7134}else{7135$descr="$project".7136($formateq'rss'?'RSS':'Atom') .7137" feed";7138}7139my$owner= git_get_project_owner($project);7140$owner= esc_html($owner);71417142#header7143my$alt_url;7144if(defined$file_name) {7145$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);7146}elsif(defined$hash) {7147$alt_url= href(-full=>1, action=>"log", hash=>$hash);7148}else{7149$alt_url= href(-full=>1, action=>"summary");7150}7151print qq!<?xml version="1.0" encoding="utf-8"?>\n!;7152if($formateq'rss') {7153print<<XML;7154<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">7155<channel>7156XML7157print"<title>$title</title>\n".7158"<link>$alt_url</link>\n".7159"<description>$descr</description>\n".7160"<language>en</language>\n".7161# project owner is responsible for 'editorial' content7162"<managingEditor>$owner</managingEditor>\n";7163if(defined$logo||defined$favicon) {7164# prefer the logo to the favicon, since RSS7165# doesn't allow both7166my$img= esc_url($logo||$favicon);7167print"<image>\n".7168"<url>$img</url>\n".7169"<title>$title</title>\n".7170"<link>$alt_url</link>\n".7171"</image>\n";7172}7173if(%latest_date) {7174print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";7175print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";7176}7177print"<generator>gitweb v.$version/$git_version</generator>\n";7178}elsif($formateq'atom') {7179print<<XML;7180<feed xmlns="http://www.w3.org/2005/Atom">7181XML7182print"<title>$title</title>\n".7183"<subtitle>$descr</subtitle>\n".7184'<link rel="alternate" type="text/html" href="'.7185$alt_url.'" />'."\n".7186'<link rel="self" type="'.$content_type.'" href="'.7187$cgi->self_url() .'" />'."\n".7188"<id>". href(-full=>1) ."</id>\n".7189# use project owner for feed author7190"<author><name>$owner</name></author>\n";7191if(defined$favicon) {7192print"<icon>". esc_url($favicon) ."</icon>\n";7193}7194if(defined$logo) {7195# not twice as wide as tall: 72 x 27 pixels7196print"<logo>". esc_url($logo) ."</logo>\n";7197}7198if(!%latest_date) {7199# dummy date to keep the feed valid until commits trickle in:7200print"<updated>1970-01-01T00:00:00Z</updated>\n";7201}else{7202print"<updated>$latest_date{'iso-8601'}</updated>\n";7203}7204print"<generator version='$version/$git_version'>gitweb</generator>\n";7205}72067207# contents7208for(my$i=0;$i<=$#commitlist;$i++) {7209my%co= %{$commitlist[$i]};7210my$commit=$co{'id'};7211# we read 150, we always show 30 and the ones more recent than 48 hours7212if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {7213last;7214}7215my%cd= parse_date($co{'author_epoch'},$co{'author_tz'});72167217# get list of changed files7218open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7219$co{'parent'} ||"--root",7220$co{'id'},"--", (defined$file_name?$file_name: ())7221ornext;7222my@difftree=map{chomp;$_} <$fd>;7223close$fd7224ornext;72257226# print element (entry, item)7227my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);7228if($formateq'rss') {7229print"<item>\n".7230"<title>". esc_html($co{'title'}) ."</title>\n".7231"<author>". esc_html($co{'author'}) ."</author>\n".7232"<pubDate>$cd{'rfc2822'}</pubDate>\n".7233"<guid isPermaLink=\"true\">$co_url</guid>\n".7234"<link>$co_url</link>\n".7235"<description>". esc_html($co{'title'}) ."</description>\n".7236"<content:encoded>".7237"<![CDATA[\n";7238}elsif($formateq'atom') {7239print"<entry>\n".7240"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".7241"<updated>$cd{'iso-8601'}</updated>\n".7242"<author>\n".7243" <name>". esc_html($co{'author_name'}) ."</name>\n";7244if($co{'author_email'}) {7245print" <email>". esc_html($co{'author_email'}) ."</email>\n";7246}7247print"</author>\n".7248# use committer for contributor7249"<contributor>\n".7250" <name>". esc_html($co{'committer_name'}) ."</name>\n";7251if($co{'committer_email'}) {7252print" <email>". esc_html($co{'committer_email'}) ."</email>\n";7253}7254print"</contributor>\n".7255"<published>$cd{'iso-8601'}</published>\n".7256"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".7257"<id>$co_url</id>\n".7258"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".7259"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";7260}7261my$comment=$co{'comment'};7262print"<pre>\n";7263foreachmy$line(@$comment) {7264$line= esc_html($line);7265print"$line\n";7266}7267print"</pre><ul>\n";7268foreachmy$difftree_line(@difftree) {7269my%difftree= parse_difftree_raw_line($difftree_line);7270next if!$difftree{'from_id'};72717272my$file=$difftree{'file'} ||$difftree{'to_file'};72737274print"<li>".7275"[".7276$cgi->a({-href => href(-full=>1, action=>"blobdiff",7277 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},7278 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},7279 file_name=>$file, file_parent=>$difftree{'from_file'}),7280-title =>"diff"},'D');7281if($have_blame) {7282print$cgi->a({-href => href(-full=>1, action=>"blame",7283 file_name=>$file, hash_base=>$commit),7284-title =>"blame"},'B');7285}7286# if this is not a feed of a file history7287if(!defined$file_name||$file_namene$file) {7288print$cgi->a({-href => href(-full=>1, action=>"history",7289 file_name=>$file, hash=>$commit),7290-title =>"history"},'H');7291}7292$file= esc_path($file);7293print"] ".7294"$file</li>\n";7295}7296if($formateq'rss') {7297print"</ul>]]>\n".7298"</content:encoded>\n".7299"</item>\n";7300}elsif($formateq'atom') {7301print"</ul>\n</div>\n".7302"</content>\n".7303"</entry>\n";7304}7305}73067307# end of feed7308if($formateq'rss') {7309print"</channel>\n</rss>\n";7310}elsif($formateq'atom') {7311print"</feed>\n";7312}7313}73147315sub git_rss {7316 git_feed('rss');7317}73187319sub git_atom {7320 git_feed('atom');7321}73227323sub git_opml {7324my@list= git_get_projects_list();73257326print$cgi->header(7327-type =>'text/xml',7328-charset =>'utf-8',7329-content_disposition =>'inline; filename="opml.xml"');73307331print<<XML;7332<?xml version="1.0" encoding="utf-8"?>7333<opml version="1.0">7334<head>7335 <title>$site_nameOPML Export</title>7336</head>7337<body>7338<outline text="git RSS feeds">7339XML73407341foreachmy$pr(@list) {7342my%proj=%$pr;7343my$head= git_get_head_hash($proj{'path'});7344if(!defined$head) {7345next;7346}7347$git_dir="$projectroot/$proj{'path'}";7348my%co= parse_commit($head);7349if(!%co) {7350next;7351}73527353my$path= esc_html(chop_str($proj{'path'},25,5));7354my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7355my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7356print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7357}7358print<<XML;7359</outline>7360</body>7361</opml>7362XML7363}