1#!/usr/bin/perl 2 3# gitweb - simple web interface to track changes in git repositories 4# 5# (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org> 6# (C) 2005, Christian Gierke 7# 8# This program is licensed under the GPLv2 9 10use5.008; 11use strict; 12use warnings; 13use CGI qw(:standard :escapeHTML -nosticky); 14use CGI::Util qw(unescape); 15use CGI::Carp qw(fatalsToBrowser set_message); 16use Encode; 17use Fcntl ':mode'; 18use File::Find qw(); 19use File::Basename qw(basename); 20use Time::HiRes qw(gettimeofday tv_interval); 21binmode STDOUT,':utf8'; 22 23our$t0= [ gettimeofday() ]; 24our$number_of_git_cmds=0; 25 26BEGIN{ 27 CGI->compile()if$ENV{'MOD_PERL'}; 28} 29 30our$version="++GIT_VERSION++"; 31 32our($my_url,$my_uri,$base_url,$path_info,$home_link); 33sub evaluate_uri { 34our$cgi; 35 36our$my_url=$cgi->url(); 37our$my_uri=$cgi->url(-absolute =>1); 38 39# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 40# needed and used only for URLs with nonempty PATH_INFO 41our$base_url=$my_url; 42 43# When the script is used as DirectoryIndex, the URL does not contain the name 44# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 45# have to do it ourselves. We make $path_info global because it's also used 46# later on. 47# 48# Another issue with the script being the DirectoryIndex is that the resulting 49# $my_url data is not the full script URL: this is good, because we want 50# generated links to keep implying the script name if it wasn't explicitly 51# indicated in the URL we're handling, but it means that $my_url cannot be used 52# as base URL. 53# Therefore, if we needed to strip PATH_INFO, then we know that we have 54# to build the base URL ourselves: 55our$path_info=$ENV{"PATH_INFO"}; 56if($path_info) { 57if($my_url=~ s,\Q$path_info\E$,, && 58$my_uri=~ s,\Q$path_info\E$,, && 59defined$ENV{'SCRIPT_NAME'}) { 60$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 61} 62} 63 64# target of the home link on top of all pages 65our$home_link=$my_uri||"/"; 66} 67 68# core git executable to use 69# this can just be "git" if your webserver has a sensible PATH 70our$GIT="++GIT_BINDIR++/git"; 71 72# absolute fs-path which will be prepended to the project path 73#our $projectroot = "/pub/scm"; 74our$projectroot="++GITWEB_PROJECTROOT++"; 75 76# fs traversing limit for getting project list 77# the number is relative to the projectroot 78our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 79 80# string of the home link on top of all pages 81our$home_link_str="++GITWEB_HOME_LINK_STR++"; 82 83# name of your site or organization to appear in page titles 84# replace this with something more descriptive for clearer bookmarks 85our$site_name="++GITWEB_SITENAME++" 86|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 87 88# filename of html text to include at top of each page 89our$site_header="++GITWEB_SITE_HEADER++"; 90# html text to include at home page 91our$home_text="++GITWEB_HOMETEXT++"; 92# filename of html text to include at bottom of each page 93our$site_footer="++GITWEB_SITE_FOOTER++"; 94 95# URI of stylesheets 96our@stylesheets= ("++GITWEB_CSS++"); 97# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 98our$stylesheet=undef; 99# URI of GIT logo (72x27 size) 100our$logo="++GITWEB_LOGO++"; 101# URI of GIT favicon, assumed to be image/png type 102our$favicon="++GITWEB_FAVICON++"; 103# URI of gitweb.js (JavaScript code for gitweb) 104our$javascript="++GITWEB_JS++"; 105 106# URI and label (title) of GIT logo link 107#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 108#our $logo_label = "git documentation"; 109our$logo_url="http://git-scm.com/"; 110our$logo_label="git homepage"; 111 112# source of projects list 113our$projects_list="++GITWEB_LIST++"; 114 115# the width (in characters) of the projects list "Description" column 116our$projects_list_description_width=25; 117 118# default order of projects list 119# valid values are none, project, descr, owner, and age 120our$default_projects_order="project"; 121 122# show repository only if this file exists 123# (only effective if this variable evaluates to true) 124our$export_ok="++GITWEB_EXPORT_OK++"; 125 126# show repository only if this subroutine returns true 127# when given the path to the project, for example: 128# sub { return -e "$_[0]/git-daemon-export-ok"; } 129our$export_auth_hook=undef; 130 131# only allow viewing of repositories also shown on the overview page 132our$strict_export="++GITWEB_STRICT_EXPORT++"; 133 134# list of git base URLs used for URL to where fetch project from, 135# i.e. full URL is "$git_base_url/$project" 136our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 137 138# default blob_plain mimetype and default charset for text/plain blob 139our$default_blob_plain_mimetype='text/plain'; 140our$default_text_plain_charset=undef; 141 142# file to use for guessing MIME types before trying /etc/mime.types 143# (relative to the current git repository) 144our$mimetypes_file=undef; 145 146# assume this charset if line contains non-UTF-8 characters; 147# it should be valid encoding (see Encoding::Supported(3pm) for list), 148# for which encoding all byte sequences are valid, for example 149# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 150# could be even 'utf-8' for the old behavior) 151our$fallback_encoding='latin1'; 152 153# rename detection options for git-diff and git-diff-tree 154# - default is '-M', with the cost proportional to 155# (number of removed files) * (number of new files). 156# - more costly is '-C' (which implies '-M'), with the cost proportional to 157# (number of changed files + number of removed files) * (number of new files) 158# - even more costly is '-C', '--find-copies-harder' with cost 159# (number of files in the original tree) * (number of new files) 160# - one might want to include '-B' option, e.g. '-B', '-M' 161our@diff_opts= ('-M');# taken from git_commit 162 163# Disables features that would allow repository owners to inject script into 164# the gitweb domain. 165our$prevent_xss=0; 166 167# Path to the highlight executable to use (must be the one from 168# http://www.andre-simon.de due to assumptions about parameters and output). 169# Useful if highlight is not installed on your webserver's PATH. 170# [Default: highlight] 171our$highlight_bin="++HIGHLIGHT_BIN++"; 172 173# information about snapshot formats that gitweb is capable of serving 174our%known_snapshot_formats= ( 175# name => { 176# 'display' => display name, 177# 'type' => mime type, 178# 'suffix' => filename suffix, 179# 'format' => --format for git-archive, 180# 'compressor' => [compressor command and arguments] 181# (array reference, optional) 182# 'disabled' => boolean (optional)} 183# 184'tgz'=> { 185'display'=>'tar.gz', 186'type'=>'application/x-gzip', 187'suffix'=>'.tar.gz', 188'format'=>'tar', 189'compressor'=> ['gzip']}, 190 191'tbz2'=> { 192'display'=>'tar.bz2', 193'type'=>'application/x-bzip2', 194'suffix'=>'.tar.bz2', 195'format'=>'tar', 196'compressor'=> ['bzip2']}, 197 198'txz'=> { 199'display'=>'tar.xz', 200'type'=>'application/x-xz', 201'suffix'=>'.tar.xz', 202'format'=>'tar', 203'compressor'=> ['xz'], 204'disabled'=>1}, 205 206'zip'=> { 207'display'=>'zip', 208'type'=>'application/x-zip', 209'suffix'=>'.zip', 210'format'=>'zip'}, 211); 212 213# Aliases so we understand old gitweb.snapshot values in repository 214# configuration. 215our%known_snapshot_format_aliases= ( 216'gzip'=>'tgz', 217'bzip2'=>'tbz2', 218'xz'=>'txz', 219 220# backward compatibility: legacy gitweb config support 221'x-gzip'=>undef,'gz'=>undef, 222'x-bzip2'=>undef,'bz2'=>undef, 223'x-zip'=>undef,''=>undef, 224); 225 226# Pixel sizes for icons and avatars. If the default font sizes or lineheights 227# are changed, it may be appropriate to change these values too via 228# $GITWEB_CONFIG. 229our%avatar_size= ( 230'default'=>16, 231'double'=>32 232); 233 234# Used to set the maximum load that we will still respond to gitweb queries. 235# If server load exceed this value then return "503 server busy" error. 236# If gitweb cannot determined server load, it is taken to be 0. 237# Leave it undefined (or set to 'undef') to turn off load checking. 238our$maxload=300; 239 240# configuration for 'highlight' (http://www.andre-simon.de/) 241# match by basename 242our%highlight_basename= ( 243#'Program' => 'py', 244#'Library' => 'py', 245'SConstruct'=>'py',# SCons equivalent of Makefile 246'Makefile'=>'make', 247); 248# match by extension 249our%highlight_ext= ( 250# main extensions, defining name of syntax; 251# see files in /usr/share/highlight/langDefs/ directory 252map{$_=>$_} 253qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make), 254# alternate extensions, see /etc/highlight/filetypes.conf 255'h'=>'c', 256map{$_=>'sh'}qw(bash zsh ksh), 257map{$_=>'cpp'}qw(cxx c++ cc), 258map{$_=>'php'}qw(php3 php4 php5 phps), 259map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 260map{$_=>'make'}qw(mak mk), 261map{$_=>'xml'}qw(xhtml html htm), 262); 263 264# You define site-wide feature defaults here; override them with 265# $GITWEB_CONFIG as necessary. 266our%feature= ( 267# feature => { 268# 'sub' => feature-sub (subroutine), 269# 'override' => allow-override (boolean), 270# 'default' => [ default options...] (array reference)} 271# 272# if feature is overridable (it means that allow-override has true value), 273# then feature-sub will be called with default options as parameters; 274# return value of feature-sub indicates if to enable specified feature 275# 276# if there is no 'sub' key (no feature-sub), then feature cannot be 277# overridden 278# 279# use gitweb_get_feature(<feature>) to retrieve the <feature> value 280# (an array) or gitweb_check_feature(<feature>) to check if <feature> 281# is enabled 282 283# Enable the 'blame' blob view, showing the last commit that modified 284# each line in the file. This can be very CPU-intensive. 285 286# To enable system wide have in $GITWEB_CONFIG 287# $feature{'blame'}{'default'} = [1]; 288# To have project specific config enable override in $GITWEB_CONFIG 289# $feature{'blame'}{'override'} = 1; 290# and in project config gitweb.blame = 0|1; 291'blame'=> { 292'sub'=>sub{ feature_bool('blame',@_) }, 293'override'=>0, 294'default'=> [0]}, 295 296# Enable the 'snapshot' link, providing a compressed archive of any 297# tree. This can potentially generate high traffic if you have large 298# project. 299 300# Value is a list of formats defined in %known_snapshot_formats that 301# you wish to offer. 302# To disable system wide have in $GITWEB_CONFIG 303# $feature{'snapshot'}{'default'} = []; 304# To have project specific config enable override in $GITWEB_CONFIG 305# $feature{'snapshot'}{'override'} = 1; 306# and in project config, a comma-separated list of formats or "none" 307# to disable. Example: gitweb.snapshot = tbz2,zip; 308'snapshot'=> { 309'sub'=> \&feature_snapshot, 310'override'=>0, 311'default'=> ['tgz']}, 312 313# Enable text search, which will list the commits which match author, 314# committer or commit text to a given string. Enabled by default. 315# Project specific override is not supported. 316'search'=> { 317'override'=>0, 318'default'=> [1]}, 319 320# Enable grep search, which will list the files in currently selected 321# tree containing the given string. Enabled by default. This can be 322# potentially CPU-intensive, of course. 323 324# To enable system wide have in $GITWEB_CONFIG 325# $feature{'grep'}{'default'} = [1]; 326# To have project specific config enable override in $GITWEB_CONFIG 327# $feature{'grep'}{'override'} = 1; 328# and in project config gitweb.grep = 0|1; 329'grep'=> { 330'sub'=>sub{ feature_bool('grep',@_) }, 331'override'=>0, 332'default'=> [1]}, 333 334# Enable the pickaxe search, which will list the commits that modified 335# a given string in a file. This can be practical and quite faster 336# alternative to 'blame', but still potentially CPU-intensive. 337 338# To enable system wide have in $GITWEB_CONFIG 339# $feature{'pickaxe'}{'default'} = [1]; 340# To have project specific config enable override in $GITWEB_CONFIG 341# $feature{'pickaxe'}{'override'} = 1; 342# and in project config gitweb.pickaxe = 0|1; 343'pickaxe'=> { 344'sub'=>sub{ feature_bool('pickaxe',@_) }, 345'override'=>0, 346'default'=> [1]}, 347 348# Enable showing size of blobs in a 'tree' view, in a separate 349# column, similar to what 'ls -l' does. This cost a bit of IO. 350 351# To disable system wide have in $GITWEB_CONFIG 352# $feature{'show-sizes'}{'default'} = [0]; 353# To have project specific config enable override in $GITWEB_CONFIG 354# $feature{'show-sizes'}{'override'} = 1; 355# and in project config gitweb.showsizes = 0|1; 356'show-sizes'=> { 357'sub'=>sub{ feature_bool('showsizes',@_) }, 358'override'=>0, 359'default'=> [1]}, 360 361# Make gitweb use an alternative format of the URLs which can be 362# more readable and natural-looking: project name is embedded 363# directly in the path and the query string contains other 364# auxiliary information. All gitweb installations recognize 365# URL in either format; this configures in which formats gitweb 366# generates links. 367 368# To enable system wide have in $GITWEB_CONFIG 369# $feature{'pathinfo'}{'default'} = [1]; 370# Project specific override is not supported. 371 372# Note that you will need to change the default location of CSS, 373# favicon, logo and possibly other files to an absolute URL. Also, 374# if gitweb.cgi serves as your indexfile, you will need to force 375# $my_uri to contain the script name in your $GITWEB_CONFIG. 376'pathinfo'=> { 377'override'=>0, 378'default'=> [0]}, 379 380# Make gitweb consider projects in project root subdirectories 381# to be forks of existing projects. Given project $projname.git, 382# projects matching $projname/*.git will not be shown in the main 383# projects list, instead a '+' mark will be added to $projname 384# there and a 'forks' view will be enabled for the project, listing 385# all the forks. If project list is taken from a file, forks have 386# to be listed after the main project. 387 388# To enable system wide have in $GITWEB_CONFIG 389# $feature{'forks'}{'default'} = [1]; 390# Project specific override is not supported. 391'forks'=> { 392'override'=>0, 393'default'=> [0]}, 394 395# Insert custom links to the action bar of all project pages. 396# This enables you mainly to link to third-party scripts integrating 397# into gitweb; e.g. git-browser for graphical history representation 398# or custom web-based repository administration interface. 399 400# The 'default' value consists of a list of triplets in the form 401# (label, link, position) where position is the label after which 402# to insert the link and link is a format string where %n expands 403# to the project name, %f to the project path within the filesystem, 404# %h to the current hash (h gitweb parameter) and %b to the current 405# hash base (hb gitweb parameter); %% expands to %. 406 407# To enable system wide have in $GITWEB_CONFIG e.g. 408# $feature{'actions'}{'default'} = [('graphiclog', 409# '/git-browser/by-commit.html?r=%n', 'summary')]; 410# Project specific override is not supported. 411'actions'=> { 412'override'=>0, 413'default'=> []}, 414 415# Allow gitweb scan project content tags described in ctags/ 416# of project repository, and display the popular Web 2.0-ish 417# "tag cloud" near the project list. Note that this is something 418# COMPLETELY different from the normal Git tags. 419 420# gitweb by itself can show existing tags, but it does not handle 421# tagging itself; you need an external application for that. 422# For an example script, check Girocco's cgi/tagproj.cgi. 423# You may want to install the HTML::TagCloud Perl module to get 424# a pretty tag cloud instead of just a list of tags. 425 426# To enable system wide have in $GITWEB_CONFIG 427# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 428# Project specific override is not supported. 429'ctags'=> { 430'override'=>0, 431'default'=> [0]}, 432 433# The maximum number of patches in a patchset generated in patch 434# view. Set this to 0 or undef to disable patch view, or to a 435# negative number to remove any limit. 436 437# To disable system wide have in $GITWEB_CONFIG 438# $feature{'patches'}{'default'} = [0]; 439# To have project specific config enable override in $GITWEB_CONFIG 440# $feature{'patches'}{'override'} = 1; 441# and in project config gitweb.patches = 0|n; 442# where n is the maximum number of patches allowed in a patchset. 443'patches'=> { 444'sub'=> \&feature_patches, 445'override'=>0, 446'default'=> [16]}, 447 448# Avatar support. When this feature is enabled, views such as 449# shortlog or commit will display an avatar associated with 450# the email of the committer(s) and/or author(s). 451 452# Currently available providers are gravatar and picon. 453# If an unknown provider is specified, the feature is disabled. 454 455# Gravatar depends on Digest::MD5. 456# Picon currently relies on the indiana.edu database. 457 458# To enable system wide have in $GITWEB_CONFIG 459# $feature{'avatar'}{'default'} = ['<provider>']; 460# where <provider> is either gravatar or picon. 461# To have project specific config enable override in $GITWEB_CONFIG 462# $feature{'avatar'}{'override'} = 1; 463# and in project config gitweb.avatar = <provider>; 464'avatar'=> { 465'sub'=> \&feature_avatar, 466'override'=>0, 467'default'=> ['']}, 468 469# Enable displaying how much time and how many git commands 470# it took to generate and display page. Disabled by default. 471# Project specific override is not supported. 472'timed'=> { 473'override'=>0, 474'default'=> [0]}, 475 476# Enable turning some links into links to actions which require 477# JavaScript to run (like 'blame_incremental'). Not enabled by 478# default. Project specific override is currently not supported. 479'javascript-actions'=> { 480'override'=>0, 481'default'=> [0]}, 482 483# Syntax highlighting support. This is based on Daniel Svensson's 484# and Sham Chukoury's work in gitweb-xmms2.git. 485# It requires the 'highlight' program present in $PATH, 486# and therefore is disabled by default. 487 488# To enable system wide have in $GITWEB_CONFIG 489# $feature{'highlight'}{'default'} = [1]; 490 491'highlight'=> { 492'sub'=>sub{ feature_bool('highlight',@_) }, 493'override'=>0, 494'default'=> [0]}, 495 496# Enable displaying of remote heads in the heads list 497 498# To enable system wide have in $GITWEB_CONFIG 499# $feature{'remote_heads'}{'default'} = [1]; 500# To have project specific config enable override in $GITWEB_CONFIG 501# $feature{'remote_heads'}{'override'} = 1; 502# and in project config gitweb.remote_heads = 0|1; 503'remote_heads'=> { 504'sub'=>sub{ feature_bool('remote_heads',@_) }, 505'override'=>0, 506'default'=> [0]}, 507); 508 509sub gitweb_get_feature { 510my($name) =@_; 511return unlessexists$feature{$name}; 512my($sub,$override,@defaults) = ( 513$feature{$name}{'sub'}, 514$feature{$name}{'override'}, 515@{$feature{$name}{'default'}}); 516# project specific override is possible only if we have project 517our$git_dir;# global variable, declared later 518if(!$override|| !defined$git_dir) { 519return@defaults; 520} 521if(!defined$sub) { 522warn"feature$nameis not overridable"; 523return@defaults; 524} 525return$sub->(@defaults); 526} 527 528# A wrapper to check if a given feature is enabled. 529# With this, you can say 530# 531# my $bool_feat = gitweb_check_feature('bool_feat'); 532# gitweb_check_feature('bool_feat') or somecode; 533# 534# instead of 535# 536# my ($bool_feat) = gitweb_get_feature('bool_feat'); 537# (gitweb_get_feature('bool_feat'))[0] or somecode; 538# 539sub gitweb_check_feature { 540return(gitweb_get_feature(@_))[0]; 541} 542 543 544sub feature_bool { 545my$key=shift; 546my($val) = git_get_project_config($key,'--bool'); 547 548if(!defined$val) { 549return($_[0]); 550}elsif($valeq'true') { 551return(1); 552}elsif($valeq'false') { 553return(0); 554} 555} 556 557sub feature_snapshot { 558my(@fmts) =@_; 559 560my($val) = git_get_project_config('snapshot'); 561 562if($val) { 563@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 564} 565 566return@fmts; 567} 568 569sub feature_patches { 570my@val= (git_get_project_config('patches','--int')); 571 572if(@val) { 573return@val; 574} 575 576return($_[0]); 577} 578 579sub feature_avatar { 580my@val= (git_get_project_config('avatar')); 581 582return@val?@val:@_; 583} 584 585# checking HEAD file with -e is fragile if the repository was 586# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 587# and then pruned. 588sub check_head_link { 589my($dir) =@_; 590my$headfile="$dir/HEAD"; 591return((-e $headfile) || 592(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 593} 594 595sub check_export_ok { 596my($dir) =@_; 597return(check_head_link($dir) && 598(!$export_ok|| -e "$dir/$export_ok") && 599(!$export_auth_hook||$export_auth_hook->($dir))); 600} 601 602# process alternate names for backward compatibility 603# filter out unsupported (unknown) snapshot formats 604sub filter_snapshot_fmts { 605my@fmts=@_; 606 607@fmts=map{ 608exists$known_snapshot_format_aliases{$_} ? 609$known_snapshot_format_aliases{$_} :$_}@fmts; 610@fmts=grep{ 611exists$known_snapshot_formats{$_} && 612!$known_snapshot_formats{$_}{'disabled'}}@fmts; 613} 614 615# If it is set to code reference, it is code that it is to be run once per 616# request, allowing updating configurations that change with each request, 617# while running other code in config file only once. 618# 619# Otherwise, if it is false then gitweb would process config file only once; 620# if it is true then gitweb config would be run for each request. 621our$per_request_config=1; 622 623our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 624sub evaluate_gitweb_config { 625our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 626our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 627# die if there are errors parsing config file 628if(-e $GITWEB_CONFIG) { 629do$GITWEB_CONFIG; 630die$@if$@; 631}elsif(-e $GITWEB_CONFIG_SYSTEM) { 632do$GITWEB_CONFIG_SYSTEM; 633die$@if$@; 634} 635} 636 637# Get loadavg of system, to compare against $maxload. 638# Currently it requires '/proc/loadavg' present to get loadavg; 639# if it is not present it returns 0, which means no load checking. 640sub get_loadavg { 641if( -e '/proc/loadavg'){ 642open my$fd,'<','/proc/loadavg' 643orreturn0; 644my@load=split(/\s+/,scalar<$fd>); 645close$fd; 646 647# The first three columns measure CPU and IO utilization of the last one, 648# five, and 10 minute periods. The fourth column shows the number of 649# currently running processes and the total number of processes in the m/n 650# format. The last column displays the last process ID used. 651return$load[0] ||0; 652} 653# additional checks for load average should go here for things that don't export 654# /proc/loadavg 655 656return0; 657} 658 659# version of the core git binary 660our$git_version; 661sub evaluate_git_version { 662our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 663$number_of_git_cmds++; 664} 665 666sub check_loadavg { 667if(defined$maxload&& get_loadavg() >$maxload) { 668 die_error(503,"The load average on the server is too high"); 669} 670} 671 672# ====================================================================== 673# input validation and dispatch 674 675# input parameters can be collected from a variety of sources (presently, CGI 676# and PATH_INFO), so we define an %input_params hash that collects them all 677# together during validation: this allows subsequent uses (e.g. href()) to be 678# agnostic of the parameter origin 679 680our%input_params= (); 681 682# input parameters are stored with the long parameter name as key. This will 683# also be used in the href subroutine to convert parameters to their CGI 684# equivalent, and since the href() usage is the most frequent one, we store 685# the name -> CGI key mapping here, instead of the reverse. 686# 687# XXX: Warning: If you touch this, check the search form for updating, 688# too. 689 690our@cgi_param_mapping= ( 691 project =>"p", 692 action =>"a", 693 file_name =>"f", 694 file_parent =>"fp", 695 hash =>"h", 696 hash_parent =>"hp", 697 hash_base =>"hb", 698 hash_parent_base =>"hpb", 699 page =>"pg", 700 order =>"o", 701 searchtext =>"s", 702 searchtype =>"st", 703 snapshot_format =>"sf", 704 extra_options =>"opt", 705 search_use_regexp =>"sr", 706# this must be last entry (for manipulation from JavaScript) 707 javascript =>"js" 708); 709our%cgi_param_mapping=@cgi_param_mapping; 710 711# we will also need to know the possible actions, for validation 712our%actions= ( 713"blame"=> \&git_blame, 714"blame_incremental"=> \&git_blame_incremental, 715"blame_data"=> \&git_blame_data, 716"blobdiff"=> \&git_blobdiff, 717"blobdiff_plain"=> \&git_blobdiff_plain, 718"blob"=> \&git_blob, 719"blob_plain"=> \&git_blob_plain, 720"commitdiff"=> \&git_commitdiff, 721"commitdiff_plain"=> \&git_commitdiff_plain, 722"commit"=> \&git_commit, 723"forks"=> \&git_forks, 724"heads"=> \&git_heads, 725"history"=> \&git_history, 726"log"=> \&git_log, 727"patch"=> \&git_patch, 728"patches"=> \&git_patches, 729"remotes"=> \&git_remotes, 730"rss"=> \&git_rss, 731"atom"=> \&git_atom, 732"search"=> \&git_search, 733"search_help"=> \&git_search_help, 734"shortlog"=> \&git_shortlog, 735"summary"=> \&git_summary, 736"tag"=> \&git_tag, 737"tags"=> \&git_tags, 738"tree"=> \&git_tree, 739"snapshot"=> \&git_snapshot, 740"object"=> \&git_object, 741# those below don't need $project 742"opml"=> \&git_opml, 743"project_list"=> \&git_project_list, 744"project_index"=> \&git_project_index, 745); 746 747# finally, we have the hash of allowed extra_options for the commands that 748# allow them 749our%allowed_options= ( 750"--no-merges"=> [qw(rss atom log shortlog history)], 751); 752 753# fill %input_params with the CGI parameters. All values except for 'opt' 754# should be single values, but opt can be an array. We should probably 755# build an array of parameters that can be multi-valued, but since for the time 756# being it's only this one, we just single it out 757sub evaluate_query_params { 758our$cgi; 759 760while(my($name,$symbol) =each%cgi_param_mapping) { 761if($symboleq'opt') { 762$input_params{$name} = [$cgi->param($symbol) ]; 763}else{ 764$input_params{$name} =$cgi->param($symbol); 765} 766} 767} 768 769# now read PATH_INFO and update the parameter list for missing parameters 770sub evaluate_path_info { 771return ifdefined$input_params{'project'}; 772return if!$path_info; 773$path_info=~ s,^/+,,; 774return if!$path_info; 775 776# find which part of PATH_INFO is project 777my$project=$path_info; 778$project=~ s,/+$,,; 779while($project&& !check_head_link("$projectroot/$project")) { 780$project=~ s,/*[^/]*$,,; 781} 782return unless$project; 783$input_params{'project'} =$project; 784 785# do not change any parameters if an action is given using the query string 786return if$input_params{'action'}; 787$path_info=~ s,^\Q$project\E/*,,; 788 789# next, check if we have an action 790my$action=$path_info; 791$action=~ s,/.*$,,; 792if(exists$actions{$action}) { 793$path_info=~ s,^$action/*,,; 794$input_params{'action'} =$action; 795} 796 797# list of actions that want hash_base instead of hash, but can have no 798# pathname (f) parameter 799my@wants_base= ( 800'tree', 801'history', 802); 803 804# we want to catch, among others 805# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 806my($parentrefname,$parentpathname,$refname,$pathname) = 807($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 808 809# first, analyze the 'current' part 810if(defined$pathname) { 811# we got "branch:filename" or "branch:dir/" 812# we could use git_get_type(branch:pathname), but: 813# - it needs $git_dir 814# - it does a git() call 815# - the convention of terminating directories with a slash 816# makes it superfluous 817# - embedding the action in the PATH_INFO would make it even 818# more superfluous 819$pathname=~ s,^/+,,; 820if(!$pathname||substr($pathname, -1)eq"/") { 821$input_params{'action'} ||="tree"; 822$pathname=~ s,/$,,; 823}else{ 824# the default action depends on whether we had parent info 825# or not 826if($parentrefname) { 827$input_params{'action'} ||="blobdiff_plain"; 828}else{ 829$input_params{'action'} ||="blob_plain"; 830} 831} 832$input_params{'hash_base'} ||=$refname; 833$input_params{'file_name'} ||=$pathname; 834}elsif(defined$refname) { 835# we got "branch". In this case we have to choose if we have to 836# set hash or hash_base. 837# 838# Most of the actions without a pathname only want hash to be 839# set, except for the ones specified in @wants_base that want 840# hash_base instead. It should also be noted that hand-crafted 841# links having 'history' as an action and no pathname or hash 842# set will fail, but that happens regardless of PATH_INFO. 843if(defined$parentrefname) { 844# if there is parent let the default be 'shortlog' action 845# (for http://git.example.com/repo.git/A..B links); if there 846# is no parent, dispatch will detect type of object and set 847# action appropriately if required (if action is not set) 848$input_params{'action'} ||="shortlog"; 849} 850if($input_params{'action'} && 851grep{$_eq$input_params{'action'} }@wants_base) { 852$input_params{'hash_base'} ||=$refname; 853}else{ 854$input_params{'hash'} ||=$refname; 855} 856} 857 858# next, handle the 'parent' part, if present 859if(defined$parentrefname) { 860# a missing pathspec defaults to the 'current' filename, allowing e.g. 861# someproject/blobdiff/oldrev..newrev:/filename 862if($parentpathname) { 863$parentpathname=~ s,^/+,,; 864$parentpathname=~ s,/$,,; 865$input_params{'file_parent'} ||=$parentpathname; 866}else{ 867$input_params{'file_parent'} ||=$input_params{'file_name'}; 868} 869# we assume that hash_parent_base is wanted if a path was specified, 870# or if the action wants hash_base instead of hash 871if(defined$input_params{'file_parent'} || 872grep{$_eq$input_params{'action'} }@wants_base) { 873$input_params{'hash_parent_base'} ||=$parentrefname; 874}else{ 875$input_params{'hash_parent'} ||=$parentrefname; 876} 877} 878 879# for the snapshot action, we allow URLs in the form 880# $project/snapshot/$hash.ext 881# where .ext determines the snapshot and gets removed from the 882# passed $refname to provide the $hash. 883# 884# To be able to tell that $refname includes the format extension, we 885# require the following two conditions to be satisfied: 886# - the hash input parameter MUST have been set from the $refname part 887# of the URL (i.e. they must be equal) 888# - the snapshot format MUST NOT have been defined already (e.g. from 889# CGI parameter sf) 890# It's also useless to try any matching unless $refname has a dot, 891# so we check for that too 892if(defined$input_params{'action'} && 893$input_params{'action'}eq'snapshot'&& 894defined$refname&&index($refname,'.') != -1&& 895$refnameeq$input_params{'hash'} && 896!defined$input_params{'snapshot_format'}) { 897# We loop over the known snapshot formats, checking for 898# extensions. Allowed extensions are both the defined suffix 899# (which includes the initial dot already) and the snapshot 900# format key itself, with a prepended dot 901while(my($fmt,$opt) =each%known_snapshot_formats) { 902my$hash=$refname; 903unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 904next; 905} 906my$sfx=$1; 907# a valid suffix was found, so set the snapshot format 908# and reset the hash parameter 909$input_params{'snapshot_format'} =$fmt; 910$input_params{'hash'} =$hash; 911# we also set the format suffix to the one requested 912# in the URL: this way a request for e.g. .tgz returns 913# a .tgz instead of a .tar.gz 914$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 915last; 916} 917} 918} 919 920our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 921$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 922$searchtext,$search_regexp); 923sub evaluate_and_validate_params { 924our$action=$input_params{'action'}; 925if(defined$action) { 926if(!validate_action($action)) { 927 die_error(400,"Invalid action parameter"); 928} 929} 930 931# parameters which are pathnames 932our$project=$input_params{'project'}; 933if(defined$project) { 934if(!validate_project($project)) { 935undef$project; 936 die_error(404,"No such project"); 937} 938} 939 940our$file_name=$input_params{'file_name'}; 941if(defined$file_name) { 942if(!validate_pathname($file_name)) { 943 die_error(400,"Invalid file parameter"); 944} 945} 946 947our$file_parent=$input_params{'file_parent'}; 948if(defined$file_parent) { 949if(!validate_pathname($file_parent)) { 950 die_error(400,"Invalid file parent parameter"); 951} 952} 953 954# parameters which are refnames 955our$hash=$input_params{'hash'}; 956if(defined$hash) { 957if(!validate_refname($hash)) { 958 die_error(400,"Invalid hash parameter"); 959} 960} 961 962our$hash_parent=$input_params{'hash_parent'}; 963if(defined$hash_parent) { 964if(!validate_refname($hash_parent)) { 965 die_error(400,"Invalid hash parent parameter"); 966} 967} 968 969our$hash_base=$input_params{'hash_base'}; 970if(defined$hash_base) { 971if(!validate_refname($hash_base)) { 972 die_error(400,"Invalid hash base parameter"); 973} 974} 975 976our@extra_options= @{$input_params{'extra_options'}}; 977# @extra_options is always defined, since it can only be (currently) set from 978# CGI, and $cgi->param() returns the empty array in array context if the param 979# is not set 980foreachmy$opt(@extra_options) { 981if(not exists$allowed_options{$opt}) { 982 die_error(400,"Invalid option parameter"); 983} 984if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 985 die_error(400,"Invalid option parameter for this action"); 986} 987} 988 989our$hash_parent_base=$input_params{'hash_parent_base'}; 990if(defined$hash_parent_base) { 991if(!validate_refname($hash_parent_base)) { 992 die_error(400,"Invalid hash parent base parameter"); 993} 994} 995 996# other parameters 997our$page=$input_params{'page'}; 998if(defined$page) { 999if($page=~m/[^0-9]/) {1000 die_error(400,"Invalid page parameter");1001}1002}10031004our$searchtype=$input_params{'searchtype'};1005if(defined$searchtype) {1006if($searchtype=~m/[^a-z]/) {1007 die_error(400,"Invalid searchtype parameter");1008}1009}10101011our$search_use_regexp=$input_params{'search_use_regexp'};10121013our$searchtext=$input_params{'searchtext'};1014our$search_regexp;1015if(defined$searchtext) {1016if(length($searchtext) <2) {1017 die_error(403,"At least two characters are required for search parameter");1018}1019$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1020}1021}10221023# path to the current git repository1024our$git_dir;1025sub evaluate_git_dir {1026our$git_dir="$projectroot/$project"if$project;1027}10281029our(@snapshot_fmts,$git_avatar);1030sub configure_gitweb_features {1031# list of supported snapshot formats1032our@snapshot_fmts= gitweb_get_feature('snapshot');1033@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10341035# check that the avatar feature is set to a known provider name,1036# and for each provider check if the dependencies are satisfied.1037# if the provider name is invalid or the dependencies are not met,1038# reset $git_avatar to the empty string.1039our($git_avatar) = gitweb_get_feature('avatar');1040if($git_avatareq'gravatar') {1041$git_avatar=''unless(eval{require Digest::MD5;1; });1042}elsif($git_avatareq'picon') {1043# no dependencies1044}else{1045$git_avatar='';1046}1047}10481049# custom error handler: 'die <message>' is Internal Server Error1050sub handle_errors_html {1051my$msg=shift;# it is already HTML escaped10521053# to avoid infinite loop where error occurs in die_error,1054# change handler to default handler, disabling handle_errors_html1055 set_message("Error occured when inside die_error:\n$msg");10561057# you cannot jump out of die_error when called as error handler;1058# the subroutine set via CGI::Carp::set_message is called _after_1059# HTTP headers are already written, so it cannot write them itself1060 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1061}1062set_message(\&handle_errors_html);10631064# dispatch1065sub dispatch {1066if(!defined$action) {1067if(defined$hash) {1068$action= git_get_type($hash);1069}elsif(defined$hash_base&&defined$file_name) {1070$action= git_get_type("$hash_base:$file_name");1071}elsif(defined$project) {1072$action='summary';1073}else{1074$action='project_list';1075}1076}1077if(!defined($actions{$action})) {1078 die_error(400,"Unknown action");1079}1080if($action!~m/^(?:opml|project_list|project_index)$/&&1081!$project) {1082 die_error(400,"Project needed");1083}1084$actions{$action}->();1085}10861087sub reset_timer {1088our$t0= [ gettimeofday() ]1089ifdefined$t0;1090our$number_of_git_cmds=0;1091}10921093our$first_request=1;1094sub run_request {1095 reset_timer();10961097 evaluate_uri();1098if($first_request) {1099 evaluate_gitweb_config();1100 evaluate_git_version();1101}1102if($per_request_config) {1103if(ref($per_request_config)eq'CODE') {1104$per_request_config->();1105}elsif(!$first_request) {1106 evaluate_gitweb_config();1107}1108}1109 check_loadavg();11101111# $projectroot and $projects_list might be set in gitweb config file1112$projects_list||=$projectroot;11131114 evaluate_query_params();1115 evaluate_path_info();1116 evaluate_and_validate_params();1117 evaluate_git_dir();11181119 configure_gitweb_features();11201121 dispatch();1122}11231124our$is_last_request=sub{1};1125our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1126our$CGI='CGI';1127our$cgi;1128sub configure_as_fcgi {1129require CGI::Fast;1130our$CGI='CGI::Fast';11311132my$request_number=0;1133# let each child service 100 requests1134our$is_last_request=sub{ ++$request_number>100};1135}1136sub evaluate_argv {1137my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1138 configure_as_fcgi()1139if$script_name=~/\.fcgi$/;11401141return unless(@ARGV);11421143require Getopt::Long;1144 Getopt::Long::GetOptions(1145'fastcgi|fcgi|f'=> \&configure_as_fcgi,1146'nproc|n=i'=>sub{1147my($arg,$val) =@_;1148return unlesseval{require FCGI::ProcManager;1; };1149my$proc_manager= FCGI::ProcManager->new({1150 n_processes =>$val,1151});1152our$pre_listen_hook=sub{$proc_manager->pm_manage() };1153our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1154our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1155},1156);1157}11581159sub run {1160 evaluate_argv();11611162$first_request=1;1163$pre_listen_hook->()1164if$pre_listen_hook;11651166 REQUEST:1167while($cgi=$CGI->new()) {1168$pre_dispatch_hook->()1169if$pre_dispatch_hook;11701171 run_request();11721173$post_dispatch_hook->()1174if$post_dispatch_hook;1175$first_request=0;11761177last REQUEST if($is_last_request->());1178}11791180 DONE_GITWEB:11811;1182}11831184run();11851186if(defined caller) {1187# wrapped in a subroutine processing requests,1188# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1189return;1190}else{1191# pure CGI script, serving single request1192exit;1193}11941195## ======================================================================1196## action links11971198# possible values of extra options1199# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1200# -replay => 1 - start from a current view (replay with modifications)1201# -path_info => 0|1 - don't use/use path_info URL (if possible)1202sub href {1203my%params=@_;1204# default is to use -absolute url() i.e. $my_uri1205my$href=$params{-full} ?$my_url:$my_uri;12061207$params{'project'} =$projectunlessexists$params{'project'};12081209if($params{-replay}) {1210while(my($name,$symbol) =each%cgi_param_mapping) {1211if(!exists$params{$name}) {1212$params{$name} =$input_params{$name};1213}1214}1215}12161217my$use_pathinfo= gitweb_check_feature('pathinfo');1218if(defined$params{'project'} &&1219(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1220# try to put as many parameters as possible in PATH_INFO:1221# - project name1222# - action1223# - hash_parent or hash_parent_base:/file_parent1224# - hash or hash_base:/filename1225# - the snapshot_format as an appropriate suffix12261227# When the script is the root DirectoryIndex for the domain,1228# $href here would be something like http://gitweb.example.com/1229# Thus, we strip any trailing / from $href, to spare us double1230# slashes in the final URL1231$href=~ s,/$,,;12321233# Then add the project name, if present1234$href.="/".esc_path_info($params{'project'});1235delete$params{'project'};12361237# since we destructively absorb parameters, we keep this1238# boolean that remembers if we're handling a snapshot1239my$is_snapshot=$params{'action'}eq'snapshot';12401241# Summary just uses the project path URL, any other action is1242# added to the URL1243if(defined$params{'action'}) {1244$href.="/".esc_path_info($params{'action'})1245unless$params{'action'}eq'summary';1246delete$params{'action'};1247}12481249# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1250# stripping nonexistent or useless pieces1251$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1252||$params{'hash_parent'} ||$params{'hash'});1253if(defined$params{'hash_base'}) {1254if(defined$params{'hash_parent_base'}) {1255$href.= esc_path_info($params{'hash_parent_base'});1256# skip the file_parent if it's the same as the file_name1257if(defined$params{'file_parent'}) {1258if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1259delete$params{'file_parent'};1260}elsif($params{'file_parent'} !~/\.\./) {1261$href.=":/".esc_path_info($params{'file_parent'});1262delete$params{'file_parent'};1263}1264}1265$href.="..";1266delete$params{'hash_parent'};1267delete$params{'hash_parent_base'};1268}elsif(defined$params{'hash_parent'}) {1269$href.= esc_path_info($params{'hash_parent'})."..";1270delete$params{'hash_parent'};1271}12721273$href.= esc_path_info($params{'hash_base'});1274if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1275$href.=":/".esc_path_info($params{'file_name'});1276delete$params{'file_name'};1277}1278delete$params{'hash'};1279delete$params{'hash_base'};1280}elsif(defined$params{'hash'}) {1281$href.= esc_path_info($params{'hash'});1282delete$params{'hash'};1283}12841285# If the action was a snapshot, we can absorb the1286# snapshot_format parameter too1287if($is_snapshot) {1288my$fmt=$params{'snapshot_format'};1289# snapshot_format should always be defined when href()1290# is called, but just in case some code forgets, we1291# fall back to the default1292$fmt||=$snapshot_fmts[0];1293$href.=$known_snapshot_formats{$fmt}{'suffix'};1294delete$params{'snapshot_format'};1295}1296}12971298# now encode the parameters explicitly1299my@result= ();1300for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1301my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1302if(defined$params{$name}) {1303if(ref($params{$name})eq"ARRAY") {1304foreachmy$par(@{$params{$name}}) {1305push@result,$symbol."=". esc_param($par);1306}1307}else{1308push@result,$symbol."=". esc_param($params{$name});1309}1310}1311}1312$href.="?".join(';',@result)ifscalar@result;13131314# final transformation: trailing spaces must be escaped (URI-encoded)1315$href=~s/(\s+)$/CGI::escape($1)/e;13161317return$href;1318}131913201321## ======================================================================1322## validation, quoting/unquoting and escaping13231324sub validate_action {1325my$input=shift||returnundef;1326returnundefunlessexists$actions{$input};1327return$input;1328}13291330sub validate_project {1331my$input=shift||returnundef;1332if(!validate_pathname($input) ||1333!(-d "$projectroot/$input") ||1334!check_export_ok("$projectroot/$input") ||1335($strict_export&& !project_in_list($input))) {1336returnundef;1337}else{1338return$input;1339}1340}13411342sub validate_pathname {1343my$input=shift||returnundef;13441345# no '.' or '..' as elements of path, i.e. no '.' nor '..'1346# at the beginning, at the end, and between slashes.1347# also this catches doubled slashes1348if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1349returnundef;1350}1351# no null characters1352if($input=~m!\0!) {1353returnundef;1354}1355return$input;1356}13571358sub validate_refname {1359my$input=shift||returnundef;13601361# textual hashes are O.K.1362if($input=~m/^[0-9a-fA-F]{40}$/) {1363return$input;1364}1365# it must be correct pathname1366$input= validate_pathname($input)1367orreturnundef;1368# restrictions on ref name according to git-check-ref-format1369if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1370returnundef;1371}1372return$input;1373}13741375# decode sequences of octets in utf8 into Perl's internal form,1376# which is utf-8 with utf8 flag set if needed. gitweb writes out1377# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1378sub to_utf8 {1379my$str=shift;1380returnundefunlessdefined$str;1381if(utf8::valid($str)) {1382 utf8::decode($str);1383return$str;1384}else{1385return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1386}1387}13881389# quote unsafe chars, but keep the slash, even when it's not1390# correct, but quoted slashes look too horrible in bookmarks1391sub esc_param {1392my$str=shift;1393returnundefunlessdefined$str;1394$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1395$str=~s/ /\+/g;1396return$str;1397}13981399# the quoting rules for path_info fragment are slightly different1400sub esc_path_info {1401my$str=shift;1402returnundefunlessdefined$str;14031404# path_info doesn't treat '+' as space (specially), but '?' must be escaped1405$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;14061407return$str;1408}14091410# quote unsafe chars in whole URL, so some characters cannot be quoted1411sub esc_url {1412my$str=shift;1413returnundefunlessdefined$str;1414$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1415$str=~s/ /\+/g;1416return$str;1417}14181419# quote unsafe characters in HTML attributes1420sub esc_attr {14211422# for XHTML conformance escaping '"' to '"' is not enough1423return esc_html(@_);1424}14251426# replace invalid utf8 character with SUBSTITUTION sequence1427sub esc_html {1428my$str=shift;1429my%opts=@_;14301431returnundefunlessdefined$str;14321433$str= to_utf8($str);1434$str=$cgi->escapeHTML($str);1435if($opts{'-nbsp'}) {1436$str=~s/ / /g;1437}1438$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1439return$str;1440}14411442# quote control characters and escape filename to HTML1443sub esc_path {1444my$str=shift;1445my%opts=@_;14461447returnundefunlessdefined$str;14481449$str= to_utf8($str);1450$str=$cgi->escapeHTML($str);1451if($opts{'-nbsp'}) {1452$str=~s/ / /g;1453}1454$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1455return$str;1456}14571458# Make control characters "printable", using character escape codes (CEC)1459sub quot_cec {1460my$cntrl=shift;1461my%opts=@_;1462my%es= (# character escape codes, aka escape sequences1463"\t"=>'\t',# tab (HT)1464"\n"=>'\n',# line feed (LF)1465"\r"=>'\r',# carrige return (CR)1466"\f"=>'\f',# form feed (FF)1467"\b"=>'\b',# backspace (BS)1468"\a"=>'\a',# alarm (bell) (BEL)1469"\e"=>'\e',# escape (ESC)1470"\013"=>'\v',# vertical tab (VT)1471"\000"=>'\0',# nul character (NUL)1472);1473my$chr= ( (exists$es{$cntrl})1474?$es{$cntrl}1475:sprintf('\%2x',ord($cntrl)) );1476if($opts{-nohtml}) {1477return$chr;1478}else{1479return"<span class=\"cntrl\">$chr</span>";1480}1481}14821483# Alternatively use unicode control pictures codepoints,1484# Unicode "printable representation" (PR)1485sub quot_upr {1486my$cntrl=shift;1487my%opts=@_;14881489my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1490if($opts{-nohtml}) {1491return$chr;1492}else{1493return"<span class=\"cntrl\">$chr</span>";1494}1495}14961497# git may return quoted and escaped filenames1498sub unquote {1499my$str=shift;15001501sub unq {1502my$seq=shift;1503my%es= (# character escape codes, aka escape sequences1504't'=>"\t",# tab (HT, TAB)1505'n'=>"\n",# newline (NL)1506'r'=>"\r",# return (CR)1507'f'=>"\f",# form feed (FF)1508'b'=>"\b",# backspace (BS)1509'a'=>"\a",# alarm (bell) (BEL)1510'e'=>"\e",# escape (ESC)1511'v'=>"\013",# vertical tab (VT)1512);15131514if($seq=~m/^[0-7]{1,3}$/) {1515# octal char sequence1516returnchr(oct($seq));1517}elsif(exists$es{$seq}) {1518# C escape sequence, aka character escape code1519return$es{$seq};1520}1521# quoted ordinary character1522return$seq;1523}15241525if($str=~m/^"(.*)"$/) {1526# needs unquoting1527$str=$1;1528$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1529}1530return$str;1531}15321533# escape tabs (convert tabs to spaces)1534sub untabify {1535my$line=shift;15361537while((my$pos=index($line,"\t")) != -1) {1538if(my$count= (8- ($pos%8))) {1539my$spaces=' ' x $count;1540$line=~s/\t/$spaces/;1541}1542}15431544return$line;1545}15461547sub project_in_list {1548my$project=shift;1549my@list= git_get_projects_list();1550return@list&&scalar(grep{$_->{'path'}eq$project}@list);1551}15521553## ----------------------------------------------------------------------1554## HTML aware string manipulation15551556# Try to chop given string on a word boundary between position1557# $len and $len+$add_len. If there is no word boundary there,1558# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1559# (marking chopped part) would be longer than given string.1560sub chop_str {1561my$str=shift;1562my$len=shift;1563my$add_len=shift||10;1564my$where=shift||'right';# 'left' | 'center' | 'right'15651566# Make sure perl knows it is utf8 encoded so we don't1567# cut in the middle of a utf8 multibyte char.1568$str= to_utf8($str);15691570# allow only $len chars, but don't cut a word if it would fit in $add_len1571# if it doesn't fit, cut it if it's still longer than the dots we would add1572# remove chopped character entities entirely15731574# when chopping in the middle, distribute $len into left and right part1575# return early if chopping wouldn't make string shorter1576if($whereeq'center') {1577return$strif($len+5>=length($str));# filler is length 51578$len=int($len/2);1579}else{1580return$strif($len+4>=length($str));# filler is length 41581}15821583# regexps: ending and beginning with word part up to $add_len1584my$endre=qr/.{$len}\w{0,$add_len}/;1585my$begre=qr/\w{0,$add_len}.{$len}/;15861587if($whereeq'left') {1588$str=~m/^(.*?)($begre)$/;1589my($lead,$body) = ($1,$2);1590if(length($lead) >4) {1591$lead=" ...";1592}1593return"$lead$body";15941595}elsif($whereeq'center') {1596$str=~m/^($endre)(.*)$/;1597my($left,$str) = ($1,$2);1598$str=~m/^(.*?)($begre)$/;1599my($mid,$right) = ($1,$2);1600if(length($mid) >5) {1601$mid=" ... ";1602}1603return"$left$mid$right";16041605}else{1606$str=~m/^($endre)(.*)$/;1607my$body=$1;1608my$tail=$2;1609if(length($tail) >4) {1610$tail="... ";1611}1612return"$body$tail";1613}1614}16151616# takes the same arguments as chop_str, but also wraps a <span> around the1617# result with a title attribute if it does get chopped. Additionally, the1618# string is HTML-escaped.1619sub chop_and_escape_str {1620my($str) =@_;16211622my$chopped= chop_str(@_);1623if($choppedeq$str) {1624return esc_html($chopped);1625}else{1626$str=~s/[[:cntrl:]]/?/g;1627return$cgi->span({-title=>$str}, esc_html($chopped));1628}1629}16301631## ----------------------------------------------------------------------1632## functions returning short strings16331634# CSS class for given age value (in seconds)1635sub age_class {1636my$age=shift;16371638if(!defined$age) {1639return"noage";1640}elsif($age<60*60*2) {1641return"age0";1642}elsif($age<60*60*24*2) {1643return"age1";1644}else{1645return"age2";1646}1647}16481649# convert age in seconds to "nn units ago" string1650sub age_string {1651my$age=shift;1652my$age_str;16531654if($age>60*60*24*365*2) {1655$age_str= (int$age/60/60/24/365);1656$age_str.=" years ago";1657}elsif($age>60*60*24*(365/12)*2) {1658$age_str=int$age/60/60/24/(365/12);1659$age_str.=" months ago";1660}elsif($age>60*60*24*7*2) {1661$age_str=int$age/60/60/24/7;1662$age_str.=" weeks ago";1663}elsif($age>60*60*24*2) {1664$age_str=int$age/60/60/24;1665$age_str.=" days ago";1666}elsif($age>60*60*2) {1667$age_str=int$age/60/60;1668$age_str.=" hours ago";1669}elsif($age>60*2) {1670$age_str=int$age/60;1671$age_str.=" min ago";1672}elsif($age>2) {1673$age_str=int$age;1674$age_str.=" sec ago";1675}else{1676$age_str.=" right now";1677}1678return$age_str;1679}16801681useconstant{1682 S_IFINVALID =>0030000,1683 S_IFGITLINK =>0160000,1684};16851686# submodule/subproject, a commit object reference1687sub S_ISGITLINK {1688my$mode=shift;16891690return(($mode& S_IFMT) == S_IFGITLINK)1691}16921693# convert file mode in octal to symbolic file mode string1694sub mode_str {1695my$mode=oct shift;16961697if(S_ISGITLINK($mode)) {1698return'm---------';1699}elsif(S_ISDIR($mode& S_IFMT)) {1700return'drwxr-xr-x';1701}elsif(S_ISLNK($mode)) {1702return'lrwxrwxrwx';1703}elsif(S_ISREG($mode)) {1704# git cares only about the executable bit1705if($mode& S_IXUSR) {1706return'-rwxr-xr-x';1707}else{1708return'-rw-r--r--';1709};1710}else{1711return'----------';1712}1713}17141715# convert file mode in octal to file type string1716sub file_type {1717my$mode=shift;17181719if($mode!~m/^[0-7]+$/) {1720return$mode;1721}else{1722$mode=oct$mode;1723}17241725if(S_ISGITLINK($mode)) {1726return"submodule";1727}elsif(S_ISDIR($mode& S_IFMT)) {1728return"directory";1729}elsif(S_ISLNK($mode)) {1730return"symlink";1731}elsif(S_ISREG($mode)) {1732return"file";1733}else{1734return"unknown";1735}1736}17371738# convert file mode in octal to file type description string1739sub file_type_long {1740my$mode=shift;17411742if($mode!~m/^[0-7]+$/) {1743return$mode;1744}else{1745$mode=oct$mode;1746}17471748if(S_ISGITLINK($mode)) {1749return"submodule";1750}elsif(S_ISDIR($mode& S_IFMT)) {1751return"directory";1752}elsif(S_ISLNK($mode)) {1753return"symlink";1754}elsif(S_ISREG($mode)) {1755if($mode& S_IXUSR) {1756return"executable";1757}else{1758return"file";1759};1760}else{1761return"unknown";1762}1763}176417651766## ----------------------------------------------------------------------1767## functions returning short HTML fragments, or transforming HTML fragments1768## which don't belong to other sections17691770# format line of commit message.1771sub format_log_line_html {1772my$line=shift;17731774$line= esc_html($line, -nbsp=>1);1775$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1776$cgi->a({-href => href(action=>"object", hash=>$1),1777-class=>"text"},$1);1778}eg;17791780return$line;1781}17821783# format marker of refs pointing to given object17841785# the destination action is chosen based on object type and current context:1786# - for annotated tags, we choose the tag view unless it's the current view1787# already, in which case we go to shortlog view1788# - for other refs, we keep the current view if we're in history, shortlog or1789# log view, and select shortlog otherwise1790sub format_ref_marker {1791my($refs,$id) =@_;1792my$markers='';17931794if(defined$refs->{$id}) {1795foreachmy$ref(@{$refs->{$id}}) {1796# this code exploits the fact that non-lightweight tags are the1797# only indirect objects, and that they are the only objects for which1798# we want to use tag instead of shortlog as action1799my($type,$name) =qw();1800my$indirect= ($ref=~s/\^\{\}$//);1801# e.g. tags/v2.6.11 or heads/next1802if($ref=~m!^(.*?)s?/(.*)$!) {1803$type=$1;1804$name=$2;1805}else{1806$type="ref";1807$name=$ref;1808}18091810my$class=$type;1811$class.=" indirect"if$indirect;18121813my$dest_action="shortlog";18141815if($indirect) {1816$dest_action="tag"unless$actioneq"tag";1817}elsif($action=~/^(history|(short)?log)$/) {1818$dest_action=$action;1819}18201821my$dest="";1822$dest.="refs/"unless$ref=~ m!^refs/!;1823$dest.=$ref;18241825my$link=$cgi->a({1826-href => href(1827 action=>$dest_action,1828 hash=>$dest1829)},$name);18301831$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".1832$link."</span>";1833}1834}18351836if($markers) {1837return' <span class="refs">'.$markers.'</span>';1838}else{1839return"";1840}1841}18421843# format, perhaps shortened and with markers, title line1844sub format_subject_html {1845my($long,$short,$href,$extra) =@_;1846$extra=''unlessdefined($extra);18471848if(length($short) <length($long)) {1849$long=~s/[[:cntrl:]]/?/g;1850return$cgi->a({-href =>$href, -class=>"list subject",1851-title => to_utf8($long)},1852 esc_html($short)) .$extra;1853}else{1854return$cgi->a({-href =>$href, -class=>"list subject"},1855 esc_html($long)) .$extra;1856}1857}18581859# Rather than recomputing the url for an email multiple times, we cache it1860# after the first hit. This gives a visible benefit in views where the avatar1861# for the same email is used repeatedly (e.g. shortlog).1862# The cache is shared by all avatar engines (currently gravatar only), which1863# are free to use it as preferred. Since only one avatar engine is used for any1864# given page, there's no risk for cache conflicts.1865our%avatar_cache= ();18661867# Compute the picon url for a given email, by using the picon search service over at1868# http://www.cs.indiana.edu/picons/search.html1869sub picon_url {1870my$email=lc shift;1871if(!$avatar_cache{$email}) {1872my($user,$domain) =split('@',$email);1873$avatar_cache{$email} =1874"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1875"$domain/$user/".1876"users+domains+unknown/up/single";1877}1878return$avatar_cache{$email};1879}18801881# Compute the gravatar url for a given email, if it's not in the cache already.1882# Gravatar stores only the part of the URL before the size, since that's the1883# one computationally more expensive. This also allows reuse of the cache for1884# different sizes (for this particular engine).1885sub gravatar_url {1886my$email=lc shift;1887my$size=shift;1888$avatar_cache{$email} ||=1889"http://www.gravatar.com/avatar/".1890 Digest::MD5::md5_hex($email) ."?s=";1891return$avatar_cache{$email} .$size;1892}18931894# Insert an avatar for the given $email at the given $size if the feature1895# is enabled.1896sub git_get_avatar {1897my($email,%opts) =@_;1898my$pre_white= ($opts{-pad_before} ?" ":"");1899my$post_white= ($opts{-pad_after} ?" ":"");1900$opts{-size} ||='default';1901my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1902my$url="";1903if($git_avatareq'gravatar') {1904$url= gravatar_url($email,$size);1905}elsif($git_avatareq'picon') {1906$url= picon_url($email);1907}1908# Other providers can be added by extending the if chain, defining $url1909# as needed. If no variant puts something in $url, we assume avatars1910# are completely disabled/unavailable.1911if($url) {1912return$pre_white.1913"<img width=\"$size\"".1914"class=\"avatar\"".1915"src=\"".esc_url($url)."\"".1916"alt=\"\"".1917"/>".$post_white;1918}else{1919return"";1920}1921}19221923sub format_search_author {1924my($author,$searchtype,$displaytext) =@_;1925my$have_search= gitweb_check_feature('search');19261927if($have_search) {1928my$performed="";1929if($searchtypeeq'author') {1930$performed="authored";1931}elsif($searchtypeeq'committer') {1932$performed="committed";1933}19341935return$cgi->a({-href => href(action=>"search", hash=>$hash,1936 searchtext=>$author,1937 searchtype=>$searchtype),class=>"list",1938 title=>"Search for commits$performedby$author"},1939$displaytext);19401941}else{1942return$displaytext;1943}1944}19451946# format the author name of the given commit with the given tag1947# the author name is chopped and escaped according to the other1948# optional parameters (see chop_str).1949sub format_author_html {1950my$tag=shift;1951my$co=shift;1952my$author= chop_and_escape_str($co->{'author_name'},@_);1953return"<$tagclass=\"author\">".1954 format_search_author($co->{'author_name'},"author",1955 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1956$author) .1957"</$tag>";1958}19591960# format git diff header line, i.e. "diff --(git|combined|cc) ..."1961sub format_git_diff_header_line {1962my$line=shift;1963my$diffinfo=shift;1964my($from,$to) =@_;19651966if($diffinfo->{'nparents'}) {1967# combined diff1968$line=~s!^(diff (.*?) )"?.*$!$1!;1969if($to->{'href'}) {1970$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1971 esc_path($to->{'file'}));1972}else{# file was deleted (no href)1973$line.= esc_path($to->{'file'});1974}1975}else{1976# "ordinary" diff1977$line=~s!^(diff (.*?) )"?a/.*$!$1!;1978if($from->{'href'}) {1979$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1980'a/'. esc_path($from->{'file'}));1981}else{# file was added (no href)1982$line.='a/'. esc_path($from->{'file'});1983}1984$line.=' ';1985if($to->{'href'}) {1986$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1987'b/'. esc_path($to->{'file'}));1988}else{# file was deleted1989$line.='b/'. esc_path($to->{'file'});1990}1991}19921993return"<div class=\"diff header\">$line</div>\n";1994}19951996# format extended diff header line, before patch itself1997sub format_extended_diff_header_line {1998my$line=shift;1999my$diffinfo=shift;2000my($from,$to) =@_;20012002# match <path>2003if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {2004$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},2005 esc_path($from->{'file'}));2006}2007if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {2008$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},2009 esc_path($to->{'file'}));2010}2011# match single <mode>2012if($line=~m/\s(\d{6})$/) {2013$line.='<span class="info"> ('.2014 file_type_long($1) .2015')</span>';2016}2017# match <hash>2018if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {2019# can match only for combined diff2020$line='index ';2021for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2022if($from->{'href'}[$i]) {2023$line.=$cgi->a({-href=>$from->{'href'}[$i],2024-class=>"hash"},2025substr($diffinfo->{'from_id'}[$i],0,7));2026}else{2027$line.='0' x 7;2028}2029# separator2030$line.=','if($i<$diffinfo->{'nparents'} -1);2031}2032$line.='..';2033if($to->{'href'}) {2034$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2035substr($diffinfo->{'to_id'},0,7));2036}else{2037$line.='0' x 7;2038}20392040}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2041# can match only for ordinary diff2042my($from_link,$to_link);2043if($from->{'href'}) {2044$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2045substr($diffinfo->{'from_id'},0,7));2046}else{2047$from_link='0' x 7;2048}2049if($to->{'href'}) {2050$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2051substr($diffinfo->{'to_id'},0,7));2052}else{2053$to_link='0' x 7;2054}2055my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2056$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2057}20582059return$line."<br/>\n";2060}20612062# format from-file/to-file diff header2063sub format_diff_from_to_header {2064my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2065my$line;2066my$result='';20672068$line=$from_line;2069#assert($line =~ m/^---/) if DEBUG;2070# no extra formatting for "^--- /dev/null"2071if(!$diffinfo->{'nparents'}) {2072# ordinary (single parent) diff2073if($line=~m!^--- "?a/!) {2074if($from->{'href'}) {2075$line='--- a/'.2076$cgi->a({-href=>$from->{'href'}, -class=>"path"},2077 esc_path($from->{'file'}));2078}else{2079$line='--- a/'.2080 esc_path($from->{'file'});2081}2082}2083$result.= qq!<div class="diff from_file">$line</div>\n!;20842085}else{2086# combined diff (merge commit)2087for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2088if($from->{'href'}[$i]) {2089$line='--- '.2090$cgi->a({-href=>href(action=>"blobdiff",2091 hash_parent=>$diffinfo->{'from_id'}[$i],2092 hash_parent_base=>$parents[$i],2093 file_parent=>$from->{'file'}[$i],2094 hash=>$diffinfo->{'to_id'},2095 hash_base=>$hash,2096 file_name=>$to->{'file'}),2097-class=>"path",2098-title=>"diff". ($i+1)},2099$i+1) .2100'/'.2101$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2102 esc_path($from->{'file'}[$i]));2103}else{2104$line='--- /dev/null';2105}2106$result.= qq!<div class="diff from_file">$line</div>\n!;2107}2108}21092110$line=$to_line;2111#assert($line =~ m/^\+\+\+/) if DEBUG;2112# no extra formatting for "^+++ /dev/null"2113if($line=~m!^\+\+\+ "?b/!) {2114if($to->{'href'}) {2115$line='+++ b/'.2116$cgi->a({-href=>$to->{'href'}, -class=>"path"},2117 esc_path($to->{'file'}));2118}else{2119$line='+++ b/'.2120 esc_path($to->{'file'});2121}2122}2123$result.= qq!<div class="diff to_file">$line</div>\n!;21242125return$result;2126}21272128# create note for patch simplified by combined diff2129sub format_diff_cc_simplified {2130my($diffinfo,@parents) =@_;2131my$result='';21322133$result.="<div class=\"diff header\">".2134"diff --cc ";2135if(!is_deleted($diffinfo)) {2136$result.=$cgi->a({-href => href(action=>"blob",2137 hash_base=>$hash,2138 hash=>$diffinfo->{'to_id'},2139 file_name=>$diffinfo->{'to_file'}),2140-class=>"path"},2141 esc_path($diffinfo->{'to_file'}));2142}else{2143$result.= esc_path($diffinfo->{'to_file'});2144}2145$result.="</div>\n".# class="diff header"2146"<div class=\"diff nodifferences\">".2147"Simple merge".2148"</div>\n";# class="diff nodifferences"21492150return$result;2151}21522153# format patch (diff) line (not to be used for diff headers)2154sub format_diff_line {2155my$line=shift;2156my($from,$to) =@_;2157my$diff_class="";21582159chomp$line;21602161if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2162# combined diff2163my$prefix=substr($line,0,scalar@{$from->{'href'}});2164if($line=~m/^\@{3}/) {2165$diff_class=" chunk_header";2166}elsif($line=~m/^\\/) {2167$diff_class=" incomplete";2168}elsif($prefix=~tr/+/+/) {2169$diff_class=" add";2170}elsif($prefix=~tr/-/-/) {2171$diff_class=" rem";2172}2173}else{2174# assume ordinary diff2175my$char=substr($line,0,1);2176if($chareq'+') {2177$diff_class=" add";2178}elsif($chareq'-') {2179$diff_class=" rem";2180}elsif($chareq'@') {2181$diff_class=" chunk_header";2182}elsif($chareq"\\") {2183$diff_class=" incomplete";2184}2185}2186$line= untabify($line);2187if($from&&$to&&$line=~m/^\@{2} /) {2188my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2189$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21902191$from_lines=0unlessdefined$from_lines;2192$to_lines=0unlessdefined$to_lines;21932194if($from->{'href'}) {2195$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2196-class=>"list"},$from_text);2197}2198if($to->{'href'}) {2199$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2200-class=>"list"},$to_text);2201}2202$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2203"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2204return"<div class=\"diff$diff_class\">$line</div>\n";2205}elsif($from&&$to&&$line=~m/^\@{3}/) {2206my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2207my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);22082209@from_text=split(' ',$ranges);2210for(my$i=0;$i<@from_text; ++$i) {2211($from_start[$i],$from_nlines[$i]) =2212(split(',',substr($from_text[$i],1)),0);2213}22142215$to_text=pop@from_text;2216$to_start=pop@from_start;2217$to_nlines=pop@from_nlines;22182219$line="<span class=\"chunk_info\">$prefix";2220for(my$i=0;$i<@from_text; ++$i) {2221if($from->{'href'}[$i]) {2222$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2223-class=>"list"},$from_text[$i]);2224}else{2225$line.=$from_text[$i];2226}2227$line.=" ";2228}2229if($to->{'href'}) {2230$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2231-class=>"list"},$to_text);2232}else{2233$line.=$to_text;2234}2235$line.="$prefix</span>".2236"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2237return"<div class=\"diff$diff_class\">$line</div>\n";2238}2239return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2240}22412242# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2243# linked. Pass the hash of the tree/commit to snapshot.2244sub format_snapshot_links {2245my($hash) =@_;2246my$num_fmts=@snapshot_fmts;2247if($num_fmts>1) {2248# A parenthesized list of links bearing format names.2249# e.g. "snapshot (_tar.gz_ _zip_)"2250return"snapshot (".join(' ',map2251$cgi->a({2252-href => href(2253 action=>"snapshot",2254 hash=>$hash,2255 snapshot_format=>$_2256)2257},$known_snapshot_formats{$_}{'display'})2258,@snapshot_fmts) .")";2259}elsif($num_fmts==1) {2260# A single "snapshot" link whose tooltip bears the format name.2261# i.e. "_snapshot_"2262my($fmt) =@snapshot_fmts;2263return2264$cgi->a({2265-href => href(2266 action=>"snapshot",2267 hash=>$hash,2268 snapshot_format=>$fmt2269),2270-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2271},"snapshot");2272}else{# $num_fmts == 02273returnundef;2274}2275}22762277## ......................................................................2278## functions returning values to be passed, perhaps after some2279## transformation, to other functions; e.g. returning arguments to href()22802281# returns hash to be passed to href to generate gitweb URL2282# in -title key it returns description of link2283sub get_feed_info {2284my$format=shift||'Atom';2285my%res= (action =>lc($format));22862287# feed links are possible only for project views2288return unless(defined$project);2289# some views should link to OPML, or to generic project feed,2290# or don't have specific feed yet (so they should use generic)2291return if($action=~/^(?:tags|heads|forks|tag|search)$/x);22922293my$branch;2294# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2295# from tag links; this also makes possible to detect branch links2296if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2297(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2298$branch=$1;2299}2300# find log type for feed description (title)2301my$type='log';2302if(defined$file_name) {2303$type="history of$file_name";2304$type.="/"if($actioneq'tree');2305$type.=" on '$branch'"if(defined$branch);2306}else{2307$type="log of$branch"if(defined$branch);2308}23092310$res{-title} =$type;2311$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2312$res{'file_name'} =$file_name;23132314return%res;2315}23162317## ----------------------------------------------------------------------2318## git utility subroutines, invoking git commands23192320# returns path to the core git executable and the --git-dir parameter as list2321sub git_cmd {2322$number_of_git_cmds++;2323return$GIT,'--git-dir='.$git_dir;2324}23252326# quote the given arguments for passing them to the shell2327# quote_command("command", "arg 1", "arg with ' and ! characters")2328# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2329# Try to avoid using this function wherever possible.2330sub quote_command {2331returnjoin(' ',2332map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2333}23342335# get HEAD ref of given project as hash2336sub git_get_head_hash {2337return git_get_full_hash(shift,'HEAD');2338}23392340sub git_get_full_hash {2341return git_get_hash(@_);2342}23432344sub git_get_short_hash {2345return git_get_hash(@_,'--short=7');2346}23472348sub git_get_hash {2349my($project,$hash,@options) =@_;2350my$o_git_dir=$git_dir;2351my$retval=undef;2352$git_dir="$projectroot/$project";2353if(open my$fd,'-|', git_cmd(),'rev-parse',2354'--verify','-q',@options,$hash) {2355$retval= <$fd>;2356chomp$retvalifdefined$retval;2357close$fd;2358}2359if(defined$o_git_dir) {2360$git_dir=$o_git_dir;2361}2362return$retval;2363}23642365# get type of given object2366sub git_get_type {2367my$hash=shift;23682369open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2370my$type= <$fd>;2371close$fdorreturn;2372chomp$type;2373return$type;2374}23752376# repository configuration2377our$config_file='';2378our%config;23792380# store multiple values for single key as anonymous array reference2381# single values stored directly in the hash, not as [ <value> ]2382sub hash_set_multi {2383my($hash,$key,$value) =@_;23842385if(!exists$hash->{$key}) {2386$hash->{$key} =$value;2387}elsif(!ref$hash->{$key}) {2388$hash->{$key} = [$hash->{$key},$value];2389}else{2390push@{$hash->{$key}},$value;2391}2392}23932394# return hash of git project configuration2395# optionally limited to some section, e.g. 'gitweb'2396sub git_parse_project_config {2397my$section_regexp=shift;2398my%config;23992400local$/="\0";24012402open my$fh,"-|", git_cmd(),"config",'-z','-l',2403orreturn;24042405while(my$keyval= <$fh>) {2406chomp$keyval;2407my($key,$value) =split(/\n/,$keyval,2);24082409 hash_set_multi(\%config,$key,$value)2410if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2411}2412close$fh;24132414return%config;2415}24162417# convert config value to boolean: 'true' or 'false'2418# no value, number > 0, 'true' and 'yes' values are true2419# rest of values are treated as false (never as error)2420sub config_to_bool {2421my$val=shift;24222423return1if!defined$val;# section.key24242425# strip leading and trailing whitespace2426$val=~s/^\s+//;2427$val=~s/\s+$//;24282429return(($val=~/^\d+$/&&$val) ||# section.key = 12430($val=~/^(?:true|yes)$/i));# section.key = true2431}24322433# convert config value to simple decimal number2434# an optional value suffix of 'k', 'm', or 'g' will cause the value2435# to be multiplied by 1024, 1048576, or 10737418242436sub config_to_int {2437my$val=shift;24382439# strip leading and trailing whitespace2440$val=~s/^\s+//;2441$val=~s/\s+$//;24422443if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2444$unit=lc($unit);2445# unknown unit is treated as 12446return$num* ($uniteq'g'?1073741824:2447$uniteq'm'?1048576:2448$uniteq'k'?1024:1);2449}2450return$val;2451}24522453# convert config value to array reference, if needed2454sub config_to_multi {2455my$val=shift;24562457returnref($val) ?$val: (defined($val) ? [$val] : []);2458}24592460sub git_get_project_config {2461my($key,$type) =@_;24622463return unlessdefined$git_dir;24642465# key sanity check2466return unless($key);2467$key=~s/^gitweb\.//;2468return if($key=~m/\W/);24692470# type sanity check2471if(defined$type) {2472$type=~s/^--//;2473$type=undef2474unless($typeeq'bool'||$typeeq'int');2475}24762477# get config2478if(!defined$config_file||2479$config_filene"$git_dir/config") {2480%config= git_parse_project_config('gitweb');2481$config_file="$git_dir/config";2482}24832484# check if config variable (key) exists2485return unlessexists$config{"gitweb.$key"};24862487# ensure given type2488if(!defined$type) {2489return$config{"gitweb.$key"};2490}elsif($typeeq'bool') {2491# backward compatibility: 'git config --bool' returns true/false2492return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2493}elsif($typeeq'int') {2494return config_to_int($config{"gitweb.$key"});2495}2496return$config{"gitweb.$key"};2497}24982499# get hash of given path at given ref2500sub git_get_hash_by_path {2501my$base=shift;2502my$path=shift||returnundef;2503my$type=shift;25042505$path=~ s,/+$,,;25062507open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2508or die_error(500,"Open git-ls-tree failed");2509my$line= <$fd>;2510close$fdorreturnundef;25112512if(!defined$line) {2513# there is no tree or hash given by $path at $base2514returnundef;2515}25162517#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2518$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2519if(defined$type&&$typene$2) {2520# type doesn't match2521returnundef;2522}2523return$3;2524}25252526# get path of entry with given hash at given tree-ish (ref)2527# used to get 'from' filename for combined diff (merge commit) for renames2528sub git_get_path_by_hash {2529my$base=shift||return;2530my$hash=shift||return;25312532local$/="\0";25332534open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2535orreturnundef;2536while(my$line= <$fd>) {2537chomp$line;25382539#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2540#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2541if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2542close$fd;2543return$1;2544}2545}2546close$fd;2547returnundef;2548}25492550## ......................................................................2551## git utility functions, directly accessing git repository25522553sub git_get_project_description {2554my$path=shift;25552556$git_dir="$projectroot/$path";2557open my$fd,'<',"$git_dir/description"2558orreturn git_get_project_config('description');2559my$descr= <$fd>;2560close$fd;2561if(defined$descr) {2562chomp$descr;2563}2564return$descr;2565}25662567sub git_get_project_ctags {2568my$path=shift;2569my$ctags= {};25702571$git_dir="$projectroot/$path";2572opendir my$dh,"$git_dir/ctags"2573orreturn$ctags;2574foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2575open my$ct,'<',$_ornext;2576my$val= <$ct>;2577chomp$val;2578close$ct;2579my$ctag=$_;$ctag=~ s#.*/##;2580$ctags->{$ctag} =$val;2581}2582closedir$dh;2583$ctags;2584}25852586sub git_populate_project_tagcloud {2587my$ctags=shift;25882589# First, merge different-cased tags; tags vote on casing2590my%ctags_lc;2591foreach(keys%$ctags) {2592$ctags_lc{lc$_}->{count} +=$ctags->{$_};2593if(not$ctags_lc{lc$_}->{topcount}2594or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2595$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2596$ctags_lc{lc$_}->{topname} =$_;2597}2598}25992600my$cloud;2601if(eval{require HTML::TagCloud;1; }) {2602$cloud= HTML::TagCloud->new;2603foreach(sort keys%ctags_lc) {2604# Pad the title with spaces so that the cloud looks2605# less crammed.2606my$title=$ctags_lc{$_}->{topname};2607$title=~s/ / /g;2608$title=~s/^/ /g;2609$title=~s/$/ /g;2610$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2611}2612}else{2613$cloud= \%ctags_lc;2614}2615$cloud;2616}26172618sub git_show_project_tagcloud {2619my($cloud,$count) =@_;2620print STDERR ref($cloud)."..\n";2621if(ref$cloudeq'HTML::TagCloud') {2622return$cloud->html_and_css($count);2623}else{2624my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2625return'<p align="center">'.join(', ',map{2626$cgi->a({-href=>"$home_link?by_tag=$_"},$cloud->{$_}->{topname})2627}splice(@tags,0,$count)) .'</p>';2628}2629}26302631sub git_get_project_url_list {2632my$path=shift;26332634$git_dir="$projectroot/$path";2635open my$fd,'<',"$git_dir/cloneurl"2636orreturnwantarray?2637@{ config_to_multi(git_get_project_config('url')) } :2638 config_to_multi(git_get_project_config('url'));2639my@git_project_url_list=map{chomp;$_} <$fd>;2640close$fd;26412642returnwantarray?@git_project_url_list: \@git_project_url_list;2643}26442645sub git_get_projects_list {2646my($filter) =@_;2647my@list;26482649$filter||='';2650$filter=~s/\.git$//;26512652my$check_forks= gitweb_check_feature('forks');26532654if(-d $projects_list) {2655# search in directory2656my$dir=$projects_list. ($filter?"/$filter":'');2657# remove the trailing "/"2658$dir=~s!/+$!!;2659my$pfxlen=length("$dir");2660my$pfxdepth= ($dir=~tr!/!!);26612662 File::Find::find({2663 follow_fast =>1,# follow symbolic links2664 follow_skip =>2,# ignore duplicates2665 dangling_symlinks =>0,# ignore dangling symlinks, silently2666 wanted =>sub{2667# global variables2668our$project_maxdepth;2669our$projectroot;2670# skip project-list toplevel, if we get it.2671return if(m!^[/.]$!);2672# only directories can be git repositories2673return unless(-d $_);2674# don't traverse too deep (Find is super slow on os x)2675if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2676$File::Find::prune =1;2677return;2678}26792680my$subdir=substr($File::Find::name,$pfxlen+1);2681# we check related file in $projectroot2682my$path= ($filter?"$filter/":'') .$subdir;2683if(check_export_ok("$projectroot/$path")) {2684push@list, { path =>$path};2685$File::Find::prune =1;2686}2687},2688},"$dir");26892690}elsif(-f $projects_list) {2691# read from file(url-encoded):2692# 'git%2Fgit.git Linus+Torvalds'2693# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2694# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2695my%paths;2696open my$fd,'<',$projects_listorreturn;2697 PROJECT:2698while(my$line= <$fd>) {2699chomp$line;2700my($path,$owner) =split' ',$line;2701$path= unescape($path);2702$owner= unescape($owner);2703if(!defined$path) {2704next;2705}2706if($filterne'') {2707# looking for forks;2708my$pfx=substr($path,0,length($filter));2709if($pfxne$filter) {2710next PROJECT;2711}2712my$sfx=substr($path,length($filter));2713if($sfx!~/^\/.*\.git$/) {2714next PROJECT;2715}2716}elsif($check_forks) {2717 PATH:2718foreachmy$filter(keys%paths) {2719# looking for forks;2720my$pfx=substr($path,0,length($filter));2721if($pfxne$filter) {2722next PATH;2723}2724my$sfx=substr($path,length($filter));2725if($sfx!~/^\/.*\.git$/) {2726next PATH;2727}2728# is a fork, don't include it in2729# the list2730next PROJECT;2731}2732}2733if(check_export_ok("$projectroot/$path")) {2734my$pr= {2735 path =>$path,2736 owner => to_utf8($owner),2737};2738push@list,$pr;2739(my$forks_path=$path) =~s/\.git$//;2740$paths{$forks_path}++;2741}2742}2743close$fd;2744}2745return@list;2746}27472748our$gitweb_project_owner=undef;2749sub git_get_project_list_from_file {27502751return if(defined$gitweb_project_owner);27522753$gitweb_project_owner= {};2754# read from file (url-encoded):2755# 'git%2Fgit.git Linus+Torvalds'2756# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2757# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2758if(-f $projects_list) {2759open(my$fd,'<',$projects_list);2760while(my$line= <$fd>) {2761chomp$line;2762my($pr,$ow) =split' ',$line;2763$pr= unescape($pr);2764$ow= unescape($ow);2765$gitweb_project_owner->{$pr} = to_utf8($ow);2766}2767close$fd;2768}2769}27702771sub git_get_project_owner {2772my$project=shift;2773my$owner;27742775returnundefunless$project;2776$git_dir="$projectroot/$project";27772778if(!defined$gitweb_project_owner) {2779 git_get_project_list_from_file();2780}27812782if(exists$gitweb_project_owner->{$project}) {2783$owner=$gitweb_project_owner->{$project};2784}2785if(!defined$owner){2786$owner= git_get_project_config('owner');2787}2788if(!defined$owner) {2789$owner= get_file_owner("$git_dir");2790}27912792return$owner;2793}27942795sub git_get_last_activity {2796my($path) =@_;2797my$fd;27982799$git_dir="$projectroot/$path";2800open($fd,"-|", git_cmd(),'for-each-ref',2801'--format=%(committer)',2802'--sort=-committerdate',2803'--count=1',2804'refs/heads')orreturn;2805my$most_recent= <$fd>;2806close$fdorreturn;2807if(defined$most_recent&&2808$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2809my$timestamp=$1;2810my$age=time-$timestamp;2811return($age, age_string($age));2812}2813return(undef,undef);2814}28152816# Implementation note: when a single remote is wanted, we cannot use 'git2817# remote show -n' because that command always work (assuming it's a remote URL2818# if it's not defined), and we cannot use 'git remote show' because that would2819# try to make a network roundtrip. So the only way to find if that particular2820# remote is defined is to walk the list provided by 'git remote -v' and stop if2821# and when we find what we want.2822sub git_get_remotes_list {2823my$wanted=shift;2824my%remotes= ();28252826open my$fd,'-|', git_cmd(),'remote','-v';2827return unless$fd;2828while(my$remote= <$fd>) {2829chomp$remote;2830$remote=~s!\t(.*?)\s+\((\w+)\)$!!;2831next if$wantedand not$remoteeq$wanted;2832my($url,$key) = ($1,$2);28332834$remotes{$remote} ||= {'heads'=> () };2835$remotes{$remote}{$key} =$url;2836}2837close$fdorreturn;2838returnwantarray?%remotes: \%remotes;2839}28402841# Takes a hash of remotes as first parameter and fills it by adding the2842# available remote heads for each of the indicated remotes.2843sub fill_remote_heads {2844my$remotes=shift;2845my@heads=map{"remotes/$_"}keys%$remotes;2846my@remoteheads= git_get_heads_list(undef,@heads);2847foreachmy$remote(keys%$remotes) {2848$remotes->{$remote}{'heads'} = [grep{2849$_->{'name'} =~s!^$remote/!!2850}@remoteheads];2851}2852}28532854sub git_get_references {2855my$type=shift||"";2856my%refs;2857# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112858# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2859open my$fd,"-|", git_cmd(),"show-ref","--dereference",2860($type? ("--","refs/$type") : ())# use -- <pattern> if $type2861orreturn;28622863while(my$line= <$fd>) {2864chomp$line;2865if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2866if(defined$refs{$1}) {2867push@{$refs{$1}},$2;2868}else{2869$refs{$1} = [$2];2870}2871}2872}2873close$fdorreturn;2874return \%refs;2875}28762877sub git_get_rev_name_tags {2878my$hash=shift||returnundef;28792880open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2881orreturn;2882my$name_rev= <$fd>;2883close$fd;28842885if($name_rev=~ m|^$hash tags/(.*)$|) {2886return$1;2887}else{2888# catches also '$hash undefined' output2889returnundef;2890}2891}28922893## ----------------------------------------------------------------------2894## parse to hash functions28952896sub parse_date {2897my$epoch=shift;2898my$tz=shift||"-0000";28992900my%date;2901my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2902my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2903my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2904$date{'hour'} =$hour;2905$date{'minute'} =$min;2906$date{'mday'} =$mday;2907$date{'day'} =$days[$wday];2908$date{'month'} =$months[$mon];2909$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2910$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2911$date{'mday-time'} =sprintf"%d%s%02d:%02d",2912$mday,$months[$mon],$hour,$min;2913$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",29141900+$year,1+$mon,$mday,$hour,$min,$sec;29152916my($tz_sign,$tz_hour,$tz_min) =2917($tz=~m/^([-+])(\d\d)(\d\d)$/);2918$tz_sign= ($tz_signeq'-'? -1: +1);2919my$local=$epoch+$tz_sign*((($tz_hour*60) +$tz_min)*60);2920($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2921$date{'hour_local'} =$hour;2922$date{'minute_local'} =$min;2923$date{'tz_local'} =$tz;2924$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",29251900+$year,$mon+1,$mday,2926$hour,$min,$sec,$tz);2927return%date;2928}29292930sub parse_tag {2931my$tag_id=shift;2932my%tag;2933my@comment;29342935open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2936$tag{'id'} =$tag_id;2937while(my$line= <$fd>) {2938chomp$line;2939if($line=~m/^object ([0-9a-fA-F]{40})$/) {2940$tag{'object'} =$1;2941}elsif($line=~m/^type (.+)$/) {2942$tag{'type'} =$1;2943}elsif($line=~m/^tag (.+)$/) {2944$tag{'name'} =$1;2945}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2946$tag{'author'} =$1;2947$tag{'author_epoch'} =$2;2948$tag{'author_tz'} =$3;2949if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2950$tag{'author_name'} =$1;2951$tag{'author_email'} =$2;2952}else{2953$tag{'author_name'} =$tag{'author'};2954}2955}elsif($line=~m/--BEGIN/) {2956push@comment,$line;2957last;2958}elsif($lineeq"") {2959last;2960}2961}2962push@comment, <$fd>;2963$tag{'comment'} = \@comment;2964close$fdorreturn;2965if(!defined$tag{'name'}) {2966return2967};2968return%tag2969}29702971sub parse_commit_text {2972my($commit_text,$withparents) =@_;2973my@commit_lines=split'\n',$commit_text;2974my%co;29752976pop@commit_lines;# Remove '\0'29772978if(!@commit_lines) {2979return;2980}29812982my$header=shift@commit_lines;2983if($header!~m/^[0-9a-fA-F]{40}/) {2984return;2985}2986($co{'id'},my@parents) =split' ',$header;2987while(my$line=shift@commit_lines) {2988last if$lineeq"\n";2989if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2990$co{'tree'} =$1;2991}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2992push@parents,$1;2993}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2994$co{'author'} = to_utf8($1);2995$co{'author_epoch'} =$2;2996$co{'author_tz'} =$3;2997if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2998$co{'author_name'} =$1;2999$co{'author_email'} =$2;3000}else{3001$co{'author_name'} =$co{'author'};3002}3003}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3004$co{'committer'} = to_utf8($1);3005$co{'committer_epoch'} =$2;3006$co{'committer_tz'} =$3;3007if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3008$co{'committer_name'} =$1;3009$co{'committer_email'} =$2;3010}else{3011$co{'committer_name'} =$co{'committer'};3012}3013}3014}3015if(!defined$co{'tree'}) {3016return;3017};3018$co{'parents'} = \@parents;3019$co{'parent'} =$parents[0];30203021foreachmy$title(@commit_lines) {3022$title=~s/^ //;3023if($titlene"") {3024$co{'title'} = chop_str($title,80,5);3025# remove leading stuff of merges to make the interesting part visible3026if(length($title) >50) {3027$title=~s/^Automatic //;3028$title=~s/^merge (of|with) /Merge ... /i;3029if(length($title) >50) {3030$title=~s/(http|rsync):\/\///;3031}3032if(length($title) >50) {3033$title=~s/(master|www|rsync)\.//;3034}3035if(length($title) >50) {3036$title=~s/kernel.org:?//;3037}3038if(length($title) >50) {3039$title=~s/\/pub\/scm//;3040}3041}3042$co{'title_short'} = chop_str($title,50,5);3043last;3044}3045}3046if(!defined$co{'title'} ||$co{'title'}eq"") {3047$co{'title'} =$co{'title_short'} ='(no commit message)';3048}3049# remove added spaces3050foreachmy$line(@commit_lines) {3051$line=~s/^ //;3052}3053$co{'comment'} = \@commit_lines;30543055my$age=time-$co{'committer_epoch'};3056$co{'age'} =$age;3057$co{'age_string'} = age_string($age);3058my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3059if($age>60*60*24*7*2) {3060$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3061$co{'age_string_age'} =$co{'age_string'};3062}else{3063$co{'age_string_date'} =$co{'age_string'};3064$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3065}3066return%co;3067}30683069sub parse_commit {3070my($commit_id) =@_;3071my%co;30723073local$/="\0";30743075open my$fd,"-|", git_cmd(),"rev-list",3076"--parents",3077"--header",3078"--max-count=1",3079$commit_id,3080"--",3081or die_error(500,"Open git-rev-list failed");3082%co= parse_commit_text(<$fd>,1);3083close$fd;30843085return%co;3086}30873088sub parse_commits {3089my($commit_id,$maxcount,$skip,$filename,@args) =@_;3090my@cos;30913092$maxcount||=1;3093$skip||=0;30943095local$/="\0";30963097open my$fd,"-|", git_cmd(),"rev-list",3098"--header",3099@args,3100("--max-count=".$maxcount),3101("--skip=".$skip),3102@extra_options,3103$commit_id,3104"--",3105($filename? ($filename) : ())3106or die_error(500,"Open git-rev-list failed");3107while(my$line= <$fd>) {3108my%co= parse_commit_text($line);3109push@cos, \%co;3110}3111close$fd;31123113returnwantarray?@cos: \@cos;3114}31153116# parse line of git-diff-tree "raw" output3117sub parse_difftree_raw_line {3118my$line=shift;3119my%res;31203121# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3122# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3123if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3124$res{'from_mode'} =$1;3125$res{'to_mode'} =$2;3126$res{'from_id'} =$3;3127$res{'to_id'} =$4;3128$res{'status'} =$5;3129$res{'similarity'} =$6;3130if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3131($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3132}else{3133$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3134}3135}3136# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3137# combined diff (for merge commit)3138elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3139$res{'nparents'} =length($1);3140$res{'from_mode'} = [split(' ',$2) ];3141$res{'to_mode'} =pop@{$res{'from_mode'}};3142$res{'from_id'} = [split(' ',$3) ];3143$res{'to_id'} =pop@{$res{'from_id'}};3144$res{'status'} = [split('',$4) ];3145$res{'to_file'} = unquote($5);3146}3147# 'c512b523472485aef4fff9e57b229d9d243c967f'3148elsif($line=~m/^([0-9a-fA-F]{40})$/) {3149$res{'commit'} =$1;3150}31513152returnwantarray?%res: \%res;3153}31543155# wrapper: return parsed line of git-diff-tree "raw" output3156# (the argument might be raw line, or parsed info)3157sub parsed_difftree_line {3158my$line_or_ref=shift;31593160if(ref($line_or_ref)eq"HASH") {3161# pre-parsed (or generated by hand)3162return$line_or_ref;3163}else{3164return parse_difftree_raw_line($line_or_ref);3165}3166}31673168# parse line of git-ls-tree output3169sub parse_ls_tree_line {3170my$line=shift;3171my%opts=@_;3172my%res;31733174if($opts{'-l'}) {3175#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3176$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;31773178$res{'mode'} =$1;3179$res{'type'} =$2;3180$res{'hash'} =$3;3181$res{'size'} =$4;3182if($opts{'-z'}) {3183$res{'name'} =$5;3184}else{3185$res{'name'} = unquote($5);3186}3187}else{3188#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3189$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;31903191$res{'mode'} =$1;3192$res{'type'} =$2;3193$res{'hash'} =$3;3194if($opts{'-z'}) {3195$res{'name'} =$4;3196}else{3197$res{'name'} = unquote($4);3198}3199}32003201returnwantarray?%res: \%res;3202}32033204# generates _two_ hashes, references to which are passed as 2 and 3 argument3205sub parse_from_to_diffinfo {3206my($diffinfo,$from,$to,@parents) =@_;32073208if($diffinfo->{'nparents'}) {3209# combined diff3210$from->{'file'} = [];3211$from->{'href'} = [];3212 fill_from_file_info($diffinfo,@parents)3213unlessexists$diffinfo->{'from_file'};3214for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3215$from->{'file'}[$i] =3216defined$diffinfo->{'from_file'}[$i] ?3217$diffinfo->{'from_file'}[$i] :3218$diffinfo->{'to_file'};3219if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3220$from->{'href'}[$i] = href(action=>"blob",3221 hash_base=>$parents[$i],3222 hash=>$diffinfo->{'from_id'}[$i],3223 file_name=>$from->{'file'}[$i]);3224}else{3225$from->{'href'}[$i] =undef;3226}3227}3228}else{3229# ordinary (not combined) diff3230$from->{'file'} =$diffinfo->{'from_file'};3231if($diffinfo->{'status'}ne"A") {# not new (added) file3232$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3233 hash=>$diffinfo->{'from_id'},3234 file_name=>$from->{'file'});3235}else{3236delete$from->{'href'};3237}3238}32393240$to->{'file'} =$diffinfo->{'to_file'};3241if(!is_deleted($diffinfo)) {# file exists in result3242$to->{'href'} = href(action=>"blob", hash_base=>$hash,3243 hash=>$diffinfo->{'to_id'},3244 file_name=>$to->{'file'});3245}else{3246delete$to->{'href'};3247}3248}32493250## ......................................................................3251## parse to array of hashes functions32523253sub git_get_heads_list {3254my($limit,@classes) =@_;3255@classes= ('heads')unless@classes;3256my@patterns=map{"refs/$_"}@classes;3257my@headslist;32583259open my$fd,'-|', git_cmd(),'for-each-ref',3260($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3261'--format=%(objectname) %(refname) %(subject)%00%(committer)',3262@patterns3263orreturn;3264while(my$line= <$fd>) {3265my%ref_item;32663267chomp$line;3268my($refinfo,$committerinfo) =split(/\0/,$line);3269my($hash,$name,$title) =split(' ',$refinfo,3);3270my($committer,$epoch,$tz) =3271($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3272$ref_item{'fullname'} =$name;3273$name=~s!^refs/(?:head|remote)s/!!;32743275$ref_item{'name'} =$name;3276$ref_item{'id'} =$hash;3277$ref_item{'title'} =$title||'(no commit message)';3278$ref_item{'epoch'} =$epoch;3279if($epoch) {3280$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3281}else{3282$ref_item{'age'} ="unknown";3283}32843285push@headslist, \%ref_item;3286}3287close$fd;32883289returnwantarray?@headslist: \@headslist;3290}32913292sub git_get_tags_list {3293my$limit=shift;3294my@tagslist;32953296open my$fd,'-|', git_cmd(),'for-each-ref',3297($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3298'--format=%(objectname) %(objecttype) %(refname) '.3299'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3300'refs/tags'3301orreturn;3302while(my$line= <$fd>) {3303my%ref_item;33043305chomp$line;3306my($refinfo,$creatorinfo) =split(/\0/,$line);3307my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3308my($creator,$epoch,$tz) =3309($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3310$ref_item{'fullname'} =$name;3311$name=~s!^refs/tags/!!;33123313$ref_item{'type'} =$type;3314$ref_item{'id'} =$id;3315$ref_item{'name'} =$name;3316if($typeeq"tag") {3317$ref_item{'subject'} =$title;3318$ref_item{'reftype'} =$reftype;3319$ref_item{'refid'} =$refid;3320}else{3321$ref_item{'reftype'} =$type;3322$ref_item{'refid'} =$id;3323}33243325if($typeeq"tag"||$typeeq"commit") {3326$ref_item{'epoch'} =$epoch;3327if($epoch) {3328$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3329}else{3330$ref_item{'age'} ="unknown";3331}3332}33333334push@tagslist, \%ref_item;3335}3336close$fd;33373338returnwantarray?@tagslist: \@tagslist;3339}33403341## ----------------------------------------------------------------------3342## filesystem-related functions33433344sub get_file_owner {3345my$path=shift;33463347my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3348my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3349if(!defined$gcos) {3350returnundef;3351}3352my$owner=$gcos;3353$owner=~s/[,;].*$//;3354return to_utf8($owner);3355}33563357# assume that file exists3358sub insert_file {3359my$filename=shift;33603361open my$fd,'<',$filename;3362print map{ to_utf8($_) } <$fd>;3363close$fd;3364}33653366## ......................................................................3367## mimetype related functions33683369sub mimetype_guess_file {3370my$filename=shift;3371my$mimemap=shift;3372-r $mimemaporreturnundef;33733374my%mimemap;3375open(my$mh,'<',$mimemap)orreturnundef;3376while(<$mh>) {3377next ifm/^#/;# skip comments3378my($mimetype,$exts) =split(/\t+/);3379if(defined$exts) {3380my@exts=split(/\s+/,$exts);3381foreachmy$ext(@exts) {3382$mimemap{$ext} =$mimetype;3383}3384}3385}3386close($mh);33873388$filename=~/\.([^.]*)$/;3389return$mimemap{$1};3390}33913392sub mimetype_guess {3393my$filename=shift;3394my$mime;3395$filename=~/\./orreturnundef;33963397if($mimetypes_file) {3398my$file=$mimetypes_file;3399if($file!~m!^/!) {# if it is relative path3400# it is relative to project3401$file="$projectroot/$project/$file";3402}3403$mime= mimetype_guess_file($filename,$file);3404}3405$mime||= mimetype_guess_file($filename,'/etc/mime.types');3406return$mime;3407}34083409sub blob_mimetype {3410my$fd=shift;3411my$filename=shift;34123413if($filename) {3414my$mime= mimetype_guess($filename);3415$mimeandreturn$mime;3416}34173418# just in case3419return$default_blob_plain_mimetypeunless$fd;34203421if(-T $fd) {3422return'text/plain';3423}elsif(!$filename) {3424return'application/octet-stream';3425}elsif($filename=~m/\.png$/i) {3426return'image/png';3427}elsif($filename=~m/\.gif$/i) {3428return'image/gif';3429}elsif($filename=~m/\.jpe?g$/i) {3430return'image/jpeg';3431}else{3432return'application/octet-stream';3433}3434}34353436sub blob_contenttype {3437my($fd,$file_name,$type) =@_;34383439$type||= blob_mimetype($fd,$file_name);3440if($typeeq'text/plain'&&defined$default_text_plain_charset) {3441$type.="; charset=$default_text_plain_charset";3442}34433444return$type;3445}34463447# guess file syntax for syntax highlighting; return undef if no highlighting3448# the name of syntax can (in the future) depend on syntax highlighter used3449sub guess_file_syntax {3450my($highlight,$mimetype,$file_name) =@_;3451returnundefunless($highlight&&defined$file_name);3452my$basename= basename($file_name,'.in');3453return$highlight_basename{$basename}3454ifexists$highlight_basename{$basename};34553456$basename=~/\.([^.]*)$/;3457my$ext=$1orreturnundef;3458return$highlight_ext{$ext}3459ifexists$highlight_ext{$ext};34603461returnundef;3462}34633464# run highlighter and return FD of its output,3465# or return original FD if no highlighting3466sub run_highlighter {3467my($fd,$highlight,$syntax) =@_;3468return$fdunless($highlight&&defined$syntax);34693470close$fd;3471open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3472 quote_command($highlight_bin).3473" --replace-tabs=8 --fragment --syntax$syntax|"3474or die_error(500,"Couldn't open file or run syntax highlighter");3475return$fd;3476}34773478## ======================================================================3479## functions printing HTML: header, footer, error page34803481sub get_page_title {3482my$title= to_utf8($site_name);34833484return$titleunless(defined$project);3485$title.=" - ". to_utf8($project);34863487return$titleunless(defined$action);3488$title.="/$action";# $action is US-ASCII (7bit ASCII)34893490return$titleunless(defined$file_name);3491$title.=" - ". esc_path($file_name);3492if($actioneq"tree"&&$file_name!~ m|/$|) {3493$title.="/";3494}34953496return$title;3497}34983499sub print_feed_meta {3500if(defined$project) {3501my%href_params= get_feed_info();3502if(!exists$href_params{'-title'}) {3503$href_params{'-title'} ='log';3504}35053506foreachmy$format(qw(RSS Atom)) {3507my$type=lc($format);3508my%link_attr= (3509'-rel'=>'alternate',3510'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),3511'-type'=>"application/$type+xml"3512);35133514$href_params{'action'} =$type;3515$link_attr{'-href'} = href(%href_params);3516print"<link ".3517"rel=\"$link_attr{'-rel'}\"".3518"title=\"$link_attr{'-title'}\"".3519"href=\"$link_attr{'-href'}\"".3520"type=\"$link_attr{'-type'}\"".3521"/>\n";35223523$href_params{'extra_options'} ='--no-merges';3524$link_attr{'-href'} = href(%href_params);3525$link_attr{'-title'} .=' (no merges)';3526print"<link ".3527"rel=\"$link_attr{'-rel'}\"".3528"title=\"$link_attr{'-title'}\"".3529"href=\"$link_attr{'-href'}\"".3530"type=\"$link_attr{'-type'}\"".3531"/>\n";3532}35333534}else{3535printf('<link rel="alternate" title="%sprojects list" '.3536'href="%s" type="text/plain; charset=utf-8" />'."\n",3537 esc_attr($site_name), href(project=>undef, action=>"project_index"));3538printf('<link rel="alternate" title="%sprojects feeds" '.3539'href="%s" type="text/x-opml" />'."\n",3540 esc_attr($site_name), href(project=>undef, action=>"opml"));3541}3542}35433544sub git_header_html {3545my$status=shift||"200 OK";3546my$expires=shift;3547my%opts=@_;35483549my$title= get_page_title();3550my$content_type;3551# require explicit support from the UA if we are to send the page as3552# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3553# we have to do this because MSIE sometimes globs '*/*', pretending to3554# support xhtml+xml but choking when it gets what it asked for.3555if(defined$cgi->http('HTTP_ACCEPT') &&3556$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3557$cgi->Accept('application/xhtml+xml') !=0) {3558$content_type='application/xhtml+xml';3559}else{3560$content_type='text/html';3561}3562print$cgi->header(-type=>$content_type, -charset =>'utf-8',3563-status=>$status, -expires =>$expires)3564unless($opts{'-no_http_header'});3565my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3566print<<EOF;3567<?xml version="1.0" encoding="utf-8"?>3568<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3569<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3570<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3571<!-- git core binaries version$git_version-->3572<head>3573<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3574<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3575<meta name="robots" content="index, nofollow"/>3576<title>$title</title>3577EOF3578# the stylesheet, favicon etc urls won't work correctly with path_info3579# unless we set the appropriate base URL3580if($ENV{'PATH_INFO'}) {3581print"<base href=\"".esc_url($base_url)."\"/>\n";3582}3583# print out each stylesheet that exist, providing backwards capability3584# for those people who defined $stylesheet in a config file3585if(defined$stylesheet) {3586print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3587}else{3588foreachmy$stylesheet(@stylesheets) {3589next unless$stylesheet;3590print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3591}3592}3593 print_feed_meta()3594if($statuseq'200 OK');3595if(defined$favicon) {3596printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);3597}35983599print"</head>\n".3600"<body>\n";36013602if(defined$site_header&& -f $site_header) {3603 insert_file($site_header);3604}36053606print"<div class=\"page_header\">\n";3607if(defined$logo) {3608print$cgi->a({-href => esc_url($logo_url),3609-title =>$logo_label},3610$cgi->img({-src => esc_url($logo),3611-width =>72, -height =>27,3612-alt =>"git",3613-class=>"logo"}));3614}3615print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3616if(defined$project) {3617print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3618if(defined$action) {3619my$action_print=$action;3620if(defined$opts{-action_extra}) {3621$action_print=$cgi->a({-href => href(action=>$action)},3622$action);3623}3624print" /$action_print";3625}3626if(defined$opts{-action_extra}) {3627print" /$opts{-action_extra}";3628}3629print"\n";3630}3631print"</div>\n";36323633my$have_search= gitweb_check_feature('search');3634if(defined$project&&$have_search) {3635if(!defined$searchtext) {3636$searchtext="";3637}3638my$search_hash;3639if(defined$hash_base) {3640$search_hash=$hash_base;3641}elsif(defined$hash) {3642$search_hash=$hash;3643}else{3644$search_hash="HEAD";3645}3646my$action=$my_uri;3647my$use_pathinfo= gitweb_check_feature('pathinfo');3648if($use_pathinfo) {3649$action.="/".esc_url($project);3650}3651print$cgi->startform(-method=>"get", -action =>$action) .3652"<div class=\"search\">\n".3653(!$use_pathinfo&&3654$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3655$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3656$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3657$cgi->popup_menu(-name =>'st', -default=>'commit',3658-values=> ['commit','grep','author','committer','pickaxe']) .3659$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3660" search:\n",3661$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3662"<span title=\"Extended regular expression\">".3663$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3664-checked =>$search_use_regexp) .3665"</span>".3666"</div>".3667$cgi->end_form() ."\n";3668}3669}36703671sub git_footer_html {3672my$feed_class='rss_logo';36733674print"<div class=\"page_footer\">\n";3675if(defined$project) {3676my$descr= git_get_project_description($project);3677if(defined$descr) {3678print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3679}36803681my%href_params= get_feed_info();3682if(!%href_params) {3683$feed_class.=' generic';3684}3685$href_params{'-title'} ||='log';36863687foreachmy$format(qw(RSS Atom)) {3688$href_params{'action'} =lc($format);3689print$cgi->a({-href => href(%href_params),3690-title =>"$href_params{'-title'}$formatfeed",3691-class=>$feed_class},$format)."\n";3692}36933694}else{3695print$cgi->a({-href => href(project=>undef, action=>"opml"),3696-class=>$feed_class},"OPML") ." ";3697print$cgi->a({-href => href(project=>undef, action=>"project_index"),3698-class=>$feed_class},"TXT") ."\n";3699}3700print"</div>\n";# class="page_footer"37013702if(defined$t0&& gitweb_check_feature('timed')) {3703print"<div id=\"generating_info\">\n";3704print'This page took '.3705'<span id="generating_time" class="time_span">'.3706 tv_interval($t0, [ gettimeofday() ]).3707' seconds </span>'.3708' and '.3709'<span id="generating_cmd">'.3710$number_of_git_cmds.3711'</span> git commands '.3712" to generate.\n";3713print"</div>\n";# class="page_footer"3714}37153716if(defined$site_footer&& -f $site_footer) {3717 insert_file($site_footer);3718}37193720print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;3721if(defined$action&&3722$actioneq'blame_incremental') {3723print qq!<script type="text/javascript">\n!.3724 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3725 qq!"!. href() .qq!");\n!.3726 qq!</script>\n!;3727}elsif(gitweb_check_feature('javascript-actions')) {3728print qq!<script type="text/javascript">\n!.3729 qq!window.onload = fixLinks;\n!.3730 qq!</script>\n!;3731}37323733print"</body>\n".3734"</html>";3735}37363737# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3738# Example: die_error(404, 'Hash not found')3739# By convention, use the following status codes (as defined in RFC 2616):3740# 400: Invalid or missing CGI parameters, or3741# requested object exists but has wrong type.3742# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3743# this server or project.3744# 404: Requested object/revision/project doesn't exist.3745# 500: The server isn't configured properly, or3746# an internal error occurred (e.g. failed assertions caused by bugs), or3747# an unknown error occurred (e.g. the git binary died unexpectedly).3748# 503: The server is currently unavailable (because it is overloaded,3749# or down for maintenance). Generally, this is a temporary state.3750sub die_error {3751my$status=shift||500;3752my$error= esc_html(shift) ||"Internal Server Error";3753my$extra=shift;3754my%opts=@_;37553756my%http_responses= (3757400=>'400 Bad Request',3758403=>'403 Forbidden',3759404=>'404 Not Found',3760500=>'500 Internal Server Error',3761503=>'503 Service Unavailable',3762);3763 git_header_html($http_responses{$status},undef,%opts);3764print<<EOF;3765<div class="page_body">3766<br /><br />3767$status-$error3768<br />3769EOF3770if(defined$extra) {3771print"<hr />\n".3772"$extra\n";3773}3774print"</div>\n";37753776 git_footer_html();3777goto DONE_GITWEB3778unless($opts{'-error_handler'});3779}37803781## ----------------------------------------------------------------------3782## functions printing or outputting HTML: navigation37833784sub git_print_page_nav {3785my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3786$extra=''if!defined$extra;# pager or formats37873788my@navs=qw(summary shortlog log commit commitdiff tree);3789if($suppress) {3790@navs=grep{$_ne$suppress}@navs;3791}37923793my%arg=map{$_=> {action=>$_} }@navs;3794if(defined$head) {3795for(qw(commit commitdiff)) {3796$arg{$_}{'hash'} =$head;3797}3798if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3799for(qw(shortlog log)) {3800$arg{$_}{'hash'} =$head;3801}3802}3803}38043805$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3806$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;38073808my@actions= gitweb_get_feature('actions');3809my%repl= (3810'%'=>'%',3811'n'=>$project,# project name3812'f'=>$git_dir,# project path within filesystem3813'h'=>$treehead||'',# current hash ('h' parameter)3814'b'=>$treebase||'',# hash base ('hb' parameter)3815);3816while(@actions) {3817my($label,$link,$pos) =splice(@actions,0,3);3818# insert3819@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3820# munch munch3821$link=~s/%([%nfhb])/$repl{$1}/g;3822$arg{$label}{'_href'} =$link;3823}38243825print"<div class=\"page_nav\">\n".3826(join" | ",3827map{$_eq$current?3828$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3829}@navs);3830print"<br/>\n$extra<br/>\n".3831"</div>\n";3832}38333834# returns a submenu for the nagivation of the refs views (tags, heads,3835# remotes) with the current view disabled and the remotes view only3836# available if the feature is enabled3837sub format_ref_views {3838my($current) =@_;3839my@ref_views=qw{tags heads};3840push@ref_views,'remotes'if gitweb_check_feature('remote_heads');3841returnjoin" | ",map{3842$_eq$current?$_:3843$cgi->a({-href => href(action=>$_)},$_)3844}@ref_views3845}38463847sub format_paging_nav {3848my($action,$page,$has_next_link) =@_;3849my$paging_nav;385038513852if($page>0) {3853$paging_nav.=3854$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3855" ⋅ ".3856$cgi->a({-href => href(-replay=>1, page=>$page-1),3857-accesskey =>"p", -title =>"Alt-p"},"prev");3858}else{3859$paging_nav.="first ⋅ prev";3860}38613862if($has_next_link) {3863$paging_nav.=" ⋅ ".3864$cgi->a({-href => href(-replay=>1, page=>$page+1),3865-accesskey =>"n", -title =>"Alt-n"},"next");3866}else{3867$paging_nav.=" ⋅ next";3868}38693870return$paging_nav;3871}38723873## ......................................................................3874## functions printing or outputting HTML: div38753876sub git_print_header_div {3877my($action,$title,$hash,$hash_base) =@_;3878my%args= ();38793880$args{'action'} =$action;3881$args{'hash'} =$hashif$hash;3882$args{'hash_base'} =$hash_baseif$hash_base;38833884print"<div class=\"header\">\n".3885$cgi->a({-href => href(%args), -class=>"title"},3886$title?$title:$action) .3887"\n</div>\n";3888}38893890sub format_repo_url {3891my($name,$url) =@_;3892return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";3893}38943895# Group output by placing it in a DIV element and adding a header.3896# Options for start_div() can be provided by passing a hash reference as the3897# first parameter to the function.3898# Options to git_print_header_div() can be provided by passing an array3899# reference. This must follow the options to start_div if they are present.3900# The content can be a scalar, which is output as-is, a scalar reference, which3901# is output after html escaping, an IO handle passed either as *handle or3902# *handle{IO}, or a function reference. In the latter case all following3903# parameters will be taken as argument to the content function call.3904sub git_print_section {3905my($div_args,$header_args,$content);3906my$arg=shift;3907if(ref($arg)eq'HASH') {3908$div_args=$arg;3909$arg=shift;3910}3911if(ref($arg)eq'ARRAY') {3912$header_args=$arg;3913$arg=shift;3914}3915$content=$arg;39163917print$cgi->start_div($div_args);3918 git_print_header_div(@$header_args);39193920if(ref($content)eq'CODE') {3921$content->(@_);3922}elsif(ref($content)eq'SCALAR') {3923print esc_html($$content);3924}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {3925print<$content>;3926}elsif(!ref($content) &&defined($content)) {3927print$content;3928}39293930print$cgi->end_div;3931}39323933sub print_local_time {3934print format_local_time(@_);3935}39363937sub format_local_time {3938my$localtime='';3939my%date=@_;3940if($date{'hour_local'} <6) {3941$localtime.=sprintf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3942$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3943}else{3944$localtime.=sprintf(" (%02d:%02d%s)",3945$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3946}39473948return$localtime;3949}39503951# Outputs the author name and date in long form3952sub git_print_authorship {3953my$co=shift;3954my%opts=@_;3955my$tag=$opts{-tag} ||'div';3956my$author=$co->{'author_name'};39573958my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3959print"<$tagclass=\"author_date\">".3960 format_search_author($author,"author", esc_html($author)) .3961" [$ad{'rfc2822'}";3962 print_local_time(%ad)if($opts{-localtime});3963print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)3964."</$tag>\n";3965}39663967# Outputs table rows containing the full author or committer information,3968# in the format expected for 'commit' view (& similar).3969# Parameters are a commit hash reference, followed by the list of people3970# to output information for. If the list is empty it defaults to both3971# author and committer.3972sub git_print_authorship_rows {3973my$co=shift;3974# too bad we can't use @people = @_ || ('author', 'committer')3975my@people=@_;3976@people= ('author','committer')unless@people;3977foreachmy$who(@people) {3978my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3979print"<tr><td>$who</td><td>".3980 format_search_author($co->{"${who}_name"},$who,3981 esc_html($co->{"${who}_name"})) ." ".3982 format_search_author($co->{"${who}_email"},$who,3983 esc_html("<".$co->{"${who}_email"} .">")) .3984"</td><td rowspan=\"2\">".3985 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3986"</td></tr>\n".3987"<tr>".3988"<td></td><td>$wd{'rfc2822'}";3989 print_local_time(%wd);3990print"</td>".3991"</tr>\n";3992}3993}39943995sub git_print_page_path {3996my$name=shift;3997my$type=shift;3998my$hb=shift;399940004001print"<div class=\"page_path\">";4002print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),4003-title =>'tree root'}, to_utf8("[$project]"));4004print" / ";4005if(defined$name) {4006my@dirname=split'/',$name;4007my$basename=pop@dirname;4008my$fullname='';40094010foreachmy$dir(@dirname) {4011$fullname.= ($fullname?'/':'') .$dir;4012print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4013 hash_base=>$hb),4014-title =>$fullname}, esc_path($dir));4015print" / ";4016}4017if(defined$type&&$typeeq'blob') {4018print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4019 hash_base=>$hb),4020-title =>$name}, esc_path($basename));4021}elsif(defined$type&&$typeeq'tree') {4022print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4023 hash_base=>$hb),4024-title =>$name}, esc_path($basename));4025print" / ";4026}else{4027print esc_path($basename);4028}4029}4030print"<br/></div>\n";4031}40324033sub git_print_log {4034my$log=shift;4035my%opts=@_;40364037if($opts{'-remove_title'}) {4038# remove title, i.e. first line of log4039shift@$log;4040}4041# remove leading empty lines4042while(defined$log->[0] &&$log->[0]eq"") {4043shift@$log;4044}40454046# print log4047my$signoff=0;4048my$empty=0;4049foreachmy$line(@$log) {4050if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {4051$signoff=1;4052$empty=0;4053if(!$opts{'-remove_signoff'}) {4054print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4055next;4056}else{4057# remove signoff lines4058next;4059}4060}else{4061$signoff=0;4062}40634064# print only one empty line4065# do not print empty line after signoff4066if($lineeq"") {4067next if($empty||$signoff);4068$empty=1;4069}else{4070$empty=0;4071}40724073print format_log_line_html($line) ."<br/>\n";4074}40754076if($opts{'-final_empty_line'}) {4077# end with single empty line4078print"<br/>\n"unless$empty;4079}4080}40814082# return link target (what link points to)4083sub git_get_link_target {4084my$hash=shift;4085my$link_target;40864087# read link4088open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4089orreturn;4090{4091local$/=undef;4092$link_target= <$fd>;4093}4094close$fd4095orreturn;40964097return$link_target;4098}40994100# given link target, and the directory (basedir) the link is in,4101# return target of link relative to top directory (top tree);4102# return undef if it is not possible (including absolute links).4103sub normalize_link_target {4104my($link_target,$basedir) =@_;41054106# absolute symlinks (beginning with '/') cannot be normalized4107return if(substr($link_target,0,1)eq'/');41084109# normalize link target to path from top (root) tree (dir)4110my$path;4111if($basedir) {4112$path=$basedir.'/'.$link_target;4113}else{4114# we are in top (root) tree (dir)4115$path=$link_target;4116}41174118# remove //, /./, and /../4119my@path_parts;4120foreachmy$part(split('/',$path)) {4121# discard '.' and ''4122next if(!$part||$parteq'.');4123# handle '..'4124if($parteq'..') {4125if(@path_parts) {4126pop@path_parts;4127}else{4128# link leads outside repository (outside top dir)4129return;4130}4131}else{4132push@path_parts,$part;4133}4134}4135$path=join('/',@path_parts);41364137return$path;4138}41394140# print tree entry (row of git_tree), but without encompassing <tr> element4141sub git_print_tree_entry {4142my($t,$basedir,$hash_base,$have_blame) =@_;41434144my%base_key= ();4145$base_key{'hash_base'} =$hash_baseifdefined$hash_base;41464147# The format of a table row is: mode list link. Where mode is4148# the mode of the entry, list is the name of the entry, an href,4149# and link is the action links of the entry.41504151print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4152if(exists$t->{'size'}) {4153print"<td class=\"size\">$t->{'size'}</td>\n";4154}4155if($t->{'type'}eq"blob") {4156print"<td class=\"list\">".4157$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4158 file_name=>"$basedir$t->{'name'}",%base_key),4159-class=>"list"}, esc_path($t->{'name'}));4160if(S_ISLNK(oct$t->{'mode'})) {4161my$link_target= git_get_link_target($t->{'hash'});4162if($link_target) {4163my$norm_target= normalize_link_target($link_target,$basedir);4164if(defined$norm_target) {4165print" -> ".4166$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4167 file_name=>$norm_target),4168-title =>$norm_target}, esc_path($link_target));4169}else{4170print" -> ". esc_path($link_target);4171}4172}4173}4174print"</td>\n";4175print"<td class=\"link\">";4176print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4177 file_name=>"$basedir$t->{'name'}",%base_key)},4178"blob");4179if($have_blame) {4180print" | ".4181$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4182 file_name=>"$basedir$t->{'name'}",%base_key)},4183"blame");4184}4185if(defined$hash_base) {4186print" | ".4187$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4188 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4189"history");4190}4191print" | ".4192$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4193 file_name=>"$basedir$t->{'name'}")},4194"raw");4195print"</td>\n";41964197}elsif($t->{'type'}eq"tree") {4198print"<td class=\"list\">";4199print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4200 file_name=>"$basedir$t->{'name'}",4201%base_key)},4202 esc_path($t->{'name'}));4203print"</td>\n";4204print"<td class=\"link\">";4205print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4206 file_name=>"$basedir$t->{'name'}",4207%base_key)},4208"tree");4209if(defined$hash_base) {4210print" | ".4211$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4212 file_name=>"$basedir$t->{'name'}")},4213"history");4214}4215print"</td>\n";4216}else{4217# unknown object: we can only present history for it4218# (this includes 'commit' object, i.e. submodule support)4219print"<td class=\"list\">".4220 esc_path($t->{'name'}) .4221"</td>\n";4222print"<td class=\"link\">";4223if(defined$hash_base) {4224print$cgi->a({-href => href(action=>"history",4225 hash_base=>$hash_base,4226 file_name=>"$basedir$t->{'name'}")},4227"history");4228}4229print"</td>\n";4230}4231}42324233## ......................................................................4234## functions printing large fragments of HTML42354236# get pre-image filenames for merge (combined) diff4237sub fill_from_file_info {4238my($diff,@parents) =@_;42394240$diff->{'from_file'} = [ ];4241$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4242for(my$i=0;$i<$diff->{'nparents'};$i++) {4243if($diff->{'status'}[$i]eq'R'||4244$diff->{'status'}[$i]eq'C') {4245$diff->{'from_file'}[$i] =4246 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4247}4248}42494250return$diff;4251}42524253# is current raw difftree line of file deletion4254sub is_deleted {4255my$diffinfo=shift;42564257return$diffinfo->{'to_id'}eq('0' x 40);4258}42594260# does patch correspond to [previous] difftree raw line4261# $diffinfo - hashref of parsed raw diff format4262# $patchinfo - hashref of parsed patch diff format4263# (the same keys as in $diffinfo)4264sub is_patch_split {4265my($diffinfo,$patchinfo) =@_;42664267returndefined$diffinfo&&defined$patchinfo4268&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4269}427042714272sub git_difftree_body {4273my($difftree,$hash,@parents) =@_;4274my($parent) =$parents[0];4275my$have_blame= gitweb_check_feature('blame');4276print"<div class=\"list_head\">\n";4277if($#{$difftree} >10) {4278print(($#{$difftree} +1) ." files changed:\n");4279}4280print"</div>\n";42814282print"<table class=\"".4283(@parents>1?"combined ":"") .4284"diff_tree\">\n";42854286# header only for combined diff in 'commitdiff' view4287my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4288if($has_header) {4289# table header4290print"<thead><tr>\n".4291"<th></th><th></th>\n";# filename, patchN link4292for(my$i=0;$i<@parents;$i++) {4293my$par=$parents[$i];4294print"<th>".4295$cgi->a({-href => href(action=>"commitdiff",4296 hash=>$hash, hash_parent=>$par),4297-title =>'commitdiff to parent number '.4298($i+1) .': '.substr($par,0,7)},4299$i+1) .4300" </th>\n";4301}4302print"</tr></thead>\n<tbody>\n";4303}43044305my$alternate=1;4306my$patchno=0;4307foreachmy$line(@{$difftree}) {4308my$diff= parsed_difftree_line($line);43094310if($alternate) {4311print"<tr class=\"dark\">\n";4312}else{4313print"<tr class=\"light\">\n";4314}4315$alternate^=1;43164317if(exists$diff->{'nparents'}) {# combined diff43184319 fill_from_file_info($diff,@parents)4320unlessexists$diff->{'from_file'};43214322if(!is_deleted($diff)) {4323# file exists in the result (child) commit4324print"<td>".4325$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4326 file_name=>$diff->{'to_file'},4327 hash_base=>$hash),4328-class=>"list"}, esc_path($diff->{'to_file'})) .4329"</td>\n";4330}else{4331print"<td>".4332 esc_path($diff->{'to_file'}) .4333"</td>\n";4334}43354336if($actioneq'commitdiff') {4337# link to patch4338$patchno++;4339print"<td class=\"link\">".4340$cgi->a({-href =>"#patch$patchno"},"patch") .4341" | ".4342"</td>\n";4343}43444345my$has_history=0;4346my$not_deleted=0;4347for(my$i=0;$i<$diff->{'nparents'};$i++) {4348my$hash_parent=$parents[$i];4349my$from_hash=$diff->{'from_id'}[$i];4350my$from_path=$diff->{'from_file'}[$i];4351my$status=$diff->{'status'}[$i];43524353$has_history||= ($statusne'A');4354$not_deleted||= ($statusne'D');43554356if($statuseq'A') {4357print"<td class=\"link\"align=\"right\"> | </td>\n";4358}elsif($statuseq'D') {4359print"<td class=\"link\">".4360$cgi->a({-href => href(action=>"blob",4361 hash_base=>$hash,4362 hash=>$from_hash,4363 file_name=>$from_path)},4364"blob". ($i+1)) .4365" | </td>\n";4366}else{4367if($diff->{'to_id'}eq$from_hash) {4368print"<td class=\"link nochange\">";4369}else{4370print"<td class=\"link\">";4371}4372print$cgi->a({-href => href(action=>"blobdiff",4373 hash=>$diff->{'to_id'},4374 hash_parent=>$from_hash,4375 hash_base=>$hash,4376 hash_parent_base=>$hash_parent,4377 file_name=>$diff->{'to_file'},4378 file_parent=>$from_path)},4379"diff". ($i+1)) .4380" | </td>\n";4381}4382}43834384print"<td class=\"link\">";4385if($not_deleted) {4386print$cgi->a({-href => href(action=>"blob",4387 hash=>$diff->{'to_id'},4388 file_name=>$diff->{'to_file'},4389 hash_base=>$hash)},4390"blob");4391print" | "if($has_history);4392}4393if($has_history) {4394print$cgi->a({-href => href(action=>"history",4395 file_name=>$diff->{'to_file'},4396 hash_base=>$hash)},4397"history");4398}4399print"</td>\n";44004401print"</tr>\n";4402next;# instead of 'else' clause, to avoid extra indent4403}4404# else ordinary diff44054406my($to_mode_oct,$to_mode_str,$to_file_type);4407my($from_mode_oct,$from_mode_str,$from_file_type);4408if($diff->{'to_mode'}ne('0' x 6)) {4409$to_mode_oct=oct$diff->{'to_mode'};4410if(S_ISREG($to_mode_oct)) {# only for regular file4411$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4412}4413$to_file_type= file_type($diff->{'to_mode'});4414}4415if($diff->{'from_mode'}ne('0' x 6)) {4416$from_mode_oct=oct$diff->{'from_mode'};4417if(S_ISREG($from_mode_oct)) {# only for regular file4418$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4419}4420$from_file_type= file_type($diff->{'from_mode'});4421}44224423if($diff->{'status'}eq"A") {# created4424my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4425$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4426$mode_chng.="]</span>";4427print"<td>";4428print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4429 hash_base=>$hash, file_name=>$diff->{'file'}),4430-class=>"list"}, esc_path($diff->{'file'}));4431print"</td>\n";4432print"<td>$mode_chng</td>\n";4433print"<td class=\"link\">";4434if($actioneq'commitdiff') {4435# link to patch4436$patchno++;4437print$cgi->a({-href =>"#patch$patchno"},"patch");4438print" | ";4439}4440print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4441 hash_base=>$hash, file_name=>$diff->{'file'})},4442"blob");4443print"</td>\n";44444445}elsif($diff->{'status'}eq"D") {# deleted4446my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4447print"<td>";4448print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4449 hash_base=>$parent, file_name=>$diff->{'file'}),4450-class=>"list"}, esc_path($diff->{'file'}));4451print"</td>\n";4452print"<td>$mode_chng</td>\n";4453print"<td class=\"link\">";4454if($actioneq'commitdiff') {4455# link to patch4456$patchno++;4457print$cgi->a({-href =>"#patch$patchno"},"patch");4458print" | ";4459}4460print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4461 hash_base=>$parent, file_name=>$diff->{'file'})},4462"blob") ." | ";4463if($have_blame) {4464print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4465 file_name=>$diff->{'file'})},4466"blame") ." | ";4467}4468print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4469 file_name=>$diff->{'file'})},4470"history");4471print"</td>\n";44724473}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4474my$mode_chnge="";4475if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4476$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4477if($from_file_typene$to_file_type) {4478$mode_chnge.=" from$from_file_typeto$to_file_type";4479}4480if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4481if($from_mode_str&&$to_mode_str) {4482$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4483}elsif($to_mode_str) {4484$mode_chnge.=" mode:$to_mode_str";4485}4486}4487$mode_chnge.="]</span>\n";4488}4489print"<td>";4490print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4491 hash_base=>$hash, file_name=>$diff->{'file'}),4492-class=>"list"}, esc_path($diff->{'file'}));4493print"</td>\n";4494print"<td>$mode_chnge</td>\n";4495print"<td class=\"link\">";4496if($actioneq'commitdiff') {4497# link to patch4498$patchno++;4499print$cgi->a({-href =>"#patch$patchno"},"patch") .4500" | ";4501}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4502# "commit" view and modified file (not onlu mode changed)4503print$cgi->a({-href => href(action=>"blobdiff",4504 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4505 hash_base=>$hash, hash_parent_base=>$parent,4506 file_name=>$diff->{'file'})},4507"diff") .4508" | ";4509}4510print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4511 hash_base=>$hash, file_name=>$diff->{'file'})},4512"blob") ." | ";4513if($have_blame) {4514print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4515 file_name=>$diff->{'file'})},4516"blame") ." | ";4517}4518print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4519 file_name=>$diff->{'file'})},4520"history");4521print"</td>\n";45224523}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4524my%status_name= ('R'=>'moved','C'=>'copied');4525my$nstatus=$status_name{$diff->{'status'}};4526my$mode_chng="";4527if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4528# mode also for directories, so we cannot use $to_mode_str4529$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4530}4531print"<td>".4532$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4533 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4534-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4535"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4536$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4537 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4538-class=>"list"}, esc_path($diff->{'from_file'})) .4539" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4540"<td class=\"link\">";4541if($actioneq'commitdiff') {4542# link to patch4543$patchno++;4544print$cgi->a({-href =>"#patch$patchno"},"patch") .4545" | ";4546}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4547# "commit" view and modified file (not only pure rename or copy)4548print$cgi->a({-href => href(action=>"blobdiff",4549 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4550 hash_base=>$hash, hash_parent_base=>$parent,4551 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4552"diff") .4553" | ";4554}4555print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4556 hash_base=>$parent, file_name=>$diff->{'to_file'})},4557"blob") ." | ";4558if($have_blame) {4559print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4560 file_name=>$diff->{'to_file'})},4561"blame") ." | ";4562}4563print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4564 file_name=>$diff->{'to_file'})},4565"history");4566print"</td>\n";45674568}# we should not encounter Unmerged (U) or Unknown (X) status4569print"</tr>\n";4570}4571print"</tbody>"if$has_header;4572print"</table>\n";4573}45744575sub git_patchset_body {4576my($fd,$difftree,$hash,@hash_parents) =@_;4577my($hash_parent) =$hash_parents[0];45784579my$is_combined= (@hash_parents>1);4580my$patch_idx=0;4581my$patch_number=0;4582my$patch_line;4583my$diffinfo;4584my$to_name;4585my(%from,%to);45864587print"<div class=\"patchset\">\n";45884589# skip to first patch4590while($patch_line= <$fd>) {4591chomp$patch_line;45924593last if($patch_line=~m/^diff /);4594}45954596 PATCH:4597while($patch_line) {45984599# parse "git diff" header line4600if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4601# $1 is from_name, which we do not use4602$to_name= unquote($2);4603$to_name=~s!^b/!!;4604}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4605# $1 is 'cc' or 'combined', which we do not use4606$to_name= unquote($2);4607}else{4608$to_name=undef;4609}46104611# check if current patch belong to current raw line4612# and parse raw git-diff line if needed4613if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4614# this is continuation of a split patch4615print"<div class=\"patch cont\">\n";4616}else{4617# advance raw git-diff output if needed4618$patch_idx++ifdefined$diffinfo;46194620# read and prepare patch information4621$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);46224623# compact combined diff output can have some patches skipped4624# find which patch (using pathname of result) we are at now;4625if($is_combined) {4626while($to_namene$diffinfo->{'to_file'}) {4627print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4628 format_diff_cc_simplified($diffinfo,@hash_parents) .4629"</div>\n";# class="patch"46304631$patch_idx++;4632$patch_number++;46334634last if$patch_idx>$#$difftree;4635$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4636}4637}46384639# modifies %from, %to hashes4640 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);46414642# this is first patch for raw difftree line with $patch_idx index4643# we index @$difftree array from 0, but number patches from 14644print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4645}46464647# git diff header4648#assert($patch_line =~ m/^diff /) if DEBUG;4649#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4650$patch_number++;4651# print "git diff" header4652print format_git_diff_header_line($patch_line,$diffinfo,4653 \%from, \%to);46544655# print extended diff header4656print"<div class=\"diff extended_header\">\n";4657 EXTENDED_HEADER:4658while($patch_line= <$fd>) {4659chomp$patch_line;46604661last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);46624663print format_extended_diff_header_line($patch_line,$diffinfo,4664 \%from, \%to);4665}4666print"</div>\n";# class="diff extended_header"46674668# from-file/to-file diff header4669if(!$patch_line) {4670print"</div>\n";# class="patch"4671last PATCH;4672}4673next PATCH if($patch_line=~m/^diff /);4674#assert($patch_line =~ m/^---/) if DEBUG;46754676my$last_patch_line=$patch_line;4677$patch_line= <$fd>;4678chomp$patch_line;4679#assert($patch_line =~ m/^\+\+\+/) if DEBUG;46804681print format_diff_from_to_header($last_patch_line,$patch_line,4682$diffinfo, \%from, \%to,4683@hash_parents);46844685# the patch itself4686 LINE:4687while($patch_line= <$fd>) {4688chomp$patch_line;46894690next PATCH if($patch_line=~m/^diff /);46914692print format_diff_line($patch_line, \%from, \%to);4693}46944695}continue{4696print"</div>\n";# class="patch"4697}46984699# for compact combined (--cc) format, with chunk and patch simplification4700# the patchset might be empty, but there might be unprocessed raw lines4701for(++$patch_idxif$patch_number>0;4702$patch_idx<@$difftree;4703++$patch_idx) {4704# read and prepare patch information4705$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);47064707# generate anchor for "patch" links in difftree / whatchanged part4708print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4709 format_diff_cc_simplified($diffinfo,@hash_parents) .4710"</div>\n";# class="patch"47114712$patch_number++;4713}47144715if($patch_number==0) {4716if(@hash_parents>1) {4717print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4718}else{4719print"<div class=\"diff nodifferences\">No differences found</div>\n";4720}4721}47224723print"</div>\n";# class="patchset"4724}47254726# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .47274728# fills project list info (age, description, owner, forks) for each4729# project in the list, removing invalid projects from returned list4730# NOTE: modifies $projlist, but does not remove entries from it4731sub fill_project_list_info {4732my($projlist,$check_forks) =@_;4733my@projects;47344735my$show_ctags= gitweb_check_feature('ctags');4736 PROJECT:4737foreachmy$pr(@$projlist) {4738my(@activity) = git_get_last_activity($pr->{'path'});4739unless(@activity) {4740next PROJECT;4741}4742($pr->{'age'},$pr->{'age_string'}) =@activity;4743if(!defined$pr->{'descr'}) {4744my$descr= git_get_project_description($pr->{'path'}) ||"";4745$descr= to_utf8($descr);4746$pr->{'descr_long'} =$descr;4747$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4748}4749if(!defined$pr->{'owner'}) {4750$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4751}4752if($check_forks) {4753my$pname=$pr->{'path'};4754if(($pname=~s/\.git$//) &&4755($pname!~/\/$/) &&4756(-d "$projectroot/$pname")) {4757$pr->{'forks'} ="-d$projectroot/$pname";4758}else{4759$pr->{'forks'} =0;4760}4761}4762$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4763push@projects,$pr;4764}47654766return@projects;4767}47684769# print 'sort by' <th> element, generating 'sort by $name' replay link4770# if that order is not selected4771sub print_sort_th {4772print format_sort_th(@_);4773}47744775sub format_sort_th {4776my($name,$order,$header) =@_;4777my$sort_th="";4778$header||=ucfirst($name);47794780if($ordereq$name) {4781$sort_th.="<th>$header</th>\n";4782}else{4783$sort_th.="<th>".4784$cgi->a({-href => href(-replay=>1, order=>$name),4785-class=>"header"},$header) .4786"</th>\n";4787}47884789return$sort_th;4790}47914792sub git_project_list_body {4793# actually uses global variable $project4794my($projlist,$order,$from,$to,$extra,$no_header) =@_;47954796my$check_forks= gitweb_check_feature('forks');4797my@projects= fill_project_list_info($projlist,$check_forks);47984799$order||=$default_projects_order;4800$from=0unlessdefined$from;4801$to=$#projectsif(!defined$to||$#projects<$to);48024803my%order_info= (4804 project => { key =>'path', type =>'str'},4805 descr => { key =>'descr_long', type =>'str'},4806 owner => { key =>'owner', type =>'str'},4807 age => { key =>'age', type =>'num'}4808);4809my$oi=$order_info{$order};4810if($oi->{'type'}eq'str') {4811@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4812}else{4813@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4814}48154816my$show_ctags= gitweb_check_feature('ctags');4817if($show_ctags) {4818my%ctags;4819foreachmy$p(@projects) {4820foreachmy$ct(keys%{$p->{'ctags'}}) {4821$ctags{$ct} +=$p->{'ctags'}->{$ct};4822}4823}4824my$cloud= git_populate_project_tagcloud(\%ctags);4825print git_show_project_tagcloud($cloud,64);4826}48274828print"<table class=\"project_list\">\n";4829unless($no_header) {4830print"<tr>\n";4831if($check_forks) {4832print"<th></th>\n";4833}4834 print_sort_th('project',$order,'Project');4835 print_sort_th('descr',$order,'Description');4836 print_sort_th('owner',$order,'Owner');4837 print_sort_th('age',$order,'Last Change');4838print"<th></th>\n".# for links4839"</tr>\n";4840}4841my$alternate=1;4842my$tagfilter=$cgi->param('by_tag');4843for(my$i=$from;$i<=$to;$i++) {4844my$pr=$projects[$i];48454846next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4847next if$searchtextand not$pr->{'path'} =~/$searchtext/4848and not$pr->{'descr_long'} =~/$searchtext/;4849# Weed out forks or non-matching entries of search4850if($check_forks) {4851my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4852$forkbase="^$forkbase"if$forkbase;4853next ifnot$searchtextand not$tagfilterand$show_ctags4854and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4855}48564857if($alternate) {4858print"<tr class=\"dark\">\n";4859}else{4860print"<tr class=\"light\">\n";4861}4862$alternate^=1;4863if($check_forks) {4864print"<td>";4865if($pr->{'forks'}) {4866print"<!--$pr->{'forks'} -->\n";4867print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4868}4869print"</td>\n";4870}4871print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4872-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4873"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4874-class=>"list", -title =>$pr->{'descr_long'}},4875 esc_html($pr->{'descr'})) ."</td>\n".4876"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4877print"<td class=\"". age_class($pr->{'age'}) ."\">".4878(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4879"<td class=\"link\">".4880$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4881$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4882$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4883$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4884($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4885"</td>\n".4886"</tr>\n";4887}4888if(defined$extra) {4889print"<tr>\n";4890if($check_forks) {4891print"<td></td>\n";4892}4893print"<td colspan=\"5\">$extra</td>\n".4894"</tr>\n";4895}4896print"</table>\n";4897}48984899sub git_log_body {4900# uses global variable $project4901my($commitlist,$from,$to,$refs,$extra) =@_;49024903$from=0unlessdefined$from;4904$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49054906for(my$i=0;$i<=$to;$i++) {4907my%co= %{$commitlist->[$i]};4908next if!%co;4909my$commit=$co{'id'};4910my$ref= format_ref_marker($refs,$commit);4911 git_print_header_div('commit',4912"<span class=\"age\">$co{'age_string'}</span>".4913 esc_html($co{'title'}) .$ref,4914$commit);4915print"<div class=\"title_text\">\n".4916"<div class=\"log_link\">\n".4917$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4918" | ".4919$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4920" | ".4921$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4922"<br/>\n".4923"</div>\n";4924 git_print_authorship(\%co, -tag =>'span');4925print"<br/>\n</div>\n";49264927print"<div class=\"log_body\">\n";4928 git_print_log($co{'comment'}, -final_empty_line=>1);4929print"</div>\n";4930}4931if($extra) {4932print"<div class=\"page_nav\">\n";4933print"$extra\n";4934print"</div>\n";4935}4936}49374938sub git_shortlog_body {4939# uses global variable $project4940my($commitlist,$from,$to,$refs,$extra) =@_;49414942$from=0unlessdefined$from;4943$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49444945print"<table class=\"shortlog\">\n";4946my$alternate=1;4947for(my$i=$from;$i<=$to;$i++) {4948my%co= %{$commitlist->[$i]};4949my$commit=$co{'id'};4950my$ref= format_ref_marker($refs,$commit);4951if($alternate) {4952print"<tr class=\"dark\">\n";4953}else{4954print"<tr class=\"light\">\n";4955}4956$alternate^=1;4957# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4958print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4959 format_author_html('td', \%co,10) ."<td>";4960print format_subject_html($co{'title'},$co{'title_short'},4961 href(action=>"commit", hash=>$commit),$ref);4962print"</td>\n".4963"<td class=\"link\">".4964$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4965$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4966$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4967my$snapshot_links= format_snapshot_links($commit);4968if(defined$snapshot_links) {4969print" | ".$snapshot_links;4970}4971print"</td>\n".4972"</tr>\n";4973}4974if(defined$extra) {4975print"<tr>\n".4976"<td colspan=\"4\">$extra</td>\n".4977"</tr>\n";4978}4979print"</table>\n";4980}49814982sub git_history_body {4983# Warning: assumes constant type (blob or tree) during history4984my($commitlist,$from,$to,$refs,$extra,4985$file_name,$file_hash,$ftype) =@_;49864987$from=0unlessdefined$from;4988$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});49894990print"<table class=\"history\">\n";4991my$alternate=1;4992for(my$i=$from;$i<=$to;$i++) {4993my%co= %{$commitlist->[$i]};4994if(!%co) {4995next;4996}4997my$commit=$co{'id'};49984999my$ref= format_ref_marker($refs,$commit);50005001if($alternate) {5002print"<tr class=\"dark\">\n";5003}else{5004print"<tr class=\"light\">\n";5005}5006$alternate^=1;5007print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5008# shortlog: format_author_html('td', \%co, 10)5009 format_author_html('td', \%co,15,3) ."<td>";5010# originally git_history used chop_str($co{'title'}, 50)5011print format_subject_html($co{'title'},$co{'title_short'},5012 href(action=>"commit", hash=>$commit),$ref);5013print"</td>\n".5014"<td class=\"link\">".5015$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5016$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");50175018if($ftypeeq'blob') {5019my$blob_current=$file_hash;5020my$blob_parent= git_get_hash_by_path($commit,$file_name);5021if(defined$blob_current&&defined$blob_parent&&5022$blob_currentne$blob_parent) {5023print" | ".5024$cgi->a({-href => href(action=>"blobdiff",5025 hash=>$blob_current, hash_parent=>$blob_parent,5026 hash_base=>$hash_base, hash_parent_base=>$commit,5027 file_name=>$file_name)},5028"diff to current");5029}5030}5031print"</td>\n".5032"</tr>\n";5033}5034if(defined$extra) {5035print"<tr>\n".5036"<td colspan=\"4\">$extra</td>\n".5037"</tr>\n";5038}5039print"</table>\n";5040}50415042sub git_tags_body {5043# uses global variable $project5044my($taglist,$from,$to,$extra) =@_;5045$from=0unlessdefined$from;5046$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);50475048print"<table class=\"tags\">\n";5049my$alternate=1;5050for(my$i=$from;$i<=$to;$i++) {5051my$entry=$taglist->[$i];5052my%tag=%$entry;5053my$comment=$tag{'subject'};5054my$comment_short;5055if(defined$comment) {5056$comment_short= chop_str($comment,30,5);5057}5058if($alternate) {5059print"<tr class=\"dark\">\n";5060}else{5061print"<tr class=\"light\">\n";5062}5063$alternate^=1;5064if(defined$tag{'age'}) {5065print"<td><i>$tag{'age'}</i></td>\n";5066}else{5067print"<td></td>\n";5068}5069print"<td>".5070$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),5071-class=>"list name"}, esc_html($tag{'name'})) .5072"</td>\n".5073"<td>";5074if(defined$comment) {5075print format_subject_html($comment,$comment_short,5076 href(action=>"tag", hash=>$tag{'id'}));5077}5078print"</td>\n".5079"<td class=\"selflink\">";5080if($tag{'type'}eq"tag") {5081print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");5082}else{5083print" ";5084}5085print"</td>\n".5086"<td class=\"link\">"." | ".5087$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});5088if($tag{'reftype'}eq"commit") {5089print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .5090" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");5091}elsif($tag{'reftype'}eq"blob") {5092print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");5093}5094print"</td>\n".5095"</tr>";5096}5097if(defined$extra) {5098print"<tr>\n".5099"<td colspan=\"5\">$extra</td>\n".5100"</tr>\n";5101}5102print"</table>\n";5103}51045105sub git_heads_body {5106# uses global variable $project5107my($headlist,$head,$from,$to,$extra) =@_;5108$from=0unlessdefined$from;5109$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);51105111print"<table class=\"heads\">\n";5112my$alternate=1;5113for(my$i=$from;$i<=$to;$i++) {5114my$entry=$headlist->[$i];5115my%ref=%$entry;5116my$curr=$ref{'id'}eq$head;5117if($alternate) {5118print"<tr class=\"dark\">\n";5119}else{5120print"<tr class=\"light\">\n";5121}5122$alternate^=1;5123print"<td><i>$ref{'age'}</i></td>\n".5124($curr?"<td class=\"current_head\">":"<td>") .5125$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),5126-class=>"list name"},esc_html($ref{'name'})) .5127"</td>\n".5128"<td class=\"link\">".5129$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".5130$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".5131$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .5132"</td>\n".5133"</tr>";5134}5135if(defined$extra) {5136print"<tr>\n".5137"<td colspan=\"3\">$extra</td>\n".5138"</tr>\n";5139}5140print"</table>\n";5141}51425143# Display a single remote block5144sub git_remote_block {5145my($remote,$rdata,$limit,$head) =@_;51465147my$heads=$rdata->{'heads'};5148my$fetch=$rdata->{'fetch'};5149my$push=$rdata->{'push'};51505151my$urls_table="<table class=\"projects_list\">\n";51525153if(defined$fetch) {5154if($fetcheq$push) {5155$urls_table.= format_repo_url("URL",$fetch);5156}else{5157$urls_table.= format_repo_url("Fetch URL",$fetch);5158$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;5159}5160}elsif(defined$push) {5161$urls_table.= format_repo_url("Push URL",$push);5162}else{5163$urls_table.= format_repo_url("","No remote URL");5164}51655166$urls_table.="</table>\n";51675168my$dots;5169if(defined$limit&&$limit<@$heads) {5170$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");5171}51725173print$urls_table;5174 git_heads_body($heads,$head,0,$limit,$dots);5175}51765177# Display a list of remote names with the respective fetch and push URLs5178sub git_remotes_list {5179my($remotedata,$limit) =@_;5180print"<table class=\"heads\">\n";5181my$alternate=1;5182my@remotes=sort keys%$remotedata;51835184my$limited=$limit&&$limit<@remotes;51855186$#remotes=$limit-1if$limited;51875188while(my$remote=shift@remotes) {5189my$rdata=$remotedata->{$remote};5190my$fetch=$rdata->{'fetch'};5191my$push=$rdata->{'push'};5192if($alternate) {5193print"<tr class=\"dark\">\n";5194}else{5195print"<tr class=\"light\">\n";5196}5197$alternate^=1;5198print"<td>".5199$cgi->a({-href=> href(action=>'remotes', hash=>$remote),5200-class=>"list name"},esc_html($remote)) .5201"</td>";5202print"<td class=\"link\">".5203(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .5204" | ".5205(defined$push?$cgi->a({-href=>$push},"push") :"push") .5206"</td>";52075208print"</tr>\n";5209}52105211if($limited) {5212print"<tr>\n".5213"<td colspan=\"3\">".5214$cgi->a({-href => href(action=>"remotes")},"...") .5215"</td>\n"."</tr>\n";5216}52175218print"</table>";5219}52205221# Display remote heads grouped by remote, unless there are too many5222# remotes, in which case we only display the remote names5223sub git_remotes_body {5224my($remotedata,$limit,$head) =@_;5225if($limitand$limit<keys%$remotedata) {5226 git_remotes_list($remotedata,$limit);5227}else{5228 fill_remote_heads($remotedata);5229while(my($remote,$rdata) =each%$remotedata) {5230 git_print_section({-class=>"remote", -id=>$remote},5231["remotes",$remote,$remote],sub{5232 git_remote_block($remote,$rdata,$limit,$head);5233});5234}5235}5236}52375238sub git_search_grep_body {5239my($commitlist,$from,$to,$extra) =@_;5240$from=0unlessdefined$from;5241$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);52425243print"<table class=\"commit_search\">\n";5244my$alternate=1;5245for(my$i=$from;$i<=$to;$i++) {5246my%co= %{$commitlist->[$i]};5247if(!%co) {5248next;5249}5250my$commit=$co{'id'};5251if($alternate) {5252print"<tr class=\"dark\">\n";5253}else{5254print"<tr class=\"light\">\n";5255}5256$alternate^=1;5257print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5258 format_author_html('td', \%co,15,5) .5259"<td>".5260$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5261-class=>"list subject"},5262 chop_and_escape_str($co{'title'},50) ."<br/>");5263my$comment=$co{'comment'};5264foreachmy$line(@$comment) {5265if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5266my($lead,$match,$trail) = ($1,$2,$3);5267$match= chop_str($match,70,5,'center');5268my$contextlen=int((80-length($match))/2);5269$contextlen=30if($contextlen>30);5270$lead= chop_str($lead,$contextlen,10,'left');5271$trail= chop_str($trail,$contextlen,10,'right');52725273$lead= esc_html($lead);5274$match= esc_html($match);5275$trail= esc_html($trail);52765277print"$lead<span class=\"match\">$match</span>$trail<br />";5278}5279}5280print"</td>\n".5281"<td class=\"link\">".5282$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5283" | ".5284$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5285" | ".5286$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5287print"</td>\n".5288"</tr>\n";5289}5290if(defined$extra) {5291print"<tr>\n".5292"<td colspan=\"3\">$extra</td>\n".5293"</tr>\n";5294}5295print"</table>\n";5296}52975298## ======================================================================5299## ======================================================================5300## actions53015302sub git_project_list {5303my$order=$input_params{'order'};5304if(defined$order&&$order!~m/none|project|descr|owner|age/) {5305 die_error(400,"Unknown order parameter");5306}53075308my@list= git_get_projects_list();5309if(!@list) {5310 die_error(404,"No projects found");5311}53125313 git_header_html();5314if(defined$home_text&& -f $home_text) {5315print"<div class=\"index_include\">\n";5316 insert_file($home_text);5317print"</div>\n";5318}5319print$cgi->startform(-method=>"get") .5320"<p class=\"projsearch\">Search:\n".5321$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5322"</p>".5323$cgi->end_form() ."\n";5324 git_project_list_body(\@list,$order);5325 git_footer_html();5326}53275328sub git_forks {5329my$order=$input_params{'order'};5330if(defined$order&&$order!~m/none|project|descr|owner|age/) {5331 die_error(400,"Unknown order parameter");5332}53335334my@list= git_get_projects_list($project);5335if(!@list) {5336 die_error(404,"No forks found");5337}53385339 git_header_html();5340 git_print_page_nav('','');5341 git_print_header_div('summary',"$projectforks");5342 git_project_list_body(\@list,$order);5343 git_footer_html();5344}53455346sub git_project_index {5347my@projects= git_get_projects_list($project);53485349print$cgi->header(5350-type =>'text/plain',5351-charset =>'utf-8',5352-content_disposition =>'inline; filename="index.aux"');53535354foreachmy$pr(@projects) {5355if(!exists$pr->{'owner'}) {5356$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5357}53585359my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5360# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5361$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5362$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5363$path=~s/ /\+/g;5364$owner=~s/ /\+/g;53655366print"$path$owner\n";5367}5368}53695370sub git_summary {5371my$descr= git_get_project_description($project) ||"none";5372my%co= parse_commit("HEAD");5373my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5374my$head=$co{'id'};5375my$remote_heads= gitweb_check_feature('remote_heads');53765377my$owner= git_get_project_owner($project);53785379my$refs= git_get_references();5380# These get_*_list functions return one more to allow us to see if5381# there are more ...5382my@taglist= git_get_tags_list(16);5383my@headlist= git_get_heads_list(16);5384my%remotedata=$remote_heads? git_get_remotes_list() : ();5385my@forklist;5386my$check_forks= gitweb_check_feature('forks');53875388if($check_forks) {5389@forklist= git_get_projects_list($project);5390}53915392 git_header_html();5393 git_print_page_nav('summary','',$head);53945395print"<div class=\"title\"> </div>\n";5396print"<table class=\"projects_list\">\n".5397"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5398"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5399if(defined$cd{'rfc2822'}) {5400print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";5401}54025403# use per project git URL list in $projectroot/$project/cloneurl5404# or make project git URL from git base URL and project name5405my$url_tag="URL";5406my@url_list= git_get_project_url_list($project);5407@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5408foreachmy$git_url(@url_list) {5409next unless$git_url;5410print format_repo_url($url_tag,$git_url);5411$url_tag="";5412}54135414# Tag cloud5415my$show_ctags= gitweb_check_feature('ctags');5416if($show_ctags) {5417my$ctags= git_get_project_ctags($project);5418my$cloud= git_populate_project_tagcloud($ctags);5419print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5420print"</td>\n<td>"unless%$ctags;5421print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5422print"</td>\n<td>"if%$ctags;5423print git_show_project_tagcloud($cloud,48);5424print"</td></tr>";5425}54265427print"</table>\n";54285429# If XSS prevention is on, we don't include README.html.5430# TODO: Allow a readme in some safe format.5431if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5432print"<div class=\"title\">readme</div>\n".5433"<div class=\"readme\">\n";5434 insert_file("$projectroot/$project/README.html");5435print"\n</div>\n";# class="readme"5436}54375438# we need to request one more than 16 (0..15) to check if5439# those 16 are all5440my@commitlist=$head? parse_commits($head,17) : ();5441if(@commitlist) {5442 git_print_header_div('shortlog');5443 git_shortlog_body(\@commitlist,0,15,$refs,5444$#commitlist<=15?undef:5445$cgi->a({-href => href(action=>"shortlog")},"..."));5446}54475448if(@taglist) {5449 git_print_header_div('tags');5450 git_tags_body(\@taglist,0,15,5451$#taglist<=15?undef:5452$cgi->a({-href => href(action=>"tags")},"..."));5453}54545455if(@headlist) {5456 git_print_header_div('heads');5457 git_heads_body(\@headlist,$head,0,15,5458$#headlist<=15?undef:5459$cgi->a({-href => href(action=>"heads")},"..."));5460}54615462if(%remotedata) {5463 git_print_header_div('remotes');5464 git_remotes_body(\%remotedata,15,$head);5465}54665467if(@forklist) {5468 git_print_header_div('forks');5469 git_project_list_body(\@forklist,'age',0,15,5470$#forklist<=15?undef:5471$cgi->a({-href => href(action=>"forks")},"..."),5472'no_header');5473}54745475 git_footer_html();5476}54775478sub git_tag {5479my%tag= parse_tag($hash);54805481if(!%tag) {5482 die_error(404,"Unknown tag object");5483}54845485my$head= git_get_head_hash($project);5486 git_header_html();5487 git_print_page_nav('','',$head,undef,$head);5488 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5489print"<div class=\"title_text\">\n".5490"<table class=\"object_header\">\n".5491"<tr>\n".5492"<td>object</td>\n".5493"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5494$tag{'object'}) ."</td>\n".5495"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5496$tag{'type'}) ."</td>\n".5497"</tr>\n";5498if(defined($tag{'author'})) {5499 git_print_authorship_rows(\%tag,'author');5500}5501print"</table>\n\n".5502"</div>\n";5503print"<div class=\"page_body\">";5504my$comment=$tag{'comment'};5505foreachmy$line(@$comment) {5506chomp$line;5507print esc_html($line, -nbsp=>1) ."<br/>\n";5508}5509print"</div>\n";5510 git_footer_html();5511}55125513sub git_blame_common {5514my$format=shift||'porcelain';5515if($formateq'porcelain'&&$cgi->param('js')) {5516$format='incremental';5517$action='blame_incremental';# for page title etc5518}55195520# permissions5521 gitweb_check_feature('blame')5522or die_error(403,"Blame view not allowed");55235524# error checking5525 die_error(400,"No file name given")unless$file_name;5526$hash_base||= git_get_head_hash($project);5527 die_error(404,"Couldn't find base commit")unless$hash_base;5528my%co= parse_commit($hash_base)5529or die_error(404,"Commit not found");5530my$ftype="blob";5531if(!defined$hash) {5532$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5533or die_error(404,"Error looking up file");5534}else{5535$ftype= git_get_type($hash);5536if($ftype!~"blob") {5537 die_error(400,"Object is not a blob");5538}5539}55405541my$fd;5542if($formateq'incremental') {5543# get file contents (as base)5544open$fd,"-|", git_cmd(),'cat-file','blob',$hash5545or die_error(500,"Open git-cat-file failed");5546}elsif($formateq'data') {5547# run git-blame --incremental5548open$fd,"-|", git_cmd(),"blame","--incremental",5549$hash_base,"--",$file_name5550or die_error(500,"Open git-blame --incremental failed");5551}else{5552# run git-blame --porcelain5553open$fd,"-|", git_cmd(),"blame",'-p',5554$hash_base,'--',$file_name5555or die_error(500,"Open git-blame --porcelain failed");5556}55575558# incremental blame data returns early5559if($formateq'data') {5560print$cgi->header(5561-type=>"text/plain", -charset =>"utf-8",5562-status=>"200 OK");5563local$| =1;# output autoflush5564printwhile<$fd>;5565close$fd5566or print"ERROR$!\n";55675568print'END';5569if(defined$t0&& gitweb_check_feature('timed')) {5570print' '.5571 tv_interval($t0, [ gettimeofday() ]).5572' '.$number_of_git_cmds;5573}5574print"\n";55755576return;5577}55785579# page header5580 git_header_html();5581my$formats_nav=5582$cgi->a({-href => href(action=>"blob", -replay=>1)},5583"blob") .5584" | ";5585if($formateq'incremental') {5586$formats_nav.=5587$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5588"blame") ." (non-incremental)";5589}else{5590$formats_nav.=5591$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5592"blame") ." (incremental)";5593}5594$formats_nav.=5595" | ".5596$cgi->a({-href => href(action=>"history", -replay=>1)},5597"history") .5598" | ".5599$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5600"HEAD");5601 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5602 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5603 git_print_page_path($file_name,$ftype,$hash_base);56045605# page body5606if($formateq'incremental') {5607print"<noscript>\n<div class=\"error\"><center><b>\n".5608"This page requires JavaScript to run.\nUse ".5609$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5610'this page').5611" instead.\n".5612"</b></center></div>\n</noscript>\n";56135614print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5615}56165617print qq!<div class="page_body">\n!;5618print qq!<div id="progress_info">.../ ...</div>\n!5619if($formateq'incremental');5620print qq!<table id="blame_table"class="blame" width="100%">\n!.5621#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5622 qq!<thead>\n!.5623 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5624 qq!</thead>\n!.5625 qq!<tbody>\n!;56265627my@rev_color=qw(light dark);5628my$num_colors=scalar(@rev_color);5629my$current_color=0;56305631if($formateq'incremental') {5632my$color_class=$rev_color[$current_color];56335634#contents of a file5635my$linenr=0;5636 LINE:5637while(my$line= <$fd>) {5638chomp$line;5639$linenr++;56405641print qq!<tr id="l$linenr"class="$color_class">!.5642 qq!<td class="sha1"><a href=""> </a></td>!.5643 qq!<td class="linenr">!.5644 qq!<a class="linenr" href="">$linenr</a></td>!;5645print qq!<td class="pre">! . esc_html($line) ."</td>\n";5646print qq!</tr>\n!;5647}56485649}else{# porcelain, i.e. ordinary blame5650my%metainfo= ();# saves information about commits56515652# blame data5653 LINE:5654while(my$line= <$fd>) {5655chomp$line;5656# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5657# no <lines in group> for subsequent lines in group of lines5658my($full_rev,$orig_lineno,$lineno,$group_size) =5659($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5660if(!exists$metainfo{$full_rev}) {5661$metainfo{$full_rev} = {'nprevious'=>0};5662}5663my$meta=$metainfo{$full_rev};5664my$data;5665while($data= <$fd>) {5666chomp$data;5667last if($data=~s/^\t//);# contents of line5668if($data=~/^(\S+)(?: (.*))?$/) {5669$meta->{$1} =$2unlessexists$meta->{$1};5670}5671if($data=~/^previous /) {5672$meta->{'nprevious'}++;5673}5674}5675my$short_rev=substr($full_rev,0,8);5676my$author=$meta->{'author'};5677my%date=5678 parse_date($meta->{'author-time'},$meta->{'author-tz'});5679my$date=$date{'iso-tz'};5680if($group_size) {5681$current_color= ($current_color+1) %$num_colors;5682}5683my$tr_class=$rev_color[$current_color];5684$tr_class.=' boundary'if(exists$meta->{'boundary'});5685$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5686$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5687print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5688if($group_size) {5689print"<td class=\"sha1\"";5690print" title=\"". esc_html($author) .",$date\"";5691print" rowspan=\"$group_size\""if($group_size>1);5692print">";5693print$cgi->a({-href => href(action=>"commit",5694 hash=>$full_rev,5695 file_name=>$file_name)},5696 esc_html($short_rev));5697if($group_size>=2) {5698my@author_initials= ($author=~/\b([[:upper:]])\B/g);5699if(@author_initials) {5700print"<br />".5701 esc_html(join('',@author_initials));5702# or join('.', ...)5703}5704}5705print"</td>\n";5706}5707# 'previous' <sha1 of parent commit> <filename at commit>5708if(exists$meta->{'previous'} &&5709$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5710$meta->{'parent'} =$1;5711$meta->{'file_parent'} = unquote($2);5712}5713my$linenr_commit=5714exists($meta->{'parent'}) ?5715$meta->{'parent'} :$full_rev;5716my$linenr_filename=5717exists($meta->{'file_parent'}) ?5718$meta->{'file_parent'} : unquote($meta->{'filename'});5719my$blamed= href(action =>'blame',5720 file_name =>$linenr_filename,5721 hash_base =>$linenr_commit);5722print"<td class=\"linenr\">";5723print$cgi->a({ -href =>"$blamed#l$orig_lineno",5724-class=>"linenr"},5725 esc_html($lineno));5726print"</td>";5727print"<td class=\"pre\">". esc_html($data) ."</td>\n";5728print"</tr>\n";5729}# end while57305731}57325733# footer5734print"</tbody>\n".5735"</table>\n";# class="blame"5736print"</div>\n";# class="blame_body"5737close$fd5738or print"Reading blob failed\n";57395740 git_footer_html();5741}57425743sub git_blame {5744 git_blame_common();5745}57465747sub git_blame_incremental {5748 git_blame_common('incremental');5749}57505751sub git_blame_data {5752 git_blame_common('data');5753}57545755sub git_tags {5756my$head= git_get_head_hash($project);5757 git_header_html();5758 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));5759 git_print_header_div('summary',$project);57605761my@tagslist= git_get_tags_list();5762if(@tagslist) {5763 git_tags_body(\@tagslist);5764}5765 git_footer_html();5766}57675768sub git_heads {5769my$head= git_get_head_hash($project);5770 git_header_html();5771 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));5772 git_print_header_div('summary',$project);57735774my@headslist= git_get_heads_list();5775if(@headslist) {5776 git_heads_body(\@headslist,$head);5777}5778 git_footer_html();5779}57805781# used both for single remote view and for list of all the remotes5782sub git_remotes {5783 gitweb_check_feature('remote_heads')5784or die_error(403,"Remote heads view is disabled");57855786my$head= git_get_head_hash($project);5787my$remote=$input_params{'hash'};57885789my$remotedata= git_get_remotes_list($remote);5790 die_error(500,"Unable to get remote information")unlessdefined$remotedata;57915792unless(%$remotedata) {5793 die_error(404,defined$remote?5794"Remote$remotenot found":5795"No remotes found");5796}57975798 git_header_html(undef,undef, -action_extra =>$remote);5799 git_print_page_nav('','',$head,undef,$head,5800 format_ref_views($remote?'':'remotes'));58015802 fill_remote_heads($remotedata);5803if(defined$remote) {5804 git_print_header_div('remotes',"$remoteremote for$project");5805 git_remote_block($remote,$remotedata->{$remote},undef,$head);5806}else{5807 git_print_header_div('summary',"$projectremotes");5808 git_remotes_body($remotedata,undef,$head);5809}58105811 git_footer_html();5812}58135814sub git_blob_plain {5815my$type=shift;5816my$expires;58175818if(!defined$hash) {5819if(defined$file_name) {5820my$base=$hash_base|| git_get_head_hash($project);5821$hash= git_get_hash_by_path($base,$file_name,"blob")5822or die_error(404,"Cannot find file");5823}else{5824 die_error(400,"No file name defined");5825}5826}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5827# blobs defined by non-textual hash id's can be cached5828$expires="+1d";5829}58305831open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5832or die_error(500,"Open git-cat-file blob '$hash' failed");58335834# content-type (can include charset)5835$type= blob_contenttype($fd,$file_name,$type);58365837# "save as" filename, even when no $file_name is given5838my$save_as="$hash";5839if(defined$file_name) {5840$save_as=$file_name;5841}elsif($type=~m/^text\//) {5842$save_as.='.txt';5843}58445845# With XSS prevention on, blobs of all types except a few known safe5846# ones are served with "Content-Disposition: attachment" to make sure5847# they don't run in our security domain. For certain image types,5848# blob view writes an <img> tag referring to blob_plain view, and we5849# want to be sure not to break that by serving the image as an5850# attachment (though Firefox 3 doesn't seem to care).5851my$sandbox=$prevent_xss&&5852$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;58535854print$cgi->header(5855-type =>$type,5856-expires =>$expires,5857-content_disposition =>5858($sandbox?'attachment':'inline')5859.'; filename="'.$save_as.'"');5860local$/=undef;5861binmode STDOUT,':raw';5862print<$fd>;5863binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5864close$fd;5865}58665867sub git_blob {5868my$expires;58695870if(!defined$hash) {5871if(defined$file_name) {5872my$base=$hash_base|| git_get_head_hash($project);5873$hash= git_get_hash_by_path($base,$file_name,"blob")5874or die_error(404,"Cannot find file");5875}else{5876 die_error(400,"No file name defined");5877}5878}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5879# blobs defined by non-textual hash id's can be cached5880$expires="+1d";5881}58825883my$have_blame= gitweb_check_feature('blame');5884open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5885or die_error(500,"Couldn't cat$file_name,$hash");5886my$mimetype= blob_mimetype($fd,$file_name);5887# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5888if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5889close$fd;5890return git_blob_plain($mimetype);5891}5892# we can have blame only for text/* mimetype5893$have_blame&&= ($mimetype=~m!^text/!);58945895my$highlight= gitweb_check_feature('highlight');5896my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);5897$fd= run_highlighter($fd,$highlight,$syntax)5898if$syntax;58995900 git_header_html(undef,$expires);5901my$formats_nav='';5902if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5903if(defined$file_name) {5904if($have_blame) {5905$formats_nav.=5906$cgi->a({-href => href(action=>"blame", -replay=>1)},5907"blame") .5908" | ";5909}5910$formats_nav.=5911$cgi->a({-href => href(action=>"history", -replay=>1)},5912"history") .5913" | ".5914$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5915"raw") .5916" | ".5917$cgi->a({-href => href(action=>"blob",5918 hash_base=>"HEAD", file_name=>$file_name)},5919"HEAD");5920}else{5921$formats_nav.=5922$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5923"raw");5924}5925 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5926 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5927}else{5928print"<div class=\"page_nav\">\n".5929"<br/><br/></div>\n".5930"<div class=\"title\">".esc_html($hash)."</div>\n";5931}5932 git_print_page_path($file_name,"blob",$hash_base);5933print"<div class=\"page_body\">\n";5934if($mimetype=~m!^image/!) {5935print qq!<img type="!.esc_attr($mimetype).qq!"!;5936if($file_name) {5937print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;5938}5939print qq! src="! .5940 href(action=>"blob_plain", hash=>$hash,5941 hash_base=>$hash_base, file_name=>$file_name) .5942 qq!"/>\n!;5943}else{5944my$nr;5945while(my$line= <$fd>) {5946chomp$line;5947$nr++;5948$line= untabify($line);5949printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,5950$nr, esc_attr(href(-replay =>1)),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);5951}5952}5953close$fd5954or print"Reading blob failed.\n";5955print"</div>";5956 git_footer_html();5957}59585959sub git_tree {5960if(!defined$hash_base) {5961$hash_base="HEAD";5962}5963if(!defined$hash) {5964if(defined$file_name) {5965$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5966}else{5967$hash=$hash_base;5968}5969}5970 die_error(404,"No such tree")unlessdefined($hash);59715972my$show_sizes= gitweb_check_feature('show-sizes');5973my$have_blame= gitweb_check_feature('blame');59745975my@entries= ();5976{5977local$/="\0";5978open my$fd,"-|", git_cmd(),"ls-tree",'-z',5979($show_sizes?'-l': ()),@extra_options,$hash5980or die_error(500,"Open git-ls-tree failed");5981@entries=map{chomp;$_} <$fd>;5982close$fd5983or die_error(404,"Reading tree failed");5984}59855986my$refs= git_get_references();5987my$ref= format_ref_marker($refs,$hash_base);5988 git_header_html();5989my$basedir='';5990if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5991my@views_nav= ();5992if(defined$file_name) {5993push@views_nav,5994$cgi->a({-href => href(action=>"history", -replay=>1)},5995"history"),5996$cgi->a({-href => href(action=>"tree",5997 hash_base=>"HEAD", file_name=>$file_name)},5998"HEAD"),5999}6000my$snapshot_links= format_snapshot_links($hash);6001if(defined$snapshot_links) {6002# FIXME: Should be available when we have no hash base as well.6003push@views_nav,$snapshot_links;6004}6005 git_print_page_nav('tree','',$hash_base,undef,undef,6006join(' | ',@views_nav));6007 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);6008}else{6009undef$hash_base;6010print"<div class=\"page_nav\">\n";6011print"<br/><br/></div>\n";6012print"<div class=\"title\">".esc_html($hash)."</div>\n";6013}6014if(defined$file_name) {6015$basedir=$file_name;6016if($basedirne''&&substr($basedir, -1)ne'/') {6017$basedir.='/';6018}6019 git_print_page_path($file_name,'tree',$hash_base);6020}6021print"<div class=\"page_body\">\n";6022print"<table class=\"tree\">\n";6023my$alternate=1;6024# '..' (top directory) link if possible6025if(defined$hash_base&&6026defined$file_name&&$file_name=~m![^/]+$!) {6027if($alternate) {6028print"<tr class=\"dark\">\n";6029}else{6030print"<tr class=\"light\">\n";6031}6032$alternate^=1;60336034my$up=$file_name;6035$up=~s!/?[^/]+$!!;6036undef$upunless$up;6037# based on git_print_tree_entry6038print'<td class="mode">'. mode_str('040000') ."</td>\n";6039print'<td class="size"> </td>'."\n"if$show_sizes;6040print'<td class="list">';6041print$cgi->a({-href => href(action=>"tree",6042 hash_base=>$hash_base,6043 file_name=>$up)},6044"..");6045print"</td>\n";6046print"<td class=\"link\"></td>\n";60476048print"</tr>\n";6049}6050foreachmy$line(@entries) {6051my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);60526053if($alternate) {6054print"<tr class=\"dark\">\n";6055}else{6056print"<tr class=\"light\">\n";6057}6058$alternate^=1;60596060 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);60616062print"</tr>\n";6063}6064print"</table>\n".6065"</div>";6066 git_footer_html();6067}60686069sub snapshot_name {6070my($project,$hash) =@_;60716072# path/to/project.git -> project6073# path/to/project/.git -> project6074my$name= to_utf8($project);6075$name=~ s,([^/])/*\.git$,$1,;6076$name= basename($name);6077# sanitize name6078$name=~s/[[:cntrl:]]/?/g;60796080my$ver=$hash;6081if($hash=~/^[0-9a-fA-F]+$/) {6082# shorten SHA-1 hash6083my$full_hash= git_get_full_hash($project,$hash);6084if($full_hash=~/^$hash/&&length($hash) >7) {6085$ver= git_get_short_hash($project,$hash);6086}6087}elsif($hash=~m!^refs/tags/(.*)$!) {6088# tags don't need shortened SHA-1 hash6089$ver=$1;6090}else{6091# branches and other need shortened SHA-1 hash6092if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {6093$ver=$1;6094}6095$ver.='-'. git_get_short_hash($project,$hash);6096}6097# in case of hierarchical branch names6098$ver=~s!/!.!g;60996100# name = project-version_string6101$name="$name-$ver";61026103returnwantarray? ($name,$name) :$name;6104}61056106sub git_snapshot {6107my$format=$input_params{'snapshot_format'};6108if(!@snapshot_fmts) {6109 die_error(403,"Snapshots not allowed");6110}6111# default to first supported snapshot format6112$format||=$snapshot_fmts[0];6113if($format!~m/^[a-z0-9]+$/) {6114 die_error(400,"Invalid snapshot format parameter");6115}elsif(!exists($known_snapshot_formats{$format})) {6116 die_error(400,"Unknown snapshot format");6117}elsif($known_snapshot_formats{$format}{'disabled'}) {6118 die_error(403,"Snapshot format not allowed");6119}elsif(!grep($_eq$format,@snapshot_fmts)) {6120 die_error(403,"Unsupported snapshot format");6121}61226123my$type= git_get_type("$hash^{}");6124if(!$type) {6125 die_error(404,'Object does not exist');6126}elsif($typeeq'blob') {6127 die_error(400,'Object is not a tree-ish');6128}61296130my($name,$prefix) = snapshot_name($project,$hash);6131my$filename="$name$known_snapshot_formats{$format}{'suffix'}";6132my$cmd= quote_command(6133 git_cmd(),'archive',6134"--format=$known_snapshot_formats{$format}{'format'}",6135"--prefix=$prefix/",$hash);6136if(exists$known_snapshot_formats{$format}{'compressor'}) {6137$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});6138}61396140$filename=~s/(["\\])/\\$1/g;6141print$cgi->header(6142-type =>$known_snapshot_formats{$format}{'type'},6143-content_disposition =>'inline; filename="'.$filename.'"',6144-status =>'200 OK');61456146open my$fd,"-|",$cmd6147or die_error(500,"Execute git-archive failed");6148binmode STDOUT,':raw';6149print<$fd>;6150binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6151close$fd;6152}61536154sub git_log_generic {6155my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;61566157my$head= git_get_head_hash($project);6158if(!defined$base) {6159$base=$head;6160}6161if(!defined$page) {6162$page=0;6163}6164my$refs= git_get_references();61656166my$commit_hash=$base;6167if(defined$parent) {6168$commit_hash="$parent..$base";6169}6170my@commitlist=6171 parse_commits($commit_hash,101, (100*$page),6172defined$file_name? ($file_name,"--full-history") : ());61736174my$ftype;6175if(!defined$file_hash&&defined$file_name) {6176# some commits could have deleted file in question,6177# and not have it in tree, but one of them has to have it6178for(my$i=0;$i<@commitlist;$i++) {6179$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);6180last ifdefined$file_hash;6181}6182}6183if(defined$file_hash) {6184$ftype= git_get_type($file_hash);6185}6186if(defined$file_name&& !defined$ftype) {6187 die_error(500,"Unknown type of object");6188}6189my%co;6190if(defined$file_name) {6191%co= parse_commit($base)6192or die_error(404,"Unknown commit object");6193}619461956196my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);6197my$next_link='';6198if($#commitlist>=100) {6199$next_link=6200$cgi->a({-href => href(-replay=>1, page=>$page+1),6201-accesskey =>"n", -title =>"Alt-n"},"next");6202}6203my$patch_max= gitweb_get_feature('patches');6204if($patch_max&& !defined$file_name) {6205if($patch_max<0||@commitlist<=$patch_max) {6206$paging_nav.=" ⋅ ".6207$cgi->a({-href => href(action=>"patches", -replay=>1)},6208"patches");6209}6210}62116212 git_header_html();6213 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);6214if(defined$file_name) {6215 git_print_header_div('commit', esc_html($co{'title'}),$base);6216}else{6217 git_print_header_div('summary',$project)6218}6219 git_print_page_path($file_name,$ftype,$hash_base)6220if(defined$file_name);62216222$body_subr->(\@commitlist,0,99,$refs,$next_link,6223$file_name,$file_hash,$ftype);62246225 git_footer_html();6226}62276228sub git_log {6229 git_log_generic('log', \&git_log_body,6230$hash,$hash_parent);6231}62326233sub git_commit {6234$hash||=$hash_base||"HEAD";6235my%co= parse_commit($hash)6236or die_error(404,"Unknown commit object");62376238my$parent=$co{'parent'};6239my$parents=$co{'parents'};# listref62406241# we need to prepare $formats_nav before any parameter munging6242my$formats_nav;6243if(!defined$parent) {6244# --root commitdiff6245$formats_nav.='(initial)';6246}elsif(@$parents==1) {6247# single parent commit6248$formats_nav.=6249'(parent: '.6250$cgi->a({-href => href(action=>"commit",6251 hash=>$parent)},6252 esc_html(substr($parent,0,7))) .6253')';6254}else{6255# merge commit6256$formats_nav.=6257'(merge: '.6258join(' ',map{6259$cgi->a({-href => href(action=>"commit",6260 hash=>$_)},6261 esc_html(substr($_,0,7)));6262}@$parents) .6263')';6264}6265if(gitweb_check_feature('patches') &&@$parents<=1) {6266$formats_nav.=" | ".6267$cgi->a({-href => href(action=>"patch", -replay=>1)},6268"patch");6269}62706271if(!defined$parent) {6272$parent="--root";6273}6274my@difftree;6275open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",6276@diff_opts,6277(@$parents<=1?$parent:'-c'),6278$hash,"--"6279or die_error(500,"Open git-diff-tree failed");6280@difftree=map{chomp;$_} <$fd>;6281close$fdor die_error(404,"Reading git-diff-tree failed");62826283# non-textual hash id's can be cached6284my$expires;6285if($hash=~m/^[0-9a-fA-F]{40}$/) {6286$expires="+1d";6287}6288my$refs= git_get_references();6289my$ref= format_ref_marker($refs,$co{'id'});62906291 git_header_html(undef,$expires);6292 git_print_page_nav('commit','',6293$hash,$co{'tree'},$hash,6294$formats_nav);62956296if(defined$co{'parent'}) {6297 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6298}else{6299 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6300}6301print"<div class=\"title_text\">\n".6302"<table class=\"object_header\">\n";6303 git_print_authorship_rows(\%co);6304print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6305print"<tr>".6306"<td>tree</td>".6307"<td class=\"sha1\">".6308$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6309class=>"list"},$co{'tree'}) .6310"</td>".6311"<td class=\"link\">".6312$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6313"tree");6314my$snapshot_links= format_snapshot_links($hash);6315if(defined$snapshot_links) {6316print" | ".$snapshot_links;6317}6318print"</td>".6319"</tr>\n";63206321foreachmy$par(@$parents) {6322print"<tr>".6323"<td>parent</td>".6324"<td class=\"sha1\">".6325$cgi->a({-href => href(action=>"commit", hash=>$par),6326class=>"list"},$par) .6327"</td>".6328"<td class=\"link\">".6329$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6330" | ".6331$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6332"</td>".6333"</tr>\n";6334}6335print"</table>".6336"</div>\n";63376338print"<div class=\"page_body\">\n";6339 git_print_log($co{'comment'});6340print"</div>\n";63416342 git_difftree_body(\@difftree,$hash,@$parents);63436344 git_footer_html();6345}63466347sub git_object {6348# object is defined by:6349# - hash or hash_base alone6350# - hash_base and file_name6351my$type;63526353# - hash or hash_base alone6354if($hash|| ($hash_base&& !defined$file_name)) {6355my$object_id=$hash||$hash_base;63566357open my$fd,"-|", quote_command(6358 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6359or die_error(404,"Object does not exist");6360$type= <$fd>;6361chomp$type;6362close$fd6363or die_error(404,"Object does not exist");63646365# - hash_base and file_name6366}elsif($hash_base&&defined$file_name) {6367$file_name=~ s,/+$,,;63686369system(git_cmd(),"cat-file",'-e',$hash_base) ==06370or die_error(404,"Base object does not exist");63716372# here errors should not hapen6373open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6374or die_error(500,"Open git-ls-tree failed");6375my$line= <$fd>;6376close$fd;63776378#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6379unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6380 die_error(404,"File or directory for given base does not exist");6381}6382$type=$2;6383$hash=$3;6384}else{6385 die_error(400,"Not enough information to find object");6386}63876388print$cgi->redirect(-uri => href(action=>$type, -full=>1,6389 hash=>$hash, hash_base=>$hash_base,6390 file_name=>$file_name),6391-status =>'302 Found');6392}63936394sub git_blobdiff {6395my$format=shift||'html';63966397my$fd;6398my@difftree;6399my%diffinfo;6400my$expires;64016402# preparing $fd and %diffinfo for git_patchset_body6403# new style URI6404if(defined$hash_base&&defined$hash_parent_base) {6405if(defined$file_name) {6406# read raw output6407open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6408$hash_parent_base,$hash_base,6409"--", (defined$file_parent?$file_parent: ()),$file_name6410or die_error(500,"Open git-diff-tree failed");6411@difftree=map{chomp;$_} <$fd>;6412close$fd6413or die_error(404,"Reading git-diff-tree failed");6414@difftree6415or die_error(404,"Blob diff not found");64166417}elsif(defined$hash&&6418$hash=~/[0-9a-fA-F]{40}/) {6419# try to find filename from $hash64206421# read filtered raw output6422open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6423$hash_parent_base,$hash_base,"--"6424or die_error(500,"Open git-diff-tree failed");6425@difftree=6426# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6427# $hash == to_id6428grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6429map{chomp;$_} <$fd>;6430close$fd6431or die_error(404,"Reading git-diff-tree failed");6432@difftree6433or die_error(404,"Blob diff not found");64346435}else{6436 die_error(400,"Missing one of the blob diff parameters");6437}64386439if(@difftree>1) {6440 die_error(400,"Ambiguous blob diff specification");6441}64426443%diffinfo= parse_difftree_raw_line($difftree[0]);6444$file_parent||=$diffinfo{'from_file'} ||$file_name;6445$file_name||=$diffinfo{'to_file'};64466447$hash_parent||=$diffinfo{'from_id'};6448$hash||=$diffinfo{'to_id'};64496450# non-textual hash id's can be cached6451if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6452$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6453$expires='+1d';6454}64556456# open patch output6457open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6458'-p', ($formateq'html'?"--full-index": ()),6459$hash_parent_base,$hash_base,6460"--", (defined$file_parent?$file_parent: ()),$file_name6461or die_error(500,"Open git-diff-tree failed");6462}64636464# old/legacy style URI -- not generated anymore since 1.4.3.6465if(!%diffinfo) {6466 die_error('404 Not Found',"Missing one of the blob diff parameters")6467}64686469# header6470if($formateq'html') {6471my$formats_nav=6472$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6473"raw");6474 git_header_html(undef,$expires);6475if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6476 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6477 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6478}else{6479print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6480print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";6481}6482if(defined$file_name) {6483 git_print_page_path($file_name,"blob",$hash_base);6484}else{6485print"<div class=\"page_path\"></div>\n";6486}64876488}elsif($formateq'plain') {6489print$cgi->header(6490-type =>'text/plain',6491-charset =>'utf-8',6492-expires =>$expires,6493-content_disposition =>'inline; filename="'."$file_name".'.patch"');64946495print"X-Git-Url: ".$cgi->self_url() ."\n\n";64966497}else{6498 die_error(400,"Unknown blobdiff format");6499}65006501# patch6502if($formateq'html') {6503print"<div class=\"page_body\">\n";65046505 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6506close$fd;65076508print"</div>\n";# class="page_body"6509 git_footer_html();65106511}else{6512while(my$line= <$fd>) {6513$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6514$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;65156516print$line;65176518last if$line=~m!^\+\+\+!;6519}6520local$/=undef;6521print<$fd>;6522close$fd;6523}6524}65256526sub git_blobdiff_plain {6527 git_blobdiff('plain');6528}65296530sub git_commitdiff {6531my%params=@_;6532my$format=$params{-format} ||'html';65336534my($patch_max) = gitweb_get_feature('patches');6535if($formateq'patch') {6536 die_error(403,"Patch view not allowed")unless$patch_max;6537}65386539$hash||=$hash_base||"HEAD";6540my%co= parse_commit($hash)6541or die_error(404,"Unknown commit object");65426543# choose format for commitdiff for merge6544if(!defined$hash_parent&& @{$co{'parents'}} >1) {6545$hash_parent='--cc';6546}6547# we need to prepare $formats_nav before almost any parameter munging6548my$formats_nav;6549if($formateq'html') {6550$formats_nav=6551$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6552"raw");6553if($patch_max&& @{$co{'parents'}} <=1) {6554$formats_nav.=" | ".6555$cgi->a({-href => href(action=>"patch", -replay=>1)},6556"patch");6557}65586559if(defined$hash_parent&&6560$hash_parentne'-c'&&$hash_parentne'--cc') {6561# commitdiff with two commits given6562my$hash_parent_short=$hash_parent;6563if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6564$hash_parent_short=substr($hash_parent,0,7);6565}6566$formats_nav.=6567' (from';6568for(my$i=0;$i< @{$co{'parents'}};$i++) {6569if($co{'parents'}[$i]eq$hash_parent) {6570$formats_nav.=' parent '. ($i+1);6571last;6572}6573}6574$formats_nav.=': '.6575$cgi->a({-href => href(action=>"commitdiff",6576 hash=>$hash_parent)},6577 esc_html($hash_parent_short)) .6578')';6579}elsif(!$co{'parent'}) {6580# --root commitdiff6581$formats_nav.=' (initial)';6582}elsif(scalar@{$co{'parents'}} ==1) {6583# single parent commit6584$formats_nav.=6585' (parent: '.6586$cgi->a({-href => href(action=>"commitdiff",6587 hash=>$co{'parent'})},6588 esc_html(substr($co{'parent'},0,7))) .6589')';6590}else{6591# merge commit6592if($hash_parenteq'--cc') {6593$formats_nav.=' | '.6594$cgi->a({-href => href(action=>"commitdiff",6595 hash=>$hash, hash_parent=>'-c')},6596'combined');6597}else{# $hash_parent eq '-c'6598$formats_nav.=' | '.6599$cgi->a({-href => href(action=>"commitdiff",6600 hash=>$hash, hash_parent=>'--cc')},6601'compact');6602}6603$formats_nav.=6604' (merge: '.6605join(' ',map{6606$cgi->a({-href => href(action=>"commitdiff",6607 hash=>$_)},6608 esc_html(substr($_,0,7)));6609} @{$co{'parents'}} ) .6610')';6611}6612}66136614my$hash_parent_param=$hash_parent;6615if(!defined$hash_parent_param) {6616# --cc for multiple parents, --root for parentless6617$hash_parent_param=6618@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6619}66206621# read commitdiff6622my$fd;6623my@difftree;6624if($formateq'html') {6625open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6626"--no-commit-id","--patch-with-raw","--full-index",6627$hash_parent_param,$hash,"--"6628or die_error(500,"Open git-diff-tree failed");66296630while(my$line= <$fd>) {6631chomp$line;6632# empty line ends raw part of diff-tree output6633last unless$line;6634push@difftree,scalar parse_difftree_raw_line($line);6635}66366637}elsif($formateq'plain') {6638open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6639'-p',$hash_parent_param,$hash,"--"6640or die_error(500,"Open git-diff-tree failed");6641}elsif($formateq'patch') {6642# For commit ranges, we limit the output to the number of6643# patches specified in the 'patches' feature.6644# For single commits, we limit the output to a single patch,6645# diverging from the git-format-patch default.6646my@commit_spec= ();6647if($hash_parent) {6648if($patch_max>0) {6649push@commit_spec,"-$patch_max";6650}6651push@commit_spec,'-n',"$hash_parent..$hash";6652}else{6653if($params{-single}) {6654push@commit_spec,'-1';6655}else{6656if($patch_max>0) {6657push@commit_spec,"-$patch_max";6658}6659push@commit_spec,"-n";6660}6661push@commit_spec,'--root',$hash;6662}6663open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6664'--encoding=utf8','--stdout',@commit_spec6665or die_error(500,"Open git-format-patch failed");6666}else{6667 die_error(400,"Unknown commitdiff format");6668}66696670# non-textual hash id's can be cached6671my$expires;6672if($hash=~m/^[0-9a-fA-F]{40}$/) {6673$expires="+1d";6674}66756676# write commit message6677if($formateq'html') {6678my$refs= git_get_references();6679my$ref= format_ref_marker($refs,$co{'id'});66806681 git_header_html(undef,$expires);6682 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6683 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6684print"<div class=\"title_text\">\n".6685"<table class=\"object_header\">\n";6686 git_print_authorship_rows(\%co);6687print"</table>".6688"</div>\n";6689print"<div class=\"page_body\">\n";6690if(@{$co{'comment'}} >1) {6691print"<div class=\"log\">\n";6692 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6693print"</div>\n";# class="log"6694}66956696}elsif($formateq'plain') {6697my$refs= git_get_references("tags");6698my$tagname= git_get_rev_name_tags($hash);6699my$filename= basename($project) ."-$hash.patch";67006701print$cgi->header(6702-type =>'text/plain',6703-charset =>'utf-8',6704-expires =>$expires,6705-content_disposition =>'inline; filename="'."$filename".'"');6706my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6707print"From: ". to_utf8($co{'author'}) ."\n";6708print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6709print"Subject: ". to_utf8($co{'title'}) ."\n";67106711print"X-Git-Tag:$tagname\n"if$tagname;6712print"X-Git-Url: ".$cgi->self_url() ."\n\n";67136714foreachmy$line(@{$co{'comment'}}) {6715print to_utf8($line) ."\n";6716}6717print"---\n\n";6718}elsif($formateq'patch') {6719my$filename= basename($project) ."-$hash.patch";67206721print$cgi->header(6722-type =>'text/plain',6723-charset =>'utf-8',6724-expires =>$expires,6725-content_disposition =>'inline; filename="'."$filename".'"');6726}67276728# write patch6729if($formateq'html') {6730my$use_parents= !defined$hash_parent||6731$hash_parenteq'-c'||$hash_parenteq'--cc';6732 git_difftree_body(\@difftree,$hash,6733$use_parents? @{$co{'parents'}} :$hash_parent);6734print"<br/>\n";67356736 git_patchset_body($fd, \@difftree,$hash,6737$use_parents? @{$co{'parents'}} :$hash_parent);6738close$fd;6739print"</div>\n";# class="page_body"6740 git_footer_html();67416742}elsif($formateq'plain') {6743local$/=undef;6744print<$fd>;6745close$fd6746or print"Reading git-diff-tree failed\n";6747}elsif($formateq'patch') {6748local$/=undef;6749print<$fd>;6750close$fd6751or print"Reading git-format-patch failed\n";6752}6753}67546755sub git_commitdiff_plain {6756 git_commitdiff(-format =>'plain');6757}67586759# format-patch-style patches6760sub git_patch {6761 git_commitdiff(-format =>'patch', -single =>1);6762}67636764sub git_patches {6765 git_commitdiff(-format =>'patch');6766}67676768sub git_history {6769 git_log_generic('history', \&git_history_body,6770$hash_base,$hash_parent_base,6771$file_name,$hash);6772}67736774sub git_search {6775 gitweb_check_feature('search')or die_error(403,"Search is disabled");6776if(!defined$searchtext) {6777 die_error(400,"Text field is empty");6778}6779if(!defined$hash) {6780$hash= git_get_head_hash($project);6781}6782my%co= parse_commit($hash);6783if(!%co) {6784 die_error(404,"Unknown commit object");6785}6786if(!defined$page) {6787$page=0;6788}67896790$searchtype||='commit';6791if($searchtypeeq'pickaxe') {6792# pickaxe may take all resources of your box and run for several minutes6793# with every query - so decide by yourself how public you make this feature6794 gitweb_check_feature('pickaxe')6795or die_error(403,"Pickaxe is disabled");6796}6797if($searchtypeeq'grep') {6798 gitweb_check_feature('grep')6799or die_error(403,"Grep is disabled");6800}68016802 git_header_html();68036804if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6805my$greptype;6806if($searchtypeeq'commit') {6807$greptype="--grep=";6808}elsif($searchtypeeq'author') {6809$greptype="--author=";6810}elsif($searchtypeeq'committer') {6811$greptype="--committer=";6812}6813$greptype.=$searchtext;6814my@commitlist= parse_commits($hash,101, (100*$page),undef,6815$greptype,'--regexp-ignore-case',6816$search_use_regexp?'--extended-regexp':'--fixed-strings');68176818my$paging_nav='';6819if($page>0) {6820$paging_nav.=6821$cgi->a({-href => href(action=>"search", hash=>$hash,6822 searchtext=>$searchtext,6823 searchtype=>$searchtype)},6824"first");6825$paging_nav.=" ⋅ ".6826$cgi->a({-href => href(-replay=>1, page=>$page-1),6827-accesskey =>"p", -title =>"Alt-p"},"prev");6828}else{6829$paging_nav.="first";6830$paging_nav.=" ⋅ prev";6831}6832my$next_link='';6833if($#commitlist>=100) {6834$next_link=6835$cgi->a({-href => href(-replay=>1, page=>$page+1),6836-accesskey =>"n", -title =>"Alt-n"},"next");6837$paging_nav.=" ⋅$next_link";6838}else{6839$paging_nav.=" ⋅ next";6840}68416842 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6843 git_print_header_div('commit', esc_html($co{'title'}),$hash);6844if($page==0&& !@commitlist) {6845print"<p>No match.</p>\n";6846}else{6847 git_search_grep_body(\@commitlist,0,99,$next_link);6848}6849}68506851if($searchtypeeq'pickaxe') {6852 git_print_page_nav('','',$hash,$co{'tree'},$hash);6853 git_print_header_div('commit', esc_html($co{'title'}),$hash);68546855print"<table class=\"pickaxe search\">\n";6856my$alternate=1;6857local$/="\n";6858open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6859'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6860($search_use_regexp?'--pickaxe-regex': ());6861undef%co;6862my@files;6863while(my$line= <$fd>) {6864chomp$line;6865next unless$line;68666867my%set= parse_difftree_raw_line($line);6868if(defined$set{'commit'}) {6869# finish previous commit6870if(%co) {6871print"</td>\n".6872"<td class=\"link\">".6873$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6874" | ".6875$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6876print"</td>\n".6877"</tr>\n";6878}68796880if($alternate) {6881print"<tr class=\"dark\">\n";6882}else{6883print"<tr class=\"light\">\n";6884}6885$alternate^=1;6886%co= parse_commit($set{'commit'});6887my$author= chop_and_escape_str($co{'author_name'},15,5);6888print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6889"<td><i>$author</i></td>\n".6890"<td>".6891$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6892-class=>"list subject"},6893 chop_and_escape_str($co{'title'},50) ."<br/>");6894}elsif(defined$set{'to_id'}) {6895next if($set{'to_id'} =~m/^0{40}$/);68966897print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6898 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6899-class=>"list"},6900"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6901"<br/>\n";6902}6903}6904close$fd;69056906# finish last commit (warning: repetition!)6907if(%co) {6908print"</td>\n".6909"<td class=\"link\">".6910$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6911" | ".6912$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6913print"</td>\n".6914"</tr>\n";6915}69166917print"</table>\n";6918}69196920if($searchtypeeq'grep') {6921 git_print_page_nav('','',$hash,$co{'tree'},$hash);6922 git_print_header_div('commit', esc_html($co{'title'}),$hash);69236924print"<table class=\"grep_search\">\n";6925my$alternate=1;6926my$matches=0;6927local$/="\n";6928open my$fd,"-|", git_cmd(),'grep','-n',6929$search_use_regexp? ('-E','-i') :'-F',6930$searchtext,$co{'tree'};6931my$lastfile='';6932while(my$line= <$fd>) {6933chomp$line;6934my($file,$lno,$ltext,$binary);6935last if($matches++>1000);6936if($line=~/^Binary file (.+) matches$/) {6937$file=$1;6938$binary=1;6939}else{6940(undef,$file,$lno,$ltext) =split(/:/,$line,4);6941}6942if($filene$lastfile) {6943$lastfileand print"</td></tr>\n";6944if($alternate++) {6945print"<tr class=\"dark\">\n";6946}else{6947print"<tr class=\"light\">\n";6948}6949print"<td class=\"list\">".6950$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6951 file_name=>"$file"),6952-class=>"list"}, esc_path($file));6953print"</td><td>\n";6954$lastfile=$file;6955}6956if($binary) {6957print"<div class=\"binary\">Binary file</div>\n";6958}else{6959$ltext= untabify($ltext);6960if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6961$ltext= esc_html($1, -nbsp=>1);6962$ltext.='<span class="match">';6963$ltext.= esc_html($2, -nbsp=>1);6964$ltext.='</span>';6965$ltext.= esc_html($3, -nbsp=>1);6966}else{6967$ltext= esc_html($ltext, -nbsp=>1);6968}6969print"<div class=\"pre\">".6970$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6971 file_name=>"$file").'#l'.$lno,6972-class=>"linenr"},sprintf('%4i',$lno))6973.' '.$ltext."</div>\n";6974}6975}6976if($lastfile) {6977print"</td></tr>\n";6978if($matches>1000) {6979print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6980}6981}else{6982print"<div class=\"diff nodifferences\">No matches found</div>\n";6983}6984close$fd;69856986print"</table>\n";6987}6988 git_footer_html();6989}69906991sub git_search_help {6992 git_header_html();6993 git_print_page_nav('','',$hash,$hash,$hash);6994print<<EOT;6995<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without6996regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,6997the pattern entered is recognized as the POSIX extended6998<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case6999insensitive).</p>7000<dl>7001<dt><b>commit</b></dt>7002<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>7003EOT7004my$have_grep= gitweb_check_feature('grep');7005if($have_grep) {7006print<<EOT;7007<dt><b>grep</b></dt>7008<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing7009 a different one) are searched for the given pattern. On large trees, this search can take7010a while and put some strain on the server, so please use it with some consideration. Note that7011due to git-grep peculiarity, currently if regexp mode is turned off, the matches are7012case-sensitive.</dd>7013EOT7014}7015print<<EOT;7016<dt><b>author</b></dt>7017<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>7018<dt><b>committer</b></dt>7019<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>7020EOT7021my$have_pickaxe= gitweb_check_feature('pickaxe');7022if($have_pickaxe) {7023print<<EOT;7024<dt><b>pickaxe</b></dt>7025<dd>All commits that caused the string to appear or disappear from any file (changes that7026added, removed or "modified" the string) will be listed. This search can take a while and7027takes a lot of strain on the server, so please use it wisely. Note that since you may be7028interested even in changes just changing the case as well, this search is case sensitive.</dd>7029EOT7030}7031print"</dl>\n";7032 git_footer_html();7033}70347035sub git_shortlog {7036 git_log_generic('shortlog', \&git_shortlog_body,7037$hash,$hash_parent);7038}70397040## ......................................................................7041## feeds (RSS, Atom; OPML)70427043sub git_feed {7044my$format=shift||'atom';7045my$have_blame= gitweb_check_feature('blame');70467047# Atom: http://www.atomenabled.org/developers/syndication/7048# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ7049if($formatne'rss'&&$formatne'atom') {7050 die_error(400,"Unknown web feed format");7051}70527053# log/feed of current (HEAD) branch, log of given branch, history of file/directory7054my$head=$hash||'HEAD';7055my@commitlist= parse_commits($head,150,0,$file_name);70567057my%latest_commit;7058my%latest_date;7059my$content_type="application/$format+xml";7060if(defined$cgi->http('HTTP_ACCEPT') &&7061$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {7062# browser (feed reader) prefers text/xml7063$content_type='text/xml';7064}7065if(defined($commitlist[0])) {7066%latest_commit= %{$commitlist[0]};7067my$latest_epoch=$latest_commit{'committer_epoch'};7068%latest_date= parse_date($latest_epoch,$latest_commit{'comitter_tz'});7069my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7070if(defined$if_modified) {7071my$since;7072if(eval{require HTTP::Date;1; }) {7073$since= HTTP::Date::str2time($if_modified);7074}elsif(eval{require Time::ParseDate;1; }) {7075$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7076}7077if(defined$since&&$latest_epoch<=$since) {7078print$cgi->header(7079-type =>$content_type,7080-charset =>'utf-8',7081-last_modified =>$latest_date{'rfc2822'},7082-status =>'304 Not Modified');7083return;7084}7085}7086print$cgi->header(7087-type =>$content_type,7088-charset =>'utf-8',7089-last_modified =>$latest_date{'rfc2822'});7090}else{7091print$cgi->header(7092-type =>$content_type,7093-charset =>'utf-8');7094}70957096# Optimization: skip generating the body if client asks only7097# for Last-Modified date.7098return if($cgi->request_method()eq'HEAD');70997100# header variables7101my$title="$site_name-$project/$action";7102my$feed_type='log';7103if(defined$hash) {7104$title.=" - '$hash'";7105$feed_type='branch log';7106if(defined$file_name) {7107$title.=" ::$file_name";7108$feed_type='history';7109}7110}elsif(defined$file_name) {7111$title.=" -$file_name";7112$feed_type='history';7113}7114$title.="$feed_type";7115my$descr= git_get_project_description($project);7116if(defined$descr) {7117$descr= esc_html($descr);7118}else{7119$descr="$project".7120($formateq'rss'?'RSS':'Atom') .7121" feed";7122}7123my$owner= git_get_project_owner($project);7124$owner= esc_html($owner);71257126#header7127my$alt_url;7128if(defined$file_name) {7129$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);7130}elsif(defined$hash) {7131$alt_url= href(-full=>1, action=>"log", hash=>$hash);7132}else{7133$alt_url= href(-full=>1, action=>"summary");7134}7135print qq!<?xml version="1.0" encoding="utf-8"?>\n!;7136if($formateq'rss') {7137print<<XML;7138<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">7139<channel>7140XML7141print"<title>$title</title>\n".7142"<link>$alt_url</link>\n".7143"<description>$descr</description>\n".7144"<language>en</language>\n".7145# project owner is responsible for 'editorial' content7146"<managingEditor>$owner</managingEditor>\n";7147if(defined$logo||defined$favicon) {7148# prefer the logo to the favicon, since RSS7149# doesn't allow both7150my$img= esc_url($logo||$favicon);7151print"<image>\n".7152"<url>$img</url>\n".7153"<title>$title</title>\n".7154"<link>$alt_url</link>\n".7155"</image>\n";7156}7157if(%latest_date) {7158print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";7159print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";7160}7161print"<generator>gitweb v.$version/$git_version</generator>\n";7162}elsif($formateq'atom') {7163print<<XML;7164<feed xmlns="http://www.w3.org/2005/Atom">7165XML7166print"<title>$title</title>\n".7167"<subtitle>$descr</subtitle>\n".7168'<link rel="alternate" type="text/html" href="'.7169$alt_url.'" />'."\n".7170'<link rel="self" type="'.$content_type.'" href="'.7171$cgi->self_url() .'" />'."\n".7172"<id>". href(-full=>1) ."</id>\n".7173# use project owner for feed author7174"<author><name>$owner</name></author>\n";7175if(defined$favicon) {7176print"<icon>". esc_url($favicon) ."</icon>\n";7177}7178if(defined$logo) {7179# not twice as wide as tall: 72 x 27 pixels7180print"<logo>". esc_url($logo) ."</logo>\n";7181}7182if(!%latest_date) {7183# dummy date to keep the feed valid until commits trickle in:7184print"<updated>1970-01-01T00:00:00Z</updated>\n";7185}else{7186print"<updated>$latest_date{'iso-8601'}</updated>\n";7187}7188print"<generator version='$version/$git_version'>gitweb</generator>\n";7189}71907191# contents7192for(my$i=0;$i<=$#commitlist;$i++) {7193my%co= %{$commitlist[$i]};7194my$commit=$co{'id'};7195# we read 150, we always show 30 and the ones more recent than 48 hours7196if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {7197last;7198}7199my%cd= parse_date($co{'author_epoch'},$co{'author_tz'});72007201# get list of changed files7202open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7203$co{'parent'} ||"--root",7204$co{'id'},"--", (defined$file_name?$file_name: ())7205ornext;7206my@difftree=map{chomp;$_} <$fd>;7207close$fd7208ornext;72097210# print element (entry, item)7211my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);7212if($formateq'rss') {7213print"<item>\n".7214"<title>". esc_html($co{'title'}) ."</title>\n".7215"<author>". esc_html($co{'author'}) ."</author>\n".7216"<pubDate>$cd{'rfc2822'}</pubDate>\n".7217"<guid isPermaLink=\"true\">$co_url</guid>\n".7218"<link>$co_url</link>\n".7219"<description>". esc_html($co{'title'}) ."</description>\n".7220"<content:encoded>".7221"<![CDATA[\n";7222}elsif($formateq'atom') {7223print"<entry>\n".7224"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".7225"<updated>$cd{'iso-8601'}</updated>\n".7226"<author>\n".7227" <name>". esc_html($co{'author_name'}) ."</name>\n";7228if($co{'author_email'}) {7229print" <email>". esc_html($co{'author_email'}) ."</email>\n";7230}7231print"</author>\n".7232# use committer for contributor7233"<contributor>\n".7234" <name>". esc_html($co{'committer_name'}) ."</name>\n";7235if($co{'committer_email'}) {7236print" <email>". esc_html($co{'committer_email'}) ."</email>\n";7237}7238print"</contributor>\n".7239"<published>$cd{'iso-8601'}</published>\n".7240"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".7241"<id>$co_url</id>\n".7242"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".7243"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";7244}7245my$comment=$co{'comment'};7246print"<pre>\n";7247foreachmy$line(@$comment) {7248$line= esc_html($line);7249print"$line\n";7250}7251print"</pre><ul>\n";7252foreachmy$difftree_line(@difftree) {7253my%difftree= parse_difftree_raw_line($difftree_line);7254next if!$difftree{'from_id'};72557256my$file=$difftree{'file'} ||$difftree{'to_file'};72577258print"<li>".7259"[".7260$cgi->a({-href => href(-full=>1, action=>"blobdiff",7261 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},7262 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},7263 file_name=>$file, file_parent=>$difftree{'from_file'}),7264-title =>"diff"},'D');7265if($have_blame) {7266print$cgi->a({-href => href(-full=>1, action=>"blame",7267 file_name=>$file, hash_base=>$commit),7268-title =>"blame"},'B');7269}7270# if this is not a feed of a file history7271if(!defined$file_name||$file_namene$file) {7272print$cgi->a({-href => href(-full=>1, action=>"history",7273 file_name=>$file, hash=>$commit),7274-title =>"history"},'H');7275}7276$file= esc_path($file);7277print"] ".7278"$file</li>\n";7279}7280if($formateq'rss') {7281print"</ul>]]>\n".7282"</content:encoded>\n".7283"</item>\n";7284}elsif($formateq'atom') {7285print"</ul>\n</div>\n".7286"</content>\n".7287"</entry>\n";7288}7289}72907291# end of feed7292if($formateq'rss') {7293print"</channel>\n</rss>\n";7294}elsif($formateq'atom') {7295print"</feed>\n";7296}7297}72987299sub git_rss {7300 git_feed('rss');7301}73027303sub git_atom {7304 git_feed('atom');7305}73067307sub git_opml {7308my@list= git_get_projects_list();73097310print$cgi->header(7311-type =>'text/xml',7312-charset =>'utf-8',7313-content_disposition =>'inline; filename="opml.xml"');73147315print<<XML;7316<?xml version="1.0" encoding="utf-8"?>7317<opml version="1.0">7318<head>7319 <title>$site_nameOPML Export</title>7320</head>7321<body>7322<outline text="git RSS feeds">7323XML73247325foreachmy$pr(@list) {7326my%proj=%$pr;7327my$head= git_get_head_hash($proj{'path'});7328if(!defined$head) {7329next;7330}7331$git_dir="$projectroot/$proj{'path'}";7332my%co= parse_commit($head);7333if(!%co) {7334next;7335}73367337my$path= esc_html(chop_str($proj{'path'},25,5));7338my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7339my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7340print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7341}7342print<<XML;7343</outline>7344</body>7345</opml>7346XML7347}