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# group projects by category on the projects list 119# (enabled if this variable evaluates to true) 120our$projects_list_group_categories=0; 121 122# default category if none specified 123# (leave the empty string for no category) 124our$project_list_default_category=""; 125 126# default order of projects list 127# valid values are none, project, descr, owner, and age 128our$default_projects_order="project"; 129 130# show repository only if this file exists 131# (only effective if this variable evaluates to true) 132our$export_ok="++GITWEB_EXPORT_OK++"; 133 134# show repository only if this subroutine returns true 135# when given the path to the project, for example: 136# sub { return -e "$_[0]/git-daemon-export-ok"; } 137our$export_auth_hook=undef; 138 139# only allow viewing of repositories also shown on the overview page 140our$strict_export="++GITWEB_STRICT_EXPORT++"; 141 142# list of git base URLs used for URL to where fetch project from, 143# i.e. full URL is "$git_base_url/$project" 144our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 145 146# default blob_plain mimetype and default charset for text/plain blob 147our$default_blob_plain_mimetype='text/plain'; 148our$default_text_plain_charset=undef; 149 150# file to use for guessing MIME types before trying /etc/mime.types 151# (relative to the current git repository) 152our$mimetypes_file=undef; 153 154# assume this charset if line contains non-UTF-8 characters; 155# it should be valid encoding (see Encoding::Supported(3pm) for list), 156# for which encoding all byte sequences are valid, for example 157# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 158# could be even 'utf-8' for the old behavior) 159our$fallback_encoding='latin1'; 160 161# rename detection options for git-diff and git-diff-tree 162# - default is '-M', with the cost proportional to 163# (number of removed files) * (number of new files). 164# - more costly is '-C' (which implies '-M'), with the cost proportional to 165# (number of changed files + number of removed files) * (number of new files) 166# - even more costly is '-C', '--find-copies-harder' with cost 167# (number of files in the original tree) * (number of new files) 168# - one might want to include '-B' option, e.g. '-B', '-M' 169our@diff_opts= ('-M');# taken from git_commit 170 171# Disables features that would allow repository owners to inject script into 172# the gitweb domain. 173our$prevent_xss=0; 174 175# Path to the highlight executable to use (must be the one from 176# http://www.andre-simon.de due to assumptions about parameters and output). 177# Useful if highlight is not installed on your webserver's PATH. 178# [Default: highlight] 179our$highlight_bin="++HIGHLIGHT_BIN++"; 180 181# information about snapshot formats that gitweb is capable of serving 182our%known_snapshot_formats= ( 183# name => { 184# 'display' => display name, 185# 'type' => mime type, 186# 'suffix' => filename suffix, 187# 'format' => --format for git-archive, 188# 'compressor' => [compressor command and arguments] 189# (array reference, optional) 190# 'disabled' => boolean (optional)} 191# 192'tgz'=> { 193'display'=>'tar.gz', 194'type'=>'application/x-gzip', 195'suffix'=>'.tar.gz', 196'format'=>'tar', 197'compressor'=> ['gzip','-n']}, 198 199'tbz2'=> { 200'display'=>'tar.bz2', 201'type'=>'application/x-bzip2', 202'suffix'=>'.tar.bz2', 203'format'=>'tar', 204'compressor'=> ['bzip2']}, 205 206'txz'=> { 207'display'=>'tar.xz', 208'type'=>'application/x-xz', 209'suffix'=>'.tar.xz', 210'format'=>'tar', 211'compressor'=> ['xz'], 212'disabled'=>1}, 213 214'zip'=> { 215'display'=>'zip', 216'type'=>'application/x-zip', 217'suffix'=>'.zip', 218'format'=>'zip'}, 219); 220 221# Aliases so we understand old gitweb.snapshot values in repository 222# configuration. 223our%known_snapshot_format_aliases= ( 224'gzip'=>'tgz', 225'bzip2'=>'tbz2', 226'xz'=>'txz', 227 228# backward compatibility: legacy gitweb config support 229'x-gzip'=>undef,'gz'=>undef, 230'x-bzip2'=>undef,'bz2'=>undef, 231'x-zip'=>undef,''=>undef, 232); 233 234# Pixel sizes for icons and avatars. If the default font sizes or lineheights 235# are changed, it may be appropriate to change these values too via 236# $GITWEB_CONFIG. 237our%avatar_size= ( 238'default'=>16, 239'double'=>32 240); 241 242# Used to set the maximum load that we will still respond to gitweb queries. 243# If server load exceed this value then return "503 server busy" error. 244# If gitweb cannot determined server load, it is taken to be 0. 245# Leave it undefined (or set to 'undef') to turn off load checking. 246our$maxload=300; 247 248# configuration for 'highlight' (http://www.andre-simon.de/) 249# match by basename 250our%highlight_basename= ( 251#'Program' => 'py', 252#'Library' => 'py', 253'SConstruct'=>'py',# SCons equivalent of Makefile 254'Makefile'=>'make', 255); 256# match by extension 257our%highlight_ext= ( 258# main extensions, defining name of syntax; 259# see files in /usr/share/highlight/langDefs/ directory 260map{$_=>$_} 261qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make), 262# alternate extensions, see /etc/highlight/filetypes.conf 263'h'=>'c', 264map{$_=>'sh'}qw(bash zsh ksh), 265map{$_=>'cpp'}qw(cxx c++ cc), 266map{$_=>'php'}qw(php3 php4 php5 phps), 267map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 268map{$_=>'make'}qw(mak mk), 269map{$_=>'xml'}qw(xhtml html htm), 270); 271 272# You define site-wide feature defaults here; override them with 273# $GITWEB_CONFIG as necessary. 274our%feature= ( 275# feature => { 276# 'sub' => feature-sub (subroutine), 277# 'override' => allow-override (boolean), 278# 'default' => [ default options...] (array reference)} 279# 280# if feature is overridable (it means that allow-override has true value), 281# then feature-sub will be called with default options as parameters; 282# return value of feature-sub indicates if to enable specified feature 283# 284# if there is no 'sub' key (no feature-sub), then feature cannot be 285# overridden 286# 287# use gitweb_get_feature(<feature>) to retrieve the <feature> value 288# (an array) or gitweb_check_feature(<feature>) to check if <feature> 289# is enabled 290 291# Enable the 'blame' blob view, showing the last commit that modified 292# each line in the file. This can be very CPU-intensive. 293 294# To enable system wide have in $GITWEB_CONFIG 295# $feature{'blame'}{'default'} = [1]; 296# To have project specific config enable override in $GITWEB_CONFIG 297# $feature{'blame'}{'override'} = 1; 298# and in project config gitweb.blame = 0|1; 299'blame'=> { 300'sub'=>sub{ feature_bool('blame',@_) }, 301'override'=>0, 302'default'=> [0]}, 303 304# Enable the 'snapshot' link, providing a compressed archive of any 305# tree. This can potentially generate high traffic if you have large 306# project. 307 308# Value is a list of formats defined in %known_snapshot_formats that 309# you wish to offer. 310# To disable system wide have in $GITWEB_CONFIG 311# $feature{'snapshot'}{'default'} = []; 312# To have project specific config enable override in $GITWEB_CONFIG 313# $feature{'snapshot'}{'override'} = 1; 314# and in project config, a comma-separated list of formats or "none" 315# to disable. Example: gitweb.snapshot = tbz2,zip; 316'snapshot'=> { 317'sub'=> \&feature_snapshot, 318'override'=>0, 319'default'=> ['tgz']}, 320 321# Enable text search, which will list the commits which match author, 322# committer or commit text to a given string. Enabled by default. 323# Project specific override is not supported. 324'search'=> { 325'override'=>0, 326'default'=> [1]}, 327 328# Enable grep search, which will list the files in currently selected 329# tree containing the given string. Enabled by default. This can be 330# potentially CPU-intensive, of course. 331# Note that you need to have 'search' feature enabled too. 332 333# To enable system wide have in $GITWEB_CONFIG 334# $feature{'grep'}{'default'} = [1]; 335# To have project specific config enable override in $GITWEB_CONFIG 336# $feature{'grep'}{'override'} = 1; 337# and in project config gitweb.grep = 0|1; 338'grep'=> { 339'sub'=>sub{ feature_bool('grep',@_) }, 340'override'=>0, 341'default'=> [1]}, 342 343# Enable the pickaxe search, which will list the commits that modified 344# a given string in a file. This can be practical and quite faster 345# alternative to 'blame', but still potentially CPU-intensive. 346# Note that you need to have 'search' feature enabled too. 347 348# To enable system wide have in $GITWEB_CONFIG 349# $feature{'pickaxe'}{'default'} = [1]; 350# To have project specific config enable override in $GITWEB_CONFIG 351# $feature{'pickaxe'}{'override'} = 1; 352# and in project config gitweb.pickaxe = 0|1; 353'pickaxe'=> { 354'sub'=>sub{ feature_bool('pickaxe',@_) }, 355'override'=>0, 356'default'=> [1]}, 357 358# Enable showing size of blobs in a 'tree' view, in a separate 359# column, similar to what 'ls -l' does. This cost a bit of IO. 360 361# To disable system wide have in $GITWEB_CONFIG 362# $feature{'show-sizes'}{'default'} = [0]; 363# To have project specific config enable override in $GITWEB_CONFIG 364# $feature{'show-sizes'}{'override'} = 1; 365# and in project config gitweb.showsizes = 0|1; 366'show-sizes'=> { 367'sub'=>sub{ feature_bool('showsizes',@_) }, 368'override'=>0, 369'default'=> [1]}, 370 371# Make gitweb use an alternative format of the URLs which can be 372# more readable and natural-looking: project name is embedded 373# directly in the path and the query string contains other 374# auxiliary information. All gitweb installations recognize 375# URL in either format; this configures in which formats gitweb 376# generates links. 377 378# To enable system wide have in $GITWEB_CONFIG 379# $feature{'pathinfo'}{'default'} = [1]; 380# Project specific override is not supported. 381 382# Note that you will need to change the default location of CSS, 383# favicon, logo and possibly other files to an absolute URL. Also, 384# if gitweb.cgi serves as your indexfile, you will need to force 385# $my_uri to contain the script name in your $GITWEB_CONFIG. 386'pathinfo'=> { 387'override'=>0, 388'default'=> [0]}, 389 390# Make gitweb consider projects in project root subdirectories 391# to be forks of existing projects. Given project $projname.git, 392# projects matching $projname/*.git will not be shown in the main 393# projects list, instead a '+' mark will be added to $projname 394# there and a 'forks' view will be enabled for the project, listing 395# all the forks. If project list is taken from a file, forks have 396# to be listed after the main project. 397 398# To enable system wide have in $GITWEB_CONFIG 399# $feature{'forks'}{'default'} = [1]; 400# Project specific override is not supported. 401'forks'=> { 402'override'=>0, 403'default'=> [0]}, 404 405# Insert custom links to the action bar of all project pages. 406# This enables you mainly to link to third-party scripts integrating 407# into gitweb; e.g. git-browser for graphical history representation 408# or custom web-based repository administration interface. 409 410# The 'default' value consists of a list of triplets in the form 411# (label, link, position) where position is the label after which 412# to insert the link and link is a format string where %n expands 413# to the project name, %f to the project path within the filesystem, 414# %h to the current hash (h gitweb parameter) and %b to the current 415# hash base (hb gitweb parameter); %% expands to %. 416 417# To enable system wide have in $GITWEB_CONFIG e.g. 418# $feature{'actions'}{'default'} = [('graphiclog', 419# '/git-browser/by-commit.html?r=%n', 'summary')]; 420# Project specific override is not supported. 421'actions'=> { 422'override'=>0, 423'default'=> []}, 424 425# Allow gitweb scan project content tags of project repository, 426# and display the popular Web 2.0-ish "tag cloud" near the projects 427# list. Note that this is something COMPLETELY different from the 428# normal Git tags. 429 430# gitweb by itself can show existing tags, but it does not handle 431# tagging itself; you need to do it externally, outside gitweb. 432# The format is described in git_get_project_ctags() subroutine. 433# You may want to install the HTML::TagCloud Perl module to get 434# a pretty tag cloud instead of just a list of tags. 435 436# To enable system wide have in $GITWEB_CONFIG 437# $feature{'ctags'}{'default'} = [1]; 438# Project specific override is not supported. 439 440# In the future whether ctags editing is enabled might depend 441# on the value, but using 1 should always mean no editing of ctags. 442'ctags'=> { 443'override'=>0, 444'default'=> [0]}, 445 446# The maximum number of patches in a patchset generated in patch 447# view. Set this to 0 or undef to disable patch view, or to a 448# negative number to remove any limit. 449 450# To disable system wide have in $GITWEB_CONFIG 451# $feature{'patches'}{'default'} = [0]; 452# To have project specific config enable override in $GITWEB_CONFIG 453# $feature{'patches'}{'override'} = 1; 454# and in project config gitweb.patches = 0|n; 455# where n is the maximum number of patches allowed in a patchset. 456'patches'=> { 457'sub'=> \&feature_patches, 458'override'=>0, 459'default'=> [16]}, 460 461# Avatar support. When this feature is enabled, views such as 462# shortlog or commit will display an avatar associated with 463# the email of the committer(s) and/or author(s). 464 465# Currently available providers are gravatar and picon. 466# If an unknown provider is specified, the feature is disabled. 467 468# Gravatar depends on Digest::MD5. 469# Picon currently relies on the indiana.edu database. 470 471# To enable system wide have in $GITWEB_CONFIG 472# $feature{'avatar'}{'default'} = ['<provider>']; 473# where <provider> is either gravatar or picon. 474# To have project specific config enable override in $GITWEB_CONFIG 475# $feature{'avatar'}{'override'} = 1; 476# and in project config gitweb.avatar = <provider>; 477'avatar'=> { 478'sub'=> \&feature_avatar, 479'override'=>0, 480'default'=> ['']}, 481 482# Enable displaying how much time and how many git commands 483# it took to generate and display page. Disabled by default. 484# Project specific override is not supported. 485'timed'=> { 486'override'=>0, 487'default'=> [0]}, 488 489# Enable turning some links into links to actions which require 490# JavaScript to run (like 'blame_incremental'). Not enabled by 491# default. Project specific override is currently not supported. 492'javascript-actions'=> { 493'override'=>0, 494'default'=> [0]}, 495 496# Enable and configure ability to change common timezone for dates 497# in gitweb output via JavaScript. Enabled by default. 498# Project specific override is not supported. 499'javascript-timezone'=> { 500'override'=>0, 501'default'=> [ 502'local',# default timezone: 'utc', 'local', or '(-|+)HHMM' format, 503# or undef to turn off this feature 504'gitweb_tz',# name of cookie where to store selected timezone 505'datetime',# CSS class used to mark up dates for manipulation 506]}, 507 508# Syntax highlighting support. This is based on Daniel Svensson's 509# and Sham Chukoury's work in gitweb-xmms2.git. 510# It requires the 'highlight' program present in $PATH, 511# and therefore is disabled by default. 512 513# To enable system wide have in $GITWEB_CONFIG 514# $feature{'highlight'}{'default'} = [1]; 515 516'highlight'=> { 517'sub'=>sub{ feature_bool('highlight',@_) }, 518'override'=>0, 519'default'=> [0]}, 520 521# Enable displaying of remote heads in the heads list 522 523# To enable system wide have in $GITWEB_CONFIG 524# $feature{'remote_heads'}{'default'} = [1]; 525# To have project specific config enable override in $GITWEB_CONFIG 526# $feature{'remote_heads'}{'override'} = 1; 527# and in project config gitweb.remote_heads = 0|1; 528'remote_heads'=> { 529'sub'=>sub{ feature_bool('remote_heads',@_) }, 530'override'=>0, 531'default'=> [0]}, 532); 533 534sub gitweb_get_feature { 535my($name) =@_; 536return unlessexists$feature{$name}; 537my($sub,$override,@defaults) = ( 538$feature{$name}{'sub'}, 539$feature{$name}{'override'}, 540@{$feature{$name}{'default'}}); 541# project specific override is possible only if we have project 542our$git_dir;# global variable, declared later 543if(!$override|| !defined$git_dir) { 544return@defaults; 545} 546if(!defined$sub) { 547warn"feature$nameis not overridable"; 548return@defaults; 549} 550return$sub->(@defaults); 551} 552 553# A wrapper to check if a given feature is enabled. 554# With this, you can say 555# 556# my $bool_feat = gitweb_check_feature('bool_feat'); 557# gitweb_check_feature('bool_feat') or somecode; 558# 559# instead of 560# 561# my ($bool_feat) = gitweb_get_feature('bool_feat'); 562# (gitweb_get_feature('bool_feat'))[0] or somecode; 563# 564sub gitweb_check_feature { 565return(gitweb_get_feature(@_))[0]; 566} 567 568 569sub feature_bool { 570my$key=shift; 571my($val) = git_get_project_config($key,'--bool'); 572 573if(!defined$val) { 574return($_[0]); 575}elsif($valeq'true') { 576return(1); 577}elsif($valeq'false') { 578return(0); 579} 580} 581 582sub feature_snapshot { 583my(@fmts) =@_; 584 585my($val) = git_get_project_config('snapshot'); 586 587if($val) { 588@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 589} 590 591return@fmts; 592} 593 594sub feature_patches { 595my@val= (git_get_project_config('patches','--int')); 596 597if(@val) { 598return@val; 599} 600 601return($_[0]); 602} 603 604sub feature_avatar { 605my@val= (git_get_project_config('avatar')); 606 607return@val?@val:@_; 608} 609 610# checking HEAD file with -e is fragile if the repository was 611# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 612# and then pruned. 613sub check_head_link { 614my($dir) =@_; 615my$headfile="$dir/HEAD"; 616return((-e $headfile) || 617(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 618} 619 620sub check_export_ok { 621my($dir) =@_; 622return(check_head_link($dir) && 623(!$export_ok|| -e "$dir/$export_ok") && 624(!$export_auth_hook||$export_auth_hook->($dir))); 625} 626 627# process alternate names for backward compatibility 628# filter out unsupported (unknown) snapshot formats 629sub filter_snapshot_fmts { 630my@fmts=@_; 631 632@fmts=map{ 633exists$known_snapshot_format_aliases{$_} ? 634$known_snapshot_format_aliases{$_} :$_}@fmts; 635@fmts=grep{ 636exists$known_snapshot_formats{$_} && 637!$known_snapshot_formats{$_}{'disabled'}}@fmts; 638} 639 640# If it is set to code reference, it is code that it is to be run once per 641# request, allowing updating configurations that change with each request, 642# while running other code in config file only once. 643# 644# Otherwise, if it is false then gitweb would process config file only once; 645# if it is true then gitweb config would be run for each request. 646our$per_request_config=1; 647 648# read and parse gitweb config file given by its parameter. 649# returns true on success, false on recoverable error, allowing 650# to chain this subroutine, using first file that exists. 651# dies on errors during parsing config file, as it is unrecoverable. 652sub read_config_file { 653my$filename=shift; 654return unlessdefined$filename; 655# die if there are errors parsing config file 656if(-e $filename) { 657do$filename; 658die$@if$@; 659return1; 660} 661return; 662} 663 664our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 665sub evaluate_gitweb_config { 666our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 667our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 668 669# use first config file that exists 670 read_config_file($GITWEB_CONFIG)or 671 read_config_file($GITWEB_CONFIG_SYSTEM); 672} 673 674# Get loadavg of system, to compare against $maxload. 675# Currently it requires '/proc/loadavg' present to get loadavg; 676# if it is not present it returns 0, which means no load checking. 677sub get_loadavg { 678if( -e '/proc/loadavg'){ 679open my$fd,'<','/proc/loadavg' 680orreturn0; 681my@load=split(/\s+/,scalar<$fd>); 682close$fd; 683 684# The first three columns measure CPU and IO utilization of the last one, 685# five, and 10 minute periods. The fourth column shows the number of 686# currently running processes and the total number of processes in the m/n 687# format. The last column displays the last process ID used. 688return$load[0] ||0; 689} 690# additional checks for load average should go here for things that don't export 691# /proc/loadavg 692 693return0; 694} 695 696# version of the core git binary 697our$git_version; 698sub evaluate_git_version { 699our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 700$number_of_git_cmds++; 701} 702 703sub check_loadavg { 704if(defined$maxload&& get_loadavg() >$maxload) { 705 die_error(503,"The load average on the server is too high"); 706} 707} 708 709# ====================================================================== 710# input validation and dispatch 711 712# input parameters can be collected from a variety of sources (presently, CGI 713# and PATH_INFO), so we define an %input_params hash that collects them all 714# together during validation: this allows subsequent uses (e.g. href()) to be 715# agnostic of the parameter origin 716 717our%input_params= (); 718 719# input parameters are stored with the long parameter name as key. This will 720# also be used in the href subroutine to convert parameters to their CGI 721# equivalent, and since the href() usage is the most frequent one, we store 722# the name -> CGI key mapping here, instead of the reverse. 723# 724# XXX: Warning: If you touch this, check the search form for updating, 725# too. 726 727our@cgi_param_mapping= ( 728 project =>"p", 729 action =>"a", 730 file_name =>"f", 731 file_parent =>"fp", 732 hash =>"h", 733 hash_parent =>"hp", 734 hash_base =>"hb", 735 hash_parent_base =>"hpb", 736 page =>"pg", 737 order =>"o", 738 searchtext =>"s", 739 searchtype =>"st", 740 snapshot_format =>"sf", 741 extra_options =>"opt", 742 search_use_regexp =>"sr", 743 ctag =>"by_tag", 744# this must be last entry (for manipulation from JavaScript) 745 javascript =>"js" 746); 747our%cgi_param_mapping=@cgi_param_mapping; 748 749# we will also need to know the possible actions, for validation 750our%actions= ( 751"blame"=> \&git_blame, 752"blame_incremental"=> \&git_blame_incremental, 753"blame_data"=> \&git_blame_data, 754"blobdiff"=> \&git_blobdiff, 755"blobdiff_plain"=> \&git_blobdiff_plain, 756"blob"=> \&git_blob, 757"blob_plain"=> \&git_blob_plain, 758"commitdiff"=> \&git_commitdiff, 759"commitdiff_plain"=> \&git_commitdiff_plain, 760"commit"=> \&git_commit, 761"forks"=> \&git_forks, 762"heads"=> \&git_heads, 763"history"=> \&git_history, 764"log"=> \&git_log, 765"patch"=> \&git_patch, 766"patches"=> \&git_patches, 767"remotes"=> \&git_remotes, 768"rss"=> \&git_rss, 769"atom"=> \&git_atom, 770"search"=> \&git_search, 771"search_help"=> \&git_search_help, 772"shortlog"=> \&git_shortlog, 773"summary"=> \&git_summary, 774"tag"=> \&git_tag, 775"tags"=> \&git_tags, 776"tree"=> \&git_tree, 777"snapshot"=> \&git_snapshot, 778"object"=> \&git_object, 779# those below don't need $project 780"opml"=> \&git_opml, 781"project_list"=> \&git_project_list, 782"project_index"=> \&git_project_index, 783); 784 785# finally, we have the hash of allowed extra_options for the commands that 786# allow them 787our%allowed_options= ( 788"--no-merges"=> [qw(rss atom log shortlog history)], 789); 790 791# fill %input_params with the CGI parameters. All values except for 'opt' 792# should be single values, but opt can be an array. We should probably 793# build an array of parameters that can be multi-valued, but since for the time 794# being it's only this one, we just single it out 795sub evaluate_query_params { 796our$cgi; 797 798while(my($name,$symbol) =each%cgi_param_mapping) { 799if($symboleq'opt') { 800$input_params{$name} = [$cgi->param($symbol) ]; 801}else{ 802$input_params{$name} =$cgi->param($symbol); 803} 804} 805} 806 807# now read PATH_INFO and update the parameter list for missing parameters 808sub evaluate_path_info { 809return ifdefined$input_params{'project'}; 810return if!$path_info; 811$path_info=~ s,^/+,,; 812return if!$path_info; 813 814# find which part of PATH_INFO is project 815my$project=$path_info; 816$project=~ s,/+$,,; 817while($project&& !check_head_link("$projectroot/$project")) { 818$project=~ s,/*[^/]*$,,; 819} 820return unless$project; 821$input_params{'project'} =$project; 822 823# do not change any parameters if an action is given using the query string 824return if$input_params{'action'}; 825$path_info=~ s,^\Q$project\E/*,,; 826 827# next, check if we have an action 828my$action=$path_info; 829$action=~ s,/.*$,,; 830if(exists$actions{$action}) { 831$path_info=~ s,^$action/*,,; 832$input_params{'action'} =$action; 833} 834 835# list of actions that want hash_base instead of hash, but can have no 836# pathname (f) parameter 837my@wants_base= ( 838'tree', 839'history', 840); 841 842# we want to catch, among others 843# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 844my($parentrefname,$parentpathname,$refname,$pathname) = 845($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 846 847# first, analyze the 'current' part 848if(defined$pathname) { 849# we got "branch:filename" or "branch:dir/" 850# we could use git_get_type(branch:pathname), but: 851# - it needs $git_dir 852# - it does a git() call 853# - the convention of terminating directories with a slash 854# makes it superfluous 855# - embedding the action in the PATH_INFO would make it even 856# more superfluous 857$pathname=~ s,^/+,,; 858if(!$pathname||substr($pathname, -1)eq"/") { 859$input_params{'action'} ||="tree"; 860$pathname=~ s,/$,,; 861}else{ 862# the default action depends on whether we had parent info 863# or not 864if($parentrefname) { 865$input_params{'action'} ||="blobdiff_plain"; 866}else{ 867$input_params{'action'} ||="blob_plain"; 868} 869} 870$input_params{'hash_base'} ||=$refname; 871$input_params{'file_name'} ||=$pathname; 872}elsif(defined$refname) { 873# we got "branch". In this case we have to choose if we have to 874# set hash or hash_base. 875# 876# Most of the actions without a pathname only want hash to be 877# set, except for the ones specified in @wants_base that want 878# hash_base instead. It should also be noted that hand-crafted 879# links having 'history' as an action and no pathname or hash 880# set will fail, but that happens regardless of PATH_INFO. 881if(defined$parentrefname) { 882# if there is parent let the default be 'shortlog' action 883# (for http://git.example.com/repo.git/A..B links); if there 884# is no parent, dispatch will detect type of object and set 885# action appropriately if required (if action is not set) 886$input_params{'action'} ||="shortlog"; 887} 888if($input_params{'action'} && 889grep{$_eq$input_params{'action'} }@wants_base) { 890$input_params{'hash_base'} ||=$refname; 891}else{ 892$input_params{'hash'} ||=$refname; 893} 894} 895 896# next, handle the 'parent' part, if present 897if(defined$parentrefname) { 898# a missing pathspec defaults to the 'current' filename, allowing e.g. 899# someproject/blobdiff/oldrev..newrev:/filename 900if($parentpathname) { 901$parentpathname=~ s,^/+,,; 902$parentpathname=~ s,/$,,; 903$input_params{'file_parent'} ||=$parentpathname; 904}else{ 905$input_params{'file_parent'} ||=$input_params{'file_name'}; 906} 907# we assume that hash_parent_base is wanted if a path was specified, 908# or if the action wants hash_base instead of hash 909if(defined$input_params{'file_parent'} || 910grep{$_eq$input_params{'action'} }@wants_base) { 911$input_params{'hash_parent_base'} ||=$parentrefname; 912}else{ 913$input_params{'hash_parent'} ||=$parentrefname; 914} 915} 916 917# for the snapshot action, we allow URLs in the form 918# $project/snapshot/$hash.ext 919# where .ext determines the snapshot and gets removed from the 920# passed $refname to provide the $hash. 921# 922# To be able to tell that $refname includes the format extension, we 923# require the following two conditions to be satisfied: 924# - the hash input parameter MUST have been set from the $refname part 925# of the URL (i.e. they must be equal) 926# - the snapshot format MUST NOT have been defined already (e.g. from 927# CGI parameter sf) 928# It's also useless to try any matching unless $refname has a dot, 929# so we check for that too 930if(defined$input_params{'action'} && 931$input_params{'action'}eq'snapshot'&& 932defined$refname&&index($refname,'.') != -1&& 933$refnameeq$input_params{'hash'} && 934!defined$input_params{'snapshot_format'}) { 935# We loop over the known snapshot formats, checking for 936# extensions. Allowed extensions are both the defined suffix 937# (which includes the initial dot already) and the snapshot 938# format key itself, with a prepended dot 939while(my($fmt,$opt) =each%known_snapshot_formats) { 940my$hash=$refname; 941unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 942next; 943} 944my$sfx=$1; 945# a valid suffix was found, so set the snapshot format 946# and reset the hash parameter 947$input_params{'snapshot_format'} =$fmt; 948$input_params{'hash'} =$hash; 949# we also set the format suffix to the one requested 950# in the URL: this way a request for e.g. .tgz returns 951# a .tgz instead of a .tar.gz 952$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 953last; 954} 955} 956} 957 958our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 959$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 960$searchtext,$search_regexp); 961sub evaluate_and_validate_params { 962our$action=$input_params{'action'}; 963if(defined$action) { 964if(!validate_action($action)) { 965 die_error(400,"Invalid action parameter"); 966} 967} 968 969# parameters which are pathnames 970our$project=$input_params{'project'}; 971if(defined$project) { 972if(!validate_project($project)) { 973undef$project; 974 die_error(404,"No such project"); 975} 976} 977 978our$file_name=$input_params{'file_name'}; 979if(defined$file_name) { 980if(!validate_pathname($file_name)) { 981 die_error(400,"Invalid file parameter"); 982} 983} 984 985our$file_parent=$input_params{'file_parent'}; 986if(defined$file_parent) { 987if(!validate_pathname($file_parent)) { 988 die_error(400,"Invalid file parent parameter"); 989} 990} 991 992# parameters which are refnames 993our$hash=$input_params{'hash'}; 994if(defined$hash) { 995if(!validate_refname($hash)) { 996 die_error(400,"Invalid hash parameter"); 997} 998} 9991000our$hash_parent=$input_params{'hash_parent'};1001if(defined$hash_parent) {1002if(!validate_refname($hash_parent)) {1003 die_error(400,"Invalid hash parent parameter");1004}1005}10061007our$hash_base=$input_params{'hash_base'};1008if(defined$hash_base) {1009if(!validate_refname($hash_base)) {1010 die_error(400,"Invalid hash base parameter");1011}1012}10131014our@extra_options= @{$input_params{'extra_options'}};1015# @extra_options is always defined, since it can only be (currently) set from1016# CGI, and $cgi->param() returns the empty array in array context if the param1017# is not set1018foreachmy$opt(@extra_options) {1019if(not exists$allowed_options{$opt}) {1020 die_error(400,"Invalid option parameter");1021}1022if(not grep(/^$action$/, @{$allowed_options{$opt}})) {1023 die_error(400,"Invalid option parameter for this action");1024}1025}10261027our$hash_parent_base=$input_params{'hash_parent_base'};1028if(defined$hash_parent_base) {1029if(!validate_refname($hash_parent_base)) {1030 die_error(400,"Invalid hash parent base parameter");1031}1032}10331034# other parameters1035our$page=$input_params{'page'};1036if(defined$page) {1037if($page=~m/[^0-9]/) {1038 die_error(400,"Invalid page parameter");1039}1040}10411042our$searchtype=$input_params{'searchtype'};1043if(defined$searchtype) {1044if($searchtype=~m/[^a-z]/) {1045 die_error(400,"Invalid searchtype parameter");1046}1047}10481049our$search_use_regexp=$input_params{'search_use_regexp'};10501051our$searchtext=$input_params{'searchtext'};1052our$search_regexp;1053if(defined$searchtext) {1054if(length($searchtext) <2) {1055 die_error(403,"At least two characters are required for search parameter");1056}1057$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1058}1059}10601061# path to the current git repository1062our$git_dir;1063sub evaluate_git_dir {1064our$git_dir="$projectroot/$project"if$project;1065}10661067our(@snapshot_fmts,$git_avatar);1068sub configure_gitweb_features {1069# list of supported snapshot formats1070our@snapshot_fmts= gitweb_get_feature('snapshot');1071@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10721073# check that the avatar feature is set to a known provider name,1074# and for each provider check if the dependencies are satisfied.1075# if the provider name is invalid or the dependencies are not met,1076# reset $git_avatar to the empty string.1077our($git_avatar) = gitweb_get_feature('avatar');1078if($git_avatareq'gravatar') {1079$git_avatar=''unless(eval{require Digest::MD5;1; });1080}elsif($git_avatareq'picon') {1081# no dependencies1082}else{1083$git_avatar='';1084}1085}10861087# custom error handler: 'die <message>' is Internal Server Error1088sub handle_errors_html {1089my$msg=shift;# it is already HTML escaped10901091# to avoid infinite loop where error occurs in die_error,1092# change handler to default handler, disabling handle_errors_html1093 set_message("Error occured when inside die_error:\n$msg");10941095# you cannot jump out of die_error when called as error handler;1096# the subroutine set via CGI::Carp::set_message is called _after_1097# HTTP headers are already written, so it cannot write them itself1098 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1099}1100set_message(\&handle_errors_html);11011102# dispatch1103sub dispatch {1104if(!defined$action) {1105if(defined$hash) {1106$action= git_get_type($hash);1107}elsif(defined$hash_base&&defined$file_name) {1108$action= git_get_type("$hash_base:$file_name");1109}elsif(defined$project) {1110$action='summary';1111}else{1112$action='project_list';1113}1114}1115if(!defined($actions{$action})) {1116 die_error(400,"Unknown action");1117}1118if($action!~m/^(?:opml|project_list|project_index)$/&&1119!$project) {1120 die_error(400,"Project needed");1121}1122$actions{$action}->();1123}11241125sub reset_timer {1126our$t0= [ gettimeofday() ]1127ifdefined$t0;1128our$number_of_git_cmds=0;1129}11301131our$first_request=1;1132sub run_request {1133 reset_timer();11341135 evaluate_uri();1136if($first_request) {1137 evaluate_gitweb_config();1138 evaluate_git_version();1139}1140if($per_request_config) {1141if(ref($per_request_config)eq'CODE') {1142$per_request_config->();1143}elsif(!$first_request) {1144 evaluate_gitweb_config();1145}1146}1147 check_loadavg();11481149# $projectroot and $projects_list might be set in gitweb config file1150$projects_list||=$projectroot;11511152 evaluate_query_params();1153 evaluate_path_info();1154 evaluate_and_validate_params();1155 evaluate_git_dir();11561157 configure_gitweb_features();11581159 dispatch();1160}11611162our$is_last_request=sub{1};1163our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1164our$CGI='CGI';1165our$cgi;1166sub configure_as_fcgi {1167require CGI::Fast;1168our$CGI='CGI::Fast';11691170my$request_number=0;1171# let each child service 100 requests1172our$is_last_request=sub{ ++$request_number>100};1173}1174sub evaluate_argv {1175my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1176 configure_as_fcgi()1177if$script_name=~/\.fcgi$/;11781179return unless(@ARGV);11801181require Getopt::Long;1182 Getopt::Long::GetOptions(1183'fastcgi|fcgi|f'=> \&configure_as_fcgi,1184'nproc|n=i'=>sub{1185my($arg,$val) =@_;1186return unlesseval{require FCGI::ProcManager;1; };1187my$proc_manager= FCGI::ProcManager->new({1188 n_processes =>$val,1189});1190our$pre_listen_hook=sub{$proc_manager->pm_manage() };1191our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1192our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1193},1194);1195}11961197sub run {1198 evaluate_argv();11991200$first_request=1;1201$pre_listen_hook->()1202if$pre_listen_hook;12031204 REQUEST:1205while($cgi=$CGI->new()) {1206$pre_dispatch_hook->()1207if$pre_dispatch_hook;12081209 run_request();12101211$post_dispatch_hook->()1212if$post_dispatch_hook;1213$first_request=0;12141215last REQUEST if($is_last_request->());1216}12171218 DONE_GITWEB:12191;1220}12211222run();12231224if(defined caller) {1225# wrapped in a subroutine processing requests,1226# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1227return;1228}else{1229# pure CGI script, serving single request1230exit;1231}12321233## ======================================================================1234## action links12351236# possible values of extra options1237# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1238# -replay => 1 - start from a current view (replay with modifications)1239# -path_info => 0|1 - don't use/use path_info URL (if possible)1240# -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone1241sub href {1242my%params=@_;1243# default is to use -absolute url() i.e. $my_uri1244my$href=$params{-full} ?$my_url:$my_uri;12451246# implicit -replay, must be first of implicit params1247$params{-replay} =1if(keys%params==1&&$params{-anchor});12481249$params{'project'} =$projectunlessexists$params{'project'};12501251if($params{-replay}) {1252while(my($name,$symbol) =each%cgi_param_mapping) {1253if(!exists$params{$name}) {1254$params{$name} =$input_params{$name};1255}1256}1257}12581259my$use_pathinfo= gitweb_check_feature('pathinfo');1260if(defined$params{'project'} &&1261(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1262# try to put as many parameters as possible in PATH_INFO:1263# - project name1264# - action1265# - hash_parent or hash_parent_base:/file_parent1266# - hash or hash_base:/filename1267# - the snapshot_format as an appropriate suffix12681269# When the script is the root DirectoryIndex for the domain,1270# $href here would be something like http://gitweb.example.com/1271# Thus, we strip any trailing / from $href, to spare us double1272# slashes in the final URL1273$href=~ s,/$,,;12741275# Then add the project name, if present1276$href.="/".esc_path_info($params{'project'});1277delete$params{'project'};12781279# since we destructively absorb parameters, we keep this1280# boolean that remembers if we're handling a snapshot1281my$is_snapshot=$params{'action'}eq'snapshot';12821283# Summary just uses the project path URL, any other action is1284# added to the URL1285if(defined$params{'action'}) {1286$href.="/".esc_path_info($params{'action'})1287unless$params{'action'}eq'summary';1288delete$params{'action'};1289}12901291# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1292# stripping nonexistent or useless pieces1293$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1294||$params{'hash_parent'} ||$params{'hash'});1295if(defined$params{'hash_base'}) {1296if(defined$params{'hash_parent_base'}) {1297$href.= esc_path_info($params{'hash_parent_base'});1298# skip the file_parent if it's the same as the file_name1299if(defined$params{'file_parent'}) {1300if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1301delete$params{'file_parent'};1302}elsif($params{'file_parent'} !~/\.\./) {1303$href.=":/".esc_path_info($params{'file_parent'});1304delete$params{'file_parent'};1305}1306}1307$href.="..";1308delete$params{'hash_parent'};1309delete$params{'hash_parent_base'};1310}elsif(defined$params{'hash_parent'}) {1311$href.= esc_path_info($params{'hash_parent'})."..";1312delete$params{'hash_parent'};1313}13141315$href.= esc_path_info($params{'hash_base'});1316if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1317$href.=":/".esc_path_info($params{'file_name'});1318delete$params{'file_name'};1319}1320delete$params{'hash'};1321delete$params{'hash_base'};1322}elsif(defined$params{'hash'}) {1323$href.= esc_path_info($params{'hash'});1324delete$params{'hash'};1325}13261327# If the action was a snapshot, we can absorb the1328# snapshot_format parameter too1329if($is_snapshot) {1330my$fmt=$params{'snapshot_format'};1331# snapshot_format should always be defined when href()1332# is called, but just in case some code forgets, we1333# fall back to the default1334$fmt||=$snapshot_fmts[0];1335$href.=$known_snapshot_formats{$fmt}{'suffix'};1336delete$params{'snapshot_format'};1337}1338}13391340# now encode the parameters explicitly1341my@result= ();1342for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1343my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1344if(defined$params{$name}) {1345if(ref($params{$name})eq"ARRAY") {1346foreachmy$par(@{$params{$name}}) {1347push@result,$symbol."=". esc_param($par);1348}1349}else{1350push@result,$symbol."=". esc_param($params{$name});1351}1352}1353}1354$href.="?".join(';',@result)ifscalar@result;13551356# final transformation: trailing spaces must be escaped (URI-encoded)1357$href=~s/(\s+)$/CGI::escape($1)/e;13581359if($params{-anchor}) {1360$href.="#".esc_param($params{-anchor});1361}13621363return$href;1364}136513661367## ======================================================================1368## validation, quoting/unquoting and escaping13691370sub validate_action {1371my$input=shift||returnundef;1372returnundefunlessexists$actions{$input};1373return$input;1374}13751376sub validate_project {1377my$input=shift||returnundef;1378if(!validate_pathname($input) ||1379!(-d "$projectroot/$input") ||1380!check_export_ok("$projectroot/$input") ||1381($strict_export&& !project_in_list($input))) {1382returnundef;1383}else{1384return$input;1385}1386}13871388sub validate_pathname {1389my$input=shift||returnundef;13901391# no '.' or '..' as elements of path, i.e. no '.' nor '..'1392# at the beginning, at the end, and between slashes.1393# also this catches doubled slashes1394if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1395returnundef;1396}1397# no null characters1398if($input=~m!\0!) {1399returnundef;1400}1401return$input;1402}14031404sub validate_refname {1405my$input=shift||returnundef;14061407# textual hashes are O.K.1408if($input=~m/^[0-9a-fA-F]{40}$/) {1409return$input;1410}1411# it must be correct pathname1412$input= validate_pathname($input)1413orreturnundef;1414# restrictions on ref name according to git-check-ref-format1415if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1416returnundef;1417}1418return$input;1419}14201421# decode sequences of octets in utf8 into Perl's internal form,1422# which is utf-8 with utf8 flag set if needed. gitweb writes out1423# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1424sub to_utf8 {1425my$str=shift;1426returnundefunlessdefined$str;1427if(utf8::valid($str)) {1428 utf8::decode($str);1429return$str;1430}else{1431return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1432}1433}14341435# quote unsafe chars, but keep the slash, even when it's not1436# correct, but quoted slashes look too horrible in bookmarks1437sub esc_param {1438my$str=shift;1439returnundefunlessdefined$str;1440$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1441$str=~s/ /\+/g;1442return$str;1443}14441445# the quoting rules for path_info fragment are slightly different1446sub esc_path_info {1447my$str=shift;1448returnundefunlessdefined$str;14491450# path_info doesn't treat '+' as space (specially), but '?' must be escaped1451$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;14521453return$str;1454}14551456# quote unsafe chars in whole URL, so some characters cannot be quoted1457sub esc_url {1458my$str=shift;1459returnundefunlessdefined$str;1460$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1461$str=~s/ /\+/g;1462return$str;1463}14641465# quote unsafe characters in HTML attributes1466sub esc_attr {14671468# for XHTML conformance escaping '"' to '"' is not enough1469return esc_html(@_);1470}14711472# replace invalid utf8 character with SUBSTITUTION sequence1473sub esc_html {1474my$str=shift;1475my%opts=@_;14761477returnundefunlessdefined$str;14781479$str= to_utf8($str);1480$str=$cgi->escapeHTML($str);1481if($opts{'-nbsp'}) {1482$str=~s/ / /g;1483}1484$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1485return$str;1486}14871488# quote control characters and escape filename to HTML1489sub esc_path {1490my$str=shift;1491my%opts=@_;14921493returnundefunlessdefined$str;14941495$str= to_utf8($str);1496$str=$cgi->escapeHTML($str);1497if($opts{'-nbsp'}) {1498$str=~s/ / /g;1499}1500$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1501return$str;1502}15031504# Make control characters "printable", using character escape codes (CEC)1505sub quot_cec {1506my$cntrl=shift;1507my%opts=@_;1508my%es= (# character escape codes, aka escape sequences1509"\t"=>'\t',# tab (HT)1510"\n"=>'\n',# line feed (LF)1511"\r"=>'\r',# carrige return (CR)1512"\f"=>'\f',# form feed (FF)1513"\b"=>'\b',# backspace (BS)1514"\a"=>'\a',# alarm (bell) (BEL)1515"\e"=>'\e',# escape (ESC)1516"\013"=>'\v',# vertical tab (VT)1517"\000"=>'\0',# nul character (NUL)1518);1519my$chr= ( (exists$es{$cntrl})1520?$es{$cntrl}1521:sprintf('\%2x',ord($cntrl)) );1522if($opts{-nohtml}) {1523return$chr;1524}else{1525return"<span class=\"cntrl\">$chr</span>";1526}1527}15281529# Alternatively use unicode control pictures codepoints,1530# Unicode "printable representation" (PR)1531sub quot_upr {1532my$cntrl=shift;1533my%opts=@_;15341535my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1536if($opts{-nohtml}) {1537return$chr;1538}else{1539return"<span class=\"cntrl\">$chr</span>";1540}1541}15421543# git may return quoted and escaped filenames1544sub unquote {1545my$str=shift;15461547sub unq {1548my$seq=shift;1549my%es= (# character escape codes, aka escape sequences1550't'=>"\t",# tab (HT, TAB)1551'n'=>"\n",# newline (NL)1552'r'=>"\r",# return (CR)1553'f'=>"\f",# form feed (FF)1554'b'=>"\b",# backspace (BS)1555'a'=>"\a",# alarm (bell) (BEL)1556'e'=>"\e",# escape (ESC)1557'v'=>"\013",# vertical tab (VT)1558);15591560if($seq=~m/^[0-7]{1,3}$/) {1561# octal char sequence1562returnchr(oct($seq));1563}elsif(exists$es{$seq}) {1564# C escape sequence, aka character escape code1565return$es{$seq};1566}1567# quoted ordinary character1568return$seq;1569}15701571if($str=~m/^"(.*)"$/) {1572# needs unquoting1573$str=$1;1574$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1575}1576return$str;1577}15781579# escape tabs (convert tabs to spaces)1580sub untabify {1581my$line=shift;15821583while((my$pos=index($line,"\t")) != -1) {1584if(my$count= (8- ($pos%8))) {1585my$spaces=' ' x $count;1586$line=~s/\t/$spaces/;1587}1588}15891590return$line;1591}15921593sub project_in_list {1594my$project=shift;1595my@list= git_get_projects_list();1596return@list&&scalar(grep{$_->{'path'}eq$project}@list);1597}15981599## ----------------------------------------------------------------------1600## HTML aware string manipulation16011602# Try to chop given string on a word boundary between position1603# $len and $len+$add_len. If there is no word boundary there,1604# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1605# (marking chopped part) would be longer than given string.1606sub chop_str {1607my$str=shift;1608my$len=shift;1609my$add_len=shift||10;1610my$where=shift||'right';# 'left' | 'center' | 'right'16111612# Make sure perl knows it is utf8 encoded so we don't1613# cut in the middle of a utf8 multibyte char.1614$str= to_utf8($str);16151616# allow only $len chars, but don't cut a word if it would fit in $add_len1617# if it doesn't fit, cut it if it's still longer than the dots we would add1618# remove chopped character entities entirely16191620# when chopping in the middle, distribute $len into left and right part1621# return early if chopping wouldn't make string shorter1622if($whereeq'center') {1623return$strif($len+5>=length($str));# filler is length 51624$len=int($len/2);1625}else{1626return$strif($len+4>=length($str));# filler is length 41627}16281629# regexps: ending and beginning with word part up to $add_len1630my$endre=qr/.{$len}\w{0,$add_len}/;1631my$begre=qr/\w{0,$add_len}.{$len}/;16321633if($whereeq'left') {1634$str=~m/^(.*?)($begre)$/;1635my($lead,$body) = ($1,$2);1636if(length($lead) >4) {1637$lead=" ...";1638}1639return"$lead$body";16401641}elsif($whereeq'center') {1642$str=~m/^($endre)(.*)$/;1643my($left,$str) = ($1,$2);1644$str=~m/^(.*?)($begre)$/;1645my($mid,$right) = ($1,$2);1646if(length($mid) >5) {1647$mid=" ... ";1648}1649return"$left$mid$right";16501651}else{1652$str=~m/^($endre)(.*)$/;1653my$body=$1;1654my$tail=$2;1655if(length($tail) >4) {1656$tail="... ";1657}1658return"$body$tail";1659}1660}16611662# takes the same arguments as chop_str, but also wraps a <span> around the1663# result with a title attribute if it does get chopped. Additionally, the1664# string is HTML-escaped.1665sub chop_and_escape_str {1666my($str) =@_;16671668my$chopped= chop_str(@_);1669if($choppedeq$str) {1670return esc_html($chopped);1671}else{1672$str=~s/[[:cntrl:]]/?/g;1673return$cgi->span({-title=>$str}, esc_html($chopped));1674}1675}16761677## ----------------------------------------------------------------------1678## functions returning short strings16791680# CSS class for given age value (in seconds)1681sub age_class {1682my$age=shift;16831684if(!defined$age) {1685return"noage";1686}elsif($age<60*60*2) {1687return"age0";1688}elsif($age<60*60*24*2) {1689return"age1";1690}else{1691return"age2";1692}1693}16941695# convert age in seconds to "nn units ago" string1696sub age_string {1697my$age=shift;1698my$age_str;16991700if($age>60*60*24*365*2) {1701$age_str= (int$age/60/60/24/365);1702$age_str.=" years ago";1703}elsif($age>60*60*24*(365/12)*2) {1704$age_str=int$age/60/60/24/(365/12);1705$age_str.=" months ago";1706}elsif($age>60*60*24*7*2) {1707$age_str=int$age/60/60/24/7;1708$age_str.=" weeks ago";1709}elsif($age>60*60*24*2) {1710$age_str=int$age/60/60/24;1711$age_str.=" days ago";1712}elsif($age>60*60*2) {1713$age_str=int$age/60/60;1714$age_str.=" hours ago";1715}elsif($age>60*2) {1716$age_str=int$age/60;1717$age_str.=" min ago";1718}elsif($age>2) {1719$age_str=int$age;1720$age_str.=" sec ago";1721}else{1722$age_str.=" right now";1723}1724return$age_str;1725}17261727useconstant{1728 S_IFINVALID =>0030000,1729 S_IFGITLINK =>0160000,1730};17311732# submodule/subproject, a commit object reference1733sub S_ISGITLINK {1734my$mode=shift;17351736return(($mode& S_IFMT) == S_IFGITLINK)1737}17381739# convert file mode in octal to symbolic file mode string1740sub mode_str {1741my$mode=oct shift;17421743if(S_ISGITLINK($mode)) {1744return'm---------';1745}elsif(S_ISDIR($mode& S_IFMT)) {1746return'drwxr-xr-x';1747}elsif(S_ISLNK($mode)) {1748return'lrwxrwxrwx';1749}elsif(S_ISREG($mode)) {1750# git cares only about the executable bit1751if($mode& S_IXUSR) {1752return'-rwxr-xr-x';1753}else{1754return'-rw-r--r--';1755};1756}else{1757return'----------';1758}1759}17601761# convert file mode in octal to file type string1762sub file_type {1763my$mode=shift;17641765if($mode!~m/^[0-7]+$/) {1766return$mode;1767}else{1768$mode=oct$mode;1769}17701771if(S_ISGITLINK($mode)) {1772return"submodule";1773}elsif(S_ISDIR($mode& S_IFMT)) {1774return"directory";1775}elsif(S_ISLNK($mode)) {1776return"symlink";1777}elsif(S_ISREG($mode)) {1778return"file";1779}else{1780return"unknown";1781}1782}17831784# convert file mode in octal to file type description string1785sub file_type_long {1786my$mode=shift;17871788if($mode!~m/^[0-7]+$/) {1789return$mode;1790}else{1791$mode=oct$mode;1792}17931794if(S_ISGITLINK($mode)) {1795return"submodule";1796}elsif(S_ISDIR($mode& S_IFMT)) {1797return"directory";1798}elsif(S_ISLNK($mode)) {1799return"symlink";1800}elsif(S_ISREG($mode)) {1801if($mode& S_IXUSR) {1802return"executable";1803}else{1804return"file";1805};1806}else{1807return"unknown";1808}1809}181018111812## ----------------------------------------------------------------------1813## functions returning short HTML fragments, or transforming HTML fragments1814## which don't belong to other sections18151816# format line of commit message.1817sub format_log_line_html {1818my$line=shift;18191820$line= esc_html($line, -nbsp=>1);1821$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1822$cgi->a({-href => href(action=>"object", hash=>$1),1823-class=>"text"},$1);1824}eg;18251826return$line;1827}18281829# format marker of refs pointing to given object18301831# the destination action is chosen based on object type and current context:1832# - for annotated tags, we choose the tag view unless it's the current view1833# already, in which case we go to shortlog view1834# - for other refs, we keep the current view if we're in history, shortlog or1835# log view, and select shortlog otherwise1836sub format_ref_marker {1837my($refs,$id) =@_;1838my$markers='';18391840if(defined$refs->{$id}) {1841foreachmy$ref(@{$refs->{$id}}) {1842# this code exploits the fact that non-lightweight tags are the1843# only indirect objects, and that they are the only objects for which1844# we want to use tag instead of shortlog as action1845my($type,$name) =qw();1846my$indirect= ($ref=~s/\^\{\}$//);1847# e.g. tags/v2.6.11 or heads/next1848if($ref=~m!^(.*?)s?/(.*)$!) {1849$type=$1;1850$name=$2;1851}else{1852$type="ref";1853$name=$ref;1854}18551856my$class=$type;1857$class.=" indirect"if$indirect;18581859my$dest_action="shortlog";18601861if($indirect) {1862$dest_action="tag"unless$actioneq"tag";1863}elsif($action=~/^(history|(short)?log)$/) {1864$dest_action=$action;1865}18661867my$dest="";1868$dest.="refs/"unless$ref=~ m!^refs/!;1869$dest.=$ref;18701871my$link=$cgi->a({1872-href => href(1873 action=>$dest_action,1874 hash=>$dest1875)},$name);18761877$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".1878$link."</span>";1879}1880}18811882if($markers) {1883return' <span class="refs">'.$markers.'</span>';1884}else{1885return"";1886}1887}18881889# format, perhaps shortened and with markers, title line1890sub format_subject_html {1891my($long,$short,$href,$extra) =@_;1892$extra=''unlessdefined($extra);18931894if(length($short) <length($long)) {1895$long=~s/[[:cntrl:]]/?/g;1896return$cgi->a({-href =>$href, -class=>"list subject",1897-title => to_utf8($long)},1898 esc_html($short)) .$extra;1899}else{1900return$cgi->a({-href =>$href, -class=>"list subject"},1901 esc_html($long)) .$extra;1902}1903}19041905# Rather than recomputing the url for an email multiple times, we cache it1906# after the first hit. This gives a visible benefit in views where the avatar1907# for the same email is used repeatedly (e.g. shortlog).1908# The cache is shared by all avatar engines (currently gravatar only), which1909# are free to use it as preferred. Since only one avatar engine is used for any1910# given page, there's no risk for cache conflicts.1911our%avatar_cache= ();19121913# Compute the picon url for a given email, by using the picon search service over at1914# http://www.cs.indiana.edu/picons/search.html1915sub picon_url {1916my$email=lc shift;1917if(!$avatar_cache{$email}) {1918my($user,$domain) =split('@',$email);1919$avatar_cache{$email} =1920"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1921"$domain/$user/".1922"users+domains+unknown/up/single";1923}1924return$avatar_cache{$email};1925}19261927# Compute the gravatar url for a given email, if it's not in the cache already.1928# Gravatar stores only the part of the URL before the size, since that's the1929# one computationally more expensive. This also allows reuse of the cache for1930# different sizes (for this particular engine).1931sub gravatar_url {1932my$email=lc shift;1933my$size=shift;1934$avatar_cache{$email} ||=1935"http://www.gravatar.com/avatar/".1936 Digest::MD5::md5_hex($email) ."?s=";1937return$avatar_cache{$email} .$size;1938}19391940# Insert an avatar for the given $email at the given $size if the feature1941# is enabled.1942sub git_get_avatar {1943my($email,%opts) =@_;1944my$pre_white= ($opts{-pad_before} ?" ":"");1945my$post_white= ($opts{-pad_after} ?" ":"");1946$opts{-size} ||='default';1947my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1948my$url="";1949if($git_avatareq'gravatar') {1950$url= gravatar_url($email,$size);1951}elsif($git_avatareq'picon') {1952$url= picon_url($email);1953}1954# Other providers can be added by extending the if chain, defining $url1955# as needed. If no variant puts something in $url, we assume avatars1956# are completely disabled/unavailable.1957if($url) {1958return$pre_white.1959"<img width=\"$size\"".1960"class=\"avatar\"".1961"src=\"".esc_url($url)."\"".1962"alt=\"\"".1963"/>".$post_white;1964}else{1965return"";1966}1967}19681969sub format_search_author {1970my($author,$searchtype,$displaytext) =@_;1971my$have_search= gitweb_check_feature('search');19721973if($have_search) {1974my$performed="";1975if($searchtypeeq'author') {1976$performed="authored";1977}elsif($searchtypeeq'committer') {1978$performed="committed";1979}19801981return$cgi->a({-href => href(action=>"search", hash=>$hash,1982 searchtext=>$author,1983 searchtype=>$searchtype),class=>"list",1984 title=>"Search for commits$performedby$author"},1985$displaytext);19861987}else{1988return$displaytext;1989}1990}19911992# format the author name of the given commit with the given tag1993# the author name is chopped and escaped according to the other1994# optional parameters (see chop_str).1995sub format_author_html {1996my$tag=shift;1997my$co=shift;1998my$author= chop_and_escape_str($co->{'author_name'},@_);1999return"<$tagclass=\"author\">".2000 format_search_author($co->{'author_name'},"author",2001 git_get_avatar($co->{'author_email'}, -pad_after =>1) .2002$author) .2003"</$tag>";2004}20052006# format git diff header line, i.e. "diff --(git|combined|cc) ..."2007sub format_git_diff_header_line {2008my$line=shift;2009my$diffinfo=shift;2010my($from,$to) =@_;20112012if($diffinfo->{'nparents'}) {2013# combined diff2014$line=~s!^(diff (.*?) )"?.*$!$1!;2015if($to->{'href'}) {2016$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},2017 esc_path($to->{'file'}));2018}else{# file was deleted (no href)2019$line.= esc_path($to->{'file'});2020}2021}else{2022# "ordinary" diff2023$line=~s!^(diff (.*?) )"?a/.*$!$1!;2024if($from->{'href'}) {2025$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},2026'a/'. esc_path($from->{'file'}));2027}else{# file was added (no href)2028$line.='a/'. esc_path($from->{'file'});2029}2030$line.=' ';2031if($to->{'href'}) {2032$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},2033'b/'. esc_path($to->{'file'}));2034}else{# file was deleted2035$line.='b/'. esc_path($to->{'file'});2036}2037}20382039return"<div class=\"diff header\">$line</div>\n";2040}20412042# format extended diff header line, before patch itself2043sub format_extended_diff_header_line {2044my$line=shift;2045my$diffinfo=shift;2046my($from,$to) =@_;20472048# match <path>2049if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {2050$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},2051 esc_path($from->{'file'}));2052}2053if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {2054$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},2055 esc_path($to->{'file'}));2056}2057# match single <mode>2058if($line=~m/\s(\d{6})$/) {2059$line.='<span class="info"> ('.2060 file_type_long($1) .2061')</span>';2062}2063# match <hash>2064if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {2065# can match only for combined diff2066$line='index ';2067for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2068if($from->{'href'}[$i]) {2069$line.=$cgi->a({-href=>$from->{'href'}[$i],2070-class=>"hash"},2071substr($diffinfo->{'from_id'}[$i],0,7));2072}else{2073$line.='0' x 7;2074}2075# separator2076$line.=','if($i<$diffinfo->{'nparents'} -1);2077}2078$line.='..';2079if($to->{'href'}) {2080$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2081substr($diffinfo->{'to_id'},0,7));2082}else{2083$line.='0' x 7;2084}20852086}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2087# can match only for ordinary diff2088my($from_link,$to_link);2089if($from->{'href'}) {2090$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2091substr($diffinfo->{'from_id'},0,7));2092}else{2093$from_link='0' x 7;2094}2095if($to->{'href'}) {2096$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2097substr($diffinfo->{'to_id'},0,7));2098}else{2099$to_link='0' x 7;2100}2101my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2102$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2103}21042105return$line."<br/>\n";2106}21072108# format from-file/to-file diff header2109sub format_diff_from_to_header {2110my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2111my$line;2112my$result='';21132114$line=$from_line;2115#assert($line =~ m/^---/) if DEBUG;2116# no extra formatting for "^--- /dev/null"2117if(!$diffinfo->{'nparents'}) {2118# ordinary (single parent) diff2119if($line=~m!^--- "?a/!) {2120if($from->{'href'}) {2121$line='--- a/'.2122$cgi->a({-href=>$from->{'href'}, -class=>"path"},2123 esc_path($from->{'file'}));2124}else{2125$line='--- a/'.2126 esc_path($from->{'file'});2127}2128}2129$result.= qq!<div class="diff from_file">$line</div>\n!;21302131}else{2132# combined diff (merge commit)2133for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2134if($from->{'href'}[$i]) {2135$line='--- '.2136$cgi->a({-href=>href(action=>"blobdiff",2137 hash_parent=>$diffinfo->{'from_id'}[$i],2138 hash_parent_base=>$parents[$i],2139 file_parent=>$from->{'file'}[$i],2140 hash=>$diffinfo->{'to_id'},2141 hash_base=>$hash,2142 file_name=>$to->{'file'}),2143-class=>"path",2144-title=>"diff". ($i+1)},2145$i+1) .2146'/'.2147$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2148 esc_path($from->{'file'}[$i]));2149}else{2150$line='--- /dev/null';2151}2152$result.= qq!<div class="diff from_file">$line</div>\n!;2153}2154}21552156$line=$to_line;2157#assert($line =~ m/^\+\+\+/) if DEBUG;2158# no extra formatting for "^+++ /dev/null"2159if($line=~m!^\+\+\+ "?b/!) {2160if($to->{'href'}) {2161$line='+++ b/'.2162$cgi->a({-href=>$to->{'href'}, -class=>"path"},2163 esc_path($to->{'file'}));2164}else{2165$line='+++ b/'.2166 esc_path($to->{'file'});2167}2168}2169$result.= qq!<div class="diff to_file">$line</div>\n!;21702171return$result;2172}21732174# create note for patch simplified by combined diff2175sub format_diff_cc_simplified {2176my($diffinfo,@parents) =@_;2177my$result='';21782179$result.="<div class=\"diff header\">".2180"diff --cc ";2181if(!is_deleted($diffinfo)) {2182$result.=$cgi->a({-href => href(action=>"blob",2183 hash_base=>$hash,2184 hash=>$diffinfo->{'to_id'},2185 file_name=>$diffinfo->{'to_file'}),2186-class=>"path"},2187 esc_path($diffinfo->{'to_file'}));2188}else{2189$result.= esc_path($diffinfo->{'to_file'});2190}2191$result.="</div>\n".# class="diff header"2192"<div class=\"diff nodifferences\">".2193"Simple merge".2194"</div>\n";# class="diff nodifferences"21952196return$result;2197}21982199# format patch (diff) line (not to be used for diff headers)2200sub format_diff_line {2201my$line=shift;2202my($from,$to) =@_;2203my$diff_class="";22042205chomp$line;22062207if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2208# combined diff2209my$prefix=substr($line,0,scalar@{$from->{'href'}});2210if($line=~m/^\@{3}/) {2211$diff_class=" chunk_header";2212}elsif($line=~m/^\\/) {2213$diff_class=" incomplete";2214}elsif($prefix=~tr/+/+/) {2215$diff_class=" add";2216}elsif($prefix=~tr/-/-/) {2217$diff_class=" rem";2218}2219}else{2220# assume ordinary diff2221my$char=substr($line,0,1);2222if($chareq'+') {2223$diff_class=" add";2224}elsif($chareq'-') {2225$diff_class=" rem";2226}elsif($chareq'@') {2227$diff_class=" chunk_header";2228}elsif($chareq"\\") {2229$diff_class=" incomplete";2230}2231}2232$line= untabify($line);2233if($from&&$to&&$line=~m/^\@{2} /) {2234my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2235$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;22362237$from_lines=0unlessdefined$from_lines;2238$to_lines=0unlessdefined$to_lines;22392240if($from->{'href'}) {2241$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2242-class=>"list"},$from_text);2243}2244if($to->{'href'}) {2245$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2246-class=>"list"},$to_text);2247}2248$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2249"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2250return"<div class=\"diff$diff_class\">$line</div>\n";2251}elsif($from&&$to&&$line=~m/^\@{3}/) {2252my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2253my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);22542255@from_text=split(' ',$ranges);2256for(my$i=0;$i<@from_text; ++$i) {2257($from_start[$i],$from_nlines[$i]) =2258(split(',',substr($from_text[$i],1)),0);2259}22602261$to_text=pop@from_text;2262$to_start=pop@from_start;2263$to_nlines=pop@from_nlines;22642265$line="<span class=\"chunk_info\">$prefix";2266for(my$i=0;$i<@from_text; ++$i) {2267if($from->{'href'}[$i]) {2268$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2269-class=>"list"},$from_text[$i]);2270}else{2271$line.=$from_text[$i];2272}2273$line.=" ";2274}2275if($to->{'href'}) {2276$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2277-class=>"list"},$to_text);2278}else{2279$line.=$to_text;2280}2281$line.="$prefix</span>".2282"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2283return"<div class=\"diff$diff_class\">$line</div>\n";2284}2285return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2286}22872288# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2289# linked. Pass the hash of the tree/commit to snapshot.2290sub format_snapshot_links {2291my($hash) =@_;2292my$num_fmts=@snapshot_fmts;2293if($num_fmts>1) {2294# A parenthesized list of links bearing format names.2295# e.g. "snapshot (_tar.gz_ _zip_)"2296return"snapshot (".join(' ',map2297$cgi->a({2298-href => href(2299 action=>"snapshot",2300 hash=>$hash,2301 snapshot_format=>$_2302)2303},$known_snapshot_formats{$_}{'display'})2304,@snapshot_fmts) .")";2305}elsif($num_fmts==1) {2306# A single "snapshot" link whose tooltip bears the format name.2307# i.e. "_snapshot_"2308my($fmt) =@snapshot_fmts;2309return2310$cgi->a({2311-href => href(2312 action=>"snapshot",2313 hash=>$hash,2314 snapshot_format=>$fmt2315),2316-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2317},"snapshot");2318}else{# $num_fmts == 02319returnundef;2320}2321}23222323## ......................................................................2324## functions returning values to be passed, perhaps after some2325## transformation, to other functions; e.g. returning arguments to href()23262327# returns hash to be passed to href to generate gitweb URL2328# in -title key it returns description of link2329sub get_feed_info {2330my$format=shift||'Atom';2331my%res= (action =>lc($format));23322333# feed links are possible only for project views2334return unless(defined$project);2335# some views should link to OPML, or to generic project feed,2336# or don't have specific feed yet (so they should use generic)2337return if($action=~/^(?:tags|heads|forks|tag|search)$/x);23382339my$branch;2340# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2341# from tag links; this also makes possible to detect branch links2342if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2343(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2344$branch=$1;2345}2346# find log type for feed description (title)2347my$type='log';2348if(defined$file_name) {2349$type="history of$file_name";2350$type.="/"if($actioneq'tree');2351$type.=" on '$branch'"if(defined$branch);2352}else{2353$type="log of$branch"if(defined$branch);2354}23552356$res{-title} =$type;2357$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2358$res{'file_name'} =$file_name;23592360return%res;2361}23622363## ----------------------------------------------------------------------2364## git utility subroutines, invoking git commands23652366# returns path to the core git executable and the --git-dir parameter as list2367sub git_cmd {2368$number_of_git_cmds++;2369return$GIT,'--git-dir='.$git_dir;2370}23712372# quote the given arguments for passing them to the shell2373# quote_command("command", "arg 1", "arg with ' and ! characters")2374# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2375# Try to avoid using this function wherever possible.2376sub quote_command {2377returnjoin(' ',2378map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2379}23802381# get HEAD ref of given project as hash2382sub git_get_head_hash {2383return git_get_full_hash(shift,'HEAD');2384}23852386sub git_get_full_hash {2387return git_get_hash(@_);2388}23892390sub git_get_short_hash {2391return git_get_hash(@_,'--short=7');2392}23932394sub git_get_hash {2395my($project,$hash,@options) =@_;2396my$o_git_dir=$git_dir;2397my$retval=undef;2398$git_dir="$projectroot/$project";2399if(open my$fd,'-|', git_cmd(),'rev-parse',2400'--verify','-q',@options,$hash) {2401$retval= <$fd>;2402chomp$retvalifdefined$retval;2403close$fd;2404}2405if(defined$o_git_dir) {2406$git_dir=$o_git_dir;2407}2408return$retval;2409}24102411# get type of given object2412sub git_get_type {2413my$hash=shift;24142415open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2416my$type= <$fd>;2417close$fdorreturn;2418chomp$type;2419return$type;2420}24212422# repository configuration2423our$config_file='';2424our%config;24252426# store multiple values for single key as anonymous array reference2427# single values stored directly in the hash, not as [ <value> ]2428sub hash_set_multi {2429my($hash,$key,$value) =@_;24302431if(!exists$hash->{$key}) {2432$hash->{$key} =$value;2433}elsif(!ref$hash->{$key}) {2434$hash->{$key} = [$hash->{$key},$value];2435}else{2436push@{$hash->{$key}},$value;2437}2438}24392440# return hash of git project configuration2441# optionally limited to some section, e.g. 'gitweb'2442sub git_parse_project_config {2443my$section_regexp=shift;2444my%config;24452446local$/="\0";24472448open my$fh,"-|", git_cmd(),"config",'-z','-l',2449orreturn;24502451while(my$keyval= <$fh>) {2452chomp$keyval;2453my($key,$value) =split(/\n/,$keyval,2);24542455 hash_set_multi(\%config,$key,$value)2456if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2457}2458close$fh;24592460return%config;2461}24622463# convert config value to boolean: 'true' or 'false'2464# no value, number > 0, 'true' and 'yes' values are true2465# rest of values are treated as false (never as error)2466sub config_to_bool {2467my$val=shift;24682469return1if!defined$val;# section.key24702471# strip leading and trailing whitespace2472$val=~s/^\s+//;2473$val=~s/\s+$//;24742475return(($val=~/^\d+$/&&$val) ||# section.key = 12476($val=~/^(?:true|yes)$/i));# section.key = true2477}24782479# convert config value to simple decimal number2480# an optional value suffix of 'k', 'm', or 'g' will cause the value2481# to be multiplied by 1024, 1048576, or 10737418242482sub config_to_int {2483my$val=shift;24842485# strip leading and trailing whitespace2486$val=~s/^\s+//;2487$val=~s/\s+$//;24882489if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2490$unit=lc($unit);2491# unknown unit is treated as 12492return$num* ($uniteq'g'?1073741824:2493$uniteq'm'?1048576:2494$uniteq'k'?1024:1);2495}2496return$val;2497}24982499# convert config value to array reference, if needed2500sub config_to_multi {2501my$val=shift;25022503returnref($val) ?$val: (defined($val) ? [$val] : []);2504}25052506sub git_get_project_config {2507my($key,$type) =@_;25082509return unlessdefined$git_dir;25102511# key sanity check2512return unless($key);2513$key=~s/^gitweb\.//;2514return if($key=~m/\W/);25152516# type sanity check2517if(defined$type) {2518$type=~s/^--//;2519$type=undef2520unless($typeeq'bool'||$typeeq'int');2521}25222523# get config2524if(!defined$config_file||2525$config_filene"$git_dir/config") {2526%config= git_parse_project_config('gitweb');2527$config_file="$git_dir/config";2528}25292530# check if config variable (key) exists2531return unlessexists$config{"gitweb.$key"};25322533# ensure given type2534if(!defined$type) {2535return$config{"gitweb.$key"};2536}elsif($typeeq'bool') {2537# backward compatibility: 'git config --bool' returns true/false2538return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2539}elsif($typeeq'int') {2540return config_to_int($config{"gitweb.$key"});2541}2542return$config{"gitweb.$key"};2543}25442545# get hash of given path at given ref2546sub git_get_hash_by_path {2547my$base=shift;2548my$path=shift||returnundef;2549my$type=shift;25502551$path=~ s,/+$,,;25522553open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2554or die_error(500,"Open git-ls-tree failed");2555my$line= <$fd>;2556close$fdorreturnundef;25572558if(!defined$line) {2559# there is no tree or hash given by $path at $base2560returnundef;2561}25622563#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2564$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2565if(defined$type&&$typene$2) {2566# type doesn't match2567returnundef;2568}2569return$3;2570}25712572# get path of entry with given hash at given tree-ish (ref)2573# used to get 'from' filename for combined diff (merge commit) for renames2574sub git_get_path_by_hash {2575my$base=shift||return;2576my$hash=shift||return;25772578local$/="\0";25792580open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2581orreturnundef;2582while(my$line= <$fd>) {2583chomp$line;25842585#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2586#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2587if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2588close$fd;2589return$1;2590}2591}2592close$fd;2593returnundef;2594}25952596## ......................................................................2597## git utility functions, directly accessing git repository25982599# get the value of config variable either from file named as the variable2600# itself in the repository ($GIT_DIR/$name file), or from gitweb.$name2601# configuration variable in the repository config file.2602sub git_get_file_or_project_config {2603my($path,$name) =@_;26042605$git_dir="$projectroot/$path";2606open my$fd,'<',"$git_dir/$name"2607orreturn git_get_project_config($name);2608my$conf= <$fd>;2609close$fd;2610if(defined$conf) {2611chomp$conf;2612}2613return$conf;2614}26152616sub git_get_project_description {2617my$path=shift;2618return git_get_file_or_project_config($path,'description');2619}26202621sub git_get_project_category {2622my$path=shift;2623return git_get_file_or_project_config($path,'category');2624}262526262627# supported formats:2628# * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)2629# - if its contents is a number, use it as tag weight,2630# - otherwise add a tag with weight 12631# * $GIT_DIR/ctags file, each line is a tag (with weight 1)2632# the same value multiple times increases tag weight2633# * `gitweb.ctag' multi-valued repo config variable2634sub git_get_project_ctags {2635my$project=shift;2636my$ctags= {};26372638$git_dir="$projectroot/$project";2639if(opendir my$dh,"$git_dir/ctags") {2640my@files=grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh);2641foreachmy$tagfile(@files) {2642open my$ct,'<',$tagfile2643ornext;2644my$val= <$ct>;2645chomp$valif$val;2646close$ct;26472648(my$ctag=$tagfile) =~ s#.*/##;2649if($val=~/^\d+$/) {2650$ctags->{$ctag} =$val;2651}else{2652$ctags->{$ctag} =1;2653}2654}2655closedir$dh;26562657}elsif(open my$fh,'<',"$git_dir/ctags") {2658while(my$line= <$fh>) {2659chomp$line;2660$ctags->{$line}++if$line;2661}2662close$fh;26632664}else{2665my$taglist= config_to_multi(git_get_project_config('ctag'));2666foreachmy$tag(@$taglist) {2667$ctags->{$tag}++;2668}2669}26702671return$ctags;2672}26732674# return hash, where keys are content tags ('ctags'),2675# and values are sum of weights of given tag in every project2676sub git_gather_all_ctags {2677my$projects=shift;2678my$ctags= {};26792680foreachmy$p(@$projects) {2681foreachmy$ct(keys%{$p->{'ctags'}}) {2682$ctags->{$ct} +=$p->{'ctags'}->{$ct};2683}2684}26852686return$ctags;2687}26882689sub git_populate_project_tagcloud {2690my$ctags=shift;26912692# First, merge different-cased tags; tags vote on casing2693my%ctags_lc;2694foreach(keys%$ctags) {2695$ctags_lc{lc$_}->{count} +=$ctags->{$_};2696if(not$ctags_lc{lc$_}->{topcount}2697or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2698$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2699$ctags_lc{lc$_}->{topname} =$_;2700}2701}27022703my$cloud;2704my$matched=$cgi->param('by_tag');2705if(eval{require HTML::TagCloud;1; }) {2706$cloud= HTML::TagCloud->new;2707foreachmy$ctag(sort keys%ctags_lc) {2708# Pad the title with spaces so that the cloud looks2709# less crammed.2710my$title= esc_html($ctags_lc{$ctag}->{topname});2711$title=~s/ / /g;2712$title=~s/^/ /g;2713$title=~s/$/ /g;2714if(defined$matched&&$matchedeq$ctag) {2715$title=qq(<span class="match">$title</span>);2716}2717$cloud->add($title, href(project=>undef, ctag=>$ctag),2718$ctags_lc{$ctag}->{count});2719}2720}else{2721$cloud= {};2722foreachmy$ctag(keys%ctags_lc) {2723my$title= esc_html($ctags_lc{$ctag}->{topname}, -nbsp=>1);2724if(defined$matched&&$matchedeq$ctag) {2725$title=qq(<span class="match">$title</span>);2726}2727$cloud->{$ctag}{count} =$ctags_lc{$ctag}->{count};2728$cloud->{$ctag}{ctag} =2729$cgi->a({-href=>href(project=>undef, ctag=>$ctag)},$title);2730}2731}2732return$cloud;2733}27342735sub git_show_project_tagcloud {2736my($cloud,$count) =@_;2737if(ref$cloudeq'HTML::TagCloud') {2738return$cloud->html_and_css($count);2739}else{2740my@tags=sort{$cloud->{$a}->{'count'} <=>$cloud->{$b}->{'count'} }keys%$cloud;2741return2742'<div id="htmltagcloud"'.($project?'':' align="center"').'>'.2743join(', ',map{2744$cloud->{$_}->{'ctag'}2745}splice(@tags,0,$count)) .2746'</div>';2747}2748}27492750sub git_get_project_url_list {2751my$path=shift;27522753$git_dir="$projectroot/$path";2754open my$fd,'<',"$git_dir/cloneurl"2755orreturnwantarray?2756@{ config_to_multi(git_get_project_config('url')) } :2757 config_to_multi(git_get_project_config('url'));2758my@git_project_url_list=map{chomp;$_} <$fd>;2759close$fd;27602761returnwantarray?@git_project_url_list: \@git_project_url_list;2762}27632764sub git_get_projects_list {2765my$filter=shift||'';2766my@list;27672768$filter=~s/\.git$//;27692770if(-d $projects_list) {2771# search in directory2772my$dir=$projects_list;2773# remove the trailing "/"2774$dir=~s!/+$!!;2775my$pfxlen=length("$projects_list");2776my$pfxdepth= ($projects_list=~tr!/!!);2777# when filtering, search only given subdirectory2778if($filter) {2779$dir.="/$filter";2780$dir=~s!/+$!!;2781}27822783 File::Find::find({2784 follow_fast =>1,# follow symbolic links2785 follow_skip =>2,# ignore duplicates2786 dangling_symlinks =>0,# ignore dangling symlinks, silently2787 wanted =>sub{2788# global variables2789our$project_maxdepth;2790our$projectroot;2791# skip project-list toplevel, if we get it.2792return if(m!^[/.]$!);2793# only directories can be git repositories2794return unless(-d $_);2795# don't traverse too deep (Find is super slow on os x)2796# $project_maxdepth excludes depth of $projectroot2797if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2798$File::Find::prune =1;2799return;2800}28012802my$path=substr($File::Find::name,$pfxlen+1);2803# we check related file in $projectroot2804if(check_export_ok("$projectroot/$path")) {2805push@list, { path =>$path};2806$File::Find::prune =1;2807}2808},2809},"$dir");28102811}elsif(-f $projects_list) {2812# read from file(url-encoded):2813# 'git%2Fgit.git Linus+Torvalds'2814# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2815# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2816open my$fd,'<',$projects_listorreturn;2817 PROJECT:2818while(my$line= <$fd>) {2819chomp$line;2820my($path,$owner) =split' ',$line;2821$path= unescape($path);2822$owner= unescape($owner);2823if(!defined$path) {2824next;2825}2826# if $filter is rpovided, check if $path begins with $filter2827if($filter&&$path!~m!^\Q$filter\E/!) {2828next;2829}2830if(check_export_ok("$projectroot/$path")) {2831my$pr= {2832 path =>$path,2833 owner => to_utf8($owner),2834};2835push@list,$pr;2836}2837}2838close$fd;2839}2840return@list;2841}28422843# written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)2844# as side effects it sets 'forks' field to list of forks for forked projects2845sub filter_forks_from_projects_list {2846my$projects=shift;28472848my%trie;# prefix tree of directories (path components)2849# generate trie out of those directories that might contain forks2850foreachmy$pr(@$projects) {2851my$path=$pr->{'path'};2852$path=~s/\.git$//;# forks of 'repo.git' are in 'repo/' directory2853next if($path=~m!/$!);# skip non-bare repositories, e.g. 'repo/.git'2854next unless($path);# skip '.git' repository: tests, git-instaweb2855next unless(-d $path);# containing directory exists2856$pr->{'forks'} = [];# there can be 0 or more forks of project28572858# add to trie2859my@dirs=split('/',$path);2860# walk the trie, until either runs out of components or out of trie2861my$ref= \%trie;2862while(scalar@dirs&&2863exists($ref->{$dirs[0]})) {2864$ref=$ref->{shift@dirs};2865}2866# create rest of trie structure from rest of components2867foreachmy$dir(@dirs) {2868$ref=$ref->{$dir} = {};2869}2870# create end marker, store $pr as a data2871$ref->{''} =$prif(!exists$ref->{''});2872}28732874# filter out forks, by finding shortest prefix match for paths2875my@filtered;2876 PROJECT:2877foreachmy$pr(@$projects) {2878# trie lookup2879my$ref= \%trie;2880 DIR:2881foreachmy$dir(split('/',$pr->{'path'})) {2882if(exists$ref->{''}) {2883# found [shortest] prefix, is a fork - skip it2884push@{$ref->{''}{'forks'}},$pr;2885next PROJECT;2886}2887if(!exists$ref->{$dir}) {2888# not in trie, cannot have prefix, not a fork2889push@filtered,$pr;2890next PROJECT;2891}2892# If the dir is there, we just walk one step down the trie.2893$ref=$ref->{$dir};2894}2895# we ran out of trie2896# (shouldn't happen: it's either no match, or end marker)2897push@filtered,$pr;2898}28992900return@filtered;2901}29022903# note: fill_project_list_info must be run first,2904# for 'descr_long' and 'ctags' to be filled2905sub search_projects_list {2906my($projlist,%opts) =@_;2907my$tagfilter=$opts{'tagfilter'};2908my$searchtext=$opts{'searchtext'};29092910return@$projlist2911unless($tagfilter||$searchtext);29122913my@projects;2914 PROJECT:2915foreachmy$pr(@$projlist) {29162917if($tagfilter) {2918next unlessref($pr->{'ctags'})eq'HASH';2919next unless2920grep{lc($_)eq lc($tagfilter) }keys%{$pr->{'ctags'}};2921}29222923if($searchtext) {2924next unless2925$pr->{'path'} =~/$searchtext/||2926$pr->{'descr_long'} =~/$searchtext/;2927}29282929push@projects,$pr;2930}29312932return@projects;2933}29342935our$gitweb_project_owner=undef;2936sub git_get_project_list_from_file {29372938return if(defined$gitweb_project_owner);29392940$gitweb_project_owner= {};2941# read from file (url-encoded):2942# 'git%2Fgit.git Linus+Torvalds'2943# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2944# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2945if(-f $projects_list) {2946open(my$fd,'<',$projects_list);2947while(my$line= <$fd>) {2948chomp$line;2949my($pr,$ow) =split' ',$line;2950$pr= unescape($pr);2951$ow= unescape($ow);2952$gitweb_project_owner->{$pr} = to_utf8($ow);2953}2954close$fd;2955}2956}29572958sub git_get_project_owner {2959my$project=shift;2960my$owner;29612962returnundefunless$project;2963$git_dir="$projectroot/$project";29642965if(!defined$gitweb_project_owner) {2966 git_get_project_list_from_file();2967}29682969if(exists$gitweb_project_owner->{$project}) {2970$owner=$gitweb_project_owner->{$project};2971}2972if(!defined$owner){2973$owner= git_get_project_config('owner');2974}2975if(!defined$owner) {2976$owner= get_file_owner("$git_dir");2977}29782979return$owner;2980}29812982sub git_get_last_activity {2983my($path) =@_;2984my$fd;29852986$git_dir="$projectroot/$path";2987open($fd,"-|", git_cmd(),'for-each-ref',2988'--format=%(committer)',2989'--sort=-committerdate',2990'--count=1',2991'refs/heads')orreturn;2992my$most_recent= <$fd>;2993close$fdorreturn;2994if(defined$most_recent&&2995$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2996my$timestamp=$1;2997my$age=time-$timestamp;2998return($age, age_string($age));2999}3000return(undef,undef);3001}30023003# Implementation note: when a single remote is wanted, we cannot use 'git3004# remote show -n' because that command always work (assuming it's a remote URL3005# if it's not defined), and we cannot use 'git remote show' because that would3006# try to make a network roundtrip. So the only way to find if that particular3007# remote is defined is to walk the list provided by 'git remote -v' and stop if3008# and when we find what we want.3009sub git_get_remotes_list {3010my$wanted=shift;3011my%remotes= ();30123013open my$fd,'-|', git_cmd(),'remote','-v';3014return unless$fd;3015while(my$remote= <$fd>) {3016chomp$remote;3017$remote=~s!\t(.*?)\s+\((\w+)\)$!!;3018next if$wantedand not$remoteeq$wanted;3019my($url,$key) = ($1,$2);30203021$remotes{$remote} ||= {'heads'=> () };3022$remotes{$remote}{$key} =$url;3023}3024close$fdorreturn;3025returnwantarray?%remotes: \%remotes;3026}30273028# Takes a hash of remotes as first parameter and fills it by adding the3029# available remote heads for each of the indicated remotes.3030sub fill_remote_heads {3031my$remotes=shift;3032my@heads=map{"remotes/$_"}keys%$remotes;3033my@remoteheads= git_get_heads_list(undef,@heads);3034foreachmy$remote(keys%$remotes) {3035$remotes->{$remote}{'heads'} = [grep{3036$_->{'name'} =~s!^$remote/!!3037}@remoteheads];3038}3039}30403041sub git_get_references {3042my$type=shift||"";3043my%refs;3044# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.113045# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}3046open my$fd,"-|", git_cmd(),"show-ref","--dereference",3047($type? ("--","refs/$type") : ())# use -- <pattern> if $type3048orreturn;30493050while(my$line= <$fd>) {3051chomp$line;3052if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {3053if(defined$refs{$1}) {3054push@{$refs{$1}},$2;3055}else{3056$refs{$1} = [$2];3057}3058}3059}3060close$fdorreturn;3061return \%refs;3062}30633064sub git_get_rev_name_tags {3065my$hash=shift||returnundef;30663067open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash3068orreturn;3069my$name_rev= <$fd>;3070close$fd;30713072if($name_rev=~ m|^$hash tags/(.*)$|) {3073return$1;3074}else{3075# catches also '$hash undefined' output3076returnundef;3077}3078}30793080## ----------------------------------------------------------------------3081## parse to hash functions30823083sub parse_date {3084my$epoch=shift;3085my$tz=shift||"-0000";30863087my%date;3088my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");3089my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");3090my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);3091$date{'hour'} =$hour;3092$date{'minute'} =$min;3093$date{'mday'} =$mday;3094$date{'day'} =$days[$wday];3095$date{'month'} =$months[$mon];3096$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",3097$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;3098$date{'mday-time'} =sprintf"%d%s%02d:%02d",3099$mday,$months[$mon],$hour,$min;3100$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",31011900+$year,1+$mon,$mday,$hour,$min,$sec;31023103my($tz_sign,$tz_hour,$tz_min) =3104($tz=~m/^([-+])(\d\d)(\d\d)$/);3105$tz_sign= ($tz_signeq'-'? -1: +1);3106my$local=$epoch+$tz_sign*((($tz_hour*60) +$tz_min)*60);3107($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);3108$date{'hour_local'} =$hour;3109$date{'minute_local'} =$min;3110$date{'tz_local'} =$tz;3111$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",31121900+$year,$mon+1,$mday,3113$hour,$min,$sec,$tz);3114return%date;3115}31163117sub parse_tag {3118my$tag_id=shift;3119my%tag;3120my@comment;31213122open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;3123$tag{'id'} =$tag_id;3124while(my$line= <$fd>) {3125chomp$line;3126if($line=~m/^object ([0-9a-fA-F]{40})$/) {3127$tag{'object'} =$1;3128}elsif($line=~m/^type (.+)$/) {3129$tag{'type'} =$1;3130}elsif($line=~m/^tag (.+)$/) {3131$tag{'name'} =$1;3132}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {3133$tag{'author'} =$1;3134$tag{'author_epoch'} =$2;3135$tag{'author_tz'} =$3;3136if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {3137$tag{'author_name'} =$1;3138$tag{'author_email'} =$2;3139}else{3140$tag{'author_name'} =$tag{'author'};3141}3142}elsif($line=~m/--BEGIN/) {3143push@comment,$line;3144last;3145}elsif($lineeq"") {3146last;3147}3148}3149push@comment, <$fd>;3150$tag{'comment'} = \@comment;3151close$fdorreturn;3152if(!defined$tag{'name'}) {3153return3154};3155return%tag3156}31573158sub parse_commit_text {3159my($commit_text,$withparents) =@_;3160my@commit_lines=split'\n',$commit_text;3161my%co;31623163pop@commit_lines;# Remove '\0'31643165if(!@commit_lines) {3166return;3167}31683169my$header=shift@commit_lines;3170if($header!~m/^[0-9a-fA-F]{40}/) {3171return;3172}3173($co{'id'},my@parents) =split' ',$header;3174while(my$line=shift@commit_lines) {3175last if$lineeq"\n";3176if($line=~m/^tree ([0-9a-fA-F]{40})$/) {3177$co{'tree'} =$1;3178}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {3179push@parents,$1;3180}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {3181$co{'author'} = to_utf8($1);3182$co{'author_epoch'} =$2;3183$co{'author_tz'} =$3;3184if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {3185$co{'author_name'} =$1;3186$co{'author_email'} =$2;3187}else{3188$co{'author_name'} =$co{'author'};3189}3190}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3191$co{'committer'} = to_utf8($1);3192$co{'committer_epoch'} =$2;3193$co{'committer_tz'} =$3;3194if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3195$co{'committer_name'} =$1;3196$co{'committer_email'} =$2;3197}else{3198$co{'committer_name'} =$co{'committer'};3199}3200}3201}3202if(!defined$co{'tree'}) {3203return;3204};3205$co{'parents'} = \@parents;3206$co{'parent'} =$parents[0];32073208foreachmy$title(@commit_lines) {3209$title=~s/^ //;3210if($titlene"") {3211$co{'title'} = chop_str($title,80,5);3212# remove leading stuff of merges to make the interesting part visible3213if(length($title) >50) {3214$title=~s/^Automatic //;3215$title=~s/^merge (of|with) /Merge ... /i;3216if(length($title) >50) {3217$title=~s/(http|rsync):\/\///;3218}3219if(length($title) >50) {3220$title=~s/(master|www|rsync)\.//;3221}3222if(length($title) >50) {3223$title=~s/kernel.org:?//;3224}3225if(length($title) >50) {3226$title=~s/\/pub\/scm//;3227}3228}3229$co{'title_short'} = chop_str($title,50,5);3230last;3231}3232}3233if(!defined$co{'title'} ||$co{'title'}eq"") {3234$co{'title'} =$co{'title_short'} ='(no commit message)';3235}3236# remove added spaces3237foreachmy$line(@commit_lines) {3238$line=~s/^ //;3239}3240$co{'comment'} = \@commit_lines;32413242my$age=time-$co{'committer_epoch'};3243$co{'age'} =$age;3244$co{'age_string'} = age_string($age);3245my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3246if($age>60*60*24*7*2) {3247$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3248$co{'age_string_age'} =$co{'age_string'};3249}else{3250$co{'age_string_date'} =$co{'age_string'};3251$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3252}3253return%co;3254}32553256sub parse_commit {3257my($commit_id) =@_;3258my%co;32593260local$/="\0";32613262open my$fd,"-|", git_cmd(),"rev-list",3263"--parents",3264"--header",3265"--max-count=1",3266$commit_id,3267"--",3268or die_error(500,"Open git-rev-list failed");3269%co= parse_commit_text(<$fd>,1);3270close$fd;32713272return%co;3273}32743275sub parse_commits {3276my($commit_id,$maxcount,$skip,$filename,@args) =@_;3277my@cos;32783279$maxcount||=1;3280$skip||=0;32813282local$/="\0";32833284open my$fd,"-|", git_cmd(),"rev-list",3285"--header",3286@args,3287("--max-count=".$maxcount),3288("--skip=".$skip),3289@extra_options,3290$commit_id,3291"--",3292($filename? ($filename) : ())3293or die_error(500,"Open git-rev-list failed");3294while(my$line= <$fd>) {3295my%co= parse_commit_text($line);3296push@cos, \%co;3297}3298close$fd;32993300returnwantarray?@cos: \@cos;3301}33023303# parse line of git-diff-tree "raw" output3304sub parse_difftree_raw_line {3305my$line=shift;3306my%res;33073308# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3309# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3310if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3311$res{'from_mode'} =$1;3312$res{'to_mode'} =$2;3313$res{'from_id'} =$3;3314$res{'to_id'} =$4;3315$res{'status'} =$5;3316$res{'similarity'} =$6;3317if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3318($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3319}else{3320$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3321}3322}3323# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3324# combined diff (for merge commit)3325elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3326$res{'nparents'} =length($1);3327$res{'from_mode'} = [split(' ',$2) ];3328$res{'to_mode'} =pop@{$res{'from_mode'}};3329$res{'from_id'} = [split(' ',$3) ];3330$res{'to_id'} =pop@{$res{'from_id'}};3331$res{'status'} = [split('',$4) ];3332$res{'to_file'} = unquote($5);3333}3334# 'c512b523472485aef4fff9e57b229d9d243c967f'3335elsif($line=~m/^([0-9a-fA-F]{40})$/) {3336$res{'commit'} =$1;3337}33383339returnwantarray?%res: \%res;3340}33413342# wrapper: return parsed line of git-diff-tree "raw" output3343# (the argument might be raw line, or parsed info)3344sub parsed_difftree_line {3345my$line_or_ref=shift;33463347if(ref($line_or_ref)eq"HASH") {3348# pre-parsed (or generated by hand)3349return$line_or_ref;3350}else{3351return parse_difftree_raw_line($line_or_ref);3352}3353}33543355# parse line of git-ls-tree output3356sub parse_ls_tree_line {3357my$line=shift;3358my%opts=@_;3359my%res;33603361if($opts{'-l'}) {3362#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3363$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;33643365$res{'mode'} =$1;3366$res{'type'} =$2;3367$res{'hash'} =$3;3368$res{'size'} =$4;3369if($opts{'-z'}) {3370$res{'name'} =$5;3371}else{3372$res{'name'} = unquote($5);3373}3374}else{3375#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3376$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;33773378$res{'mode'} =$1;3379$res{'type'} =$2;3380$res{'hash'} =$3;3381if($opts{'-z'}) {3382$res{'name'} =$4;3383}else{3384$res{'name'} = unquote($4);3385}3386}33873388returnwantarray?%res: \%res;3389}33903391# generates _two_ hashes, references to which are passed as 2 and 3 argument3392sub parse_from_to_diffinfo {3393my($diffinfo,$from,$to,@parents) =@_;33943395if($diffinfo->{'nparents'}) {3396# combined diff3397$from->{'file'} = [];3398$from->{'href'} = [];3399 fill_from_file_info($diffinfo,@parents)3400unlessexists$diffinfo->{'from_file'};3401for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3402$from->{'file'}[$i] =3403defined$diffinfo->{'from_file'}[$i] ?3404$diffinfo->{'from_file'}[$i] :3405$diffinfo->{'to_file'};3406if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3407$from->{'href'}[$i] = href(action=>"blob",3408 hash_base=>$parents[$i],3409 hash=>$diffinfo->{'from_id'}[$i],3410 file_name=>$from->{'file'}[$i]);3411}else{3412$from->{'href'}[$i] =undef;3413}3414}3415}else{3416# ordinary (not combined) diff3417$from->{'file'} =$diffinfo->{'from_file'};3418if($diffinfo->{'status'}ne"A") {# not new (added) file3419$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3420 hash=>$diffinfo->{'from_id'},3421 file_name=>$from->{'file'});3422}else{3423delete$from->{'href'};3424}3425}34263427$to->{'file'} =$diffinfo->{'to_file'};3428if(!is_deleted($diffinfo)) {# file exists in result3429$to->{'href'} = href(action=>"blob", hash_base=>$hash,3430 hash=>$diffinfo->{'to_id'},3431 file_name=>$to->{'file'});3432}else{3433delete$to->{'href'};3434}3435}34363437## ......................................................................3438## parse to array of hashes functions34393440sub git_get_heads_list {3441my($limit,@classes) =@_;3442@classes= ('heads')unless@classes;3443my@patterns=map{"refs/$_"}@classes;3444my@headslist;34453446open my$fd,'-|', git_cmd(),'for-each-ref',3447($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3448'--format=%(objectname) %(refname) %(subject)%00%(committer)',3449@patterns3450orreturn;3451while(my$line= <$fd>) {3452my%ref_item;34533454chomp$line;3455my($refinfo,$committerinfo) =split(/\0/,$line);3456my($hash,$name,$title) =split(' ',$refinfo,3);3457my($committer,$epoch,$tz) =3458($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3459$ref_item{'fullname'} =$name;3460$name=~s!^refs/(?:head|remote)s/!!;34613462$ref_item{'name'} =$name;3463$ref_item{'id'} =$hash;3464$ref_item{'title'} =$title||'(no commit message)';3465$ref_item{'epoch'} =$epoch;3466if($epoch) {3467$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3468}else{3469$ref_item{'age'} ="unknown";3470}34713472push@headslist, \%ref_item;3473}3474close$fd;34753476returnwantarray?@headslist: \@headslist;3477}34783479sub git_get_tags_list {3480my$limit=shift;3481my@tagslist;34823483open my$fd,'-|', git_cmd(),'for-each-ref',3484($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3485'--format=%(objectname) %(objecttype) %(refname) '.3486'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3487'refs/tags'3488orreturn;3489while(my$line= <$fd>) {3490my%ref_item;34913492chomp$line;3493my($refinfo,$creatorinfo) =split(/\0/,$line);3494my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3495my($creator,$epoch,$tz) =3496($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3497$ref_item{'fullname'} =$name;3498$name=~s!^refs/tags/!!;34993500$ref_item{'type'} =$type;3501$ref_item{'id'} =$id;3502$ref_item{'name'} =$name;3503if($typeeq"tag") {3504$ref_item{'subject'} =$title;3505$ref_item{'reftype'} =$reftype;3506$ref_item{'refid'} =$refid;3507}else{3508$ref_item{'reftype'} =$type;3509$ref_item{'refid'} =$id;3510}35113512if($typeeq"tag"||$typeeq"commit") {3513$ref_item{'epoch'} =$epoch;3514if($epoch) {3515$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3516}else{3517$ref_item{'age'} ="unknown";3518}3519}35203521push@tagslist, \%ref_item;3522}3523close$fd;35243525returnwantarray?@tagslist: \@tagslist;3526}35273528## ----------------------------------------------------------------------3529## filesystem-related functions35303531sub get_file_owner {3532my$path=shift;35333534my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3535my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3536if(!defined$gcos) {3537returnundef;3538}3539my$owner=$gcos;3540$owner=~s/[,;].*$//;3541return to_utf8($owner);3542}35433544# assume that file exists3545sub insert_file {3546my$filename=shift;35473548open my$fd,'<',$filename;3549print map{ to_utf8($_) } <$fd>;3550close$fd;3551}35523553## ......................................................................3554## mimetype related functions35553556sub mimetype_guess_file {3557my$filename=shift;3558my$mimemap=shift;3559-r $mimemaporreturnundef;35603561my%mimemap;3562open(my$mh,'<',$mimemap)orreturnundef;3563while(<$mh>) {3564next ifm/^#/;# skip comments3565my($mimetype,$exts) =split(/\t+/);3566if(defined$exts) {3567my@exts=split(/\s+/,$exts);3568foreachmy$ext(@exts) {3569$mimemap{$ext} =$mimetype;3570}3571}3572}3573close($mh);35743575$filename=~/\.([^.]*)$/;3576return$mimemap{$1};3577}35783579sub mimetype_guess {3580my$filename=shift;3581my$mime;3582$filename=~/\./orreturnundef;35833584if($mimetypes_file) {3585my$file=$mimetypes_file;3586if($file!~m!^/!) {# if it is relative path3587# it is relative to project3588$file="$projectroot/$project/$file";3589}3590$mime= mimetype_guess_file($filename,$file);3591}3592$mime||= mimetype_guess_file($filename,'/etc/mime.types');3593return$mime;3594}35953596sub blob_mimetype {3597my$fd=shift;3598my$filename=shift;35993600if($filename) {3601my$mime= mimetype_guess($filename);3602$mimeandreturn$mime;3603}36043605# just in case3606return$default_blob_plain_mimetypeunless$fd;36073608if(-T $fd) {3609return'text/plain';3610}elsif(!$filename) {3611return'application/octet-stream';3612}elsif($filename=~m/\.png$/i) {3613return'image/png';3614}elsif($filename=~m/\.gif$/i) {3615return'image/gif';3616}elsif($filename=~m/\.jpe?g$/i) {3617return'image/jpeg';3618}else{3619return'application/octet-stream';3620}3621}36223623sub blob_contenttype {3624my($fd,$file_name,$type) =@_;36253626$type||= blob_mimetype($fd,$file_name);3627if($typeeq'text/plain'&&defined$default_text_plain_charset) {3628$type.="; charset=$default_text_plain_charset";3629}36303631return$type;3632}36333634# guess file syntax for syntax highlighting; return undef if no highlighting3635# the name of syntax can (in the future) depend on syntax highlighter used3636sub guess_file_syntax {3637my($highlight,$mimetype,$file_name) =@_;3638returnundefunless($highlight&&defined$file_name);3639my$basename= basename($file_name,'.in');3640return$highlight_basename{$basename}3641ifexists$highlight_basename{$basename};36423643$basename=~/\.([^.]*)$/;3644my$ext=$1orreturnundef;3645return$highlight_ext{$ext}3646ifexists$highlight_ext{$ext};36473648returnundef;3649}36503651# run highlighter and return FD of its output,3652# or return original FD if no highlighting3653sub run_highlighter {3654my($fd,$highlight,$syntax) =@_;3655return$fdunless($highlight&&defined$syntax);36563657close$fd;3658open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3659 quote_command($highlight_bin).3660" --replace-tabs=8 --fragment --syntax$syntax|"3661or die_error(500,"Couldn't open file or run syntax highlighter");3662return$fd;3663}36643665## ======================================================================3666## functions printing HTML: header, footer, error page36673668sub get_page_title {3669my$title= to_utf8($site_name);36703671return$titleunless(defined$project);3672$title.=" - ". to_utf8($project);36733674return$titleunless(defined$action);3675$title.="/$action";# $action is US-ASCII (7bit ASCII)36763677return$titleunless(defined$file_name);3678$title.=" - ". esc_path($file_name);3679if($actioneq"tree"&&$file_name!~ m|/$|) {3680$title.="/";3681}36823683return$title;3684}36853686sub print_feed_meta {3687if(defined$project) {3688my%href_params= get_feed_info();3689if(!exists$href_params{'-title'}) {3690$href_params{'-title'} ='log';3691}36923693foreachmy$format(qw(RSS Atom)) {3694my$type=lc($format);3695my%link_attr= (3696'-rel'=>'alternate',3697'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),3698'-type'=>"application/$type+xml"3699);37003701$href_params{'action'} =$type;3702$link_attr{'-href'} = href(%href_params);3703print"<link ".3704"rel=\"$link_attr{'-rel'}\"".3705"title=\"$link_attr{'-title'}\"".3706"href=\"$link_attr{'-href'}\"".3707"type=\"$link_attr{'-type'}\"".3708"/>\n";37093710$href_params{'extra_options'} ='--no-merges';3711$link_attr{'-href'} = href(%href_params);3712$link_attr{'-title'} .=' (no merges)';3713print"<link ".3714"rel=\"$link_attr{'-rel'}\"".3715"title=\"$link_attr{'-title'}\"".3716"href=\"$link_attr{'-href'}\"".3717"type=\"$link_attr{'-type'}\"".3718"/>\n";3719}37203721}else{3722printf('<link rel="alternate" title="%sprojects list" '.3723'href="%s" type="text/plain; charset=utf-8" />'."\n",3724 esc_attr($site_name), href(project=>undef, action=>"project_index"));3725printf('<link rel="alternate" title="%sprojects feeds" '.3726'href="%s" type="text/x-opml" />'."\n",3727 esc_attr($site_name), href(project=>undef, action=>"opml"));3728}3729}37303731sub git_header_html {3732my$status=shift||"200 OK";3733my$expires=shift;3734my%opts=@_;37353736my$title= get_page_title();3737my$content_type;3738# require explicit support from the UA if we are to send the page as3739# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3740# we have to do this because MSIE sometimes globs '*/*', pretending to3741# support xhtml+xml but choking when it gets what it asked for.3742if(defined$cgi->http('HTTP_ACCEPT') &&3743$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3744$cgi->Accept('application/xhtml+xml') !=0) {3745$content_type='application/xhtml+xml';3746}else{3747$content_type='text/html';3748}3749print$cgi->header(-type=>$content_type, -charset =>'utf-8',3750-status=>$status, -expires =>$expires)3751unless($opts{'-no_http_header'});3752my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3753print<<EOF;3754<?xml version="1.0" encoding="utf-8"?>3755<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3756<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3757<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3758<!-- git core binaries version$git_version-->3759<head>3760<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3761<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3762<meta name="robots" content="index, nofollow"/>3763<title>$title</title>3764EOF3765# the stylesheet, favicon etc urls won't work correctly with path_info3766# unless we set the appropriate base URL3767if($ENV{'PATH_INFO'}) {3768print"<base href=\"".esc_url($base_url)."\"/>\n";3769}3770# print out each stylesheet that exist, providing backwards capability3771# for those people who defined $stylesheet in a config file3772if(defined$stylesheet) {3773print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3774}else{3775foreachmy$stylesheet(@stylesheets) {3776next unless$stylesheet;3777print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3778}3779}3780 print_feed_meta()3781if($statuseq'200 OK');3782if(defined$favicon) {3783printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);3784}37853786print"</head>\n".3787"<body>\n";37883789if(defined$site_header&& -f $site_header) {3790 insert_file($site_header);3791}37923793print"<div class=\"page_header\">\n";3794if(defined$logo) {3795print$cgi->a({-href => esc_url($logo_url),3796-title =>$logo_label},3797$cgi->img({-src => esc_url($logo),3798-width =>72, -height =>27,3799-alt =>"git",3800-class=>"logo"}));3801}3802print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3803if(defined$project) {3804print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3805if(defined$action) {3806my$action_print=$action;3807if(defined$opts{-action_extra}) {3808$action_print=$cgi->a({-href => href(action=>$action)},3809$action);3810}3811print" /$action_print";3812}3813if(defined$opts{-action_extra}) {3814print" /$opts{-action_extra}";3815}3816print"\n";3817}3818print"</div>\n";38193820my$have_search= gitweb_check_feature('search');3821if(defined$project&&$have_search) {3822if(!defined$searchtext) {3823$searchtext="";3824}3825my$search_hash;3826if(defined$hash_base) {3827$search_hash=$hash_base;3828}elsif(defined$hash) {3829$search_hash=$hash;3830}else{3831$search_hash="HEAD";3832}3833my$action=$my_uri;3834my$use_pathinfo= gitweb_check_feature('pathinfo');3835if($use_pathinfo) {3836$action.="/".esc_url($project);3837}3838print$cgi->startform(-method=>"get", -action =>$action) .3839"<div class=\"search\">\n".3840(!$use_pathinfo&&3841$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3842$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3843$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3844$cgi->popup_menu(-name =>'st', -default=>'commit',3845-values=> ['commit','grep','author','committer','pickaxe']) .3846$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3847" search:\n",3848$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3849"<span title=\"Extended regular expression\">".3850$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3851-checked =>$search_use_regexp) .3852"</span>".3853"</div>".3854$cgi->end_form() ."\n";3855}3856}38573858sub git_footer_html {3859my$feed_class='rss_logo';38603861print"<div class=\"page_footer\">\n";3862if(defined$project) {3863my$descr= git_get_project_description($project);3864if(defined$descr) {3865print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3866}38673868my%href_params= get_feed_info();3869if(!%href_params) {3870$feed_class.=' generic';3871}3872$href_params{'-title'} ||='log';38733874foreachmy$format(qw(RSS Atom)) {3875$href_params{'action'} =lc($format);3876print$cgi->a({-href => href(%href_params),3877-title =>"$href_params{'-title'}$formatfeed",3878-class=>$feed_class},$format)."\n";3879}38803881}else{3882print$cgi->a({-href => href(project=>undef, action=>"opml"),3883-class=>$feed_class},"OPML") ." ";3884print$cgi->a({-href => href(project=>undef, action=>"project_index"),3885-class=>$feed_class},"TXT") ."\n";3886}3887print"</div>\n";# class="page_footer"38883889if(defined$t0&& gitweb_check_feature('timed')) {3890print"<div id=\"generating_info\">\n";3891print'This page took '.3892'<span id="generating_time" class="time_span">'.3893 tv_interval($t0, [ gettimeofday() ]).3894' seconds </span>'.3895' and '.3896'<span id="generating_cmd">'.3897$number_of_git_cmds.3898'</span> git commands '.3899" to generate.\n";3900print"</div>\n";# class="page_footer"3901}39023903if(defined$site_footer&& -f $site_footer) {3904 insert_file($site_footer);3905}39063907print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;3908if(defined$action&&3909$actioneq'blame_incremental') {3910print qq!<script type="text/javascript">\n!.3911 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3912 qq!"!. href() .qq!");\n!.3913 qq!</script>\n!;3914}else{3915my($jstimezone,$tz_cookie,$datetime_class) =3916 gitweb_get_feature('javascript-timezone');39173918print qq!<script type="text/javascript">\n!.3919 qq!window.onload = function () {\n!;3920if(gitweb_check_feature('javascript-actions')) {3921print qq! fixLinks();\n!;3922}3923if($jstimezone&&$tz_cookie&&$datetime_class) {3924print qq! var tz_cookie = { name:'$tz_cookie', expires:14, path:'/'};\n!.# in days3925 qq! onloadTZSetup('$jstimezone', tz_cookie,'$datetime_class');\n!;3926}3927print qq!};\n!.3928 qq!</script>\n!;3929}39303931print"</body>\n".3932"</html>";3933}39343935# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3936# Example: die_error(404, 'Hash not found')3937# By convention, use the following status codes (as defined in RFC 2616):3938# 400: Invalid or missing CGI parameters, or3939# requested object exists but has wrong type.3940# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3941# this server or project.3942# 404: Requested object/revision/project doesn't exist.3943# 500: The server isn't configured properly, or3944# an internal error occurred (e.g. failed assertions caused by bugs), or3945# an unknown error occurred (e.g. the git binary died unexpectedly).3946# 503: The server is currently unavailable (because it is overloaded,3947# or down for maintenance). Generally, this is a temporary state.3948sub die_error {3949my$status=shift||500;3950my$error= esc_html(shift) ||"Internal Server Error";3951my$extra=shift;3952my%opts=@_;39533954my%http_responses= (3955400=>'400 Bad Request',3956403=>'403 Forbidden',3957404=>'404 Not Found',3958500=>'500 Internal Server Error',3959503=>'503 Service Unavailable',3960);3961 git_header_html($http_responses{$status},undef,%opts);3962print<<EOF;3963<div class="page_body">3964<br /><br />3965$status-$error3966<br />3967EOF3968if(defined$extra) {3969print"<hr />\n".3970"$extra\n";3971}3972print"</div>\n";39733974 git_footer_html();3975goto DONE_GITWEB3976unless($opts{'-error_handler'});3977}39783979## ----------------------------------------------------------------------3980## functions printing or outputting HTML: navigation39813982sub git_print_page_nav {3983my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3984$extra=''if!defined$extra;# pager or formats39853986my@navs=qw(summary shortlog log commit commitdiff tree);3987if($suppress) {3988@navs=grep{$_ne$suppress}@navs;3989}39903991my%arg=map{$_=> {action=>$_} }@navs;3992if(defined$head) {3993for(qw(commit commitdiff)) {3994$arg{$_}{'hash'} =$head;3995}3996if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3997for(qw(shortlog log)) {3998$arg{$_}{'hash'} =$head;3999}4000}4001}40024003$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;4004$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;40054006my@actions= gitweb_get_feature('actions');4007my%repl= (4008'%'=>'%',4009'n'=>$project,# project name4010'f'=>$git_dir,# project path within filesystem4011'h'=>$treehead||'',# current hash ('h' parameter)4012'b'=>$treebase||'',# hash base ('hb' parameter)4013);4014while(@actions) {4015my($label,$link,$pos) =splice(@actions,0,3);4016# insert4017@navs=map{$_eq$pos? ($_,$label) :$_}@navs;4018# munch munch4019$link=~s/%([%nfhb])/$repl{$1}/g;4020$arg{$label}{'_href'} =$link;4021}40224023print"<div class=\"page_nav\">\n".4024(join" | ",4025map{$_eq$current?4026$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")4027}@navs);4028print"<br/>\n$extra<br/>\n".4029"</div>\n";4030}40314032# returns a submenu for the nagivation of the refs views (tags, heads,4033# remotes) with the current view disabled and the remotes view only4034# available if the feature is enabled4035sub format_ref_views {4036my($current) =@_;4037my@ref_views=qw{tags heads};4038push@ref_views,'remotes'if gitweb_check_feature('remote_heads');4039returnjoin" | ",map{4040$_eq$current?$_:4041$cgi->a({-href => href(action=>$_)},$_)4042}@ref_views4043}40444045sub format_paging_nav {4046my($action,$page,$has_next_link) =@_;4047my$paging_nav;404840494050if($page>0) {4051$paging_nav.=4052$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .4053" ⋅ ".4054$cgi->a({-href => href(-replay=>1, page=>$page-1),4055-accesskey =>"p", -title =>"Alt-p"},"prev");4056}else{4057$paging_nav.="first ⋅ prev";4058}40594060if($has_next_link) {4061$paging_nav.=" ⋅ ".4062$cgi->a({-href => href(-replay=>1, page=>$page+1),4063-accesskey =>"n", -title =>"Alt-n"},"next");4064}else{4065$paging_nav.=" ⋅ next";4066}40674068return$paging_nav;4069}40704071## ......................................................................4072## functions printing or outputting HTML: div40734074sub git_print_header_div {4075my($action,$title,$hash,$hash_base) =@_;4076my%args= ();40774078$args{'action'} =$action;4079$args{'hash'} =$hashif$hash;4080$args{'hash_base'} =$hash_baseif$hash_base;40814082print"<div class=\"header\">\n".4083$cgi->a({-href => href(%args), -class=>"title"},4084$title?$title:$action) .4085"\n</div>\n";4086}40874088sub format_repo_url {4089my($name,$url) =@_;4090return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";4091}40924093# Group output by placing it in a DIV element and adding a header.4094# Options for start_div() can be provided by passing a hash reference as the4095# first parameter to the function.4096# Options to git_print_header_div() can be provided by passing an array4097# reference. This must follow the options to start_div if they are present.4098# The content can be a scalar, which is output as-is, a scalar reference, which4099# is output after html escaping, an IO handle passed either as *handle or4100# *handle{IO}, or a function reference. In the latter case all following4101# parameters will be taken as argument to the content function call.4102sub git_print_section {4103my($div_args,$header_args,$content);4104my$arg=shift;4105if(ref($arg)eq'HASH') {4106$div_args=$arg;4107$arg=shift;4108}4109if(ref($arg)eq'ARRAY') {4110$header_args=$arg;4111$arg=shift;4112}4113$content=$arg;41144115print$cgi->start_div($div_args);4116 git_print_header_div(@$header_args);41174118if(ref($content)eq'CODE') {4119$content->(@_);4120}elsif(ref($content)eq'SCALAR') {4121print esc_html($$content);4122}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {4123print<$content>;4124}elsif(!ref($content) &&defined($content)) {4125print$content;4126}41274128print$cgi->end_div;4129}41304131sub format_timestamp_html {4132my$date=shift;4133my$strtime=$date->{'rfc2822'};41344135my(undef,undef,$datetime_class) =4136 gitweb_get_feature('javascript-timezone');4137if($datetime_class) {4138$strtime= qq!<span class="$datetime_class">$strtime</span>!;4139}41404141my$localtime_format='(%02d:%02d%s)';4142if($date->{'hour_local'} <6) {4143$localtime_format='(<span class="atnight">%02d:%02d</span>%s)';4144}4145$strtime.=' '.4146sprintf($localtime_format,4147$date->{'hour_local'},$date->{'minute_local'},$date->{'tz_local'});41484149return$strtime;4150}41514152# Outputs the author name and date in long form4153sub git_print_authorship {4154my$co=shift;4155my%opts=@_;4156my$tag=$opts{-tag} ||'div';4157my$author=$co->{'author_name'};41584159my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});4160print"<$tagclass=\"author_date\">".4161 format_search_author($author,"author", esc_html($author)) .4162" [".format_timestamp_html(\%ad)."]".4163 git_get_avatar($co->{'author_email'}, -pad_before =>1) .4164"</$tag>\n";4165}41664167# Outputs table rows containing the full author or committer information,4168# in the format expected for 'commit' view (& similar).4169# Parameters are a commit hash reference, followed by the list of people4170# to output information for. If the list is empty it defaults to both4171# author and committer.4172sub git_print_authorship_rows {4173my$co=shift;4174# too bad we can't use @people = @_ || ('author', 'committer')4175my@people=@_;4176@people= ('author','committer')unless@people;4177foreachmy$who(@people) {4178my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});4179print"<tr><td>$who</td><td>".4180 format_search_author($co->{"${who}_name"},$who,4181 esc_html($co->{"${who}_name"})) ." ".4182 format_search_author($co->{"${who}_email"},$who,4183 esc_html("<".$co->{"${who}_email"} .">")) .4184"</td><td rowspan=\"2\">".4185 git_get_avatar($co->{"${who}_email"}, -size =>'double') .4186"</td></tr>\n".4187"<tr>".4188"<td></td><td>".4189 format_timestamp_html(\%wd) .4190"</td>".4191"</tr>\n";4192}4193}41944195sub git_print_page_path {4196my$name=shift;4197my$type=shift;4198my$hb=shift;419942004201print"<div class=\"page_path\">";4202print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),4203-title =>'tree root'}, to_utf8("[$project]"));4204print" / ";4205if(defined$name) {4206my@dirname=split'/',$name;4207my$basename=pop@dirname;4208my$fullname='';42094210foreachmy$dir(@dirname) {4211$fullname.= ($fullname?'/':'') .$dir;4212print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4213 hash_base=>$hb),4214-title =>$fullname}, esc_path($dir));4215print" / ";4216}4217if(defined$type&&$typeeq'blob') {4218print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4219 hash_base=>$hb),4220-title =>$name}, esc_path($basename));4221}elsif(defined$type&&$typeeq'tree') {4222print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4223 hash_base=>$hb),4224-title =>$name}, esc_path($basename));4225print" / ";4226}else{4227print esc_path($basename);4228}4229}4230print"<br/></div>\n";4231}42324233sub git_print_log {4234my$log=shift;4235my%opts=@_;42364237if($opts{'-remove_title'}) {4238# remove title, i.e. first line of log4239shift@$log;4240}4241# remove leading empty lines4242while(defined$log->[0] &&$log->[0]eq"") {4243shift@$log;4244}42454246# print log4247my$signoff=0;4248my$empty=0;4249foreachmy$line(@$log) {4250if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {4251$signoff=1;4252$empty=0;4253if(!$opts{'-remove_signoff'}) {4254print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4255next;4256}else{4257# remove signoff lines4258next;4259}4260}else{4261$signoff=0;4262}42634264# print only one empty line4265# do not print empty line after signoff4266if($lineeq"") {4267next if($empty||$signoff);4268$empty=1;4269}else{4270$empty=0;4271}42724273print format_log_line_html($line) ."<br/>\n";4274}42754276if($opts{'-final_empty_line'}) {4277# end with single empty line4278print"<br/>\n"unless$empty;4279}4280}42814282# return link target (what link points to)4283sub git_get_link_target {4284my$hash=shift;4285my$link_target;42864287# read link4288open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4289orreturn;4290{4291local$/=undef;4292$link_target= <$fd>;4293}4294close$fd4295orreturn;42964297return$link_target;4298}42994300# given link target, and the directory (basedir) the link is in,4301# return target of link relative to top directory (top tree);4302# return undef if it is not possible (including absolute links).4303sub normalize_link_target {4304my($link_target,$basedir) =@_;43054306# absolute symlinks (beginning with '/') cannot be normalized4307return if(substr($link_target,0,1)eq'/');43084309# normalize link target to path from top (root) tree (dir)4310my$path;4311if($basedir) {4312$path=$basedir.'/'.$link_target;4313}else{4314# we are in top (root) tree (dir)4315$path=$link_target;4316}43174318# remove //, /./, and /../4319my@path_parts;4320foreachmy$part(split('/',$path)) {4321# discard '.' and ''4322next if(!$part||$parteq'.');4323# handle '..'4324if($parteq'..') {4325if(@path_parts) {4326pop@path_parts;4327}else{4328# link leads outside repository (outside top dir)4329return;4330}4331}else{4332push@path_parts,$part;4333}4334}4335$path=join('/',@path_parts);43364337return$path;4338}43394340# print tree entry (row of git_tree), but without encompassing <tr> element4341sub git_print_tree_entry {4342my($t,$basedir,$hash_base,$have_blame) =@_;43434344my%base_key= ();4345$base_key{'hash_base'} =$hash_baseifdefined$hash_base;43464347# The format of a table row is: mode list link. Where mode is4348# the mode of the entry, list is the name of the entry, an href,4349# and link is the action links of the entry.43504351print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4352if(exists$t->{'size'}) {4353print"<td class=\"size\">$t->{'size'}</td>\n";4354}4355if($t->{'type'}eq"blob") {4356print"<td class=\"list\">".4357$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4358 file_name=>"$basedir$t->{'name'}",%base_key),4359-class=>"list"}, esc_path($t->{'name'}));4360if(S_ISLNK(oct$t->{'mode'})) {4361my$link_target= git_get_link_target($t->{'hash'});4362if($link_target) {4363my$norm_target= normalize_link_target($link_target,$basedir);4364if(defined$norm_target) {4365print" -> ".4366$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4367 file_name=>$norm_target),4368-title =>$norm_target}, esc_path($link_target));4369}else{4370print" -> ". esc_path($link_target);4371}4372}4373}4374print"</td>\n";4375print"<td class=\"link\">";4376print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4377 file_name=>"$basedir$t->{'name'}",%base_key)},4378"blob");4379if($have_blame) {4380print" | ".4381$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4382 file_name=>"$basedir$t->{'name'}",%base_key)},4383"blame");4384}4385if(defined$hash_base) {4386print" | ".4387$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4388 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4389"history");4390}4391print" | ".4392$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4393 file_name=>"$basedir$t->{'name'}")},4394"raw");4395print"</td>\n";43964397}elsif($t->{'type'}eq"tree") {4398print"<td class=\"list\">";4399print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4400 file_name=>"$basedir$t->{'name'}",4401%base_key)},4402 esc_path($t->{'name'}));4403print"</td>\n";4404print"<td class=\"link\">";4405print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4406 file_name=>"$basedir$t->{'name'}",4407%base_key)},4408"tree");4409if(defined$hash_base) {4410print" | ".4411$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4412 file_name=>"$basedir$t->{'name'}")},4413"history");4414}4415print"</td>\n";4416}else{4417# unknown object: we can only present history for it4418# (this includes 'commit' object, i.e. submodule support)4419print"<td class=\"list\">".4420 esc_path($t->{'name'}) .4421"</td>\n";4422print"<td class=\"link\">";4423if(defined$hash_base) {4424print$cgi->a({-href => href(action=>"history",4425 hash_base=>$hash_base,4426 file_name=>"$basedir$t->{'name'}")},4427"history");4428}4429print"</td>\n";4430}4431}44324433## ......................................................................4434## functions printing large fragments of HTML44354436# get pre-image filenames for merge (combined) diff4437sub fill_from_file_info {4438my($diff,@parents) =@_;44394440$diff->{'from_file'} = [ ];4441$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4442for(my$i=0;$i<$diff->{'nparents'};$i++) {4443if($diff->{'status'}[$i]eq'R'||4444$diff->{'status'}[$i]eq'C') {4445$diff->{'from_file'}[$i] =4446 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4447}4448}44494450return$diff;4451}44524453# is current raw difftree line of file deletion4454sub is_deleted {4455my$diffinfo=shift;44564457return$diffinfo->{'to_id'}eq('0' x 40);4458}44594460# does patch correspond to [previous] difftree raw line4461# $diffinfo - hashref of parsed raw diff format4462# $patchinfo - hashref of parsed patch diff format4463# (the same keys as in $diffinfo)4464sub is_patch_split {4465my($diffinfo,$patchinfo) =@_;44664467returndefined$diffinfo&&defined$patchinfo4468&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4469}447044714472sub git_difftree_body {4473my($difftree,$hash,@parents) =@_;4474my($parent) =$parents[0];4475my$have_blame= gitweb_check_feature('blame');4476print"<div class=\"list_head\">\n";4477if($#{$difftree} >10) {4478print(($#{$difftree} +1) ." files changed:\n");4479}4480print"</div>\n";44814482print"<table class=\"".4483(@parents>1?"combined ":"") .4484"diff_tree\">\n";44854486# header only for combined diff in 'commitdiff' view4487my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4488if($has_header) {4489# table header4490print"<thead><tr>\n".4491"<th></th><th></th>\n";# filename, patchN link4492for(my$i=0;$i<@parents;$i++) {4493my$par=$parents[$i];4494print"<th>".4495$cgi->a({-href => href(action=>"commitdiff",4496 hash=>$hash, hash_parent=>$par),4497-title =>'commitdiff to parent number '.4498($i+1) .': '.substr($par,0,7)},4499$i+1) .4500" </th>\n";4501}4502print"</tr></thead>\n<tbody>\n";4503}45044505my$alternate=1;4506my$patchno=0;4507foreachmy$line(@{$difftree}) {4508my$diff= parsed_difftree_line($line);45094510if($alternate) {4511print"<tr class=\"dark\">\n";4512}else{4513print"<tr class=\"light\">\n";4514}4515$alternate^=1;45164517if(exists$diff->{'nparents'}) {# combined diff45184519 fill_from_file_info($diff,@parents)4520unlessexists$diff->{'from_file'};45214522if(!is_deleted($diff)) {4523# file exists in the result (child) commit4524print"<td>".4525$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4526 file_name=>$diff->{'to_file'},4527 hash_base=>$hash),4528-class=>"list"}, esc_path($diff->{'to_file'})) .4529"</td>\n";4530}else{4531print"<td>".4532 esc_path($diff->{'to_file'}) .4533"</td>\n";4534}45354536if($actioneq'commitdiff') {4537# link to patch4538$patchno++;4539print"<td class=\"link\">".4540$cgi->a({-href => href(-anchor=>"patch$patchno")},4541"patch") .4542" | ".4543"</td>\n";4544}45454546my$has_history=0;4547my$not_deleted=0;4548for(my$i=0;$i<$diff->{'nparents'};$i++) {4549my$hash_parent=$parents[$i];4550my$from_hash=$diff->{'from_id'}[$i];4551my$from_path=$diff->{'from_file'}[$i];4552my$status=$diff->{'status'}[$i];45534554$has_history||= ($statusne'A');4555$not_deleted||= ($statusne'D');45564557if($statuseq'A') {4558print"<td class=\"link\"align=\"right\"> | </td>\n";4559}elsif($statuseq'D') {4560print"<td class=\"link\">".4561$cgi->a({-href => href(action=>"blob",4562 hash_base=>$hash,4563 hash=>$from_hash,4564 file_name=>$from_path)},4565"blob". ($i+1)) .4566" | </td>\n";4567}else{4568if($diff->{'to_id'}eq$from_hash) {4569print"<td class=\"link nochange\">";4570}else{4571print"<td class=\"link\">";4572}4573print$cgi->a({-href => href(action=>"blobdiff",4574 hash=>$diff->{'to_id'},4575 hash_parent=>$from_hash,4576 hash_base=>$hash,4577 hash_parent_base=>$hash_parent,4578 file_name=>$diff->{'to_file'},4579 file_parent=>$from_path)},4580"diff". ($i+1)) .4581" | </td>\n";4582}4583}45844585print"<td class=\"link\">";4586if($not_deleted) {4587print$cgi->a({-href => href(action=>"blob",4588 hash=>$diff->{'to_id'},4589 file_name=>$diff->{'to_file'},4590 hash_base=>$hash)},4591"blob");4592print" | "if($has_history);4593}4594if($has_history) {4595print$cgi->a({-href => href(action=>"history",4596 file_name=>$diff->{'to_file'},4597 hash_base=>$hash)},4598"history");4599}4600print"</td>\n";46014602print"</tr>\n";4603next;# instead of 'else' clause, to avoid extra indent4604}4605# else ordinary diff46064607my($to_mode_oct,$to_mode_str,$to_file_type);4608my($from_mode_oct,$from_mode_str,$from_file_type);4609if($diff->{'to_mode'}ne('0' x 6)) {4610$to_mode_oct=oct$diff->{'to_mode'};4611if(S_ISREG($to_mode_oct)) {# only for regular file4612$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4613}4614$to_file_type= file_type($diff->{'to_mode'});4615}4616if($diff->{'from_mode'}ne('0' x 6)) {4617$from_mode_oct=oct$diff->{'from_mode'};4618if(S_ISREG($from_mode_oct)) {# only for regular file4619$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4620}4621$from_file_type= file_type($diff->{'from_mode'});4622}46234624if($diff->{'status'}eq"A") {# created4625my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4626$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4627$mode_chng.="]</span>";4628print"<td>";4629print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4630 hash_base=>$hash, file_name=>$diff->{'file'}),4631-class=>"list"}, esc_path($diff->{'file'}));4632print"</td>\n";4633print"<td>$mode_chng</td>\n";4634print"<td class=\"link\">";4635if($actioneq'commitdiff') {4636# link to patch4637$patchno++;4638print$cgi->a({-href => href(-anchor=>"patch$patchno")},4639"patch") .4640" | ";4641}4642print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4643 hash_base=>$hash, file_name=>$diff->{'file'})},4644"blob");4645print"</td>\n";46464647}elsif($diff->{'status'}eq"D") {# deleted4648my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4649print"<td>";4650print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4651 hash_base=>$parent, file_name=>$diff->{'file'}),4652-class=>"list"}, esc_path($diff->{'file'}));4653print"</td>\n";4654print"<td>$mode_chng</td>\n";4655print"<td class=\"link\">";4656if($actioneq'commitdiff') {4657# link to patch4658$patchno++;4659print$cgi->a({-href => href(-anchor=>"patch$patchno")},4660"patch") .4661" | ";4662}4663print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4664 hash_base=>$parent, file_name=>$diff->{'file'})},4665"blob") ." | ";4666if($have_blame) {4667print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4668 file_name=>$diff->{'file'})},4669"blame") ." | ";4670}4671print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4672 file_name=>$diff->{'file'})},4673"history");4674print"</td>\n";46754676}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4677my$mode_chnge="";4678if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4679$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4680if($from_file_typene$to_file_type) {4681$mode_chnge.=" from$from_file_typeto$to_file_type";4682}4683if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4684if($from_mode_str&&$to_mode_str) {4685$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4686}elsif($to_mode_str) {4687$mode_chnge.=" mode:$to_mode_str";4688}4689}4690$mode_chnge.="]</span>\n";4691}4692print"<td>";4693print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4694 hash_base=>$hash, file_name=>$diff->{'file'}),4695-class=>"list"}, esc_path($diff->{'file'}));4696print"</td>\n";4697print"<td>$mode_chnge</td>\n";4698print"<td class=\"link\">";4699if($actioneq'commitdiff') {4700# link to patch4701$patchno++;4702print$cgi->a({-href => href(-anchor=>"patch$patchno")},4703"patch") .4704" | ";4705}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4706# "commit" view and modified file (not onlu mode changed)4707print$cgi->a({-href => href(action=>"blobdiff",4708 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4709 hash_base=>$hash, hash_parent_base=>$parent,4710 file_name=>$diff->{'file'})},4711"diff") .4712" | ";4713}4714print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4715 hash_base=>$hash, file_name=>$diff->{'file'})},4716"blob") ." | ";4717if($have_blame) {4718print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4719 file_name=>$diff->{'file'})},4720"blame") ." | ";4721}4722print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4723 file_name=>$diff->{'file'})},4724"history");4725print"</td>\n";47264727}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4728my%status_name= ('R'=>'moved','C'=>'copied');4729my$nstatus=$status_name{$diff->{'status'}};4730my$mode_chng="";4731if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4732# mode also for directories, so we cannot use $to_mode_str4733$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4734}4735print"<td>".4736$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4737 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4738-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4739"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4740$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4741 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4742-class=>"list"}, esc_path($diff->{'from_file'})) .4743" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4744"<td class=\"link\">";4745if($actioneq'commitdiff') {4746# link to patch4747$patchno++;4748print$cgi->a({-href => href(-anchor=>"patch$patchno")},4749"patch") .4750" | ";4751}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4752# "commit" view and modified file (not only pure rename or copy)4753print$cgi->a({-href => href(action=>"blobdiff",4754 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4755 hash_base=>$hash, hash_parent_base=>$parent,4756 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4757"diff") .4758" | ";4759}4760print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4761 hash_base=>$parent, file_name=>$diff->{'to_file'})},4762"blob") ." | ";4763if($have_blame) {4764print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4765 file_name=>$diff->{'to_file'})},4766"blame") ." | ";4767}4768print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4769 file_name=>$diff->{'to_file'})},4770"history");4771print"</td>\n";47724773}# we should not encounter Unmerged (U) or Unknown (X) status4774print"</tr>\n";4775}4776print"</tbody>"if$has_header;4777print"</table>\n";4778}47794780sub git_patchset_body {4781my($fd,$difftree,$hash,@hash_parents) =@_;4782my($hash_parent) =$hash_parents[0];47834784my$is_combined= (@hash_parents>1);4785my$patch_idx=0;4786my$patch_number=0;4787my$patch_line;4788my$diffinfo;4789my$to_name;4790my(%from,%to);47914792print"<div class=\"patchset\">\n";47934794# skip to first patch4795while($patch_line= <$fd>) {4796chomp$patch_line;47974798last if($patch_line=~m/^diff /);4799}48004801 PATCH:4802while($patch_line) {48034804# parse "git diff" header line4805if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4806# $1 is from_name, which we do not use4807$to_name= unquote($2);4808$to_name=~s!^b/!!;4809}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4810# $1 is 'cc' or 'combined', which we do not use4811$to_name= unquote($2);4812}else{4813$to_name=undef;4814}48154816# check if current patch belong to current raw line4817# and parse raw git-diff line if needed4818if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4819# this is continuation of a split patch4820print"<div class=\"patch cont\">\n";4821}else{4822# advance raw git-diff output if needed4823$patch_idx++ifdefined$diffinfo;48244825# read and prepare patch information4826$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);48274828# compact combined diff output can have some patches skipped4829# find which patch (using pathname of result) we are at now;4830if($is_combined) {4831while($to_namene$diffinfo->{'to_file'}) {4832print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4833 format_diff_cc_simplified($diffinfo,@hash_parents) .4834"</div>\n";# class="patch"48354836$patch_idx++;4837$patch_number++;48384839last if$patch_idx>$#$difftree;4840$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4841}4842}48434844# modifies %from, %to hashes4845 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);48464847# this is first patch for raw difftree line with $patch_idx index4848# we index @$difftree array from 0, but number patches from 14849print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4850}48514852# git diff header4853#assert($patch_line =~ m/^diff /) if DEBUG;4854#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4855$patch_number++;4856# print "git diff" header4857print format_git_diff_header_line($patch_line,$diffinfo,4858 \%from, \%to);48594860# print extended diff header4861print"<div class=\"diff extended_header\">\n";4862 EXTENDED_HEADER:4863while($patch_line= <$fd>) {4864chomp$patch_line;48654866last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);48674868print format_extended_diff_header_line($patch_line,$diffinfo,4869 \%from, \%to);4870}4871print"</div>\n";# class="diff extended_header"48724873# from-file/to-file diff header4874if(!$patch_line) {4875print"</div>\n";# class="patch"4876last PATCH;4877}4878next PATCH if($patch_line=~m/^diff /);4879#assert($patch_line =~ m/^---/) if DEBUG;48804881my$last_patch_line=$patch_line;4882$patch_line= <$fd>;4883chomp$patch_line;4884#assert($patch_line =~ m/^\+\+\+/) if DEBUG;48854886print format_diff_from_to_header($last_patch_line,$patch_line,4887$diffinfo, \%from, \%to,4888@hash_parents);48894890# the patch itself4891 LINE:4892while($patch_line= <$fd>) {4893chomp$patch_line;48944895next PATCH if($patch_line=~m/^diff /);48964897print format_diff_line($patch_line, \%from, \%to);4898}48994900}continue{4901print"</div>\n";# class="patch"4902}49034904# for compact combined (--cc) format, with chunk and patch simplification4905# the patchset might be empty, but there might be unprocessed raw lines4906for(++$patch_idxif$patch_number>0;4907$patch_idx<@$difftree;4908++$patch_idx) {4909# read and prepare patch information4910$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);49114912# generate anchor for "patch" links in difftree / whatchanged part4913print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4914 format_diff_cc_simplified($diffinfo,@hash_parents) .4915"</div>\n";# class="patch"49164917$patch_number++;4918}49194920if($patch_number==0) {4921if(@hash_parents>1) {4922print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4923}else{4924print"<div class=\"diff nodifferences\">No differences found</div>\n";4925}4926}49274928print"</div>\n";# class="patchset"4929}49304931# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .49324933# fills project list info (age, description, owner, category, forks)4934# for each project in the list, removing invalid projects from4935# returned list4936# NOTE: modifies $projlist, but does not remove entries from it4937sub fill_project_list_info {4938my$projlist=shift;4939my@projects;49404941my$show_ctags= gitweb_check_feature('ctags');4942 PROJECT:4943foreachmy$pr(@$projlist) {4944my(@activity) = git_get_last_activity($pr->{'path'});4945unless(@activity) {4946next PROJECT;4947}4948($pr->{'age'},$pr->{'age_string'}) =@activity;4949if(!defined$pr->{'descr'}) {4950my$descr= git_get_project_description($pr->{'path'}) ||"";4951$descr= to_utf8($descr);4952$pr->{'descr_long'} =$descr;4953$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4954}4955if(!defined$pr->{'owner'}) {4956$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4957}4958if($show_ctags) {4959$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4960}4961if($projects_list_group_categories&& !defined$pr->{'category'}) {4962my$cat= git_get_project_category($pr->{'path'}) ||4963$project_list_default_category;4964$pr->{'category'} = to_utf8($cat);4965}49664967push@projects,$pr;4968}49694970return@projects;4971}49724973sub sort_projects_list {4974my($projlist,$order) =@_;4975my@projects;49764977my%order_info= (4978 project => { key =>'path', type =>'str'},4979 descr => { key =>'descr_long', type =>'str'},4980 owner => { key =>'owner', type =>'str'},4981 age => { key =>'age', type =>'num'}4982);4983my$oi=$order_info{$order};4984return@$projlistunlessdefined$oi;4985if($oi->{'type'}eq'str') {4986@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@$projlist;4987}else{4988@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@$projlist;4989}49904991return@projects;4992}49934994# returns a hash of categories, containing the list of project4995# belonging to each category4996sub build_projlist_by_category {4997my($projlist,$from,$to) =@_;4998my%categories;49995000$from=0unlessdefined$from;5001$to=$#$projlistif(!defined$to||$#$projlist<$to);50025003for(my$i=$from;$i<=$to;$i++) {5004my$pr=$projlist->[$i];5005push@{$categories{$pr->{'category'} }},$pr;5006}50075008returnwantarray?%categories: \%categories;5009}50105011# print 'sort by' <th> element, generating 'sort by $name' replay link5012# if that order is not selected5013sub print_sort_th {5014print format_sort_th(@_);5015}50165017sub format_sort_th {5018my($name,$order,$header) =@_;5019my$sort_th="";5020$header||=ucfirst($name);50215022if($ordereq$name) {5023$sort_th.="<th>$header</th>\n";5024}else{5025$sort_th.="<th>".5026$cgi->a({-href => href(-replay=>1, order=>$name),5027-class=>"header"},$header) .5028"</th>\n";5029}50305031return$sort_th;5032}50335034sub git_project_list_rows {5035my($projlist,$from,$to,$check_forks) =@_;50365037$from=0unlessdefined$from;5038$to=$#$projlistif(!defined$to||$#$projlist<$to);50395040my$alternate=1;5041for(my$i=$from;$i<=$to;$i++) {5042my$pr=$projlist->[$i];50435044if($alternate) {5045print"<tr class=\"dark\">\n";5046}else{5047print"<tr class=\"light\">\n";5048}5049$alternate^=1;50505051if($check_forks) {5052print"<td>";5053if($pr->{'forks'}) {5054my$nforks=scalar@{$pr->{'forks'}};5055if($nforks>0) {5056print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks"),5057-title =>"$nforksforks"},"+");5058}else{5059print$cgi->span({-title =>"$nforksforks"},"+");5060}5061}5062print"</td>\n";5063}5064print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),5065-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".5066"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),5067-class=>"list", -title =>$pr->{'descr_long'}},5068 esc_html($pr->{'descr'})) ."</td>\n".5069"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";5070print"<td class=\"". age_class($pr->{'age'}) ."\">".5071(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".5072"<td class=\"link\">".5073$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".5074$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".5075$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".5076$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .5077($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .5078"</td>\n".5079"</tr>\n";5080}5081}50825083sub git_project_list_body {5084# actually uses global variable $project5085my($projlist,$order,$from,$to,$extra,$no_header) =@_;5086my@projects=@$projlist;50875088my$check_forks= gitweb_check_feature('forks');5089my$show_ctags= gitweb_check_feature('ctags');5090my$tagfilter=$show_ctags?$cgi->param('by_tag') :undef;5091$check_forks=undef5092if($tagfilter||$searchtext);50935094# filtering out forks before filling info allows to do less work5095@projects= filter_forks_from_projects_list(\@projects)5096if($check_forks);5097@projects= fill_project_list_info(\@projects);5098# searching projects require filling to be run before it5099@projects= search_projects_list(\@projects,5100'searchtext'=>$searchtext,5101'tagfilter'=>$tagfilter)5102if($tagfilter||$searchtext);51035104$order||=$default_projects_order;5105$from=0unlessdefined$from;5106$to=$#projectsif(!defined$to||$#projects<$to);51075108# short circuit5109if($from>$to) {5110print"<center>\n".5111"<b>No such projects found</b><br />\n".5112"Click ".$cgi->a({-href=>href(project=>undef)},"here")." to view all projects<br />\n".5113"</center>\n<br />\n";5114return;5115}51165117@projects= sort_projects_list(\@projects,$order);51185119if($show_ctags) {5120my$ctags= git_gather_all_ctags(\@projects);5121my$cloud= git_populate_project_tagcloud($ctags);5122print git_show_project_tagcloud($cloud,64);5123}51245125print"<table class=\"project_list\">\n";5126unless($no_header) {5127print"<tr>\n";5128if($check_forks) {5129print"<th></th>\n";5130}5131 print_sort_th('project',$order,'Project');5132 print_sort_th('descr',$order,'Description');5133 print_sort_th('owner',$order,'Owner');5134 print_sort_th('age',$order,'Last Change');5135print"<th></th>\n".# for links5136"</tr>\n";5137}51385139if($projects_list_group_categories) {5140# only display categories with projects in the $from-$to window5141@projects=sort{$a->{'category'}cmp$b->{'category'}}@projects[$from..$to];5142my%categories= build_projlist_by_category(\@projects,$from,$to);5143foreachmy$cat(sort keys%categories) {5144unless($cateq"") {5145print"<tr>\n";5146if($check_forks) {5147print"<td></td>\n";5148}5149print"<td class=\"category\"colspan=\"5\">".esc_html($cat)."</td>\n";5150print"</tr>\n";5151}51525153 git_project_list_rows($categories{$cat},undef,undef,$check_forks);5154}5155}else{5156 git_project_list_rows(\@projects,$from,$to,$check_forks);5157}51585159if(defined$extra) {5160print"<tr>\n";5161if($check_forks) {5162print"<td></td>\n";5163}5164print"<td colspan=\"5\">$extra</td>\n".5165"</tr>\n";5166}5167print"</table>\n";5168}51695170sub git_log_body {5171# uses global variable $project5172my($commitlist,$from,$to,$refs,$extra) =@_;51735174$from=0unlessdefined$from;5175$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);51765177for(my$i=0;$i<=$to;$i++) {5178my%co= %{$commitlist->[$i]};5179next if!%co;5180my$commit=$co{'id'};5181my$ref= format_ref_marker($refs,$commit);5182 git_print_header_div('commit',5183"<span class=\"age\">$co{'age_string'}</span>".5184 esc_html($co{'title'}) .$ref,5185$commit);5186print"<div class=\"title_text\">\n".5187"<div class=\"log_link\">\n".5188$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .5189" | ".5190$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .5191" | ".5192$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .5193"<br/>\n".5194"</div>\n";5195 git_print_authorship(\%co, -tag =>'span');5196print"<br/>\n</div>\n";51975198print"<div class=\"log_body\">\n";5199 git_print_log($co{'comment'}, -final_empty_line=>1);5200print"</div>\n";5201}5202if($extra) {5203print"<div class=\"page_nav\">\n";5204print"$extra\n";5205print"</div>\n";5206}5207}52085209sub git_shortlog_body {5210# uses global variable $project5211my($commitlist,$from,$to,$refs,$extra) =@_;52125213$from=0unlessdefined$from;5214$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);52155216print"<table class=\"shortlog\">\n";5217my$alternate=1;5218for(my$i=$from;$i<=$to;$i++) {5219my%co= %{$commitlist->[$i]};5220my$commit=$co{'id'};5221my$ref= format_ref_marker($refs,$commit);5222if($alternate) {5223print"<tr class=\"dark\">\n";5224}else{5225print"<tr class=\"light\">\n";5226}5227$alternate^=1;5228# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .5229print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5230 format_author_html('td', \%co,10) ."<td>";5231print format_subject_html($co{'title'},$co{'title_short'},5232 href(action=>"commit", hash=>$commit),$ref);5233print"</td>\n".5234"<td class=\"link\">".5235$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".5236$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".5237$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");5238my$snapshot_links= format_snapshot_links($commit);5239if(defined$snapshot_links) {5240print" | ".$snapshot_links;5241}5242print"</td>\n".5243"</tr>\n";5244}5245if(defined$extra) {5246print"<tr>\n".5247"<td colspan=\"4\">$extra</td>\n".5248"</tr>\n";5249}5250print"</table>\n";5251}52525253sub git_history_body {5254# Warning: assumes constant type (blob or tree) during history5255my($commitlist,$from,$to,$refs,$extra,5256$file_name,$file_hash,$ftype) =@_;52575258$from=0unlessdefined$from;5259$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});52605261print"<table class=\"history\">\n";5262my$alternate=1;5263for(my$i=$from;$i<=$to;$i++) {5264my%co= %{$commitlist->[$i]};5265if(!%co) {5266next;5267}5268my$commit=$co{'id'};52695270my$ref= format_ref_marker($refs,$commit);52715272if($alternate) {5273print"<tr class=\"dark\">\n";5274}else{5275print"<tr class=\"light\">\n";5276}5277$alternate^=1;5278print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5279# shortlog: format_author_html('td', \%co, 10)5280 format_author_html('td', \%co,15,3) ."<td>";5281# originally git_history used chop_str($co{'title'}, 50)5282print format_subject_html($co{'title'},$co{'title_short'},5283 href(action=>"commit", hash=>$commit),$ref);5284print"</td>\n".5285"<td class=\"link\">".5286$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5287$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");52885289if($ftypeeq'blob') {5290my$blob_current=$file_hash;5291my$blob_parent= git_get_hash_by_path($commit,$file_name);5292if(defined$blob_current&&defined$blob_parent&&5293$blob_currentne$blob_parent) {5294print" | ".5295$cgi->a({-href => href(action=>"blobdiff",5296 hash=>$blob_current, hash_parent=>$blob_parent,5297 hash_base=>$hash_base, hash_parent_base=>$commit,5298 file_name=>$file_name)},5299"diff to current");5300}5301}5302print"</td>\n".5303"</tr>\n";5304}5305if(defined$extra) {5306print"<tr>\n".5307"<td colspan=\"4\">$extra</td>\n".5308"</tr>\n";5309}5310print"</table>\n";5311}53125313sub git_tags_body {5314# uses global variable $project5315my($taglist,$from,$to,$extra) =@_;5316$from=0unlessdefined$from;5317$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);53185319print"<table class=\"tags\">\n";5320my$alternate=1;5321for(my$i=$from;$i<=$to;$i++) {5322my$entry=$taglist->[$i];5323my%tag=%$entry;5324my$comment=$tag{'subject'};5325my$comment_short;5326if(defined$comment) {5327$comment_short= chop_str($comment,30,5);5328}5329if($alternate) {5330print"<tr class=\"dark\">\n";5331}else{5332print"<tr class=\"light\">\n";5333}5334$alternate^=1;5335if(defined$tag{'age'}) {5336print"<td><i>$tag{'age'}</i></td>\n";5337}else{5338print"<td></td>\n";5339}5340print"<td>".5341$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),5342-class=>"list name"}, esc_html($tag{'name'})) .5343"</td>\n".5344"<td>";5345if(defined$comment) {5346print format_subject_html($comment,$comment_short,5347 href(action=>"tag", hash=>$tag{'id'}));5348}5349print"</td>\n".5350"<td class=\"selflink\">";5351if($tag{'type'}eq"tag") {5352print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");5353}else{5354print" ";5355}5356print"</td>\n".5357"<td class=\"link\">"." | ".5358$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});5359if($tag{'reftype'}eq"commit") {5360print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .5361" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");5362}elsif($tag{'reftype'}eq"blob") {5363print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");5364}5365print"</td>\n".5366"</tr>";5367}5368if(defined$extra) {5369print"<tr>\n".5370"<td colspan=\"5\">$extra</td>\n".5371"</tr>\n";5372}5373print"</table>\n";5374}53755376sub git_heads_body {5377# uses global variable $project5378my($headlist,$head,$from,$to,$extra) =@_;5379$from=0unlessdefined$from;5380$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);53815382print"<table class=\"heads\">\n";5383my$alternate=1;5384for(my$i=$from;$i<=$to;$i++) {5385my$entry=$headlist->[$i];5386my%ref=%$entry;5387my$curr=$ref{'id'}eq$head;5388if($alternate) {5389print"<tr class=\"dark\">\n";5390}else{5391print"<tr class=\"light\">\n";5392}5393$alternate^=1;5394print"<td><i>$ref{'age'}</i></td>\n".5395($curr?"<td class=\"current_head\">":"<td>") .5396$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),5397-class=>"list name"},esc_html($ref{'name'})) .5398"</td>\n".5399"<td class=\"link\">".5400$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".5401$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".5402$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .5403"</td>\n".5404"</tr>";5405}5406if(defined$extra) {5407print"<tr>\n".5408"<td colspan=\"3\">$extra</td>\n".5409"</tr>\n";5410}5411print"</table>\n";5412}54135414# Display a single remote block5415sub git_remote_block {5416my($remote,$rdata,$limit,$head) =@_;54175418my$heads=$rdata->{'heads'};5419my$fetch=$rdata->{'fetch'};5420my$push=$rdata->{'push'};54215422my$urls_table="<table class=\"projects_list\">\n";54235424if(defined$fetch) {5425if($fetcheq$push) {5426$urls_table.= format_repo_url("URL",$fetch);5427}else{5428$urls_table.= format_repo_url("Fetch URL",$fetch);5429$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;5430}5431}elsif(defined$push) {5432$urls_table.= format_repo_url("Push URL",$push);5433}else{5434$urls_table.= format_repo_url("","No remote URL");5435}54365437$urls_table.="</table>\n";54385439my$dots;5440if(defined$limit&&$limit<@$heads) {5441$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");5442}54435444print$urls_table;5445 git_heads_body($heads,$head,0,$limit,$dots);5446}54475448# Display a list of remote names with the respective fetch and push URLs5449sub git_remotes_list {5450my($remotedata,$limit) =@_;5451print"<table class=\"heads\">\n";5452my$alternate=1;5453my@remotes=sort keys%$remotedata;54545455my$limited=$limit&&$limit<@remotes;54565457$#remotes=$limit-1if$limited;54585459while(my$remote=shift@remotes) {5460my$rdata=$remotedata->{$remote};5461my$fetch=$rdata->{'fetch'};5462my$push=$rdata->{'push'};5463if($alternate) {5464print"<tr class=\"dark\">\n";5465}else{5466print"<tr class=\"light\">\n";5467}5468$alternate^=1;5469print"<td>".5470$cgi->a({-href=> href(action=>'remotes', hash=>$remote),5471-class=>"list name"},esc_html($remote)) .5472"</td>";5473print"<td class=\"link\">".5474(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .5475" | ".5476(defined$push?$cgi->a({-href=>$push},"push") :"push") .5477"</td>";54785479print"</tr>\n";5480}54815482if($limited) {5483print"<tr>\n".5484"<td colspan=\"3\">".5485$cgi->a({-href => href(action=>"remotes")},"...") .5486"</td>\n"."</tr>\n";5487}54885489print"</table>";5490}54915492# Display remote heads grouped by remote, unless there are too many5493# remotes, in which case we only display the remote names5494sub git_remotes_body {5495my($remotedata,$limit,$head) =@_;5496if($limitand$limit<keys%$remotedata) {5497 git_remotes_list($remotedata,$limit);5498}else{5499 fill_remote_heads($remotedata);5500while(my($remote,$rdata) =each%$remotedata) {5501 git_print_section({-class=>"remote", -id=>$remote},5502["remotes",$remote,$remote],sub{5503 git_remote_block($remote,$rdata,$limit,$head);5504});5505}5506}5507}55085509sub git_search_grep_body {5510my($commitlist,$from,$to,$extra) =@_;5511$from=0unlessdefined$from;5512$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);55135514print"<table class=\"commit_search\">\n";5515my$alternate=1;5516for(my$i=$from;$i<=$to;$i++) {5517my%co= %{$commitlist->[$i]};5518if(!%co) {5519next;5520}5521my$commit=$co{'id'};5522if($alternate) {5523print"<tr class=\"dark\">\n";5524}else{5525print"<tr class=\"light\">\n";5526}5527$alternate^=1;5528print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5529 format_author_html('td', \%co,15,5) .5530"<td>".5531$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5532-class=>"list subject"},5533 chop_and_escape_str($co{'title'},50) ."<br/>");5534my$comment=$co{'comment'};5535foreachmy$line(@$comment) {5536if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5537my($lead,$match,$trail) = ($1,$2,$3);5538$match= chop_str($match,70,5,'center');5539my$contextlen=int((80-length($match))/2);5540$contextlen=30if($contextlen>30);5541$lead= chop_str($lead,$contextlen,10,'left');5542$trail= chop_str($trail,$contextlen,10,'right');55435544$lead= esc_html($lead);5545$match= esc_html($match);5546$trail= esc_html($trail);55475548print"$lead<span class=\"match\">$match</span>$trail<br />";5549}5550}5551print"</td>\n".5552"<td class=\"link\">".5553$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5554" | ".5555$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5556" | ".5557$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5558print"</td>\n".5559"</tr>\n";5560}5561if(defined$extra) {5562print"<tr>\n".5563"<td colspan=\"3\">$extra</td>\n".5564"</tr>\n";5565}5566print"</table>\n";5567}55685569## ======================================================================5570## ======================================================================5571## actions55725573sub git_project_list {5574my$order=$input_params{'order'};5575if(defined$order&&$order!~m/none|project|descr|owner|age/) {5576 die_error(400,"Unknown order parameter");5577}55785579my@list= git_get_projects_list();5580if(!@list) {5581 die_error(404,"No projects found");5582}55835584 git_header_html();5585if(defined$home_text&& -f $home_text) {5586print"<div class=\"index_include\">\n";5587 insert_file($home_text);5588print"</div>\n";5589}5590print$cgi->startform(-method=>"get") .5591"<p class=\"projsearch\">Search:\n".5592$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5593"</p>".5594$cgi->end_form() ."\n";5595 git_project_list_body(\@list,$order);5596 git_footer_html();5597}55985599sub git_forks {5600my$order=$input_params{'order'};5601if(defined$order&&$order!~m/none|project|descr|owner|age/) {5602 die_error(400,"Unknown order parameter");5603}56045605my@list= git_get_projects_list($project);5606if(!@list) {5607 die_error(404,"No forks found");5608}56095610 git_header_html();5611 git_print_page_nav('','');5612 git_print_header_div('summary',"$projectforks");5613 git_project_list_body(\@list,$order);5614 git_footer_html();5615}56165617sub git_project_index {5618my@projects= git_get_projects_list();5619if(!@projects) {5620 die_error(404,"No projects found");5621}56225623print$cgi->header(5624-type =>'text/plain',5625-charset =>'utf-8',5626-content_disposition =>'inline; filename="index.aux"');56275628foreachmy$pr(@projects) {5629if(!exists$pr->{'owner'}) {5630$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5631}56325633my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5634# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5635$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5636$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5637$path=~s/ /\+/g;5638$owner=~s/ /\+/g;56395640print"$path$owner\n";5641}5642}56435644sub git_summary {5645my$descr= git_get_project_description($project) ||"none";5646my%co= parse_commit("HEAD");5647my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5648my$head=$co{'id'};5649my$remote_heads= gitweb_check_feature('remote_heads');56505651my$owner= git_get_project_owner($project);56525653my$refs= git_get_references();5654# These get_*_list functions return one more to allow us to see if5655# there are more ...5656my@taglist= git_get_tags_list(16);5657my@headlist= git_get_heads_list(16);5658my%remotedata=$remote_heads? git_get_remotes_list() : ();5659my@forklist;5660my$check_forks= gitweb_check_feature('forks');56615662if($check_forks) {5663# find forks of a project5664@forklist= git_get_projects_list($project);5665# filter out forks of forks5666@forklist= filter_forks_from_projects_list(\@forklist)5667if(@forklist);5668}56695670 git_header_html();5671 git_print_page_nav('summary','',$head);56725673print"<div class=\"title\"> </div>\n";5674print"<table class=\"projects_list\">\n".5675"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5676"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5677if(defined$cd{'rfc2822'}) {5678print"<tr id=\"metadata_lchange\"><td>last change</td>".5679"<td>".format_timestamp_html(\%cd)."</td></tr>\n";5680}56815682# use per project git URL list in $projectroot/$project/cloneurl5683# or make project git URL from git base URL and project name5684my$url_tag="URL";5685my@url_list= git_get_project_url_list($project);5686@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5687foreachmy$git_url(@url_list) {5688next unless$git_url;5689print format_repo_url($url_tag,$git_url);5690$url_tag="";5691}56925693# Tag cloud5694my$show_ctags= gitweb_check_feature('ctags');5695if($show_ctags) {5696my$ctags= git_get_project_ctags($project);5697if(%$ctags) {5698# without ability to add tags, don't show if there are none5699my$cloud= git_populate_project_tagcloud($ctags);5700print"<tr id=\"metadata_ctags\">".5701"<td>content tags</td>".5702"<td>".git_show_project_tagcloud($cloud,48)."</td>".5703"</tr>\n";5704}5705}57065707print"</table>\n";57085709# If XSS prevention is on, we don't include README.html.5710# TODO: Allow a readme in some safe format.5711if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5712print"<div class=\"title\">readme</div>\n".5713"<div class=\"readme\">\n";5714 insert_file("$projectroot/$project/README.html");5715print"\n</div>\n";# class="readme"5716}57175718# we need to request one more than 16 (0..15) to check if5719# those 16 are all5720my@commitlist=$head? parse_commits($head,17) : ();5721if(@commitlist) {5722 git_print_header_div('shortlog');5723 git_shortlog_body(\@commitlist,0,15,$refs,5724$#commitlist<=15?undef:5725$cgi->a({-href => href(action=>"shortlog")},"..."));5726}57275728if(@taglist) {5729 git_print_header_div('tags');5730 git_tags_body(\@taglist,0,15,5731$#taglist<=15?undef:5732$cgi->a({-href => href(action=>"tags")},"..."));5733}57345735if(@headlist) {5736 git_print_header_div('heads');5737 git_heads_body(\@headlist,$head,0,15,5738$#headlist<=15?undef:5739$cgi->a({-href => href(action=>"heads")},"..."));5740}57415742if(%remotedata) {5743 git_print_header_div('remotes');5744 git_remotes_body(\%remotedata,15,$head);5745}57465747if(@forklist) {5748 git_print_header_div('forks');5749 git_project_list_body(\@forklist,'age',0,15,5750$#forklist<=15?undef:5751$cgi->a({-href => href(action=>"forks")},"..."),5752'no_header');5753}57545755 git_footer_html();5756}57575758sub git_tag {5759my%tag= parse_tag($hash);57605761if(!%tag) {5762 die_error(404,"Unknown tag object");5763}57645765my$head= git_get_head_hash($project);5766 git_header_html();5767 git_print_page_nav('','',$head,undef,$head);5768 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5769print"<div class=\"title_text\">\n".5770"<table class=\"object_header\">\n".5771"<tr>\n".5772"<td>object</td>\n".5773"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5774$tag{'object'}) ."</td>\n".5775"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5776$tag{'type'}) ."</td>\n".5777"</tr>\n";5778if(defined($tag{'author'})) {5779 git_print_authorship_rows(\%tag,'author');5780}5781print"</table>\n\n".5782"</div>\n";5783print"<div class=\"page_body\">";5784my$comment=$tag{'comment'};5785foreachmy$line(@$comment) {5786chomp$line;5787print esc_html($line, -nbsp=>1) ."<br/>\n";5788}5789print"</div>\n";5790 git_footer_html();5791}57925793sub git_blame_common {5794my$format=shift||'porcelain';5795if($formateq'porcelain'&&$cgi->param('js')) {5796$format='incremental';5797$action='blame_incremental';# for page title etc5798}57995800# permissions5801 gitweb_check_feature('blame')5802or die_error(403,"Blame view not allowed");58035804# error checking5805 die_error(400,"No file name given")unless$file_name;5806$hash_base||= git_get_head_hash($project);5807 die_error(404,"Couldn't find base commit")unless$hash_base;5808my%co= parse_commit($hash_base)5809or die_error(404,"Commit not found");5810my$ftype="blob";5811if(!defined$hash) {5812$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5813or die_error(404,"Error looking up file");5814}else{5815$ftype= git_get_type($hash);5816if($ftype!~"blob") {5817 die_error(400,"Object is not a blob");5818}5819}58205821my$fd;5822if($formateq'incremental') {5823# get file contents (as base)5824open$fd,"-|", git_cmd(),'cat-file','blob',$hash5825or die_error(500,"Open git-cat-file failed");5826}elsif($formateq'data') {5827# run git-blame --incremental5828open$fd,"-|", git_cmd(),"blame","--incremental",5829$hash_base,"--",$file_name5830or die_error(500,"Open git-blame --incremental failed");5831}else{5832# run git-blame --porcelain5833open$fd,"-|", git_cmd(),"blame",'-p',5834$hash_base,'--',$file_name5835or die_error(500,"Open git-blame --porcelain failed");5836}58375838# incremental blame data returns early5839if($formateq'data') {5840print$cgi->header(5841-type=>"text/plain", -charset =>"utf-8",5842-status=>"200 OK");5843local$| =1;# output autoflush5844printwhile<$fd>;5845close$fd5846or print"ERROR$!\n";58475848print'END';5849if(defined$t0&& gitweb_check_feature('timed')) {5850print' '.5851 tv_interval($t0, [ gettimeofday() ]).5852' '.$number_of_git_cmds;5853}5854print"\n";58555856return;5857}58585859# page header5860 git_header_html();5861my$formats_nav=5862$cgi->a({-href => href(action=>"blob", -replay=>1)},5863"blob") .5864" | ";5865if($formateq'incremental') {5866$formats_nav.=5867$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5868"blame") ." (non-incremental)";5869}else{5870$formats_nav.=5871$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5872"blame") ." (incremental)";5873}5874$formats_nav.=5875" | ".5876$cgi->a({-href => href(action=>"history", -replay=>1)},5877"history") .5878" | ".5879$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5880"HEAD");5881 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5882 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5883 git_print_page_path($file_name,$ftype,$hash_base);58845885# page body5886if($formateq'incremental') {5887print"<noscript>\n<div class=\"error\"><center><b>\n".5888"This page requires JavaScript to run.\nUse ".5889$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5890'this page').5891" instead.\n".5892"</b></center></div>\n</noscript>\n";58935894print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5895}58965897print qq!<div class="page_body">\n!;5898print qq!<div id="progress_info">.../ ...</div>\n!5899if($formateq'incremental');5900print qq!<table id="blame_table"class="blame" width="100%">\n!.5901#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5902 qq!<thead>\n!.5903 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5904 qq!</thead>\n!.5905 qq!<tbody>\n!;59065907my@rev_color=qw(light dark);5908my$num_colors=scalar(@rev_color);5909my$current_color=0;59105911if($formateq'incremental') {5912my$color_class=$rev_color[$current_color];59135914#contents of a file5915my$linenr=0;5916 LINE:5917while(my$line= <$fd>) {5918chomp$line;5919$linenr++;59205921print qq!<tr id="l$linenr"class="$color_class">!.5922 qq!<td class="sha1"><a href=""> </a></td>!.5923 qq!<td class="linenr">!.5924 qq!<a class="linenr" href="">$linenr</a></td>!;5925print qq!<td class="pre">! . esc_html($line) ."</td>\n";5926print qq!</tr>\n!;5927}59285929}else{# porcelain, i.e. ordinary blame5930my%metainfo= ();# saves information about commits59315932# blame data5933 LINE:5934while(my$line= <$fd>) {5935chomp$line;5936# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5937# no <lines in group> for subsequent lines in group of lines5938my($full_rev,$orig_lineno,$lineno,$group_size) =5939($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5940if(!exists$metainfo{$full_rev}) {5941$metainfo{$full_rev} = {'nprevious'=>0};5942}5943my$meta=$metainfo{$full_rev};5944my$data;5945while($data= <$fd>) {5946chomp$data;5947last if($data=~s/^\t//);# contents of line5948if($data=~/^(\S+)(?: (.*))?$/) {5949$meta->{$1} =$2unlessexists$meta->{$1};5950}5951if($data=~/^previous /) {5952$meta->{'nprevious'}++;5953}5954}5955my$short_rev=substr($full_rev,0,8);5956my$author=$meta->{'author'};5957my%date=5958 parse_date($meta->{'author-time'},$meta->{'author-tz'});5959my$date=$date{'iso-tz'};5960if($group_size) {5961$current_color= ($current_color+1) %$num_colors;5962}5963my$tr_class=$rev_color[$current_color];5964$tr_class.=' boundary'if(exists$meta->{'boundary'});5965$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5966$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5967print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5968if($group_size) {5969print"<td class=\"sha1\"";5970print" title=\"". esc_html($author) .",$date\"";5971print" rowspan=\"$group_size\""if($group_size>1);5972print">";5973print$cgi->a({-href => href(action=>"commit",5974 hash=>$full_rev,5975 file_name=>$file_name)},5976 esc_html($short_rev));5977if($group_size>=2) {5978my@author_initials= ($author=~/\b([[:upper:]])\B/g);5979if(@author_initials) {5980print"<br />".5981 esc_html(join('',@author_initials));5982# or join('.', ...)5983}5984}5985print"</td>\n";5986}5987# 'previous' <sha1 of parent commit> <filename at commit>5988if(exists$meta->{'previous'} &&5989$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5990$meta->{'parent'} =$1;5991$meta->{'file_parent'} = unquote($2);5992}5993my$linenr_commit=5994exists($meta->{'parent'}) ?5995$meta->{'parent'} :$full_rev;5996my$linenr_filename=5997exists($meta->{'file_parent'}) ?5998$meta->{'file_parent'} : unquote($meta->{'filename'});5999my$blamed= href(action =>'blame',6000 file_name =>$linenr_filename,6001 hash_base =>$linenr_commit);6002print"<td class=\"linenr\">";6003print$cgi->a({ -href =>"$blamed#l$orig_lineno",6004-class=>"linenr"},6005 esc_html($lineno));6006print"</td>";6007print"<td class=\"pre\">". esc_html($data) ."</td>\n";6008print"</tr>\n";6009}# end while60106011}60126013# footer6014print"</tbody>\n".6015"</table>\n";# class="blame"6016print"</div>\n";# class="blame_body"6017close$fd6018or print"Reading blob failed\n";60196020 git_footer_html();6021}60226023sub git_blame {6024 git_blame_common();6025}60266027sub git_blame_incremental {6028 git_blame_common('incremental');6029}60306031sub git_blame_data {6032 git_blame_common('data');6033}60346035sub git_tags {6036my$head= git_get_head_hash($project);6037 git_header_html();6038 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));6039 git_print_header_div('summary',$project);60406041my@tagslist= git_get_tags_list();6042if(@tagslist) {6043 git_tags_body(\@tagslist);6044}6045 git_footer_html();6046}60476048sub git_heads {6049my$head= git_get_head_hash($project);6050 git_header_html();6051 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));6052 git_print_header_div('summary',$project);60536054my@headslist= git_get_heads_list();6055if(@headslist) {6056 git_heads_body(\@headslist,$head);6057}6058 git_footer_html();6059}60606061# used both for single remote view and for list of all the remotes6062sub git_remotes {6063 gitweb_check_feature('remote_heads')6064or die_error(403,"Remote heads view is disabled");60656066my$head= git_get_head_hash($project);6067my$remote=$input_params{'hash'};60686069my$remotedata= git_get_remotes_list($remote);6070 die_error(500,"Unable to get remote information")unlessdefined$remotedata;60716072unless(%$remotedata) {6073 die_error(404,defined$remote?6074"Remote$remotenot found":6075"No remotes found");6076}60776078 git_header_html(undef,undef, -action_extra =>$remote);6079 git_print_page_nav('','',$head,undef,$head,6080 format_ref_views($remote?'':'remotes'));60816082 fill_remote_heads($remotedata);6083if(defined$remote) {6084 git_print_header_div('remotes',"$remoteremote for$project");6085 git_remote_block($remote,$remotedata->{$remote},undef,$head);6086}else{6087 git_print_header_div('summary',"$projectremotes");6088 git_remotes_body($remotedata,undef,$head);6089}60906091 git_footer_html();6092}60936094sub git_blob_plain {6095my$type=shift;6096my$expires;60976098if(!defined$hash) {6099if(defined$file_name) {6100my$base=$hash_base|| git_get_head_hash($project);6101$hash= git_get_hash_by_path($base,$file_name,"blob")6102or die_error(404,"Cannot find file");6103}else{6104 die_error(400,"No file name defined");6105}6106}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {6107# blobs defined by non-textual hash id's can be cached6108$expires="+1d";6109}61106111open my$fd,"-|", git_cmd(),"cat-file","blob",$hash6112or die_error(500,"Open git-cat-file blob '$hash' failed");61136114# content-type (can include charset)6115$type= blob_contenttype($fd,$file_name,$type);61166117# "save as" filename, even when no $file_name is given6118my$save_as="$hash";6119if(defined$file_name) {6120$save_as=$file_name;6121}elsif($type=~m/^text\//) {6122$save_as.='.txt';6123}61246125# With XSS prevention on, blobs of all types except a few known safe6126# ones are served with "Content-Disposition: attachment" to make sure6127# they don't run in our security domain. For certain image types,6128# blob view writes an <img> tag referring to blob_plain view, and we6129# want to be sure not to break that by serving the image as an6130# attachment (though Firefox 3 doesn't seem to care).6131my$sandbox=$prevent_xss&&6132$type!~m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;61336134# serve text/* as text/plain6135if($prevent_xss&&6136($type=~m!^text/[a-z]+\b(.*)$!||6137($type=~m!^[a-z]+/[a-z]\+xml\b(.*)$!&& -T $fd))) {6138my$rest=$1;6139$rest=defined$rest?$rest:'';6140$type="text/plain$rest";6141}61426143print$cgi->header(6144-type =>$type,6145-expires =>$expires,6146-content_disposition =>6147($sandbox?'attachment':'inline')6148.'; filename="'.$save_as.'"');6149local$/=undef;6150binmode STDOUT,':raw';6151print<$fd>;6152binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6153close$fd;6154}61556156sub git_blob {6157my$expires;61586159if(!defined$hash) {6160if(defined$file_name) {6161my$base=$hash_base|| git_get_head_hash($project);6162$hash= git_get_hash_by_path($base,$file_name,"blob")6163or die_error(404,"Cannot find file");6164}else{6165 die_error(400,"No file name defined");6166}6167}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {6168# blobs defined by non-textual hash id's can be cached6169$expires="+1d";6170}61716172my$have_blame= gitweb_check_feature('blame');6173open my$fd,"-|", git_cmd(),"cat-file","blob",$hash6174or die_error(500,"Couldn't cat$file_name,$hash");6175my$mimetype= blob_mimetype($fd,$file_name);6176# use 'blob_plain' (aka 'raw') view for files that cannot be displayed6177if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {6178close$fd;6179return git_blob_plain($mimetype);6180}6181# we can have blame only for text/* mimetype6182$have_blame&&= ($mimetype=~m!^text/!);61836184my$highlight= gitweb_check_feature('highlight');6185my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);6186$fd= run_highlighter($fd,$highlight,$syntax)6187if$syntax;61886189 git_header_html(undef,$expires);6190my$formats_nav='';6191if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6192if(defined$file_name) {6193if($have_blame) {6194$formats_nav.=6195$cgi->a({-href => href(action=>"blame", -replay=>1)},6196"blame") .6197" | ";6198}6199$formats_nav.=6200$cgi->a({-href => href(action=>"history", -replay=>1)},6201"history") .6202" | ".6203$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},6204"raw") .6205" | ".6206$cgi->a({-href => href(action=>"blob",6207 hash_base=>"HEAD", file_name=>$file_name)},6208"HEAD");6209}else{6210$formats_nav.=6211$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},6212"raw");6213}6214 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6215 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6216}else{6217print"<div class=\"page_nav\">\n".6218"<br/><br/></div>\n".6219"<div class=\"title\">".esc_html($hash)."</div>\n";6220}6221 git_print_page_path($file_name,"blob",$hash_base);6222print"<div class=\"page_body\">\n";6223if($mimetype=~m!^image/!) {6224print qq!<img type="!.esc_attr($mimetype).qq!"!;6225if($file_name) {6226print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;6227}6228print qq! src="! .6229 href(action=>"blob_plain", hash=>$hash,6230 hash_base=>$hash_base, file_name=>$file_name) .6231 qq!"/>\n!;6232}else{6233my$nr;6234while(my$line= <$fd>) {6235chomp$line;6236$nr++;6237$line= untabify($line);6238printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,6239$nr, esc_attr(href(-replay =>1)),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);6240}6241}6242close$fd6243or print"Reading blob failed.\n";6244print"</div>";6245 git_footer_html();6246}62476248sub git_tree {6249if(!defined$hash_base) {6250$hash_base="HEAD";6251}6252if(!defined$hash) {6253if(defined$file_name) {6254$hash= git_get_hash_by_path($hash_base,$file_name,"tree");6255}else{6256$hash=$hash_base;6257}6258}6259 die_error(404,"No such tree")unlessdefined($hash);62606261my$show_sizes= gitweb_check_feature('show-sizes');6262my$have_blame= gitweb_check_feature('blame');62636264my@entries= ();6265{6266local$/="\0";6267open my$fd,"-|", git_cmd(),"ls-tree",'-z',6268($show_sizes?'-l': ()),@extra_options,$hash6269or die_error(500,"Open git-ls-tree failed");6270@entries=map{chomp;$_} <$fd>;6271close$fd6272or die_error(404,"Reading tree failed");6273}62746275my$refs= git_get_references();6276my$ref= format_ref_marker($refs,$hash_base);6277 git_header_html();6278my$basedir='';6279if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6280my@views_nav= ();6281if(defined$file_name) {6282push@views_nav,6283$cgi->a({-href => href(action=>"history", -replay=>1)},6284"history"),6285$cgi->a({-href => href(action=>"tree",6286 hash_base=>"HEAD", file_name=>$file_name)},6287"HEAD"),6288}6289my$snapshot_links= format_snapshot_links($hash);6290if(defined$snapshot_links) {6291# FIXME: Should be available when we have no hash base as well.6292push@views_nav,$snapshot_links;6293}6294 git_print_page_nav('tree','',$hash_base,undef,undef,6295join(' | ',@views_nav));6296 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);6297}else{6298undef$hash_base;6299print"<div class=\"page_nav\">\n";6300print"<br/><br/></div>\n";6301print"<div class=\"title\">".esc_html($hash)."</div>\n";6302}6303if(defined$file_name) {6304$basedir=$file_name;6305if($basedirne''&&substr($basedir, -1)ne'/') {6306$basedir.='/';6307}6308 git_print_page_path($file_name,'tree',$hash_base);6309}6310print"<div class=\"page_body\">\n";6311print"<table class=\"tree\">\n";6312my$alternate=1;6313# '..' (top directory) link if possible6314if(defined$hash_base&&6315defined$file_name&&$file_name=~m![^/]+$!) {6316if($alternate) {6317print"<tr class=\"dark\">\n";6318}else{6319print"<tr class=\"light\">\n";6320}6321$alternate^=1;63226323my$up=$file_name;6324$up=~s!/?[^/]+$!!;6325undef$upunless$up;6326# based on git_print_tree_entry6327print'<td class="mode">'. mode_str('040000') ."</td>\n";6328print'<td class="size"> </td>'."\n"if$show_sizes;6329print'<td class="list">';6330print$cgi->a({-href => href(action=>"tree",6331 hash_base=>$hash_base,6332 file_name=>$up)},6333"..");6334print"</td>\n";6335print"<td class=\"link\"></td>\n";63366337print"</tr>\n";6338}6339foreachmy$line(@entries) {6340my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);63416342if($alternate) {6343print"<tr class=\"dark\">\n";6344}else{6345print"<tr class=\"light\">\n";6346}6347$alternate^=1;63486349 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);63506351print"</tr>\n";6352}6353print"</table>\n".6354"</div>";6355 git_footer_html();6356}63576358sub snapshot_name {6359my($project,$hash) =@_;63606361# path/to/project.git -> project6362# path/to/project/.git -> project6363my$name= to_utf8($project);6364$name=~ s,([^/])/*\.git$,$1,;6365$name= basename($name);6366# sanitize name6367$name=~s/[[:cntrl:]]/?/g;63686369my$ver=$hash;6370if($hash=~/^[0-9a-fA-F]+$/) {6371# shorten SHA-1 hash6372my$full_hash= git_get_full_hash($project,$hash);6373if($full_hash=~/^$hash/&&length($hash) >7) {6374$ver= git_get_short_hash($project,$hash);6375}6376}elsif($hash=~m!^refs/tags/(.*)$!) {6377# tags don't need shortened SHA-1 hash6378$ver=$1;6379}else{6380# branches and other need shortened SHA-1 hash6381if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {6382$ver=$1;6383}6384$ver.='-'. git_get_short_hash($project,$hash);6385}6386# in case of hierarchical branch names6387$ver=~s!/!.!g;63886389# name = project-version_string6390$name="$name-$ver";63916392returnwantarray? ($name,$name) :$name;6393}63946395sub git_snapshot {6396my$format=$input_params{'snapshot_format'};6397if(!@snapshot_fmts) {6398 die_error(403,"Snapshots not allowed");6399}6400# default to first supported snapshot format6401$format||=$snapshot_fmts[0];6402if($format!~m/^[a-z0-9]+$/) {6403 die_error(400,"Invalid snapshot format parameter");6404}elsif(!exists($known_snapshot_formats{$format})) {6405 die_error(400,"Unknown snapshot format");6406}elsif($known_snapshot_formats{$format}{'disabled'}) {6407 die_error(403,"Snapshot format not allowed");6408}elsif(!grep($_eq$format,@snapshot_fmts)) {6409 die_error(403,"Unsupported snapshot format");6410}64116412my$type= git_get_type("$hash^{}");6413if(!$type) {6414 die_error(404,'Object does not exist');6415}elsif($typeeq'blob') {6416 die_error(400,'Object is not a tree-ish');6417}64186419my($name,$prefix) = snapshot_name($project,$hash);6420my$filename="$name$known_snapshot_formats{$format}{'suffix'}";6421my$cmd= quote_command(6422 git_cmd(),'archive',6423"--format=$known_snapshot_formats{$format}{'format'}",6424"--prefix=$prefix/",$hash);6425if(exists$known_snapshot_formats{$format}{'compressor'}) {6426$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});6427}64286429$filename=~s/(["\\])/\\$1/g;6430print$cgi->header(6431-type =>$known_snapshot_formats{$format}{'type'},6432-content_disposition =>'inline; filename="'.$filename.'"',6433-status =>'200 OK');64346435open my$fd,"-|",$cmd6436or die_error(500,"Execute git-archive failed");6437binmode STDOUT,':raw';6438print<$fd>;6439binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6440close$fd;6441}64426443sub git_log_generic {6444my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;64456446my$head= git_get_head_hash($project);6447if(!defined$base) {6448$base=$head;6449}6450if(!defined$page) {6451$page=0;6452}6453my$refs= git_get_references();64546455my$commit_hash=$base;6456if(defined$parent) {6457$commit_hash="$parent..$base";6458}6459my@commitlist=6460 parse_commits($commit_hash,101, (100*$page),6461defined$file_name? ($file_name,"--full-history") : ());64626463my$ftype;6464if(!defined$file_hash&&defined$file_name) {6465# some commits could have deleted file in question,6466# and not have it in tree, but one of them has to have it6467for(my$i=0;$i<@commitlist;$i++) {6468$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);6469last ifdefined$file_hash;6470}6471}6472if(defined$file_hash) {6473$ftype= git_get_type($file_hash);6474}6475if(defined$file_name&& !defined$ftype) {6476 die_error(500,"Unknown type of object");6477}6478my%co;6479if(defined$file_name) {6480%co= parse_commit($base)6481or die_error(404,"Unknown commit object");6482}648364846485my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);6486my$next_link='';6487if($#commitlist>=100) {6488$next_link=6489$cgi->a({-href => href(-replay=>1, page=>$page+1),6490-accesskey =>"n", -title =>"Alt-n"},"next");6491}6492my$patch_max= gitweb_get_feature('patches');6493if($patch_max&& !defined$file_name) {6494if($patch_max<0||@commitlist<=$patch_max) {6495$paging_nav.=" ⋅ ".6496$cgi->a({-href => href(action=>"patches", -replay=>1)},6497"patches");6498}6499}65006501 git_header_html();6502 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);6503if(defined$file_name) {6504 git_print_header_div('commit', esc_html($co{'title'}),$base);6505}else{6506 git_print_header_div('summary',$project)6507}6508 git_print_page_path($file_name,$ftype,$hash_base)6509if(defined$file_name);65106511$body_subr->(\@commitlist,0,99,$refs,$next_link,6512$file_name,$file_hash,$ftype);65136514 git_footer_html();6515}65166517sub git_log {6518 git_log_generic('log', \&git_log_body,6519$hash,$hash_parent);6520}65216522sub git_commit {6523$hash||=$hash_base||"HEAD";6524my%co= parse_commit($hash)6525or die_error(404,"Unknown commit object");65266527my$parent=$co{'parent'};6528my$parents=$co{'parents'};# listref65296530# we need to prepare $formats_nav before any parameter munging6531my$formats_nav;6532if(!defined$parent) {6533# --root commitdiff6534$formats_nav.='(initial)';6535}elsif(@$parents==1) {6536# single parent commit6537$formats_nav.=6538'(parent: '.6539$cgi->a({-href => href(action=>"commit",6540 hash=>$parent)},6541 esc_html(substr($parent,0,7))) .6542')';6543}else{6544# merge commit6545$formats_nav.=6546'(merge: '.6547join(' ',map{6548$cgi->a({-href => href(action=>"commit",6549 hash=>$_)},6550 esc_html(substr($_,0,7)));6551}@$parents) .6552')';6553}6554if(gitweb_check_feature('patches') &&@$parents<=1) {6555$formats_nav.=" | ".6556$cgi->a({-href => href(action=>"patch", -replay=>1)},6557"patch");6558}65596560if(!defined$parent) {6561$parent="--root";6562}6563my@difftree;6564open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",6565@diff_opts,6566(@$parents<=1?$parent:'-c'),6567$hash,"--"6568or die_error(500,"Open git-diff-tree failed");6569@difftree=map{chomp;$_} <$fd>;6570close$fdor die_error(404,"Reading git-diff-tree failed");65716572# non-textual hash id's can be cached6573my$expires;6574if($hash=~m/^[0-9a-fA-F]{40}$/) {6575$expires="+1d";6576}6577my$refs= git_get_references();6578my$ref= format_ref_marker($refs,$co{'id'});65796580 git_header_html(undef,$expires);6581 git_print_page_nav('commit','',6582$hash,$co{'tree'},$hash,6583$formats_nav);65846585if(defined$co{'parent'}) {6586 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6587}else{6588 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6589}6590print"<div class=\"title_text\">\n".6591"<table class=\"object_header\">\n";6592 git_print_authorship_rows(\%co);6593print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6594print"<tr>".6595"<td>tree</td>".6596"<td class=\"sha1\">".6597$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6598class=>"list"},$co{'tree'}) .6599"</td>".6600"<td class=\"link\">".6601$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6602"tree");6603my$snapshot_links= format_snapshot_links($hash);6604if(defined$snapshot_links) {6605print" | ".$snapshot_links;6606}6607print"</td>".6608"</tr>\n";66096610foreachmy$par(@$parents) {6611print"<tr>".6612"<td>parent</td>".6613"<td class=\"sha1\">".6614$cgi->a({-href => href(action=>"commit", hash=>$par),6615class=>"list"},$par) .6616"</td>".6617"<td class=\"link\">".6618$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6619" | ".6620$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6621"</td>".6622"</tr>\n";6623}6624print"</table>".6625"</div>\n";66266627print"<div class=\"page_body\">\n";6628 git_print_log($co{'comment'});6629print"</div>\n";66306631 git_difftree_body(\@difftree,$hash,@$parents);66326633 git_footer_html();6634}66356636sub git_object {6637# object is defined by:6638# - hash or hash_base alone6639# - hash_base and file_name6640my$type;66416642# - hash or hash_base alone6643if($hash|| ($hash_base&& !defined$file_name)) {6644my$object_id=$hash||$hash_base;66456646open my$fd,"-|", quote_command(6647 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6648or die_error(404,"Object does not exist");6649$type= <$fd>;6650chomp$type;6651close$fd6652or die_error(404,"Object does not exist");66536654# - hash_base and file_name6655}elsif($hash_base&&defined$file_name) {6656$file_name=~ s,/+$,,;66576658system(git_cmd(),"cat-file",'-e',$hash_base) ==06659or die_error(404,"Base object does not exist");66606661# here errors should not hapen6662open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6663or die_error(500,"Open git-ls-tree failed");6664my$line= <$fd>;6665close$fd;66666667#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6668unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6669 die_error(404,"File or directory for given base does not exist");6670}6671$type=$2;6672$hash=$3;6673}else{6674 die_error(400,"Not enough information to find object");6675}66766677print$cgi->redirect(-uri => href(action=>$type, -full=>1,6678 hash=>$hash, hash_base=>$hash_base,6679 file_name=>$file_name),6680-status =>'302 Found');6681}66826683sub git_blobdiff {6684my$format=shift||'html';66856686my$fd;6687my@difftree;6688my%diffinfo;6689my$expires;66906691# preparing $fd and %diffinfo for git_patchset_body6692# new style URI6693if(defined$hash_base&&defined$hash_parent_base) {6694if(defined$file_name) {6695# read raw output6696open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6697$hash_parent_base,$hash_base,6698"--", (defined$file_parent?$file_parent: ()),$file_name6699or die_error(500,"Open git-diff-tree failed");6700@difftree=map{chomp;$_} <$fd>;6701close$fd6702or die_error(404,"Reading git-diff-tree failed");6703@difftree6704or die_error(404,"Blob diff not found");67056706}elsif(defined$hash&&6707$hash=~/[0-9a-fA-F]{40}/) {6708# try to find filename from $hash67096710# read filtered raw output6711open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6712$hash_parent_base,$hash_base,"--"6713or die_error(500,"Open git-diff-tree failed");6714@difftree=6715# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6716# $hash == to_id6717grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6718map{chomp;$_} <$fd>;6719close$fd6720or die_error(404,"Reading git-diff-tree failed");6721@difftree6722or die_error(404,"Blob diff not found");67236724}else{6725 die_error(400,"Missing one of the blob diff parameters");6726}67276728if(@difftree>1) {6729 die_error(400,"Ambiguous blob diff specification");6730}67316732%diffinfo= parse_difftree_raw_line($difftree[0]);6733$file_parent||=$diffinfo{'from_file'} ||$file_name;6734$file_name||=$diffinfo{'to_file'};67356736$hash_parent||=$diffinfo{'from_id'};6737$hash||=$diffinfo{'to_id'};67386739# non-textual hash id's can be cached6740if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6741$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6742$expires='+1d';6743}67446745# open patch output6746open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6747'-p', ($formateq'html'?"--full-index": ()),6748$hash_parent_base,$hash_base,6749"--", (defined$file_parent?$file_parent: ()),$file_name6750or die_error(500,"Open git-diff-tree failed");6751}67526753# old/legacy style URI -- not generated anymore since 1.4.3.6754if(!%diffinfo) {6755 die_error('404 Not Found',"Missing one of the blob diff parameters")6756}67576758# header6759if($formateq'html') {6760my$formats_nav=6761$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6762"raw");6763 git_header_html(undef,$expires);6764if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6765 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6766 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6767}else{6768print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6769print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";6770}6771if(defined$file_name) {6772 git_print_page_path($file_name,"blob",$hash_base);6773}else{6774print"<div class=\"page_path\"></div>\n";6775}67766777}elsif($formateq'plain') {6778print$cgi->header(6779-type =>'text/plain',6780-charset =>'utf-8',6781-expires =>$expires,6782-content_disposition =>'inline; filename="'."$file_name".'.patch"');67836784print"X-Git-Url: ".$cgi->self_url() ."\n\n";67856786}else{6787 die_error(400,"Unknown blobdiff format");6788}67896790# patch6791if($formateq'html') {6792print"<div class=\"page_body\">\n";67936794 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6795close$fd;67966797print"</div>\n";# class="page_body"6798 git_footer_html();67996800}else{6801while(my$line= <$fd>) {6802$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6803$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;68046805print$line;68066807last if$line=~m!^\+\+\+!;6808}6809local$/=undef;6810print<$fd>;6811close$fd;6812}6813}68146815sub git_blobdiff_plain {6816 git_blobdiff('plain');6817}68186819sub git_commitdiff {6820my%params=@_;6821my$format=$params{-format} ||'html';68226823my($patch_max) = gitweb_get_feature('patches');6824if($formateq'patch') {6825 die_error(403,"Patch view not allowed")unless$patch_max;6826}68276828$hash||=$hash_base||"HEAD";6829my%co= parse_commit($hash)6830or die_error(404,"Unknown commit object");68316832# choose format for commitdiff for merge6833if(!defined$hash_parent&& @{$co{'parents'}} >1) {6834$hash_parent='--cc';6835}6836# we need to prepare $formats_nav before almost any parameter munging6837my$formats_nav;6838if($formateq'html') {6839$formats_nav=6840$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6841"raw");6842if($patch_max&& @{$co{'parents'}} <=1) {6843$formats_nav.=" | ".6844$cgi->a({-href => href(action=>"patch", -replay=>1)},6845"patch");6846}68476848if(defined$hash_parent&&6849$hash_parentne'-c'&&$hash_parentne'--cc') {6850# commitdiff with two commits given6851my$hash_parent_short=$hash_parent;6852if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6853$hash_parent_short=substr($hash_parent,0,7);6854}6855$formats_nav.=6856' (from';6857for(my$i=0;$i< @{$co{'parents'}};$i++) {6858if($co{'parents'}[$i]eq$hash_parent) {6859$formats_nav.=' parent '. ($i+1);6860last;6861}6862}6863$formats_nav.=': '.6864$cgi->a({-href => href(action=>"commitdiff",6865 hash=>$hash_parent)},6866 esc_html($hash_parent_short)) .6867')';6868}elsif(!$co{'parent'}) {6869# --root commitdiff6870$formats_nav.=' (initial)';6871}elsif(scalar@{$co{'parents'}} ==1) {6872# single parent commit6873$formats_nav.=6874' (parent: '.6875$cgi->a({-href => href(action=>"commitdiff",6876 hash=>$co{'parent'})},6877 esc_html(substr($co{'parent'},0,7))) .6878')';6879}else{6880# merge commit6881if($hash_parenteq'--cc') {6882$formats_nav.=' | '.6883$cgi->a({-href => href(action=>"commitdiff",6884 hash=>$hash, hash_parent=>'-c')},6885'combined');6886}else{# $hash_parent eq '-c'6887$formats_nav.=' | '.6888$cgi->a({-href => href(action=>"commitdiff",6889 hash=>$hash, hash_parent=>'--cc')},6890'compact');6891}6892$formats_nav.=6893' (merge: '.6894join(' ',map{6895$cgi->a({-href => href(action=>"commitdiff",6896 hash=>$_)},6897 esc_html(substr($_,0,7)));6898} @{$co{'parents'}} ) .6899')';6900}6901}69026903my$hash_parent_param=$hash_parent;6904if(!defined$hash_parent_param) {6905# --cc for multiple parents, --root for parentless6906$hash_parent_param=6907@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6908}69096910# read commitdiff6911my$fd;6912my@difftree;6913if($formateq'html') {6914open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6915"--no-commit-id","--patch-with-raw","--full-index",6916$hash_parent_param,$hash,"--"6917or die_error(500,"Open git-diff-tree failed");69186919while(my$line= <$fd>) {6920chomp$line;6921# empty line ends raw part of diff-tree output6922last unless$line;6923push@difftree,scalar parse_difftree_raw_line($line);6924}69256926}elsif($formateq'plain') {6927open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6928'-p',$hash_parent_param,$hash,"--"6929or die_error(500,"Open git-diff-tree failed");6930}elsif($formateq'patch') {6931# For commit ranges, we limit the output to the number of6932# patches specified in the 'patches' feature.6933# For single commits, we limit the output to a single patch,6934# diverging from the git-format-patch default.6935my@commit_spec= ();6936if($hash_parent) {6937if($patch_max>0) {6938push@commit_spec,"-$patch_max";6939}6940push@commit_spec,'-n',"$hash_parent..$hash";6941}else{6942if($params{-single}) {6943push@commit_spec,'-1';6944}else{6945if($patch_max>0) {6946push@commit_spec,"-$patch_max";6947}6948push@commit_spec,"-n";6949}6950push@commit_spec,'--root',$hash;6951}6952open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6953'--encoding=utf8','--stdout',@commit_spec6954or die_error(500,"Open git-format-patch failed");6955}else{6956 die_error(400,"Unknown commitdiff format");6957}69586959# non-textual hash id's can be cached6960my$expires;6961if($hash=~m/^[0-9a-fA-F]{40}$/) {6962$expires="+1d";6963}69646965# write commit message6966if($formateq'html') {6967my$refs= git_get_references();6968my$ref= format_ref_marker($refs,$co{'id'});69696970 git_header_html(undef,$expires);6971 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6972 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6973print"<div class=\"title_text\">\n".6974"<table class=\"object_header\">\n";6975 git_print_authorship_rows(\%co);6976print"</table>".6977"</div>\n";6978print"<div class=\"page_body\">\n";6979if(@{$co{'comment'}} >1) {6980print"<div class=\"log\">\n";6981 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6982print"</div>\n";# class="log"6983}69846985}elsif($formateq'plain') {6986my$refs= git_get_references("tags");6987my$tagname= git_get_rev_name_tags($hash);6988my$filename= basename($project) ."-$hash.patch";69896990print$cgi->header(6991-type =>'text/plain',6992-charset =>'utf-8',6993-expires =>$expires,6994-content_disposition =>'inline; filename="'."$filename".'"');6995my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6996print"From: ". to_utf8($co{'author'}) ."\n";6997print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6998print"Subject: ". to_utf8($co{'title'}) ."\n";69997000print"X-Git-Tag:$tagname\n"if$tagname;7001print"X-Git-Url: ".$cgi->self_url() ."\n\n";70027003foreachmy$line(@{$co{'comment'}}) {7004print to_utf8($line) ."\n";7005}7006print"---\n\n";7007}elsif($formateq'patch') {7008my$filename= basename($project) ."-$hash.patch";70097010print$cgi->header(7011-type =>'text/plain',7012-charset =>'utf-8',7013-expires =>$expires,7014-content_disposition =>'inline; filename="'."$filename".'"');7015}70167017# write patch7018if($formateq'html') {7019my$use_parents= !defined$hash_parent||7020$hash_parenteq'-c'||$hash_parenteq'--cc';7021 git_difftree_body(\@difftree,$hash,7022$use_parents? @{$co{'parents'}} :$hash_parent);7023print"<br/>\n";70247025 git_patchset_body($fd, \@difftree,$hash,7026$use_parents? @{$co{'parents'}} :$hash_parent);7027close$fd;7028print"</div>\n";# class="page_body"7029 git_footer_html();70307031}elsif($formateq'plain') {7032local$/=undef;7033print<$fd>;7034close$fd7035or print"Reading git-diff-tree failed\n";7036}elsif($formateq'patch') {7037local$/=undef;7038print<$fd>;7039close$fd7040or print"Reading git-format-patch failed\n";7041}7042}70437044sub git_commitdiff_plain {7045 git_commitdiff(-format =>'plain');7046}70477048# format-patch-style patches7049sub git_patch {7050 git_commitdiff(-format =>'patch', -single =>1);7051}70527053sub git_patches {7054 git_commitdiff(-format =>'patch');7055}70567057sub git_history {7058 git_log_generic('history', \&git_history_body,7059$hash_base,$hash_parent_base,7060$file_name,$hash);7061}70627063sub git_search {7064 gitweb_check_feature('search')or die_error(403,"Search is disabled");7065if(!defined$searchtext) {7066 die_error(400,"Text field is empty");7067}7068if(!defined$hash) {7069$hash= git_get_head_hash($project);7070}7071my%co= parse_commit($hash);7072if(!%co) {7073 die_error(404,"Unknown commit object");7074}7075if(!defined$page) {7076$page=0;7077}70787079$searchtype||='commit';7080if($searchtypeeq'pickaxe') {7081# pickaxe may take all resources of your box and run for several minutes7082# with every query - so decide by yourself how public you make this feature7083 gitweb_check_feature('pickaxe')7084or die_error(403,"Pickaxe is disabled");7085}7086if($searchtypeeq'grep') {7087 gitweb_check_feature('grep')7088or die_error(403,"Grep is disabled");7089}70907091 git_header_html();70927093if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {7094my$greptype;7095if($searchtypeeq'commit') {7096$greptype="--grep=";7097}elsif($searchtypeeq'author') {7098$greptype="--author=";7099}elsif($searchtypeeq'committer') {7100$greptype="--committer=";7101}7102$greptype.=$searchtext;7103my@commitlist= parse_commits($hash,101, (100*$page),undef,7104$greptype,'--regexp-ignore-case',7105$search_use_regexp?'--extended-regexp':'--fixed-strings');71067107my$paging_nav='';7108if($page>0) {7109$paging_nav.=7110$cgi->a({-href => href(action=>"search", hash=>$hash,7111 searchtext=>$searchtext,7112 searchtype=>$searchtype)},7113"first");7114$paging_nav.=" ⋅ ".7115$cgi->a({-href => href(-replay=>1, page=>$page-1),7116-accesskey =>"p", -title =>"Alt-p"},"prev");7117}else{7118$paging_nav.="first";7119$paging_nav.=" ⋅ prev";7120}7121my$next_link='';7122if($#commitlist>=100) {7123$next_link=7124$cgi->a({-href => href(-replay=>1, page=>$page+1),7125-accesskey =>"n", -title =>"Alt-n"},"next");7126$paging_nav.=" ⋅$next_link";7127}else{7128$paging_nav.=" ⋅ next";7129}71307131 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);7132 git_print_header_div('commit', esc_html($co{'title'}),$hash);7133if($page==0&& !@commitlist) {7134print"<p>No match.</p>\n";7135}else{7136 git_search_grep_body(\@commitlist,0,99,$next_link);7137}7138}71397140if($searchtypeeq'pickaxe') {7141 git_print_page_nav('','',$hash,$co{'tree'},$hash);7142 git_print_header_div('commit', esc_html($co{'title'}),$hash);71437144print"<table class=\"pickaxe search\">\n";7145my$alternate=1;7146local$/="\n";7147open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,7148'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",7149($search_use_regexp?'--pickaxe-regex': ());7150undef%co;7151my@files;7152while(my$line= <$fd>) {7153chomp$line;7154next unless$line;71557156my%set= parse_difftree_raw_line($line);7157if(defined$set{'commit'}) {7158# finish previous commit7159if(%co) {7160print"</td>\n".7161"<td class=\"link\">".7162$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .7163" | ".7164$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");7165print"</td>\n".7166"</tr>\n";7167}71687169if($alternate) {7170print"<tr class=\"dark\">\n";7171}else{7172print"<tr class=\"light\">\n";7173}7174$alternate^=1;7175%co= parse_commit($set{'commit'});7176my$author= chop_and_escape_str($co{'author_name'},15,5);7177print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".7178"<td><i>$author</i></td>\n".7179"<td>".7180$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),7181-class=>"list subject"},7182 chop_and_escape_str($co{'title'},50) ."<br/>");7183}elsif(defined$set{'to_id'}) {7184next if($set{'to_id'} =~m/^0{40}$/);71857186print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},7187 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),7188-class=>"list"},7189"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .7190"<br/>\n";7191}7192}7193close$fd;71947195# finish last commit (warning: repetition!)7196if(%co) {7197print"</td>\n".7198"<td class=\"link\">".7199$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .7200" | ".7201$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");7202print"</td>\n".7203"</tr>\n";7204}72057206print"</table>\n";7207}72087209if($searchtypeeq'grep') {7210 git_print_page_nav('','',$hash,$co{'tree'},$hash);7211 git_print_header_div('commit', esc_html($co{'title'}),$hash);72127213print"<table class=\"grep_search\">\n";7214my$alternate=1;7215my$matches=0;7216local$/="\n";7217open my$fd,"-|", git_cmd(),'grep','-n',7218$search_use_regexp? ('-E','-i') :'-F',7219$searchtext,$co{'tree'};7220my$lastfile='';7221while(my$line= <$fd>) {7222chomp$line;7223my($file,$lno,$ltext,$binary);7224last if($matches++>1000);7225if($line=~/^Binary file (.+) matches$/) {7226$file=$1;7227$binary=1;7228}else{7229(undef,$file,$lno,$ltext) =split(/:/,$line,4);7230}7231if($filene$lastfile) {7232$lastfileand print"</td></tr>\n";7233if($alternate++) {7234print"<tr class=\"dark\">\n";7235}else{7236print"<tr class=\"light\">\n";7237}7238print"<td class=\"list\">".7239$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},7240 file_name=>"$file"),7241-class=>"list"}, esc_path($file));7242print"</td><td>\n";7243$lastfile=$file;7244}7245if($binary) {7246print"<div class=\"binary\">Binary file</div>\n";7247}else{7248$ltext= untabify($ltext);7249if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {7250$ltext= esc_html($1, -nbsp=>1);7251$ltext.='<span class="match">';7252$ltext.= esc_html($2, -nbsp=>1);7253$ltext.='</span>';7254$ltext.= esc_html($3, -nbsp=>1);7255}else{7256$ltext= esc_html($ltext, -nbsp=>1);7257}7258print"<div class=\"pre\">".7259$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},7260 file_name=>"$file").'#l'.$lno,7261-class=>"linenr"},sprintf('%4i',$lno))7262.' '.$ltext."</div>\n";7263}7264}7265if($lastfile) {7266print"</td></tr>\n";7267if($matches>1000) {7268print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";7269}7270}else{7271print"<div class=\"diff nodifferences\">No matches found</div>\n";7272}7273close$fd;72747275print"</table>\n";7276}7277 git_footer_html();7278}72797280sub git_search_help {7281 git_header_html();7282 git_print_page_nav('','',$hash,$hash,$hash);7283print<<EOT;7284<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without7285regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,7286the pattern entered is recognized as the POSIX extended7287<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case7288insensitive).</p>7289<dl>7290<dt><b>commit</b></dt>7291<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>7292EOT7293my$have_grep= gitweb_check_feature('grep');7294if($have_grep) {7295print<<EOT;7296<dt><b>grep</b></dt>7297<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing7298 a different one) are searched for the given pattern. On large trees, this search can take7299a while and put some strain on the server, so please use it with some consideration. Note that7300due to git-grep peculiarity, currently if regexp mode is turned off, the matches are7301case-sensitive.</dd>7302EOT7303}7304print<<EOT;7305<dt><b>author</b></dt>7306<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>7307<dt><b>committer</b></dt>7308<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>7309EOT7310my$have_pickaxe= gitweb_check_feature('pickaxe');7311if($have_pickaxe) {7312print<<EOT;7313<dt><b>pickaxe</b></dt>7314<dd>All commits that caused the string to appear or disappear from any file (changes that7315added, removed or "modified" the string) will be listed. This search can take a while and7316takes a lot of strain on the server, so please use it wisely. Note that since you may be7317interested even in changes just changing the case as well, this search is case sensitive.</dd>7318EOT7319}7320print"</dl>\n";7321 git_footer_html();7322}73237324sub git_shortlog {7325 git_log_generic('shortlog', \&git_shortlog_body,7326$hash,$hash_parent);7327}73287329## ......................................................................7330## feeds (RSS, Atom; OPML)73317332sub git_feed {7333my$format=shift||'atom';7334my$have_blame= gitweb_check_feature('blame');73357336# Atom: http://www.atomenabled.org/developers/syndication/7337# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ7338if($formatne'rss'&&$formatne'atom') {7339 die_error(400,"Unknown web feed format");7340}73417342# log/feed of current (HEAD) branch, log of given branch, history of file/directory7343my$head=$hash||'HEAD';7344my@commitlist= parse_commits($head,150,0,$file_name);73457346my%latest_commit;7347my%latest_date;7348my$content_type="application/$format+xml";7349if(defined$cgi->http('HTTP_ACCEPT') &&7350$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {7351# browser (feed reader) prefers text/xml7352$content_type='text/xml';7353}7354if(defined($commitlist[0])) {7355%latest_commit= %{$commitlist[0]};7356my$latest_epoch=$latest_commit{'committer_epoch'};7357%latest_date= parse_date($latest_epoch,$latest_commit{'comitter_tz'});7358my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7359if(defined$if_modified) {7360my$since;7361if(eval{require HTTP::Date;1; }) {7362$since= HTTP::Date::str2time($if_modified);7363}elsif(eval{require Time::ParseDate;1; }) {7364$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7365}7366if(defined$since&&$latest_epoch<=$since) {7367print$cgi->header(7368-type =>$content_type,7369-charset =>'utf-8',7370-last_modified =>$latest_date{'rfc2822'},7371-status =>'304 Not Modified');7372return;7373}7374}7375print$cgi->header(7376-type =>$content_type,7377-charset =>'utf-8',7378-last_modified =>$latest_date{'rfc2822'});7379}else{7380print$cgi->header(7381-type =>$content_type,7382-charset =>'utf-8');7383}73847385# Optimization: skip generating the body if client asks only7386# for Last-Modified date.7387return if($cgi->request_method()eq'HEAD');73887389# header variables7390my$title="$site_name-$project/$action";7391my$feed_type='log';7392if(defined$hash) {7393$title.=" - '$hash'";7394$feed_type='branch log';7395if(defined$file_name) {7396$title.=" ::$file_name";7397$feed_type='history';7398}7399}elsif(defined$file_name) {7400$title.=" -$file_name";7401$feed_type='history';7402}7403$title.="$feed_type";7404my$descr= git_get_project_description($project);7405if(defined$descr) {7406$descr= esc_html($descr);7407}else{7408$descr="$project".7409($formateq'rss'?'RSS':'Atom') .7410" feed";7411}7412my$owner= git_get_project_owner($project);7413$owner= esc_html($owner);74147415#header7416my$alt_url;7417if(defined$file_name) {7418$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);7419}elsif(defined$hash) {7420$alt_url= href(-full=>1, action=>"log", hash=>$hash);7421}else{7422$alt_url= href(-full=>1, action=>"summary");7423}7424print qq!<?xml version="1.0" encoding="utf-8"?>\n!;7425if($formateq'rss') {7426print<<XML;7427<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">7428<channel>7429XML7430print"<title>$title</title>\n".7431"<link>$alt_url</link>\n".7432"<description>$descr</description>\n".7433"<language>en</language>\n".7434# project owner is responsible for 'editorial' content7435"<managingEditor>$owner</managingEditor>\n";7436if(defined$logo||defined$favicon) {7437# prefer the logo to the favicon, since RSS7438# doesn't allow both7439my$img= esc_url($logo||$favicon);7440print"<image>\n".7441"<url>$img</url>\n".7442"<title>$title</title>\n".7443"<link>$alt_url</link>\n".7444"</image>\n";7445}7446if(%latest_date) {7447print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";7448print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";7449}7450print"<generator>gitweb v.$version/$git_version</generator>\n";7451}elsif($formateq'atom') {7452print<<XML;7453<feed xmlns="http://www.w3.org/2005/Atom">7454XML7455print"<title>$title</title>\n".7456"<subtitle>$descr</subtitle>\n".7457'<link rel="alternate" type="text/html" href="'.7458$alt_url.'" />'."\n".7459'<link rel="self" type="'.$content_type.'" href="'.7460$cgi->self_url() .'" />'."\n".7461"<id>". href(-full=>1) ."</id>\n".7462# use project owner for feed author7463"<author><name>$owner</name></author>\n";7464if(defined$favicon) {7465print"<icon>". esc_url($favicon) ."</icon>\n";7466}7467if(defined$logo) {7468# not twice as wide as tall: 72 x 27 pixels7469print"<logo>". esc_url($logo) ."</logo>\n";7470}7471if(!%latest_date) {7472# dummy date to keep the feed valid until commits trickle in:7473print"<updated>1970-01-01T00:00:00Z</updated>\n";7474}else{7475print"<updated>$latest_date{'iso-8601'}</updated>\n";7476}7477print"<generator version='$version/$git_version'>gitweb</generator>\n";7478}74797480# contents7481for(my$i=0;$i<=$#commitlist;$i++) {7482my%co= %{$commitlist[$i]};7483my$commit=$co{'id'};7484# we read 150, we always show 30 and the ones more recent than 48 hours7485if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {7486last;7487}7488my%cd= parse_date($co{'author_epoch'},$co{'author_tz'});74897490# get list of changed files7491open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7492$co{'parent'} ||"--root",7493$co{'id'},"--", (defined$file_name?$file_name: ())7494ornext;7495my@difftree=map{chomp;$_} <$fd>;7496close$fd7497ornext;74987499# print element (entry, item)7500my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);7501if($formateq'rss') {7502print"<item>\n".7503"<title>". esc_html($co{'title'}) ."</title>\n".7504"<author>". esc_html($co{'author'}) ."</author>\n".7505"<pubDate>$cd{'rfc2822'}</pubDate>\n".7506"<guid isPermaLink=\"true\">$co_url</guid>\n".7507"<link>$co_url</link>\n".7508"<description>". esc_html($co{'title'}) ."</description>\n".7509"<content:encoded>".7510"<![CDATA[\n";7511}elsif($formateq'atom') {7512print"<entry>\n".7513"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".7514"<updated>$cd{'iso-8601'}</updated>\n".7515"<author>\n".7516" <name>". esc_html($co{'author_name'}) ."</name>\n";7517if($co{'author_email'}) {7518print" <email>". esc_html($co{'author_email'}) ."</email>\n";7519}7520print"</author>\n".7521# use committer for contributor7522"<contributor>\n".7523" <name>". esc_html($co{'committer_name'}) ."</name>\n";7524if($co{'committer_email'}) {7525print" <email>". esc_html($co{'committer_email'}) ."</email>\n";7526}7527print"</contributor>\n".7528"<published>$cd{'iso-8601'}</published>\n".7529"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".7530"<id>$co_url</id>\n".7531"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".7532"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";7533}7534my$comment=$co{'comment'};7535print"<pre>\n";7536foreachmy$line(@$comment) {7537$line= esc_html($line);7538print"$line\n";7539}7540print"</pre><ul>\n";7541foreachmy$difftree_line(@difftree) {7542my%difftree= parse_difftree_raw_line($difftree_line);7543next if!$difftree{'from_id'};75447545my$file=$difftree{'file'} ||$difftree{'to_file'};75467547print"<li>".7548"[".7549$cgi->a({-href => href(-full=>1, action=>"blobdiff",7550 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},7551 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},7552 file_name=>$file, file_parent=>$difftree{'from_file'}),7553-title =>"diff"},'D');7554if($have_blame) {7555print$cgi->a({-href => href(-full=>1, action=>"blame",7556 file_name=>$file, hash_base=>$commit),7557-title =>"blame"},'B');7558}7559# if this is not a feed of a file history7560if(!defined$file_name||$file_namene$file) {7561print$cgi->a({-href => href(-full=>1, action=>"history",7562 file_name=>$file, hash=>$commit),7563-title =>"history"},'H');7564}7565$file= esc_path($file);7566print"] ".7567"$file</li>\n";7568}7569if($formateq'rss') {7570print"</ul>]]>\n".7571"</content:encoded>\n".7572"</item>\n";7573}elsif($formateq'atom') {7574print"</ul>\n</div>\n".7575"</content>\n".7576"</entry>\n";7577}7578}75797580# end of feed7581if($formateq'rss') {7582print"</channel>\n</rss>\n";7583}elsif($formateq'atom') {7584print"</feed>\n";7585}7586}75877588sub git_rss {7589 git_feed('rss');7590}75917592sub git_atom {7593 git_feed('atom');7594}75957596sub git_opml {7597my@list= git_get_projects_list();7598if(!@list) {7599 die_error(404,"No projects found");7600}76017602print$cgi->header(7603-type =>'text/xml',7604-charset =>'utf-8',7605-content_disposition =>'inline; filename="opml.xml"');76067607print<<XML;7608<?xml version="1.0" encoding="utf-8"?>7609<opml version="1.0">7610<head>7611 <title>$site_nameOPML Export</title>7612</head>7613<body>7614<outline text="git RSS feeds">7615XML76167617foreachmy$pr(@list) {7618my%proj=%$pr;7619my$head= git_get_head_hash($proj{'path'});7620if(!defined$head) {7621next;7622}7623$git_dir="$projectroot/$proj{'path'}";7624my%co= parse_commit($head);7625if(!%co) {7626next;7627}76287629my$path= esc_html(chop_str($proj{'path'},25,5));7630my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7631my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7632print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7633}7634print<<XML;7635</outline>7636</body>7637</opml>7638XML7639}