1#!/usr/bin/perl 2 3# gitweb - simple web interface to track changes in git repositories 4# 5# (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org> 6# (C) 2005, Christian Gierke 7# 8# This program is licensed under the GPLv2 9 10use5.008; 11use strict; 12use warnings; 13use CGI qw(:standard :escapeHTML -nosticky); 14use CGI::Util qw(unescape); 15use CGI::Carp qw(fatalsToBrowser set_message); 16use Encode; 17use Fcntl ':mode'; 18use File::Find qw(); 19use File::Basename qw(basename); 20use Time::HiRes qw(gettimeofday tv_interval); 21binmode STDOUT,':utf8'; 22 23our$t0= [ gettimeofday() ]; 24our$number_of_git_cmds=0; 25 26BEGIN{ 27 CGI->compile()if$ENV{'MOD_PERL'}; 28} 29 30our$version="++GIT_VERSION++"; 31 32our($my_url,$my_uri,$base_url,$path_info,$home_link); 33sub evaluate_uri { 34our$cgi; 35 36our$my_url=$cgi->url(); 37our$my_uri=$cgi->url(-absolute =>1); 38 39# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 40# needed and used only for URLs with nonempty PATH_INFO 41our$base_url=$my_url; 42 43# When the script is used as DirectoryIndex, the URL does not contain the name 44# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 45# have to do it ourselves. We make $path_info global because it's also used 46# later on. 47# 48# Another issue with the script being the DirectoryIndex is that the resulting 49# $my_url data is not the full script URL: this is good, because we want 50# generated links to keep implying the script name if it wasn't explicitly 51# indicated in the URL we're handling, but it means that $my_url cannot be used 52# as base URL. 53# Therefore, if we needed to strip PATH_INFO, then we know that we have 54# to build the base URL ourselves: 55our$path_info=$ENV{"PATH_INFO"}; 56if($path_info) { 57if($my_url=~ s,\Q$path_info\E$,, && 58$my_uri=~ s,\Q$path_info\E$,, && 59defined$ENV{'SCRIPT_NAME'}) { 60$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 61} 62} 63 64# target of the home link on top of all pages 65our$home_link=$my_uri||"/"; 66} 67 68# core git executable to use 69# this can just be "git" if your webserver has a sensible PATH 70our$GIT="++GIT_BINDIR++/git"; 71 72# absolute fs-path which will be prepended to the project path 73#our $projectroot = "/pub/scm"; 74our$projectroot="++GITWEB_PROJECTROOT++"; 75 76# fs traversing limit for getting project list 77# the number is relative to the projectroot 78our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 79 80# string of the home link on top of all pages 81our$home_link_str="++GITWEB_HOME_LINK_STR++"; 82 83# name of your site or organization to appear in page titles 84# replace this with something more descriptive for clearer bookmarks 85our$site_name="++GITWEB_SITENAME++" 86|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 87 88# filename of html text to include at top of each page 89our$site_header="++GITWEB_SITE_HEADER++"; 90# html text to include at home page 91our$home_text="++GITWEB_HOMETEXT++"; 92# filename of html text to include at bottom of each page 93our$site_footer="++GITWEB_SITE_FOOTER++"; 94 95# URI of stylesheets 96our@stylesheets= ("++GITWEB_CSS++"); 97# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 98our$stylesheet=undef; 99# URI of GIT logo (72x27 size) 100our$logo="++GITWEB_LOGO++"; 101# URI of GIT favicon, assumed to be image/png type 102our$favicon="++GITWEB_FAVICON++"; 103# URI of gitweb.js (JavaScript code for gitweb) 104our$javascript="++GITWEB_JS++"; 105 106# URI and label (title) of GIT logo link 107#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 108#our $logo_label = "git documentation"; 109our$logo_url="http://git-scm.com/"; 110our$logo_label="git homepage"; 111 112# source of projects list 113our$projects_list="++GITWEB_LIST++"; 114 115# the width (in characters) of the projects list "Description" column 116our$projects_list_description_width=25; 117 118# default order of projects list 119# valid values are none, project, descr, owner, and age 120our$default_projects_order="project"; 121 122# show repository only if this file exists 123# (only effective if this variable evaluates to true) 124our$export_ok="++GITWEB_EXPORT_OK++"; 125 126# show repository only if this subroutine returns true 127# when given the path to the project, for example: 128# sub { return -e "$_[0]/git-daemon-export-ok"; } 129our$export_auth_hook=undef; 130 131# only allow viewing of repositories also shown on the overview page 132our$strict_export="++GITWEB_STRICT_EXPORT++"; 133 134# list of git base URLs used for URL to where fetch project from, 135# i.e. full URL is "$git_base_url/$project" 136our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 137 138# default blob_plain mimetype and default charset for text/plain blob 139our$default_blob_plain_mimetype='text/plain'; 140our$default_text_plain_charset=undef; 141 142# file to use for guessing MIME types before trying /etc/mime.types 143# (relative to the current git repository) 144our$mimetypes_file=undef; 145 146# assume this charset if line contains non-UTF-8 characters; 147# it should be valid encoding (see Encoding::Supported(3pm) for list), 148# for which encoding all byte sequences are valid, for example 149# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 150# could be even 'utf-8' for the old behavior) 151our$fallback_encoding='latin1'; 152 153# rename detection options for git-diff and git-diff-tree 154# - default is '-M', with the cost proportional to 155# (number of removed files) * (number of new files). 156# - more costly is '-C' (which implies '-M'), with the cost proportional to 157# (number of changed files + number of removed files) * (number of new files) 158# - even more costly is '-C', '--find-copies-harder' with cost 159# (number of files in the original tree) * (number of new files) 160# - one might want to include '-B' option, e.g. '-B', '-M' 161our@diff_opts= ('-M');# taken from git_commit 162 163# Disables features that would allow repository owners to inject script into 164# the gitweb domain. 165our$prevent_xss=0; 166 167# Path to the highlight executable to use (must be the one from 168# http://www.andre-simon.de due to assumptions about parameters and output). 169# Useful if highlight is not installed on your webserver's PATH. 170# [Default: highlight] 171our$highlight_bin="++HIGHLIGHT_BIN++"; 172 173# information about snapshot formats that gitweb is capable of serving 174our%known_snapshot_formats= ( 175# name => { 176# 'display' => display name, 177# 'type' => mime type, 178# 'suffix' => filename suffix, 179# 'format' => --format for git-archive, 180# 'compressor' => [compressor command and arguments] 181# (array reference, optional) 182# 'disabled' => boolean (optional)} 183# 184'tgz'=> { 185'display'=>'tar.gz', 186'type'=>'application/x-gzip', 187'suffix'=>'.tar.gz', 188'format'=>'tar', 189'compressor'=> ['gzip']}, 190 191'tbz2'=> { 192'display'=>'tar.bz2', 193'type'=>'application/x-bzip2', 194'suffix'=>'.tar.bz2', 195'format'=>'tar', 196'compressor'=> ['bzip2']}, 197 198'txz'=> { 199'display'=>'tar.xz', 200'type'=>'application/x-xz', 201'suffix'=>'.tar.xz', 202'format'=>'tar', 203'compressor'=> ['xz'], 204'disabled'=>1}, 205 206'zip'=> { 207'display'=>'zip', 208'type'=>'application/x-zip', 209'suffix'=>'.zip', 210'format'=>'zip'}, 211); 212 213# Aliases so we understand old gitweb.snapshot values in repository 214# configuration. 215our%known_snapshot_format_aliases= ( 216'gzip'=>'tgz', 217'bzip2'=>'tbz2', 218'xz'=>'txz', 219 220# backward compatibility: legacy gitweb config support 221'x-gzip'=>undef,'gz'=>undef, 222'x-bzip2'=>undef,'bz2'=>undef, 223'x-zip'=>undef,''=>undef, 224); 225 226# Pixel sizes for icons and avatars. If the default font sizes or lineheights 227# are changed, it may be appropriate to change these values too via 228# $GITWEB_CONFIG. 229our%avatar_size= ( 230'default'=>16, 231'double'=>32 232); 233 234# Used to set the maximum load that we will still respond to gitweb queries. 235# If server load exceed this value then return "503 server busy" error. 236# If gitweb cannot determined server load, it is taken to be 0. 237# Leave it undefined (or set to 'undef') to turn off load checking. 238our$maxload=300; 239 240# configuration for 'highlight' (http://www.andre-simon.de/) 241# match by basename 242our%highlight_basename= ( 243#'Program' => 'py', 244#'Library' => 'py', 245'SConstruct'=>'py',# SCons equivalent of Makefile 246'Makefile'=>'make', 247); 248# match by extension 249our%highlight_ext= ( 250# main extensions, defining name of syntax; 251# see files in /usr/share/highlight/langDefs/ directory 252map{$_=>$_} 253qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make), 254# alternate extensions, see /etc/highlight/filetypes.conf 255'h'=>'c', 256map{$_=>'sh'}qw(bash zsh ksh), 257map{$_=>'cpp'}qw(cxx c++ cc), 258map{$_=>'php'}qw(php3 php4 php5 phps), 259map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 260map{$_=>'make'}qw(mak mk), 261map{$_=>'xml'}qw(xhtml html htm), 262); 263 264# You define site-wide feature defaults here; override them with 265# $GITWEB_CONFIG as necessary. 266our%feature= ( 267# feature => { 268# 'sub' => feature-sub (subroutine), 269# 'override' => allow-override (boolean), 270# 'default' => [ default options...] (array reference)} 271# 272# if feature is overridable (it means that allow-override has true value), 273# then feature-sub will be called with default options as parameters; 274# return value of feature-sub indicates if to enable specified feature 275# 276# if there is no 'sub' key (no feature-sub), then feature cannot be 277# overridden 278# 279# use gitweb_get_feature(<feature>) to retrieve the <feature> value 280# (an array) or gitweb_check_feature(<feature>) to check if <feature> 281# is enabled 282 283# Enable the 'blame' blob view, showing the last commit that modified 284# each line in the file. This can be very CPU-intensive. 285 286# To enable system wide have in $GITWEB_CONFIG 287# $feature{'blame'}{'default'} = [1]; 288# To have project specific config enable override in $GITWEB_CONFIG 289# $feature{'blame'}{'override'} = 1; 290# and in project config gitweb.blame = 0|1; 291'blame'=> { 292'sub'=>sub{ feature_bool('blame',@_) }, 293'override'=>0, 294'default'=> [0]}, 295 296# Enable the 'snapshot' link, providing a compressed archive of any 297# tree. This can potentially generate high traffic if you have large 298# project. 299 300# Value is a list of formats defined in %known_snapshot_formats that 301# you wish to offer. 302# To disable system wide have in $GITWEB_CONFIG 303# $feature{'snapshot'}{'default'} = []; 304# To have project specific config enable override in $GITWEB_CONFIG 305# $feature{'snapshot'}{'override'} = 1; 306# and in project config, a comma-separated list of formats or "none" 307# to disable. Example: gitweb.snapshot = tbz2,zip; 308'snapshot'=> { 309'sub'=> \&feature_snapshot, 310'override'=>0, 311'default'=> ['tgz']}, 312 313# Enable text search, which will list the commits which match author, 314# committer or commit text to a given string. Enabled by default. 315# Project specific override is not supported. 316'search'=> { 317'override'=>0, 318'default'=> [1]}, 319 320# Enable grep search, which will list the files in currently selected 321# tree containing the given string. Enabled by default. This can be 322# potentially CPU-intensive, of course. 323 324# To enable system wide have in $GITWEB_CONFIG 325# $feature{'grep'}{'default'} = [1]; 326# To have project specific config enable override in $GITWEB_CONFIG 327# $feature{'grep'}{'override'} = 1; 328# and in project config gitweb.grep = 0|1; 329'grep'=> { 330'sub'=>sub{ feature_bool('grep',@_) }, 331'override'=>0, 332'default'=> [1]}, 333 334# Enable the pickaxe search, which will list the commits that modified 335# a given string in a file. This can be practical and quite faster 336# alternative to 'blame', but still potentially CPU-intensive. 337 338# To enable system wide have in $GITWEB_CONFIG 339# $feature{'pickaxe'}{'default'} = [1]; 340# To have project specific config enable override in $GITWEB_CONFIG 341# $feature{'pickaxe'}{'override'} = 1; 342# and in project config gitweb.pickaxe = 0|1; 343'pickaxe'=> { 344'sub'=>sub{ feature_bool('pickaxe',@_) }, 345'override'=>0, 346'default'=> [1]}, 347 348# Enable showing size of blobs in a 'tree' view, in a separate 349# column, similar to what 'ls -l' does. This cost a bit of IO. 350 351# To disable system wide have in $GITWEB_CONFIG 352# $feature{'show-sizes'}{'default'} = [0]; 353# To have project specific config enable override in $GITWEB_CONFIG 354# $feature{'show-sizes'}{'override'} = 1; 355# and in project config gitweb.showsizes = 0|1; 356'show-sizes'=> { 357'sub'=>sub{ feature_bool('showsizes',@_) }, 358'override'=>0, 359'default'=> [1]}, 360 361# Make gitweb use an alternative format of the URLs which can be 362# more readable and natural-looking: project name is embedded 363# directly in the path and the query string contains other 364# auxiliary information. All gitweb installations recognize 365# URL in either format; this configures in which formats gitweb 366# generates links. 367 368# To enable system wide have in $GITWEB_CONFIG 369# $feature{'pathinfo'}{'default'} = [1]; 370# Project specific override is not supported. 371 372# Note that you will need to change the default location of CSS, 373# favicon, logo and possibly other files to an absolute URL. Also, 374# if gitweb.cgi serves as your indexfile, you will need to force 375# $my_uri to contain the script name in your $GITWEB_CONFIG. 376'pathinfo'=> { 377'override'=>0, 378'default'=> [0]}, 379 380# Make gitweb consider projects in project root subdirectories 381# to be forks of existing projects. Given project $projname.git, 382# projects matching $projname/*.git will not be shown in the main 383# projects list, instead a '+' mark will be added to $projname 384# there and a 'forks' view will be enabled for the project, listing 385# all the forks. If project list is taken from a file, forks have 386# to be listed after the main project. 387 388# To enable system wide have in $GITWEB_CONFIG 389# $feature{'forks'}{'default'} = [1]; 390# Project specific override is not supported. 391'forks'=> { 392'override'=>0, 393'default'=> [0]}, 394 395# Insert custom links to the action bar of all project pages. 396# This enables you mainly to link to third-party scripts integrating 397# into gitweb; e.g. git-browser for graphical history representation 398# or custom web-based repository administration interface. 399 400# The 'default' value consists of a list of triplets in the form 401# (label, link, position) where position is the label after which 402# to insert the link and link is a format string where %n expands 403# to the project name, %f to the project path within the filesystem, 404# %h to the current hash (h gitweb parameter) and %b to the current 405# hash base (hb gitweb parameter); %% expands to %. 406 407# To enable system wide have in $GITWEB_CONFIG e.g. 408# $feature{'actions'}{'default'} = [('graphiclog', 409# '/git-browser/by-commit.html?r=%n', 'summary')]; 410# Project specific override is not supported. 411'actions'=> { 412'override'=>0, 413'default'=> []}, 414 415# Allow gitweb scan project content tags described in ctags/ 416# of project repository, and display the popular Web 2.0-ish 417# "tag cloud" near the project list. Note that this is something 418# COMPLETELY different from the normal Git tags. 419 420# gitweb by itself can show existing tags, but it does not handle 421# tagging itself; you need an external application for that. 422# For an example script, check Girocco's cgi/tagproj.cgi. 423# You may want to install the HTML::TagCloud Perl module to get 424# a pretty tag cloud instead of just a list of tags. 425 426# To enable system wide have in $GITWEB_CONFIG 427# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 428# Project specific override is not supported. 429'ctags'=> { 430'override'=>0, 431'default'=> [0]}, 432 433# The maximum number of patches in a patchset generated in patch 434# view. Set this to 0 or undef to disable patch view, or to a 435# negative number to remove any limit. 436 437# To disable system wide have in $GITWEB_CONFIG 438# $feature{'patches'}{'default'} = [0]; 439# To have project specific config enable override in $GITWEB_CONFIG 440# $feature{'patches'}{'override'} = 1; 441# and in project config gitweb.patches = 0|n; 442# where n is the maximum number of patches allowed in a patchset. 443'patches'=> { 444'sub'=> \&feature_patches, 445'override'=>0, 446'default'=> [16]}, 447 448# Avatar support. When this feature is enabled, views such as 449# shortlog or commit will display an avatar associated with 450# the email of the committer(s) and/or author(s). 451 452# Currently available providers are gravatar and picon. 453# If an unknown provider is specified, the feature is disabled. 454 455# Gravatar depends on Digest::MD5. 456# Picon currently relies on the indiana.edu database. 457 458# To enable system wide have in $GITWEB_CONFIG 459# $feature{'avatar'}{'default'} = ['<provider>']; 460# where <provider> is either gravatar or picon. 461# To have project specific config enable override in $GITWEB_CONFIG 462# $feature{'avatar'}{'override'} = 1; 463# and in project config gitweb.avatar = <provider>; 464'avatar'=> { 465'sub'=> \&feature_avatar, 466'override'=>0, 467'default'=> ['']}, 468 469# Enable displaying how much time and how many git commands 470# it took to generate and display page. Disabled by default. 471# Project specific override is not supported. 472'timed'=> { 473'override'=>0, 474'default'=> [0]}, 475 476# Enable turning some links into links to actions which require 477# JavaScript to run (like 'blame_incremental'). Not enabled by 478# default. Project specific override is currently not supported. 479'javascript-actions'=> { 480'override'=>0, 481'default'=> [0]}, 482 483# Syntax highlighting support. This is based on Daniel Svensson's 484# and Sham Chukoury's work in gitweb-xmms2.git. 485# It requires the 'highlight' program present in $PATH, 486# and therefore is disabled by default. 487 488# To enable system wide have in $GITWEB_CONFIG 489# $feature{'highlight'}{'default'} = [1]; 490 491'highlight'=> { 492'sub'=>sub{ feature_bool('highlight',@_) }, 493'override'=>0, 494'default'=> [0]}, 495 496# Enable displaying of remote heads in the heads list 497 498# To enable system wide have in $GITWEB_CONFIG 499# $feature{'remote_heads'}{'default'} = [1]; 500# To have project specific config enable override in $GITWEB_CONFIG 501# $feature{'remote_heads'}{'override'} = 1; 502# and in project config gitweb.remote_heads = 0|1; 503'remote_heads'=> { 504'sub'=>sub{ feature_bool('remote_heads',@_) }, 505'override'=>0, 506'default'=> [0]}, 507); 508 509sub gitweb_get_feature { 510my($name) =@_; 511return unlessexists$feature{$name}; 512my($sub,$override,@defaults) = ( 513$feature{$name}{'sub'}, 514$feature{$name}{'override'}, 515@{$feature{$name}{'default'}}); 516# project specific override is possible only if we have project 517our$git_dir;# global variable, declared later 518if(!$override|| !defined$git_dir) { 519return@defaults; 520} 521if(!defined$sub) { 522warn"feature$nameis not overridable"; 523return@defaults; 524} 525return$sub->(@defaults); 526} 527 528# A wrapper to check if a given feature is enabled. 529# With this, you can say 530# 531# my $bool_feat = gitweb_check_feature('bool_feat'); 532# gitweb_check_feature('bool_feat') or somecode; 533# 534# instead of 535# 536# my ($bool_feat) = gitweb_get_feature('bool_feat'); 537# (gitweb_get_feature('bool_feat'))[0] or somecode; 538# 539sub gitweb_check_feature { 540return(gitweb_get_feature(@_))[0]; 541} 542 543 544sub feature_bool { 545my$key=shift; 546my($val) = git_get_project_config($key,'--bool'); 547 548if(!defined$val) { 549return($_[0]); 550}elsif($valeq'true') { 551return(1); 552}elsif($valeq'false') { 553return(0); 554} 555} 556 557sub feature_snapshot { 558my(@fmts) =@_; 559 560my($val) = git_get_project_config('snapshot'); 561 562if($val) { 563@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 564} 565 566return@fmts; 567} 568 569sub feature_patches { 570my@val= (git_get_project_config('patches','--int')); 571 572if(@val) { 573return@val; 574} 575 576return($_[0]); 577} 578 579sub feature_avatar { 580my@val= (git_get_project_config('avatar')); 581 582return@val?@val:@_; 583} 584 585# checking HEAD file with -e is fragile if the repository was 586# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 587# and then pruned. 588sub check_head_link { 589my($dir) =@_; 590my$headfile="$dir/HEAD"; 591return((-e $headfile) || 592(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 593} 594 595sub check_export_ok { 596my($dir) =@_; 597return(check_head_link($dir) && 598(!$export_ok|| -e "$dir/$export_ok") && 599(!$export_auth_hook||$export_auth_hook->($dir))); 600} 601 602# process alternate names for backward compatibility 603# filter out unsupported (unknown) snapshot formats 604sub filter_snapshot_fmts { 605my@fmts=@_; 606 607@fmts=map{ 608exists$known_snapshot_format_aliases{$_} ? 609$known_snapshot_format_aliases{$_} :$_}@fmts; 610@fmts=grep{ 611exists$known_snapshot_formats{$_} && 612!$known_snapshot_formats{$_}{'disabled'}}@fmts; 613} 614 615# If it is set to code reference, it is code that it is to be run once per 616# request, allowing updating configurations that change with each request, 617# while running other code in config file only once. 618# 619# Otherwise, if it is false then gitweb would process config file only once; 620# if it is true then gitweb config would be run for each request. 621our$per_request_config=1; 622 623our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 624sub evaluate_gitweb_config { 625our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 626our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 627# die if there are errors parsing config file 628if(-e $GITWEB_CONFIG) { 629do$GITWEB_CONFIG; 630die$@if$@; 631}elsif(-e $GITWEB_CONFIG_SYSTEM) { 632do$GITWEB_CONFIG_SYSTEM; 633die$@if$@; 634} 635} 636 637# Get loadavg of system, to compare against $maxload. 638# Currently it requires '/proc/loadavg' present to get loadavg; 639# if it is not present it returns 0, which means no load checking. 640sub get_loadavg { 641if( -e '/proc/loadavg'){ 642open my$fd,'<','/proc/loadavg' 643orreturn0; 644my@load=split(/\s+/,scalar<$fd>); 645close$fd; 646 647# The first three columns measure CPU and IO utilization of the last one, 648# five, and 10 minute periods. The fourth column shows the number of 649# currently running processes and the total number of processes in the m/n 650# format. The last column displays the last process ID used. 651return$load[0] ||0; 652} 653# additional checks for load average should go here for things that don't export 654# /proc/loadavg 655 656return0; 657} 658 659# version of the core git binary 660our$git_version; 661sub evaluate_git_version { 662our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 663$number_of_git_cmds++; 664} 665 666sub check_loadavg { 667if(defined$maxload&& get_loadavg() >$maxload) { 668 die_error(503,"The load average on the server is too high"); 669} 670} 671 672# ====================================================================== 673# input validation and dispatch 674 675# input parameters can be collected from a variety of sources (presently, CGI 676# and PATH_INFO), so we define an %input_params hash that collects them all 677# together during validation: this allows subsequent uses (e.g. href()) to be 678# agnostic of the parameter origin 679 680our%input_params= (); 681 682# input parameters are stored with the long parameter name as key. This will 683# also be used in the href subroutine to convert parameters to their CGI 684# equivalent, and since the href() usage is the most frequent one, we store 685# the name -> CGI key mapping here, instead of the reverse. 686# 687# XXX: Warning: If you touch this, check the search form for updating, 688# too. 689 690our@cgi_param_mapping= ( 691 project =>"p", 692 action =>"a", 693 file_name =>"f", 694 file_parent =>"fp", 695 hash =>"h", 696 hash_parent =>"hp", 697 hash_base =>"hb", 698 hash_parent_base =>"hpb", 699 page =>"pg", 700 order =>"o", 701 searchtext =>"s", 702 searchtype =>"st", 703 snapshot_format =>"sf", 704 extra_options =>"opt", 705 search_use_regexp =>"sr", 706# this must be last entry (for manipulation from JavaScript) 707 javascript =>"js" 708); 709our%cgi_param_mapping=@cgi_param_mapping; 710 711# we will also need to know the possible actions, for validation 712our%actions= ( 713"blame"=> \&git_blame, 714"blame_incremental"=> \&git_blame_incremental, 715"blame_data"=> \&git_blame_data, 716"blobdiff"=> \&git_blobdiff, 717"blobdiff_plain"=> \&git_blobdiff_plain, 718"blob"=> \&git_blob, 719"blob_plain"=> \&git_blob_plain, 720"commitdiff"=> \&git_commitdiff, 721"commitdiff_plain"=> \&git_commitdiff_plain, 722"commit"=> \&git_commit, 723"forks"=> \&git_forks, 724"heads"=> \&git_heads, 725"history"=> \&git_history, 726"log"=> \&git_log, 727"patch"=> \&git_patch, 728"patches"=> \&git_patches, 729"remotes"=> \&git_remotes, 730"rss"=> \&git_rss, 731"atom"=> \&git_atom, 732"search"=> \&git_search, 733"search_help"=> \&git_search_help, 734"shortlog"=> \&git_shortlog, 735"summary"=> \&git_summary, 736"tag"=> \&git_tag, 737"tags"=> \&git_tags, 738"tree"=> \&git_tree, 739"snapshot"=> \&git_snapshot, 740"object"=> \&git_object, 741# those below don't need $project 742"opml"=> \&git_opml, 743"project_list"=> \&git_project_list, 744"project_index"=> \&git_project_index, 745); 746 747# finally, we have the hash of allowed extra_options for the commands that 748# allow them 749our%allowed_options= ( 750"--no-merges"=> [qw(rss atom log shortlog history)], 751); 752 753# fill %input_params with the CGI parameters. All values except for 'opt' 754# should be single values, but opt can be an array. We should probably 755# build an array of parameters that can be multi-valued, but since for the time 756# being it's only this one, we just single it out 757sub evaluate_query_params { 758our$cgi; 759 760while(my($name,$symbol) =each%cgi_param_mapping) { 761if($symboleq'opt') { 762$input_params{$name} = [$cgi->param($symbol) ]; 763}else{ 764$input_params{$name} =$cgi->param($symbol); 765} 766} 767} 768 769# now read PATH_INFO and update the parameter list for missing parameters 770sub evaluate_path_info { 771return ifdefined$input_params{'project'}; 772return if!$path_info; 773$path_info=~ s,^/+,,; 774return if!$path_info; 775 776# find which part of PATH_INFO is project 777my$project=$path_info; 778$project=~ s,/+$,,; 779while($project&& !check_head_link("$projectroot/$project")) { 780$project=~ s,/*[^/]*$,,; 781} 782return unless$project; 783$input_params{'project'} =$project; 784 785# do not change any parameters if an action is given using the query string 786return if$input_params{'action'}; 787$path_info=~ s,^\Q$project\E/*,,; 788 789# next, check if we have an action 790my$action=$path_info; 791$action=~ s,/.*$,,; 792if(exists$actions{$action}) { 793$path_info=~ s,^$action/*,,; 794$input_params{'action'} =$action; 795} 796 797# list of actions that want hash_base instead of hash, but can have no 798# pathname (f) parameter 799my@wants_base= ( 800'tree', 801'history', 802); 803 804# we want to catch, among others 805# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 806my($parentrefname,$parentpathname,$refname,$pathname) = 807($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 808 809# first, analyze the 'current' part 810if(defined$pathname) { 811# we got "branch:filename" or "branch:dir/" 812# we could use git_get_type(branch:pathname), but: 813# - it needs $git_dir 814# - it does a git() call 815# - the convention of terminating directories with a slash 816# makes it superfluous 817# - embedding the action in the PATH_INFO would make it even 818# more superfluous 819$pathname=~ s,^/+,,; 820if(!$pathname||substr($pathname, -1)eq"/") { 821$input_params{'action'} ||="tree"; 822$pathname=~ s,/$,,; 823}else{ 824# the default action depends on whether we had parent info 825# or not 826if($parentrefname) { 827$input_params{'action'} ||="blobdiff_plain"; 828}else{ 829$input_params{'action'} ||="blob_plain"; 830} 831} 832$input_params{'hash_base'} ||=$refname; 833$input_params{'file_name'} ||=$pathname; 834}elsif(defined$refname) { 835# we got "branch". In this case we have to choose if we have to 836# set hash or hash_base. 837# 838# Most of the actions without a pathname only want hash to be 839# set, except for the ones specified in @wants_base that want 840# hash_base instead. It should also be noted that hand-crafted 841# links having 'history' as an action and no pathname or hash 842# set will fail, but that happens regardless of PATH_INFO. 843if(defined$parentrefname) { 844# if there is parent let the default be 'shortlog' action 845# (for http://git.example.com/repo.git/A..B links); if there 846# is no parent, dispatch will detect type of object and set 847# action appropriately if required (if action is not set) 848$input_params{'action'} ||="shortlog"; 849} 850if($input_params{'action'} && 851grep{$_eq$input_params{'action'} }@wants_base) { 852$input_params{'hash_base'} ||=$refname; 853}else{ 854$input_params{'hash'} ||=$refname; 855} 856} 857 858# next, handle the 'parent' part, if present 859if(defined$parentrefname) { 860# a missing pathspec defaults to the 'current' filename, allowing e.g. 861# someproject/blobdiff/oldrev..newrev:/filename 862if($parentpathname) { 863$parentpathname=~ s,^/+,,; 864$parentpathname=~ s,/$,,; 865$input_params{'file_parent'} ||=$parentpathname; 866}else{ 867$input_params{'file_parent'} ||=$input_params{'file_name'}; 868} 869# we assume that hash_parent_base is wanted if a path was specified, 870# or if the action wants hash_base instead of hash 871if(defined$input_params{'file_parent'} || 872grep{$_eq$input_params{'action'} }@wants_base) { 873$input_params{'hash_parent_base'} ||=$parentrefname; 874}else{ 875$input_params{'hash_parent'} ||=$parentrefname; 876} 877} 878 879# for the snapshot action, we allow URLs in the form 880# $project/snapshot/$hash.ext 881# where .ext determines the snapshot and gets removed from the 882# passed $refname to provide the $hash. 883# 884# To be able to tell that $refname includes the format extension, we 885# require the following two conditions to be satisfied: 886# - the hash input parameter MUST have been set from the $refname part 887# of the URL (i.e. they must be equal) 888# - the snapshot format MUST NOT have been defined already (e.g. from 889# CGI parameter sf) 890# It's also useless to try any matching unless $refname has a dot, 891# so we check for that too 892if(defined$input_params{'action'} && 893$input_params{'action'}eq'snapshot'&& 894defined$refname&&index($refname,'.') != -1&& 895$refnameeq$input_params{'hash'} && 896!defined$input_params{'snapshot_format'}) { 897# We loop over the known snapshot formats, checking for 898# extensions. Allowed extensions are both the defined suffix 899# (which includes the initial dot already) and the snapshot 900# format key itself, with a prepended dot 901while(my($fmt,$opt) =each%known_snapshot_formats) { 902my$hash=$refname; 903unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 904next; 905} 906my$sfx=$1; 907# a valid suffix was found, so set the snapshot format 908# and reset the hash parameter 909$input_params{'snapshot_format'} =$fmt; 910$input_params{'hash'} =$hash; 911# we also set the format suffix to the one requested 912# in the URL: this way a request for e.g. .tgz returns 913# a .tgz instead of a .tar.gz 914$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 915last; 916} 917} 918} 919 920our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 921$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 922$searchtext,$search_regexp); 923sub evaluate_and_validate_params { 924our$action=$input_params{'action'}; 925if(defined$action) { 926if(!validate_action($action)) { 927 die_error(400,"Invalid action parameter"); 928} 929} 930 931# parameters which are pathnames 932our$project=$input_params{'project'}; 933if(defined$project) { 934if(!validate_project($project)) { 935undef$project; 936 die_error(404,"No such project"); 937} 938} 939 940our$file_name=$input_params{'file_name'}; 941if(defined$file_name) { 942if(!validate_pathname($file_name)) { 943 die_error(400,"Invalid file parameter"); 944} 945} 946 947our$file_parent=$input_params{'file_parent'}; 948if(defined$file_parent) { 949if(!validate_pathname($file_parent)) { 950 die_error(400,"Invalid file parent parameter"); 951} 952} 953 954# parameters which are refnames 955our$hash=$input_params{'hash'}; 956if(defined$hash) { 957if(!validate_refname($hash)) { 958 die_error(400,"Invalid hash parameter"); 959} 960} 961 962our$hash_parent=$input_params{'hash_parent'}; 963if(defined$hash_parent) { 964if(!validate_refname($hash_parent)) { 965 die_error(400,"Invalid hash parent parameter"); 966} 967} 968 969our$hash_base=$input_params{'hash_base'}; 970if(defined$hash_base) { 971if(!validate_refname($hash_base)) { 972 die_error(400,"Invalid hash base parameter"); 973} 974} 975 976our@extra_options= @{$input_params{'extra_options'}}; 977# @extra_options is always defined, since it can only be (currently) set from 978# CGI, and $cgi->param() returns the empty array in array context if the param 979# is not set 980foreachmy$opt(@extra_options) { 981if(not exists$allowed_options{$opt}) { 982 die_error(400,"Invalid option parameter"); 983} 984if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 985 die_error(400,"Invalid option parameter for this action"); 986} 987} 988 989our$hash_parent_base=$input_params{'hash_parent_base'}; 990if(defined$hash_parent_base) { 991if(!validate_refname($hash_parent_base)) { 992 die_error(400,"Invalid hash parent base parameter"); 993} 994} 995 996# other parameters 997our$page=$input_params{'page'}; 998if(defined$page) { 999if($page=~m/[^0-9]/) {1000 die_error(400,"Invalid page parameter");1001}1002}10031004our$searchtype=$input_params{'searchtype'};1005if(defined$searchtype) {1006if($searchtype=~m/[^a-z]/) {1007 die_error(400,"Invalid searchtype parameter");1008}1009}10101011our$search_use_regexp=$input_params{'search_use_regexp'};10121013our$searchtext=$input_params{'searchtext'};1014our$search_regexp;1015if(defined$searchtext) {1016if(length($searchtext) <2) {1017 die_error(403,"At least two characters are required for search parameter");1018}1019$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1020}1021}10221023# path to the current git repository1024our$git_dir;1025sub evaluate_git_dir {1026our$git_dir="$projectroot/$project"if$project;1027}10281029our(@snapshot_fmts,$git_avatar);1030sub configure_gitweb_features {1031# list of supported snapshot formats1032our@snapshot_fmts= gitweb_get_feature('snapshot');1033@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10341035# check that the avatar feature is set to a known provider name,1036# and for each provider check if the dependencies are satisfied.1037# if the provider name is invalid or the dependencies are not met,1038# reset $git_avatar to the empty string.1039our($git_avatar) = gitweb_get_feature('avatar');1040if($git_avatareq'gravatar') {1041$git_avatar=''unless(eval{require Digest::MD5;1; });1042}elsif($git_avatareq'picon') {1043# no dependencies1044}else{1045$git_avatar='';1046}1047}10481049# custom error handler: 'die <message>' is Internal Server Error1050sub handle_errors_html {1051my$msg=shift;# it is already HTML escaped10521053# to avoid infinite loop where error occurs in die_error,1054# change handler to default handler, disabling handle_errors_html1055 set_message("Error occured when inside die_error:\n$msg");10561057# you cannot jump out of die_error when called as error handler;1058# the subroutine set via CGI::Carp::set_message is called _after_1059# HTTP headers are already written, so it cannot write them itself1060 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1061}1062set_message(\&handle_errors_html);10631064# dispatch1065sub dispatch {1066if(!defined$action) {1067if(defined$hash) {1068$action= git_get_type($hash);1069}elsif(defined$hash_base&&defined$file_name) {1070$action= git_get_type("$hash_base:$file_name");1071}elsif(defined$project) {1072$action='summary';1073}else{1074$action='project_list';1075}1076}1077if(!defined($actions{$action})) {1078 die_error(400,"Unknown action");1079}1080if($action!~m/^(?:opml|project_list|project_index)$/&&1081!$project) {1082 die_error(400,"Project needed");1083}1084$actions{$action}->();1085}10861087sub reset_timer {1088our$t0= [ gettimeofday() ]1089ifdefined$t0;1090our$number_of_git_cmds=0;1091}10921093our$first_request=1;1094sub run_request {1095 reset_timer();10961097 evaluate_uri();1098if($first_request) {1099 evaluate_gitweb_config();1100 evaluate_git_version();1101}1102if($per_request_config) {1103if(ref($per_request_config)eq'CODE') {1104$per_request_config->();1105}elsif(!$first_request) {1106 evaluate_gitweb_config();1107}1108}1109 check_loadavg();11101111# $projectroot and $projects_list might be set in gitweb config file1112$projects_list||=$projectroot;11131114 evaluate_query_params();1115 evaluate_path_info();1116 evaluate_and_validate_params();1117 evaluate_git_dir();11181119 configure_gitweb_features();11201121 dispatch();1122}11231124our$is_last_request=sub{1};1125our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1126our$CGI='CGI';1127our$cgi;1128sub configure_as_fcgi {1129require CGI::Fast;1130our$CGI='CGI::Fast';11311132my$request_number=0;1133# let each child service 100 requests1134our$is_last_request=sub{ ++$request_number>100};1135}1136sub evaluate_argv {1137my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1138 configure_as_fcgi()1139if$script_name=~/\.fcgi$/;11401141return unless(@ARGV);11421143require Getopt::Long;1144 Getopt::Long::GetOptions(1145'fastcgi|fcgi|f'=> \&configure_as_fcgi,1146'nproc|n=i'=>sub{1147my($arg,$val) =@_;1148return unlesseval{require FCGI::ProcManager;1; };1149my$proc_manager= FCGI::ProcManager->new({1150 n_processes =>$val,1151});1152our$pre_listen_hook=sub{$proc_manager->pm_manage() };1153our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1154our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1155},1156);1157}11581159sub run {1160 evaluate_argv();11611162$first_request=1;1163$pre_listen_hook->()1164if$pre_listen_hook;11651166 REQUEST:1167while($cgi=$CGI->new()) {1168$pre_dispatch_hook->()1169if$pre_dispatch_hook;11701171 run_request();11721173$post_dispatch_hook->()1174if$post_dispatch_hook;1175$first_request=0;11761177last REQUEST if($is_last_request->());1178}11791180 DONE_GITWEB:11811;1182}11831184run();11851186if(defined caller) {1187# wrapped in a subroutine processing requests,1188# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1189return;1190}else{1191# pure CGI script, serving single request1192exit;1193}11941195## ======================================================================1196## action links11971198# possible values of extra options1199# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1200# -replay => 1 - start from a current view (replay with modifications)1201# -path_info => 0|1 - don't use/use path_info URL (if possible)1202# -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone1203sub href {1204my%params=@_;1205# default is to use -absolute url() i.e. $my_uri1206my$href=$params{-full} ?$my_url:$my_uri;12071208# implicit -replay, must be first of implicit params1209$params{-replay} =1if(keys%params==1&&$params{-anchor});12101211$params{'project'} =$projectunlessexists$params{'project'};12121213if($params{-replay}) {1214while(my($name,$symbol) =each%cgi_param_mapping) {1215if(!exists$params{$name}) {1216$params{$name} =$input_params{$name};1217}1218}1219}12201221my$use_pathinfo= gitweb_check_feature('pathinfo');1222if(defined$params{'project'} &&1223(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1224# try to put as many parameters as possible in PATH_INFO:1225# - project name1226# - action1227# - hash_parent or hash_parent_base:/file_parent1228# - hash or hash_base:/filename1229# - the snapshot_format as an appropriate suffix12301231# When the script is the root DirectoryIndex for the domain,1232# $href here would be something like http://gitweb.example.com/1233# Thus, we strip any trailing / from $href, to spare us double1234# slashes in the final URL1235$href=~ s,/$,,;12361237# Then add the project name, if present1238$href.="/".esc_path_info($params{'project'});1239delete$params{'project'};12401241# since we destructively absorb parameters, we keep this1242# boolean that remembers if we're handling a snapshot1243my$is_snapshot=$params{'action'}eq'snapshot';12441245# Summary just uses the project path URL, any other action is1246# added to the URL1247if(defined$params{'action'}) {1248$href.="/".esc_path_info($params{'action'})1249unless$params{'action'}eq'summary';1250delete$params{'action'};1251}12521253# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1254# stripping nonexistent or useless pieces1255$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1256||$params{'hash_parent'} ||$params{'hash'});1257if(defined$params{'hash_base'}) {1258if(defined$params{'hash_parent_base'}) {1259$href.= esc_path_info($params{'hash_parent_base'});1260# skip the file_parent if it's the same as the file_name1261if(defined$params{'file_parent'}) {1262if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1263delete$params{'file_parent'};1264}elsif($params{'file_parent'} !~/\.\./) {1265$href.=":/".esc_path_info($params{'file_parent'});1266delete$params{'file_parent'};1267}1268}1269$href.="..";1270delete$params{'hash_parent'};1271delete$params{'hash_parent_base'};1272}elsif(defined$params{'hash_parent'}) {1273$href.= esc_path_info($params{'hash_parent'})."..";1274delete$params{'hash_parent'};1275}12761277$href.= esc_path_info($params{'hash_base'});1278if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1279$href.=":/".esc_path_info($params{'file_name'});1280delete$params{'file_name'};1281}1282delete$params{'hash'};1283delete$params{'hash_base'};1284}elsif(defined$params{'hash'}) {1285$href.= esc_path_info($params{'hash'});1286delete$params{'hash'};1287}12881289# If the action was a snapshot, we can absorb the1290# snapshot_format parameter too1291if($is_snapshot) {1292my$fmt=$params{'snapshot_format'};1293# snapshot_format should always be defined when href()1294# is called, but just in case some code forgets, we1295# fall back to the default1296$fmt||=$snapshot_fmts[0];1297$href.=$known_snapshot_formats{$fmt}{'suffix'};1298delete$params{'snapshot_format'};1299}1300}13011302# now encode the parameters explicitly1303my@result= ();1304for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1305my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1306if(defined$params{$name}) {1307if(ref($params{$name})eq"ARRAY") {1308foreachmy$par(@{$params{$name}}) {1309push@result,$symbol."=". esc_param($par);1310}1311}else{1312push@result,$symbol."=". esc_param($params{$name});1313}1314}1315}1316$href.="?".join(';',@result)ifscalar@result;13171318# final transformation: trailing spaces must be escaped (URI-encoded)1319$href=~s/(\s+)$/CGI::escape($1)/e;13201321if($params{-anchor}) {1322$href.="#".esc_param($params{-anchor});1323}13241325return$href;1326}132713281329## ======================================================================1330## validation, quoting/unquoting and escaping13311332sub validate_action {1333my$input=shift||returnundef;1334returnundefunlessexists$actions{$input};1335return$input;1336}13371338sub validate_project {1339my$input=shift||returnundef;1340if(!validate_pathname($input) ||1341!(-d "$projectroot/$input") ||1342!check_export_ok("$projectroot/$input") ||1343($strict_export&& !project_in_list($input))) {1344returnundef;1345}else{1346return$input;1347}1348}13491350sub validate_pathname {1351my$input=shift||returnundef;13521353# no '.' or '..' as elements of path, i.e. no '.' nor '..'1354# at the beginning, at the end, and between slashes.1355# also this catches doubled slashes1356if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1357returnundef;1358}1359# no null characters1360if($input=~m!\0!) {1361returnundef;1362}1363return$input;1364}13651366sub validate_refname {1367my$input=shift||returnundef;13681369# textual hashes are O.K.1370if($input=~m/^[0-9a-fA-F]{40}$/) {1371return$input;1372}1373# it must be correct pathname1374$input= validate_pathname($input)1375orreturnundef;1376# restrictions on ref name according to git-check-ref-format1377if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1378returnundef;1379}1380return$input;1381}13821383# decode sequences of octets in utf8 into Perl's internal form,1384# which is utf-8 with utf8 flag set if needed. gitweb writes out1385# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1386sub to_utf8 {1387my$str=shift;1388returnundefunlessdefined$str;1389if(utf8::valid($str)) {1390 utf8::decode($str);1391return$str;1392}else{1393return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1394}1395}13961397# quote unsafe chars, but keep the slash, even when it's not1398# correct, but quoted slashes look too horrible in bookmarks1399sub esc_param {1400my$str=shift;1401returnundefunlessdefined$str;1402$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1403$str=~s/ /\+/g;1404return$str;1405}14061407# the quoting rules for path_info fragment are slightly different1408sub esc_path_info {1409my$str=shift;1410returnundefunlessdefined$str;14111412# path_info doesn't treat '+' as space (specially), but '?' must be escaped1413$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;14141415return$str;1416}14171418# quote unsafe chars in whole URL, so some characters cannot be quoted1419sub esc_url {1420my$str=shift;1421returnundefunlessdefined$str;1422$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1423$str=~s/ /\+/g;1424return$str;1425}14261427# quote unsafe characters in HTML attributes1428sub esc_attr {14291430# for XHTML conformance escaping '"' to '"' is not enough1431return esc_html(@_);1432}14331434# replace invalid utf8 character with SUBSTITUTION sequence1435sub esc_html {1436my$str=shift;1437my%opts=@_;14381439returnundefunlessdefined$str;14401441$str= to_utf8($str);1442$str=$cgi->escapeHTML($str);1443if($opts{'-nbsp'}) {1444$str=~s/ / /g;1445}1446$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1447return$str;1448}14491450# quote control characters and escape filename to HTML1451sub esc_path {1452my$str=shift;1453my%opts=@_;14541455returnundefunlessdefined$str;14561457$str= to_utf8($str);1458$str=$cgi->escapeHTML($str);1459if($opts{'-nbsp'}) {1460$str=~s/ / /g;1461}1462$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1463return$str;1464}14651466# Make control characters "printable", using character escape codes (CEC)1467sub quot_cec {1468my$cntrl=shift;1469my%opts=@_;1470my%es= (# character escape codes, aka escape sequences1471"\t"=>'\t',# tab (HT)1472"\n"=>'\n',# line feed (LF)1473"\r"=>'\r',# carrige return (CR)1474"\f"=>'\f',# form feed (FF)1475"\b"=>'\b',# backspace (BS)1476"\a"=>'\a',# alarm (bell) (BEL)1477"\e"=>'\e',# escape (ESC)1478"\013"=>'\v',# vertical tab (VT)1479"\000"=>'\0',# nul character (NUL)1480);1481my$chr= ( (exists$es{$cntrl})1482?$es{$cntrl}1483:sprintf('\%2x',ord($cntrl)) );1484if($opts{-nohtml}) {1485return$chr;1486}else{1487return"<span class=\"cntrl\">$chr</span>";1488}1489}14901491# Alternatively use unicode control pictures codepoints,1492# Unicode "printable representation" (PR)1493sub quot_upr {1494my$cntrl=shift;1495my%opts=@_;14961497my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1498if($opts{-nohtml}) {1499return$chr;1500}else{1501return"<span class=\"cntrl\">$chr</span>";1502}1503}15041505# git may return quoted and escaped filenames1506sub unquote {1507my$str=shift;15081509sub unq {1510my$seq=shift;1511my%es= (# character escape codes, aka escape sequences1512't'=>"\t",# tab (HT, TAB)1513'n'=>"\n",# newline (NL)1514'r'=>"\r",# return (CR)1515'f'=>"\f",# form feed (FF)1516'b'=>"\b",# backspace (BS)1517'a'=>"\a",# alarm (bell) (BEL)1518'e'=>"\e",# escape (ESC)1519'v'=>"\013",# vertical tab (VT)1520);15211522if($seq=~m/^[0-7]{1,3}$/) {1523# octal char sequence1524returnchr(oct($seq));1525}elsif(exists$es{$seq}) {1526# C escape sequence, aka character escape code1527return$es{$seq};1528}1529# quoted ordinary character1530return$seq;1531}15321533if($str=~m/^"(.*)"$/) {1534# needs unquoting1535$str=$1;1536$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1537}1538return$str;1539}15401541# escape tabs (convert tabs to spaces)1542sub untabify {1543my$line=shift;15441545while((my$pos=index($line,"\t")) != -1) {1546if(my$count= (8- ($pos%8))) {1547my$spaces=' ' x $count;1548$line=~s/\t/$spaces/;1549}1550}15511552return$line;1553}15541555sub project_in_list {1556my$project=shift;1557my@list= git_get_projects_list();1558return@list&&scalar(grep{$_->{'path'}eq$project}@list);1559}15601561## ----------------------------------------------------------------------1562## HTML aware string manipulation15631564# Try to chop given string on a word boundary between position1565# $len and $len+$add_len. If there is no word boundary there,1566# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1567# (marking chopped part) would be longer than given string.1568sub chop_str {1569my$str=shift;1570my$len=shift;1571my$add_len=shift||10;1572my$where=shift||'right';# 'left' | 'center' | 'right'15731574# Make sure perl knows it is utf8 encoded so we don't1575# cut in the middle of a utf8 multibyte char.1576$str= to_utf8($str);15771578# allow only $len chars, but don't cut a word if it would fit in $add_len1579# if it doesn't fit, cut it if it's still longer than the dots we would add1580# remove chopped character entities entirely15811582# when chopping in the middle, distribute $len into left and right part1583# return early if chopping wouldn't make string shorter1584if($whereeq'center') {1585return$strif($len+5>=length($str));# filler is length 51586$len=int($len/2);1587}else{1588return$strif($len+4>=length($str));# filler is length 41589}15901591# regexps: ending and beginning with word part up to $add_len1592my$endre=qr/.{$len}\w{0,$add_len}/;1593my$begre=qr/\w{0,$add_len}.{$len}/;15941595if($whereeq'left') {1596$str=~m/^(.*?)($begre)$/;1597my($lead,$body) = ($1,$2);1598if(length($lead) >4) {1599$lead=" ...";1600}1601return"$lead$body";16021603}elsif($whereeq'center') {1604$str=~m/^($endre)(.*)$/;1605my($left,$str) = ($1,$2);1606$str=~m/^(.*?)($begre)$/;1607my($mid,$right) = ($1,$2);1608if(length($mid) >5) {1609$mid=" ... ";1610}1611return"$left$mid$right";16121613}else{1614$str=~m/^($endre)(.*)$/;1615my$body=$1;1616my$tail=$2;1617if(length($tail) >4) {1618$tail="... ";1619}1620return"$body$tail";1621}1622}16231624# takes the same arguments as chop_str, but also wraps a <span> around the1625# result with a title attribute if it does get chopped. Additionally, the1626# string is HTML-escaped.1627sub chop_and_escape_str {1628my($str) =@_;16291630my$chopped= chop_str(@_);1631if($choppedeq$str) {1632return esc_html($chopped);1633}else{1634$str=~s/[[:cntrl:]]/?/g;1635return$cgi->span({-title=>$str}, esc_html($chopped));1636}1637}16381639## ----------------------------------------------------------------------1640## functions returning short strings16411642# CSS class for given age value (in seconds)1643sub age_class {1644my$age=shift;16451646if(!defined$age) {1647return"noage";1648}elsif($age<60*60*2) {1649return"age0";1650}elsif($age<60*60*24*2) {1651return"age1";1652}else{1653return"age2";1654}1655}16561657# convert age in seconds to "nn units ago" string1658sub age_string {1659my$age=shift;1660my$age_str;16611662if($age>60*60*24*365*2) {1663$age_str= (int$age/60/60/24/365);1664$age_str.=" years ago";1665}elsif($age>60*60*24*(365/12)*2) {1666$age_str=int$age/60/60/24/(365/12);1667$age_str.=" months ago";1668}elsif($age>60*60*24*7*2) {1669$age_str=int$age/60/60/24/7;1670$age_str.=" weeks ago";1671}elsif($age>60*60*24*2) {1672$age_str=int$age/60/60/24;1673$age_str.=" days ago";1674}elsif($age>60*60*2) {1675$age_str=int$age/60/60;1676$age_str.=" hours ago";1677}elsif($age>60*2) {1678$age_str=int$age/60;1679$age_str.=" min ago";1680}elsif($age>2) {1681$age_str=int$age;1682$age_str.=" sec ago";1683}else{1684$age_str.=" right now";1685}1686return$age_str;1687}16881689useconstant{1690 S_IFINVALID =>0030000,1691 S_IFGITLINK =>0160000,1692};16931694# submodule/subproject, a commit object reference1695sub S_ISGITLINK {1696my$mode=shift;16971698return(($mode& S_IFMT) == S_IFGITLINK)1699}17001701# convert file mode in octal to symbolic file mode string1702sub mode_str {1703my$mode=oct shift;17041705if(S_ISGITLINK($mode)) {1706return'm---------';1707}elsif(S_ISDIR($mode& S_IFMT)) {1708return'drwxr-xr-x';1709}elsif(S_ISLNK($mode)) {1710return'lrwxrwxrwx';1711}elsif(S_ISREG($mode)) {1712# git cares only about the executable bit1713if($mode& S_IXUSR) {1714return'-rwxr-xr-x';1715}else{1716return'-rw-r--r--';1717};1718}else{1719return'----------';1720}1721}17221723# convert file mode in octal to file type string1724sub file_type {1725my$mode=shift;17261727if($mode!~m/^[0-7]+$/) {1728return$mode;1729}else{1730$mode=oct$mode;1731}17321733if(S_ISGITLINK($mode)) {1734return"submodule";1735}elsif(S_ISDIR($mode& S_IFMT)) {1736return"directory";1737}elsif(S_ISLNK($mode)) {1738return"symlink";1739}elsif(S_ISREG($mode)) {1740return"file";1741}else{1742return"unknown";1743}1744}17451746# convert file mode in octal to file type description string1747sub file_type_long {1748my$mode=shift;17491750if($mode!~m/^[0-7]+$/) {1751return$mode;1752}else{1753$mode=oct$mode;1754}17551756if(S_ISGITLINK($mode)) {1757return"submodule";1758}elsif(S_ISDIR($mode& S_IFMT)) {1759return"directory";1760}elsif(S_ISLNK($mode)) {1761return"symlink";1762}elsif(S_ISREG($mode)) {1763if($mode& S_IXUSR) {1764return"executable";1765}else{1766return"file";1767};1768}else{1769return"unknown";1770}1771}177217731774## ----------------------------------------------------------------------1775## functions returning short HTML fragments, or transforming HTML fragments1776## which don't belong to other sections17771778# format line of commit message.1779sub format_log_line_html {1780my$line=shift;17811782$line= esc_html($line, -nbsp=>1);1783$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1784$cgi->a({-href => href(action=>"object", hash=>$1),1785-class=>"text"},$1);1786}eg;17871788return$line;1789}17901791# format marker of refs pointing to given object17921793# the destination action is chosen based on object type and current context:1794# - for annotated tags, we choose the tag view unless it's the current view1795# already, in which case we go to shortlog view1796# - for other refs, we keep the current view if we're in history, shortlog or1797# log view, and select shortlog otherwise1798sub format_ref_marker {1799my($refs,$id) =@_;1800my$markers='';18011802if(defined$refs->{$id}) {1803foreachmy$ref(@{$refs->{$id}}) {1804# this code exploits the fact that non-lightweight tags are the1805# only indirect objects, and that they are the only objects for which1806# we want to use tag instead of shortlog as action1807my($type,$name) =qw();1808my$indirect= ($ref=~s/\^\{\}$//);1809# e.g. tags/v2.6.11 or heads/next1810if($ref=~m!^(.*?)s?/(.*)$!) {1811$type=$1;1812$name=$2;1813}else{1814$type="ref";1815$name=$ref;1816}18171818my$class=$type;1819$class.=" indirect"if$indirect;18201821my$dest_action="shortlog";18221823if($indirect) {1824$dest_action="tag"unless$actioneq"tag";1825}elsif($action=~/^(history|(short)?log)$/) {1826$dest_action=$action;1827}18281829my$dest="";1830$dest.="refs/"unless$ref=~ m!^refs/!;1831$dest.=$ref;18321833my$link=$cgi->a({1834-href => href(1835 action=>$dest_action,1836 hash=>$dest1837)},$name);18381839$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".1840$link."</span>";1841}1842}18431844if($markers) {1845return' <span class="refs">'.$markers.'</span>';1846}else{1847return"";1848}1849}18501851# format, perhaps shortened and with markers, title line1852sub format_subject_html {1853my($long,$short,$href,$extra) =@_;1854$extra=''unlessdefined($extra);18551856if(length($short) <length($long)) {1857$long=~s/[[:cntrl:]]/?/g;1858return$cgi->a({-href =>$href, -class=>"list subject",1859-title => to_utf8($long)},1860 esc_html($short)) .$extra;1861}else{1862return$cgi->a({-href =>$href, -class=>"list subject"},1863 esc_html($long)) .$extra;1864}1865}18661867# Rather than recomputing the url for an email multiple times, we cache it1868# after the first hit. This gives a visible benefit in views where the avatar1869# for the same email is used repeatedly (e.g. shortlog).1870# The cache is shared by all avatar engines (currently gravatar only), which1871# are free to use it as preferred. Since only one avatar engine is used for any1872# given page, there's no risk for cache conflicts.1873our%avatar_cache= ();18741875# Compute the picon url for a given email, by using the picon search service over at1876# http://www.cs.indiana.edu/picons/search.html1877sub picon_url {1878my$email=lc shift;1879if(!$avatar_cache{$email}) {1880my($user,$domain) =split('@',$email);1881$avatar_cache{$email} =1882"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1883"$domain/$user/".1884"users+domains+unknown/up/single";1885}1886return$avatar_cache{$email};1887}18881889# Compute the gravatar url for a given email, if it's not in the cache already.1890# Gravatar stores only the part of the URL before the size, since that's the1891# one computationally more expensive. This also allows reuse of the cache for1892# different sizes (for this particular engine).1893sub gravatar_url {1894my$email=lc shift;1895my$size=shift;1896$avatar_cache{$email} ||=1897"http://www.gravatar.com/avatar/".1898 Digest::MD5::md5_hex($email) ."?s=";1899return$avatar_cache{$email} .$size;1900}19011902# Insert an avatar for the given $email at the given $size if the feature1903# is enabled.1904sub git_get_avatar {1905my($email,%opts) =@_;1906my$pre_white= ($opts{-pad_before} ?" ":"");1907my$post_white= ($opts{-pad_after} ?" ":"");1908$opts{-size} ||='default';1909my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1910my$url="";1911if($git_avatareq'gravatar') {1912$url= gravatar_url($email,$size);1913}elsif($git_avatareq'picon') {1914$url= picon_url($email);1915}1916# Other providers can be added by extending the if chain, defining $url1917# as needed. If no variant puts something in $url, we assume avatars1918# are completely disabled/unavailable.1919if($url) {1920return$pre_white.1921"<img width=\"$size\"".1922"class=\"avatar\"".1923"src=\"".esc_url($url)."\"".1924"alt=\"\"".1925"/>".$post_white;1926}else{1927return"";1928}1929}19301931sub format_search_author {1932my($author,$searchtype,$displaytext) =@_;1933my$have_search= gitweb_check_feature('search');19341935if($have_search) {1936my$performed="";1937if($searchtypeeq'author') {1938$performed="authored";1939}elsif($searchtypeeq'committer') {1940$performed="committed";1941}19421943return$cgi->a({-href => href(action=>"search", hash=>$hash,1944 searchtext=>$author,1945 searchtype=>$searchtype),class=>"list",1946 title=>"Search for commits$performedby$author"},1947$displaytext);19481949}else{1950return$displaytext;1951}1952}19531954# format the author name of the given commit with the given tag1955# the author name is chopped and escaped according to the other1956# optional parameters (see chop_str).1957sub format_author_html {1958my$tag=shift;1959my$co=shift;1960my$author= chop_and_escape_str($co->{'author_name'},@_);1961return"<$tagclass=\"author\">".1962 format_search_author($co->{'author_name'},"author",1963 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1964$author) .1965"</$tag>";1966}19671968# format git diff header line, i.e. "diff --(git|combined|cc) ..."1969sub format_git_diff_header_line {1970my$line=shift;1971my$diffinfo=shift;1972my($from,$to) =@_;19731974if($diffinfo->{'nparents'}) {1975# combined diff1976$line=~s!^(diff (.*?) )"?.*$!$1!;1977if($to->{'href'}) {1978$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1979 esc_path($to->{'file'}));1980}else{# file was deleted (no href)1981$line.= esc_path($to->{'file'});1982}1983}else{1984# "ordinary" diff1985$line=~s!^(diff (.*?) )"?a/.*$!$1!;1986if($from->{'href'}) {1987$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1988'a/'. esc_path($from->{'file'}));1989}else{# file was added (no href)1990$line.='a/'. esc_path($from->{'file'});1991}1992$line.=' ';1993if($to->{'href'}) {1994$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1995'b/'. esc_path($to->{'file'}));1996}else{# file was deleted1997$line.='b/'. esc_path($to->{'file'});1998}1999}20002001return"<div class=\"diff header\">$line</div>\n";2002}20032004# format extended diff header line, before patch itself2005sub format_extended_diff_header_line {2006my$line=shift;2007my$diffinfo=shift;2008my($from,$to) =@_;20092010# match <path>2011if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {2012$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},2013 esc_path($from->{'file'}));2014}2015if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {2016$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},2017 esc_path($to->{'file'}));2018}2019# match single <mode>2020if($line=~m/\s(\d{6})$/) {2021$line.='<span class="info"> ('.2022 file_type_long($1) .2023')</span>';2024}2025# match <hash>2026if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {2027# can match only for combined diff2028$line='index ';2029for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2030if($from->{'href'}[$i]) {2031$line.=$cgi->a({-href=>$from->{'href'}[$i],2032-class=>"hash"},2033substr($diffinfo->{'from_id'}[$i],0,7));2034}else{2035$line.='0' x 7;2036}2037# separator2038$line.=','if($i<$diffinfo->{'nparents'} -1);2039}2040$line.='..';2041if($to->{'href'}) {2042$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2043substr($diffinfo->{'to_id'},0,7));2044}else{2045$line.='0' x 7;2046}20472048}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2049# can match only for ordinary diff2050my($from_link,$to_link);2051if($from->{'href'}) {2052$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2053substr($diffinfo->{'from_id'},0,7));2054}else{2055$from_link='0' x 7;2056}2057if($to->{'href'}) {2058$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2059substr($diffinfo->{'to_id'},0,7));2060}else{2061$to_link='0' x 7;2062}2063my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2064$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2065}20662067return$line."<br/>\n";2068}20692070# format from-file/to-file diff header2071sub format_diff_from_to_header {2072my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2073my$line;2074my$result='';20752076$line=$from_line;2077#assert($line =~ m/^---/) if DEBUG;2078# no extra formatting for "^--- /dev/null"2079if(!$diffinfo->{'nparents'}) {2080# ordinary (single parent) diff2081if($line=~m!^--- "?a/!) {2082if($from->{'href'}) {2083$line='--- a/'.2084$cgi->a({-href=>$from->{'href'}, -class=>"path"},2085 esc_path($from->{'file'}));2086}else{2087$line='--- a/'.2088 esc_path($from->{'file'});2089}2090}2091$result.= qq!<div class="diff from_file">$line</div>\n!;20922093}else{2094# combined diff (merge commit)2095for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2096if($from->{'href'}[$i]) {2097$line='--- '.2098$cgi->a({-href=>href(action=>"blobdiff",2099 hash_parent=>$diffinfo->{'from_id'}[$i],2100 hash_parent_base=>$parents[$i],2101 file_parent=>$from->{'file'}[$i],2102 hash=>$diffinfo->{'to_id'},2103 hash_base=>$hash,2104 file_name=>$to->{'file'}),2105-class=>"path",2106-title=>"diff". ($i+1)},2107$i+1) .2108'/'.2109$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2110 esc_path($from->{'file'}[$i]));2111}else{2112$line='--- /dev/null';2113}2114$result.= qq!<div class="diff from_file">$line</div>\n!;2115}2116}21172118$line=$to_line;2119#assert($line =~ m/^\+\+\+/) if DEBUG;2120# no extra formatting for "^+++ /dev/null"2121if($line=~m!^\+\+\+ "?b/!) {2122if($to->{'href'}) {2123$line='+++ b/'.2124$cgi->a({-href=>$to->{'href'}, -class=>"path"},2125 esc_path($to->{'file'}));2126}else{2127$line='+++ b/'.2128 esc_path($to->{'file'});2129}2130}2131$result.= qq!<div class="diff to_file">$line</div>\n!;21322133return$result;2134}21352136# create note for patch simplified by combined diff2137sub format_diff_cc_simplified {2138my($diffinfo,@parents) =@_;2139my$result='';21402141$result.="<div class=\"diff header\">".2142"diff --cc ";2143if(!is_deleted($diffinfo)) {2144$result.=$cgi->a({-href => href(action=>"blob",2145 hash_base=>$hash,2146 hash=>$diffinfo->{'to_id'},2147 file_name=>$diffinfo->{'to_file'}),2148-class=>"path"},2149 esc_path($diffinfo->{'to_file'}));2150}else{2151$result.= esc_path($diffinfo->{'to_file'});2152}2153$result.="</div>\n".# class="diff header"2154"<div class=\"diff nodifferences\">".2155"Simple merge".2156"</div>\n";# class="diff nodifferences"21572158return$result;2159}21602161# format patch (diff) line (not to be used for diff headers)2162sub format_diff_line {2163my$line=shift;2164my($from,$to) =@_;2165my$diff_class="";21662167chomp$line;21682169if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2170# combined diff2171my$prefix=substr($line,0,scalar@{$from->{'href'}});2172if($line=~m/^\@{3}/) {2173$diff_class=" chunk_header";2174}elsif($line=~m/^\\/) {2175$diff_class=" incomplete";2176}elsif($prefix=~tr/+/+/) {2177$diff_class=" add";2178}elsif($prefix=~tr/-/-/) {2179$diff_class=" rem";2180}2181}else{2182# assume ordinary diff2183my$char=substr($line,0,1);2184if($chareq'+') {2185$diff_class=" add";2186}elsif($chareq'-') {2187$diff_class=" rem";2188}elsif($chareq'@') {2189$diff_class=" chunk_header";2190}elsif($chareq"\\") {2191$diff_class=" incomplete";2192}2193}2194$line= untabify($line);2195if($from&&$to&&$line=~m/^\@{2} /) {2196my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2197$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21982199$from_lines=0unlessdefined$from_lines;2200$to_lines=0unlessdefined$to_lines;22012202if($from->{'href'}) {2203$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2204-class=>"list"},$from_text);2205}2206if($to->{'href'}) {2207$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2208-class=>"list"},$to_text);2209}2210$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2211"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2212return"<div class=\"diff$diff_class\">$line</div>\n";2213}elsif($from&&$to&&$line=~m/^\@{3}/) {2214my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2215my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);22162217@from_text=split(' ',$ranges);2218for(my$i=0;$i<@from_text; ++$i) {2219($from_start[$i],$from_nlines[$i]) =2220(split(',',substr($from_text[$i],1)),0);2221}22222223$to_text=pop@from_text;2224$to_start=pop@from_start;2225$to_nlines=pop@from_nlines;22262227$line="<span class=\"chunk_info\">$prefix";2228for(my$i=0;$i<@from_text; ++$i) {2229if($from->{'href'}[$i]) {2230$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2231-class=>"list"},$from_text[$i]);2232}else{2233$line.=$from_text[$i];2234}2235$line.=" ";2236}2237if($to->{'href'}) {2238$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2239-class=>"list"},$to_text);2240}else{2241$line.=$to_text;2242}2243$line.="$prefix</span>".2244"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2245return"<div class=\"diff$diff_class\">$line</div>\n";2246}2247return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2248}22492250# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2251# linked. Pass the hash of the tree/commit to snapshot.2252sub format_snapshot_links {2253my($hash) =@_;2254my$num_fmts=@snapshot_fmts;2255if($num_fmts>1) {2256# A parenthesized list of links bearing format names.2257# e.g. "snapshot (_tar.gz_ _zip_)"2258return"snapshot (".join(' ',map2259$cgi->a({2260-href => href(2261 action=>"snapshot",2262 hash=>$hash,2263 snapshot_format=>$_2264)2265},$known_snapshot_formats{$_}{'display'})2266,@snapshot_fmts) .")";2267}elsif($num_fmts==1) {2268# A single "snapshot" link whose tooltip bears the format name.2269# i.e. "_snapshot_"2270my($fmt) =@snapshot_fmts;2271return2272$cgi->a({2273-href => href(2274 action=>"snapshot",2275 hash=>$hash,2276 snapshot_format=>$fmt2277),2278-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2279},"snapshot");2280}else{# $num_fmts == 02281returnundef;2282}2283}22842285## ......................................................................2286## functions returning values to be passed, perhaps after some2287## transformation, to other functions; e.g. returning arguments to href()22882289# returns hash to be passed to href to generate gitweb URL2290# in -title key it returns description of link2291sub get_feed_info {2292my$format=shift||'Atom';2293my%res= (action =>lc($format));22942295# feed links are possible only for project views2296return unless(defined$project);2297# some views should link to OPML, or to generic project feed,2298# or don't have specific feed yet (so they should use generic)2299return if($action=~/^(?:tags|heads|forks|tag|search)$/x);23002301my$branch;2302# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2303# from tag links; this also makes possible to detect branch links2304if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2305(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2306$branch=$1;2307}2308# find log type for feed description (title)2309my$type='log';2310if(defined$file_name) {2311$type="history of$file_name";2312$type.="/"if($actioneq'tree');2313$type.=" on '$branch'"if(defined$branch);2314}else{2315$type="log of$branch"if(defined$branch);2316}23172318$res{-title} =$type;2319$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2320$res{'file_name'} =$file_name;23212322return%res;2323}23242325## ----------------------------------------------------------------------2326## git utility subroutines, invoking git commands23272328# returns path to the core git executable and the --git-dir parameter as list2329sub git_cmd {2330$number_of_git_cmds++;2331return$GIT,'--git-dir='.$git_dir;2332}23332334# quote the given arguments for passing them to the shell2335# quote_command("command", "arg 1", "arg with ' and ! characters")2336# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2337# Try to avoid using this function wherever possible.2338sub quote_command {2339returnjoin(' ',2340map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2341}23422343# get HEAD ref of given project as hash2344sub git_get_head_hash {2345return git_get_full_hash(shift,'HEAD');2346}23472348sub git_get_full_hash {2349return git_get_hash(@_);2350}23512352sub git_get_short_hash {2353return git_get_hash(@_,'--short=7');2354}23552356sub git_get_hash {2357my($project,$hash,@options) =@_;2358my$o_git_dir=$git_dir;2359my$retval=undef;2360$git_dir="$projectroot/$project";2361if(open my$fd,'-|', git_cmd(),'rev-parse',2362'--verify','-q',@options,$hash) {2363$retval= <$fd>;2364chomp$retvalifdefined$retval;2365close$fd;2366}2367if(defined$o_git_dir) {2368$git_dir=$o_git_dir;2369}2370return$retval;2371}23722373# get type of given object2374sub git_get_type {2375my$hash=shift;23762377open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2378my$type= <$fd>;2379close$fdorreturn;2380chomp$type;2381return$type;2382}23832384# repository configuration2385our$config_file='';2386our%config;23872388# store multiple values for single key as anonymous array reference2389# single values stored directly in the hash, not as [ <value> ]2390sub hash_set_multi {2391my($hash,$key,$value) =@_;23922393if(!exists$hash->{$key}) {2394$hash->{$key} =$value;2395}elsif(!ref$hash->{$key}) {2396$hash->{$key} = [$hash->{$key},$value];2397}else{2398push@{$hash->{$key}},$value;2399}2400}24012402# return hash of git project configuration2403# optionally limited to some section, e.g. 'gitweb'2404sub git_parse_project_config {2405my$section_regexp=shift;2406my%config;24072408local$/="\0";24092410open my$fh,"-|", git_cmd(),"config",'-z','-l',2411orreturn;24122413while(my$keyval= <$fh>) {2414chomp$keyval;2415my($key,$value) =split(/\n/,$keyval,2);24162417 hash_set_multi(\%config,$key,$value)2418if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2419}2420close$fh;24212422return%config;2423}24242425# convert config value to boolean: 'true' or 'false'2426# no value, number > 0, 'true' and 'yes' values are true2427# rest of values are treated as false (never as error)2428sub config_to_bool {2429my$val=shift;24302431return1if!defined$val;# section.key24322433# strip leading and trailing whitespace2434$val=~s/^\s+//;2435$val=~s/\s+$//;24362437return(($val=~/^\d+$/&&$val) ||# section.key = 12438($val=~/^(?:true|yes)$/i));# section.key = true2439}24402441# convert config value to simple decimal number2442# an optional value suffix of 'k', 'm', or 'g' will cause the value2443# to be multiplied by 1024, 1048576, or 10737418242444sub config_to_int {2445my$val=shift;24462447# strip leading and trailing whitespace2448$val=~s/^\s+//;2449$val=~s/\s+$//;24502451if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2452$unit=lc($unit);2453# unknown unit is treated as 12454return$num* ($uniteq'g'?1073741824:2455$uniteq'm'?1048576:2456$uniteq'k'?1024:1);2457}2458return$val;2459}24602461# convert config value to array reference, if needed2462sub config_to_multi {2463my$val=shift;24642465returnref($val) ?$val: (defined($val) ? [$val] : []);2466}24672468sub git_get_project_config {2469my($key,$type) =@_;24702471return unlessdefined$git_dir;24722473# key sanity check2474return unless($key);2475$key=~s/^gitweb\.//;2476return if($key=~m/\W/);24772478# type sanity check2479if(defined$type) {2480$type=~s/^--//;2481$type=undef2482unless($typeeq'bool'||$typeeq'int');2483}24842485# get config2486if(!defined$config_file||2487$config_filene"$git_dir/config") {2488%config= git_parse_project_config('gitweb');2489$config_file="$git_dir/config";2490}24912492# check if config variable (key) exists2493return unlessexists$config{"gitweb.$key"};24942495# ensure given type2496if(!defined$type) {2497return$config{"gitweb.$key"};2498}elsif($typeeq'bool') {2499# backward compatibility: 'git config --bool' returns true/false2500return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2501}elsif($typeeq'int') {2502return config_to_int($config{"gitweb.$key"});2503}2504return$config{"gitweb.$key"};2505}25062507# get hash of given path at given ref2508sub git_get_hash_by_path {2509my$base=shift;2510my$path=shift||returnundef;2511my$type=shift;25122513$path=~ s,/+$,,;25142515open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2516or die_error(500,"Open git-ls-tree failed");2517my$line= <$fd>;2518close$fdorreturnundef;25192520if(!defined$line) {2521# there is no tree or hash given by $path at $base2522returnundef;2523}25242525#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2526$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2527if(defined$type&&$typene$2) {2528# type doesn't match2529returnundef;2530}2531return$3;2532}25332534# get path of entry with given hash at given tree-ish (ref)2535# used to get 'from' filename for combined diff (merge commit) for renames2536sub git_get_path_by_hash {2537my$base=shift||return;2538my$hash=shift||return;25392540local$/="\0";25412542open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2543orreturnundef;2544while(my$line= <$fd>) {2545chomp$line;25462547#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2548#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2549if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2550close$fd;2551return$1;2552}2553}2554close$fd;2555returnundef;2556}25572558## ......................................................................2559## git utility functions, directly accessing git repository25602561sub git_get_project_description {2562my$path=shift;25632564$git_dir="$projectroot/$path";2565open my$fd,'<',"$git_dir/description"2566orreturn git_get_project_config('description');2567my$descr= <$fd>;2568close$fd;2569if(defined$descr) {2570chomp$descr;2571}2572return$descr;2573}25742575sub git_get_project_ctags {2576my$path=shift;2577my$ctags= {};25782579$git_dir="$projectroot/$path";2580opendir my$dh,"$git_dir/ctags"2581orreturn$ctags;2582foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2583open my$ct,'<',$_ornext;2584my$val= <$ct>;2585chomp$val;2586close$ct;2587my$ctag=$_;$ctag=~ s#.*/##;2588$ctags->{$ctag} =$val;2589}2590closedir$dh;2591$ctags;2592}25932594sub git_populate_project_tagcloud {2595my$ctags=shift;25962597# First, merge different-cased tags; tags vote on casing2598my%ctags_lc;2599foreach(keys%$ctags) {2600$ctags_lc{lc$_}->{count} +=$ctags->{$_};2601if(not$ctags_lc{lc$_}->{topcount}2602or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2603$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2604$ctags_lc{lc$_}->{topname} =$_;2605}2606}26072608my$cloud;2609if(eval{require HTML::TagCloud;1; }) {2610$cloud= HTML::TagCloud->new;2611foreach(sort keys%ctags_lc) {2612# Pad the title with spaces so that the cloud looks2613# less crammed.2614my$title=$ctags_lc{$_}->{topname};2615$title=~s/ / /g;2616$title=~s/^/ /g;2617$title=~s/$/ /g;2618$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2619}2620}else{2621$cloud= \%ctags_lc;2622}2623$cloud;2624}26252626sub git_show_project_tagcloud {2627my($cloud,$count) =@_;2628print STDERR ref($cloud)."..\n";2629if(ref$cloudeq'HTML::TagCloud') {2630return$cloud->html_and_css($count);2631}else{2632my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2633return'<p align="center">'.join(', ',map{2634$cgi->a({-href=>"$home_link?by_tag=$_"},$cloud->{$_}->{topname})2635}splice(@tags,0,$count)) .'</p>';2636}2637}26382639sub git_get_project_url_list {2640my$path=shift;26412642$git_dir="$projectroot/$path";2643open my$fd,'<',"$git_dir/cloneurl"2644orreturnwantarray?2645@{ config_to_multi(git_get_project_config('url')) } :2646 config_to_multi(git_get_project_config('url'));2647my@git_project_url_list=map{chomp;$_} <$fd>;2648close$fd;26492650returnwantarray?@git_project_url_list: \@git_project_url_list;2651}26522653sub git_get_projects_list {2654my$filter=shift||'';2655my@list;26562657$filter=~s/\.git$//;26582659if(-d $projects_list) {2660# search in directory2661my$dir=$projects_list;2662# remove the trailing "/"2663$dir=~s!/+$!!;2664my$pfxlen=length("$projects_list");2665my$pfxdepth= ($projects_list=~tr!/!!);2666# when filtering, search only given subdirectory2667if($filter) {2668$dir.="/$filter";2669$dir=~s!/+$!!;2670}26712672 File::Find::find({2673 follow_fast =>1,# follow symbolic links2674 follow_skip =>2,# ignore duplicates2675 dangling_symlinks =>0,# ignore dangling symlinks, silently2676 wanted =>sub{2677# global variables2678our$project_maxdepth;2679our$projectroot;2680# skip project-list toplevel, if we get it.2681return if(m!^[/.]$!);2682# only directories can be git repositories2683return unless(-d $_);2684# don't traverse too deep (Find is super slow on os x)2685# $project_maxdepth excludes depth of $projectroot2686if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2687$File::Find::prune =1;2688return;2689}26902691my$path=substr($File::Find::name,$pfxlen+1);2692# we check related file in $projectroot2693if(check_export_ok("$projectroot/$path")) {2694push@list, { path =>$path};2695$File::Find::prune =1;2696}2697},2698},"$dir");26992700}elsif(-f $projects_list) {2701# read from file(url-encoded):2702# 'git%2Fgit.git Linus+Torvalds'2703# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2704# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2705open my$fd,'<',$projects_listorreturn;2706 PROJECT:2707while(my$line= <$fd>) {2708chomp$line;2709my($path,$owner) =split' ',$line;2710$path= unescape($path);2711$owner= unescape($owner);2712if(!defined$path) {2713next;2714}2715# if $filter is rpovided, check if $path begins with $filter2716if($filter&&$path!~m!^\Q$filter\E/!) {2717next;2718}2719if(check_export_ok("$projectroot/$path")) {2720my$pr= {2721 path =>$path,2722 owner => to_utf8($owner),2723};2724push@list,$pr;2725}2726}2727close$fd;2728}2729return@list;2730}27312732# written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)2733# as side effects it sets 'forks' field to list of forks for forked projects2734sub filter_forks_from_projects_list {2735my$projects=shift;27362737my%trie;# prefix tree of directories (path components)2738# generate trie out of those directories that might contain forks2739foreachmy$pr(@$projects) {2740my$path=$pr->{'path'};2741$path=~s/\.git$//;# forks of 'repo.git' are in 'repo/' directory2742next if($path=~m!/$!);# skip non-bare repositories, e.g. 'repo/.git'2743next unless($path);# skip '.git' repository: tests, git-instaweb2744next unless(-d $path);# containing directory exists2745$pr->{'forks'} = [];# there can be 0 or more forks of project27462747# add to trie2748my@dirs=split('/',$path);2749# walk the trie, until either runs out of components or out of trie2750my$ref= \%trie;2751while(scalar@dirs&&2752exists($ref->{$dirs[0]})) {2753$ref=$ref->{shift@dirs};2754}2755# create rest of trie structure from rest of components2756foreachmy$dir(@dirs) {2757$ref=$ref->{$dir} = {};2758}2759# create end marker, store $pr as a data2760$ref->{''} =$prif(!exists$ref->{''});2761}27622763# filter out forks, by finding shortest prefix match for paths2764my@filtered;2765 PROJECT:2766foreachmy$pr(@$projects) {2767# trie lookup2768my$ref= \%trie;2769 DIR:2770foreachmy$dir(split('/',$pr->{'path'})) {2771if(exists$ref->{''}) {2772# found [shortest] prefix, is a fork - skip it2773push@{$ref->{''}{'forks'}},$pr;2774next PROJECT;2775}2776if(!exists$ref->{$dir}) {2777# not in trie, cannot have prefix, not a fork2778push@filtered,$pr;2779next PROJECT;2780}2781# If the dir is there, we just walk one step down the trie.2782$ref=$ref->{$dir};2783}2784# we ran out of trie2785# (shouldn't happen: it's either no match, or end marker)2786push@filtered,$pr;2787}27882789return@filtered;2790}27912792# note: fill_project_list_info must be run first,2793# for 'descr_long' and 'ctags' to be filled2794sub search_projects_list {2795my($projlist,%opts) =@_;2796my$tagfilter=$opts{'tagfilter'};2797my$searchtext=$opts{'searchtext'};27982799return@$projlist2800unless($tagfilter||$searchtext);28012802my@projects;2803 PROJECT:2804foreachmy$pr(@$projlist) {28052806if($tagfilter) {2807next unlessref($pr->{'ctags'})eq'HASH';2808next unless2809grep{lc($_)eq lc($tagfilter) }keys%{$pr->{'ctags'}};2810}28112812if($searchtext) {2813next unless2814$pr->{'path'} =~/$searchtext/||2815$pr->{'descr_long'} =~/$searchtext/;2816}28172818push@projects,$pr;2819}28202821return@projects;2822}28232824our$gitweb_project_owner=undef;2825sub git_get_project_list_from_file {28262827return if(defined$gitweb_project_owner);28282829$gitweb_project_owner= {};2830# read from file (url-encoded):2831# 'git%2Fgit.git Linus+Torvalds'2832# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2833# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2834if(-f $projects_list) {2835open(my$fd,'<',$projects_list);2836while(my$line= <$fd>) {2837chomp$line;2838my($pr,$ow) =split' ',$line;2839$pr= unescape($pr);2840$ow= unescape($ow);2841$gitweb_project_owner->{$pr} = to_utf8($ow);2842}2843close$fd;2844}2845}28462847sub git_get_project_owner {2848my$project=shift;2849my$owner;28502851returnundefunless$project;2852$git_dir="$projectroot/$project";28532854if(!defined$gitweb_project_owner) {2855 git_get_project_list_from_file();2856}28572858if(exists$gitweb_project_owner->{$project}) {2859$owner=$gitweb_project_owner->{$project};2860}2861if(!defined$owner){2862$owner= git_get_project_config('owner');2863}2864if(!defined$owner) {2865$owner= get_file_owner("$git_dir");2866}28672868return$owner;2869}28702871sub git_get_last_activity {2872my($path) =@_;2873my$fd;28742875$git_dir="$projectroot/$path";2876open($fd,"-|", git_cmd(),'for-each-ref',2877'--format=%(committer)',2878'--sort=-committerdate',2879'--count=1',2880'refs/heads')orreturn;2881my$most_recent= <$fd>;2882close$fdorreturn;2883if(defined$most_recent&&2884$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2885my$timestamp=$1;2886my$age=time-$timestamp;2887return($age, age_string($age));2888}2889return(undef,undef);2890}28912892# Implementation note: when a single remote is wanted, we cannot use 'git2893# remote show -n' because that command always work (assuming it's a remote URL2894# if it's not defined), and we cannot use 'git remote show' because that would2895# try to make a network roundtrip. So the only way to find if that particular2896# remote is defined is to walk the list provided by 'git remote -v' and stop if2897# and when we find what we want.2898sub git_get_remotes_list {2899my$wanted=shift;2900my%remotes= ();29012902open my$fd,'-|', git_cmd(),'remote','-v';2903return unless$fd;2904while(my$remote= <$fd>) {2905chomp$remote;2906$remote=~s!\t(.*?)\s+\((\w+)\)$!!;2907next if$wantedand not$remoteeq$wanted;2908my($url,$key) = ($1,$2);29092910$remotes{$remote} ||= {'heads'=> () };2911$remotes{$remote}{$key} =$url;2912}2913close$fdorreturn;2914returnwantarray?%remotes: \%remotes;2915}29162917# Takes a hash of remotes as first parameter and fills it by adding the2918# available remote heads for each of the indicated remotes.2919sub fill_remote_heads {2920my$remotes=shift;2921my@heads=map{"remotes/$_"}keys%$remotes;2922my@remoteheads= git_get_heads_list(undef,@heads);2923foreachmy$remote(keys%$remotes) {2924$remotes->{$remote}{'heads'} = [grep{2925$_->{'name'} =~s!^$remote/!!2926}@remoteheads];2927}2928}29292930sub git_get_references {2931my$type=shift||"";2932my%refs;2933# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112934# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2935open my$fd,"-|", git_cmd(),"show-ref","--dereference",2936($type? ("--","refs/$type") : ())# use -- <pattern> if $type2937orreturn;29382939while(my$line= <$fd>) {2940chomp$line;2941if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2942if(defined$refs{$1}) {2943push@{$refs{$1}},$2;2944}else{2945$refs{$1} = [$2];2946}2947}2948}2949close$fdorreturn;2950return \%refs;2951}29522953sub git_get_rev_name_tags {2954my$hash=shift||returnundef;29552956open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2957orreturn;2958my$name_rev= <$fd>;2959close$fd;29602961if($name_rev=~ m|^$hash tags/(.*)$|) {2962return$1;2963}else{2964# catches also '$hash undefined' output2965returnundef;2966}2967}29682969## ----------------------------------------------------------------------2970## parse to hash functions29712972sub parse_date {2973my$epoch=shift;2974my$tz=shift||"-0000";29752976my%date;2977my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2978my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2979my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2980$date{'hour'} =$hour;2981$date{'minute'} =$min;2982$date{'mday'} =$mday;2983$date{'day'} =$days[$wday];2984$date{'month'} =$months[$mon];2985$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2986$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2987$date{'mday-time'} =sprintf"%d%s%02d:%02d",2988$mday,$months[$mon],$hour,$min;2989$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",29901900+$year,1+$mon,$mday,$hour,$min,$sec;29912992my($tz_sign,$tz_hour,$tz_min) =2993($tz=~m/^([-+])(\d\d)(\d\d)$/);2994$tz_sign= ($tz_signeq'-'? -1: +1);2995my$local=$epoch+$tz_sign*((($tz_hour*60) +$tz_min)*60);2996($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2997$date{'hour_local'} =$hour;2998$date{'minute_local'} =$min;2999$date{'tz_local'} =$tz;3000$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",30011900+$year,$mon+1,$mday,3002$hour,$min,$sec,$tz);3003return%date;3004}30053006sub parse_tag {3007my$tag_id=shift;3008my%tag;3009my@comment;30103011open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;3012$tag{'id'} =$tag_id;3013while(my$line= <$fd>) {3014chomp$line;3015if($line=~m/^object ([0-9a-fA-F]{40})$/) {3016$tag{'object'} =$1;3017}elsif($line=~m/^type (.+)$/) {3018$tag{'type'} =$1;3019}elsif($line=~m/^tag (.+)$/) {3020$tag{'name'} =$1;3021}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {3022$tag{'author'} =$1;3023$tag{'author_epoch'} =$2;3024$tag{'author_tz'} =$3;3025if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {3026$tag{'author_name'} =$1;3027$tag{'author_email'} =$2;3028}else{3029$tag{'author_name'} =$tag{'author'};3030}3031}elsif($line=~m/--BEGIN/) {3032push@comment,$line;3033last;3034}elsif($lineeq"") {3035last;3036}3037}3038push@comment, <$fd>;3039$tag{'comment'} = \@comment;3040close$fdorreturn;3041if(!defined$tag{'name'}) {3042return3043};3044return%tag3045}30463047sub parse_commit_text {3048my($commit_text,$withparents) =@_;3049my@commit_lines=split'\n',$commit_text;3050my%co;30513052pop@commit_lines;# Remove '\0'30533054if(!@commit_lines) {3055return;3056}30573058my$header=shift@commit_lines;3059if($header!~m/^[0-9a-fA-F]{40}/) {3060return;3061}3062($co{'id'},my@parents) =split' ',$header;3063while(my$line=shift@commit_lines) {3064last if$lineeq"\n";3065if($line=~m/^tree ([0-9a-fA-F]{40})$/) {3066$co{'tree'} =$1;3067}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {3068push@parents,$1;3069}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {3070$co{'author'} = to_utf8($1);3071$co{'author_epoch'} =$2;3072$co{'author_tz'} =$3;3073if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {3074$co{'author_name'} =$1;3075$co{'author_email'} =$2;3076}else{3077$co{'author_name'} =$co{'author'};3078}3079}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3080$co{'committer'} = to_utf8($1);3081$co{'committer_epoch'} =$2;3082$co{'committer_tz'} =$3;3083if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3084$co{'committer_name'} =$1;3085$co{'committer_email'} =$2;3086}else{3087$co{'committer_name'} =$co{'committer'};3088}3089}3090}3091if(!defined$co{'tree'}) {3092return;3093};3094$co{'parents'} = \@parents;3095$co{'parent'} =$parents[0];30963097foreachmy$title(@commit_lines) {3098$title=~s/^ //;3099if($titlene"") {3100$co{'title'} = chop_str($title,80,5);3101# remove leading stuff of merges to make the interesting part visible3102if(length($title) >50) {3103$title=~s/^Automatic //;3104$title=~s/^merge (of|with) /Merge ... /i;3105if(length($title) >50) {3106$title=~s/(http|rsync):\/\///;3107}3108if(length($title) >50) {3109$title=~s/(master|www|rsync)\.//;3110}3111if(length($title) >50) {3112$title=~s/kernel.org:?//;3113}3114if(length($title) >50) {3115$title=~s/\/pub\/scm//;3116}3117}3118$co{'title_short'} = chop_str($title,50,5);3119last;3120}3121}3122if(!defined$co{'title'} ||$co{'title'}eq"") {3123$co{'title'} =$co{'title_short'} ='(no commit message)';3124}3125# remove added spaces3126foreachmy$line(@commit_lines) {3127$line=~s/^ //;3128}3129$co{'comment'} = \@commit_lines;31303131my$age=time-$co{'committer_epoch'};3132$co{'age'} =$age;3133$co{'age_string'} = age_string($age);3134my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3135if($age>60*60*24*7*2) {3136$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3137$co{'age_string_age'} =$co{'age_string'};3138}else{3139$co{'age_string_date'} =$co{'age_string'};3140$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3141}3142return%co;3143}31443145sub parse_commit {3146my($commit_id) =@_;3147my%co;31483149local$/="\0";31503151open my$fd,"-|", git_cmd(),"rev-list",3152"--parents",3153"--header",3154"--max-count=1",3155$commit_id,3156"--",3157or die_error(500,"Open git-rev-list failed");3158%co= parse_commit_text(<$fd>,1);3159close$fd;31603161return%co;3162}31633164sub parse_commits {3165my($commit_id,$maxcount,$skip,$filename,@args) =@_;3166my@cos;31673168$maxcount||=1;3169$skip||=0;31703171local$/="\0";31723173open my$fd,"-|", git_cmd(),"rev-list",3174"--header",3175@args,3176("--max-count=".$maxcount),3177("--skip=".$skip),3178@extra_options,3179$commit_id,3180"--",3181($filename? ($filename) : ())3182or die_error(500,"Open git-rev-list failed");3183while(my$line= <$fd>) {3184my%co= parse_commit_text($line);3185push@cos, \%co;3186}3187close$fd;31883189returnwantarray?@cos: \@cos;3190}31913192# parse line of git-diff-tree "raw" output3193sub parse_difftree_raw_line {3194my$line=shift;3195my%res;31963197# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3198# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3199if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3200$res{'from_mode'} =$1;3201$res{'to_mode'} =$2;3202$res{'from_id'} =$3;3203$res{'to_id'} =$4;3204$res{'status'} =$5;3205$res{'similarity'} =$6;3206if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3207($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3208}else{3209$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3210}3211}3212# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3213# combined diff (for merge commit)3214elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3215$res{'nparents'} =length($1);3216$res{'from_mode'} = [split(' ',$2) ];3217$res{'to_mode'} =pop@{$res{'from_mode'}};3218$res{'from_id'} = [split(' ',$3) ];3219$res{'to_id'} =pop@{$res{'from_id'}};3220$res{'status'} = [split('',$4) ];3221$res{'to_file'} = unquote($5);3222}3223# 'c512b523472485aef4fff9e57b229d9d243c967f'3224elsif($line=~m/^([0-9a-fA-F]{40})$/) {3225$res{'commit'} =$1;3226}32273228returnwantarray?%res: \%res;3229}32303231# wrapper: return parsed line of git-diff-tree "raw" output3232# (the argument might be raw line, or parsed info)3233sub parsed_difftree_line {3234my$line_or_ref=shift;32353236if(ref($line_or_ref)eq"HASH") {3237# pre-parsed (or generated by hand)3238return$line_or_ref;3239}else{3240return parse_difftree_raw_line($line_or_ref);3241}3242}32433244# parse line of git-ls-tree output3245sub parse_ls_tree_line {3246my$line=shift;3247my%opts=@_;3248my%res;32493250if($opts{'-l'}) {3251#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3252$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;32533254$res{'mode'} =$1;3255$res{'type'} =$2;3256$res{'hash'} =$3;3257$res{'size'} =$4;3258if($opts{'-z'}) {3259$res{'name'} =$5;3260}else{3261$res{'name'} = unquote($5);3262}3263}else{3264#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3265$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;32663267$res{'mode'} =$1;3268$res{'type'} =$2;3269$res{'hash'} =$3;3270if($opts{'-z'}) {3271$res{'name'} =$4;3272}else{3273$res{'name'} = unquote($4);3274}3275}32763277returnwantarray?%res: \%res;3278}32793280# generates _two_ hashes, references to which are passed as 2 and 3 argument3281sub parse_from_to_diffinfo {3282my($diffinfo,$from,$to,@parents) =@_;32833284if($diffinfo->{'nparents'}) {3285# combined diff3286$from->{'file'} = [];3287$from->{'href'} = [];3288 fill_from_file_info($diffinfo,@parents)3289unlessexists$diffinfo->{'from_file'};3290for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3291$from->{'file'}[$i] =3292defined$diffinfo->{'from_file'}[$i] ?3293$diffinfo->{'from_file'}[$i] :3294$diffinfo->{'to_file'};3295if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3296$from->{'href'}[$i] = href(action=>"blob",3297 hash_base=>$parents[$i],3298 hash=>$diffinfo->{'from_id'}[$i],3299 file_name=>$from->{'file'}[$i]);3300}else{3301$from->{'href'}[$i] =undef;3302}3303}3304}else{3305# ordinary (not combined) diff3306$from->{'file'} =$diffinfo->{'from_file'};3307if($diffinfo->{'status'}ne"A") {# not new (added) file3308$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3309 hash=>$diffinfo->{'from_id'},3310 file_name=>$from->{'file'});3311}else{3312delete$from->{'href'};3313}3314}33153316$to->{'file'} =$diffinfo->{'to_file'};3317if(!is_deleted($diffinfo)) {# file exists in result3318$to->{'href'} = href(action=>"blob", hash_base=>$hash,3319 hash=>$diffinfo->{'to_id'},3320 file_name=>$to->{'file'});3321}else{3322delete$to->{'href'};3323}3324}33253326## ......................................................................3327## parse to array of hashes functions33283329sub git_get_heads_list {3330my($limit,@classes) =@_;3331@classes= ('heads')unless@classes;3332my@patterns=map{"refs/$_"}@classes;3333my@headslist;33343335open my$fd,'-|', git_cmd(),'for-each-ref',3336($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3337'--format=%(objectname) %(refname) %(subject)%00%(committer)',3338@patterns3339orreturn;3340while(my$line= <$fd>) {3341my%ref_item;33423343chomp$line;3344my($refinfo,$committerinfo) =split(/\0/,$line);3345my($hash,$name,$title) =split(' ',$refinfo,3);3346my($committer,$epoch,$tz) =3347($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3348$ref_item{'fullname'} =$name;3349$name=~s!^refs/(?:head|remote)s/!!;33503351$ref_item{'name'} =$name;3352$ref_item{'id'} =$hash;3353$ref_item{'title'} =$title||'(no commit message)';3354$ref_item{'epoch'} =$epoch;3355if($epoch) {3356$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3357}else{3358$ref_item{'age'} ="unknown";3359}33603361push@headslist, \%ref_item;3362}3363close$fd;33643365returnwantarray?@headslist: \@headslist;3366}33673368sub git_get_tags_list {3369my$limit=shift;3370my@tagslist;33713372open my$fd,'-|', git_cmd(),'for-each-ref',3373($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3374'--format=%(objectname) %(objecttype) %(refname) '.3375'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3376'refs/tags'3377orreturn;3378while(my$line= <$fd>) {3379my%ref_item;33803381chomp$line;3382my($refinfo,$creatorinfo) =split(/\0/,$line);3383my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3384my($creator,$epoch,$tz) =3385($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3386$ref_item{'fullname'} =$name;3387$name=~s!^refs/tags/!!;33883389$ref_item{'type'} =$type;3390$ref_item{'id'} =$id;3391$ref_item{'name'} =$name;3392if($typeeq"tag") {3393$ref_item{'subject'} =$title;3394$ref_item{'reftype'} =$reftype;3395$ref_item{'refid'} =$refid;3396}else{3397$ref_item{'reftype'} =$type;3398$ref_item{'refid'} =$id;3399}34003401if($typeeq"tag"||$typeeq"commit") {3402$ref_item{'epoch'} =$epoch;3403if($epoch) {3404$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3405}else{3406$ref_item{'age'} ="unknown";3407}3408}34093410push@tagslist, \%ref_item;3411}3412close$fd;34133414returnwantarray?@tagslist: \@tagslist;3415}34163417## ----------------------------------------------------------------------3418## filesystem-related functions34193420sub get_file_owner {3421my$path=shift;34223423my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3424my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3425if(!defined$gcos) {3426returnundef;3427}3428my$owner=$gcos;3429$owner=~s/[,;].*$//;3430return to_utf8($owner);3431}34323433# assume that file exists3434sub insert_file {3435my$filename=shift;34363437open my$fd,'<',$filename;3438print map{ to_utf8($_) } <$fd>;3439close$fd;3440}34413442## ......................................................................3443## mimetype related functions34443445sub mimetype_guess_file {3446my$filename=shift;3447my$mimemap=shift;3448-r $mimemaporreturnundef;34493450my%mimemap;3451open(my$mh,'<',$mimemap)orreturnundef;3452while(<$mh>) {3453next ifm/^#/;# skip comments3454my($mimetype,$exts) =split(/\t+/);3455if(defined$exts) {3456my@exts=split(/\s+/,$exts);3457foreachmy$ext(@exts) {3458$mimemap{$ext} =$mimetype;3459}3460}3461}3462close($mh);34633464$filename=~/\.([^.]*)$/;3465return$mimemap{$1};3466}34673468sub mimetype_guess {3469my$filename=shift;3470my$mime;3471$filename=~/\./orreturnundef;34723473if($mimetypes_file) {3474my$file=$mimetypes_file;3475if($file!~m!^/!) {# if it is relative path3476# it is relative to project3477$file="$projectroot/$project/$file";3478}3479$mime= mimetype_guess_file($filename,$file);3480}3481$mime||= mimetype_guess_file($filename,'/etc/mime.types');3482return$mime;3483}34843485sub blob_mimetype {3486my$fd=shift;3487my$filename=shift;34883489if($filename) {3490my$mime= mimetype_guess($filename);3491$mimeandreturn$mime;3492}34933494# just in case3495return$default_blob_plain_mimetypeunless$fd;34963497if(-T $fd) {3498return'text/plain';3499}elsif(!$filename) {3500return'application/octet-stream';3501}elsif($filename=~m/\.png$/i) {3502return'image/png';3503}elsif($filename=~m/\.gif$/i) {3504return'image/gif';3505}elsif($filename=~m/\.jpe?g$/i) {3506return'image/jpeg';3507}else{3508return'application/octet-stream';3509}3510}35113512sub blob_contenttype {3513my($fd,$file_name,$type) =@_;35143515$type||= blob_mimetype($fd,$file_name);3516if($typeeq'text/plain'&&defined$default_text_plain_charset) {3517$type.="; charset=$default_text_plain_charset";3518}35193520return$type;3521}35223523# guess file syntax for syntax highlighting; return undef if no highlighting3524# the name of syntax can (in the future) depend on syntax highlighter used3525sub guess_file_syntax {3526my($highlight,$mimetype,$file_name) =@_;3527returnundefunless($highlight&&defined$file_name);3528my$basename= basename($file_name,'.in');3529return$highlight_basename{$basename}3530ifexists$highlight_basename{$basename};35313532$basename=~/\.([^.]*)$/;3533my$ext=$1orreturnundef;3534return$highlight_ext{$ext}3535ifexists$highlight_ext{$ext};35363537returnundef;3538}35393540# run highlighter and return FD of its output,3541# or return original FD if no highlighting3542sub run_highlighter {3543my($fd,$highlight,$syntax) =@_;3544return$fdunless($highlight&&defined$syntax);35453546close$fd;3547open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3548 quote_command($highlight_bin).3549" --replace-tabs=8 --fragment --syntax$syntax|"3550or die_error(500,"Couldn't open file or run syntax highlighter");3551return$fd;3552}35533554## ======================================================================3555## functions printing HTML: header, footer, error page35563557sub get_page_title {3558my$title= to_utf8($site_name);35593560return$titleunless(defined$project);3561$title.=" - ". to_utf8($project);35623563return$titleunless(defined$action);3564$title.="/$action";# $action is US-ASCII (7bit ASCII)35653566return$titleunless(defined$file_name);3567$title.=" - ". esc_path($file_name);3568if($actioneq"tree"&&$file_name!~ m|/$|) {3569$title.="/";3570}35713572return$title;3573}35743575sub print_feed_meta {3576if(defined$project) {3577my%href_params= get_feed_info();3578if(!exists$href_params{'-title'}) {3579$href_params{'-title'} ='log';3580}35813582foreachmy$format(qw(RSS Atom)) {3583my$type=lc($format);3584my%link_attr= (3585'-rel'=>'alternate',3586'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),3587'-type'=>"application/$type+xml"3588);35893590$href_params{'action'} =$type;3591$link_attr{'-href'} = href(%href_params);3592print"<link ".3593"rel=\"$link_attr{'-rel'}\"".3594"title=\"$link_attr{'-title'}\"".3595"href=\"$link_attr{'-href'}\"".3596"type=\"$link_attr{'-type'}\"".3597"/>\n";35983599$href_params{'extra_options'} ='--no-merges';3600$link_attr{'-href'} = href(%href_params);3601$link_attr{'-title'} .=' (no merges)';3602print"<link ".3603"rel=\"$link_attr{'-rel'}\"".3604"title=\"$link_attr{'-title'}\"".3605"href=\"$link_attr{'-href'}\"".3606"type=\"$link_attr{'-type'}\"".3607"/>\n";3608}36093610}else{3611printf('<link rel="alternate" title="%sprojects list" '.3612'href="%s" type="text/plain; charset=utf-8" />'."\n",3613 esc_attr($site_name), href(project=>undef, action=>"project_index"));3614printf('<link rel="alternate" title="%sprojects feeds" '.3615'href="%s" type="text/x-opml" />'."\n",3616 esc_attr($site_name), href(project=>undef, action=>"opml"));3617}3618}36193620sub git_header_html {3621my$status=shift||"200 OK";3622my$expires=shift;3623my%opts=@_;36243625my$title= get_page_title();3626my$content_type;3627# require explicit support from the UA if we are to send the page as3628# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3629# we have to do this because MSIE sometimes globs '*/*', pretending to3630# support xhtml+xml but choking when it gets what it asked for.3631if(defined$cgi->http('HTTP_ACCEPT') &&3632$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3633$cgi->Accept('application/xhtml+xml') !=0) {3634$content_type='application/xhtml+xml';3635}else{3636$content_type='text/html';3637}3638print$cgi->header(-type=>$content_type, -charset =>'utf-8',3639-status=>$status, -expires =>$expires)3640unless($opts{'-no_http_header'});3641my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3642print<<EOF;3643<?xml version="1.0" encoding="utf-8"?>3644<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3645<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3646<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3647<!-- git core binaries version$git_version-->3648<head>3649<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3650<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3651<meta name="robots" content="index, nofollow"/>3652<title>$title</title>3653EOF3654# the stylesheet, favicon etc urls won't work correctly with path_info3655# unless we set the appropriate base URL3656if($ENV{'PATH_INFO'}) {3657print"<base href=\"".esc_url($base_url)."\"/>\n";3658}3659# print out each stylesheet that exist, providing backwards capability3660# for those people who defined $stylesheet in a config file3661if(defined$stylesheet) {3662print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3663}else{3664foreachmy$stylesheet(@stylesheets) {3665next unless$stylesheet;3666print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3667}3668}3669 print_feed_meta()3670if($statuseq'200 OK');3671if(defined$favicon) {3672printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);3673}36743675print"</head>\n".3676"<body>\n";36773678if(defined$site_header&& -f $site_header) {3679 insert_file($site_header);3680}36813682print"<div class=\"page_header\">\n";3683if(defined$logo) {3684print$cgi->a({-href => esc_url($logo_url),3685-title =>$logo_label},3686$cgi->img({-src => esc_url($logo),3687-width =>72, -height =>27,3688-alt =>"git",3689-class=>"logo"}));3690}3691print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3692if(defined$project) {3693print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3694if(defined$action) {3695my$action_print=$action;3696if(defined$opts{-action_extra}) {3697$action_print=$cgi->a({-href => href(action=>$action)},3698$action);3699}3700print" /$action_print";3701}3702if(defined$opts{-action_extra}) {3703print" /$opts{-action_extra}";3704}3705print"\n";3706}3707print"</div>\n";37083709my$have_search= gitweb_check_feature('search');3710if(defined$project&&$have_search) {3711if(!defined$searchtext) {3712$searchtext="";3713}3714my$search_hash;3715if(defined$hash_base) {3716$search_hash=$hash_base;3717}elsif(defined$hash) {3718$search_hash=$hash;3719}else{3720$search_hash="HEAD";3721}3722my$action=$my_uri;3723my$use_pathinfo= gitweb_check_feature('pathinfo');3724if($use_pathinfo) {3725$action.="/".esc_url($project);3726}3727print$cgi->startform(-method=>"get", -action =>$action) .3728"<div class=\"search\">\n".3729(!$use_pathinfo&&3730$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3731$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3732$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3733$cgi->popup_menu(-name =>'st', -default=>'commit',3734-values=> ['commit','grep','author','committer','pickaxe']) .3735$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3736" search:\n",3737$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3738"<span title=\"Extended regular expression\">".3739$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3740-checked =>$search_use_regexp) .3741"</span>".3742"</div>".3743$cgi->end_form() ."\n";3744}3745}37463747sub git_footer_html {3748my$feed_class='rss_logo';37493750print"<div class=\"page_footer\">\n";3751if(defined$project) {3752my$descr= git_get_project_description($project);3753if(defined$descr) {3754print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3755}37563757my%href_params= get_feed_info();3758if(!%href_params) {3759$feed_class.=' generic';3760}3761$href_params{'-title'} ||='log';37623763foreachmy$format(qw(RSS Atom)) {3764$href_params{'action'} =lc($format);3765print$cgi->a({-href => href(%href_params),3766-title =>"$href_params{'-title'}$formatfeed",3767-class=>$feed_class},$format)."\n";3768}37693770}else{3771print$cgi->a({-href => href(project=>undef, action=>"opml"),3772-class=>$feed_class},"OPML") ." ";3773print$cgi->a({-href => href(project=>undef, action=>"project_index"),3774-class=>$feed_class},"TXT") ."\n";3775}3776print"</div>\n";# class="page_footer"37773778if(defined$t0&& gitweb_check_feature('timed')) {3779print"<div id=\"generating_info\">\n";3780print'This page took '.3781'<span id="generating_time" class="time_span">'.3782 tv_interval($t0, [ gettimeofday() ]).3783' seconds </span>'.3784' and '.3785'<span id="generating_cmd">'.3786$number_of_git_cmds.3787'</span> git commands '.3788" to generate.\n";3789print"</div>\n";# class="page_footer"3790}37913792if(defined$site_footer&& -f $site_footer) {3793 insert_file($site_footer);3794}37953796print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;3797if(defined$action&&3798$actioneq'blame_incremental') {3799print qq!<script type="text/javascript">\n!.3800 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3801 qq!"!. href() .qq!");\n!.3802 qq!</script>\n!;3803}elsif(gitweb_check_feature('javascript-actions')) {3804print qq!<script type="text/javascript">\n!.3805 qq!window.onload = fixLinks;\n!.3806 qq!</script>\n!;3807}38083809print"</body>\n".3810"</html>";3811}38123813# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3814# Example: die_error(404, 'Hash not found')3815# By convention, use the following status codes (as defined in RFC 2616):3816# 400: Invalid or missing CGI parameters, or3817# requested object exists but has wrong type.3818# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3819# this server or project.3820# 404: Requested object/revision/project doesn't exist.3821# 500: The server isn't configured properly, or3822# an internal error occurred (e.g. failed assertions caused by bugs), or3823# an unknown error occurred (e.g. the git binary died unexpectedly).3824# 503: The server is currently unavailable (because it is overloaded,3825# or down for maintenance). Generally, this is a temporary state.3826sub die_error {3827my$status=shift||500;3828my$error= esc_html(shift) ||"Internal Server Error";3829my$extra=shift;3830my%opts=@_;38313832my%http_responses= (3833400=>'400 Bad Request',3834403=>'403 Forbidden',3835404=>'404 Not Found',3836500=>'500 Internal Server Error',3837503=>'503 Service Unavailable',3838);3839 git_header_html($http_responses{$status},undef,%opts);3840print<<EOF;3841<div class="page_body">3842<br /><br />3843$status-$error3844<br />3845EOF3846if(defined$extra) {3847print"<hr />\n".3848"$extra\n";3849}3850print"</div>\n";38513852 git_footer_html();3853goto DONE_GITWEB3854unless($opts{'-error_handler'});3855}38563857## ----------------------------------------------------------------------3858## functions printing or outputting HTML: navigation38593860sub git_print_page_nav {3861my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3862$extra=''if!defined$extra;# pager or formats38633864my@navs=qw(summary shortlog log commit commitdiff tree);3865if($suppress) {3866@navs=grep{$_ne$suppress}@navs;3867}38683869my%arg=map{$_=> {action=>$_} }@navs;3870if(defined$head) {3871for(qw(commit commitdiff)) {3872$arg{$_}{'hash'} =$head;3873}3874if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3875for(qw(shortlog log)) {3876$arg{$_}{'hash'} =$head;3877}3878}3879}38803881$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3882$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;38833884my@actions= gitweb_get_feature('actions');3885my%repl= (3886'%'=>'%',3887'n'=>$project,# project name3888'f'=>$git_dir,# project path within filesystem3889'h'=>$treehead||'',# current hash ('h' parameter)3890'b'=>$treebase||'',# hash base ('hb' parameter)3891);3892while(@actions) {3893my($label,$link,$pos) =splice(@actions,0,3);3894# insert3895@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3896# munch munch3897$link=~s/%([%nfhb])/$repl{$1}/g;3898$arg{$label}{'_href'} =$link;3899}39003901print"<div class=\"page_nav\">\n".3902(join" | ",3903map{$_eq$current?3904$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3905}@navs);3906print"<br/>\n$extra<br/>\n".3907"</div>\n";3908}39093910# returns a submenu for the nagivation of the refs views (tags, heads,3911# remotes) with the current view disabled and the remotes view only3912# available if the feature is enabled3913sub format_ref_views {3914my($current) =@_;3915my@ref_views=qw{tags heads};3916push@ref_views,'remotes'if gitweb_check_feature('remote_heads');3917returnjoin" | ",map{3918$_eq$current?$_:3919$cgi->a({-href => href(action=>$_)},$_)3920}@ref_views3921}39223923sub format_paging_nav {3924my($action,$page,$has_next_link) =@_;3925my$paging_nav;392639273928if($page>0) {3929$paging_nav.=3930$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3931" ⋅ ".3932$cgi->a({-href => href(-replay=>1, page=>$page-1),3933-accesskey =>"p", -title =>"Alt-p"},"prev");3934}else{3935$paging_nav.="first ⋅ prev";3936}39373938if($has_next_link) {3939$paging_nav.=" ⋅ ".3940$cgi->a({-href => href(-replay=>1, page=>$page+1),3941-accesskey =>"n", -title =>"Alt-n"},"next");3942}else{3943$paging_nav.=" ⋅ next";3944}39453946return$paging_nav;3947}39483949## ......................................................................3950## functions printing or outputting HTML: div39513952sub git_print_header_div {3953my($action,$title,$hash,$hash_base) =@_;3954my%args= ();39553956$args{'action'} =$action;3957$args{'hash'} =$hashif$hash;3958$args{'hash_base'} =$hash_baseif$hash_base;39593960print"<div class=\"header\">\n".3961$cgi->a({-href => href(%args), -class=>"title"},3962$title?$title:$action) .3963"\n</div>\n";3964}39653966sub format_repo_url {3967my($name,$url) =@_;3968return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";3969}39703971# Group output by placing it in a DIV element and adding a header.3972# Options for start_div() can be provided by passing a hash reference as the3973# first parameter to the function.3974# Options to git_print_header_div() can be provided by passing an array3975# reference. This must follow the options to start_div if they are present.3976# The content can be a scalar, which is output as-is, a scalar reference, which3977# is output after html escaping, an IO handle passed either as *handle or3978# *handle{IO}, or a function reference. In the latter case all following3979# parameters will be taken as argument to the content function call.3980sub git_print_section {3981my($div_args,$header_args,$content);3982my$arg=shift;3983if(ref($arg)eq'HASH') {3984$div_args=$arg;3985$arg=shift;3986}3987if(ref($arg)eq'ARRAY') {3988$header_args=$arg;3989$arg=shift;3990}3991$content=$arg;39923993print$cgi->start_div($div_args);3994 git_print_header_div(@$header_args);39953996if(ref($content)eq'CODE') {3997$content->(@_);3998}elsif(ref($content)eq'SCALAR') {3999print esc_html($$content);4000}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {4001print<$content>;4002}elsif(!ref($content) &&defined($content)) {4003print$content;4004}40054006print$cgi->end_div;4007}40084009sub print_local_time {4010print format_local_time(@_);4011}40124013sub format_local_time {4014my$localtime='';4015my%date=@_;4016if($date{'hour_local'} <6) {4017$localtime.=sprintf(" (<span class=\"atnight\">%02d:%02d</span>%s)",4018$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});4019}else{4020$localtime.=sprintf(" (%02d:%02d%s)",4021$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});4022}40234024return$localtime;4025}40264027# Outputs the author name and date in long form4028sub git_print_authorship {4029my$co=shift;4030my%opts=@_;4031my$tag=$opts{-tag} ||'div';4032my$author=$co->{'author_name'};40334034my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});4035print"<$tagclass=\"author_date\">".4036 format_search_author($author,"author", esc_html($author)) .4037" [$ad{'rfc2822'}";4038 print_local_time(%ad)if($opts{-localtime});4039print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)4040."</$tag>\n";4041}40424043# Outputs table rows containing the full author or committer information,4044# in the format expected for 'commit' view (& similar).4045# Parameters are a commit hash reference, followed by the list of people4046# to output information for. If the list is empty it defaults to both4047# author and committer.4048sub git_print_authorship_rows {4049my$co=shift;4050# too bad we can't use @people = @_ || ('author', 'committer')4051my@people=@_;4052@people= ('author','committer')unless@people;4053foreachmy$who(@people) {4054my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});4055print"<tr><td>$who</td><td>".4056 format_search_author($co->{"${who}_name"},$who,4057 esc_html($co->{"${who}_name"})) ." ".4058 format_search_author($co->{"${who}_email"},$who,4059 esc_html("<".$co->{"${who}_email"} .">")) .4060"</td><td rowspan=\"2\">".4061 git_get_avatar($co->{"${who}_email"}, -size =>'double') .4062"</td></tr>\n".4063"<tr>".4064"<td></td><td>$wd{'rfc2822'}";4065 print_local_time(%wd);4066print"</td>".4067"</tr>\n";4068}4069}40704071sub git_print_page_path {4072my$name=shift;4073my$type=shift;4074my$hb=shift;407540764077print"<div class=\"page_path\">";4078print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),4079-title =>'tree root'}, to_utf8("[$project]"));4080print" / ";4081if(defined$name) {4082my@dirname=split'/',$name;4083my$basename=pop@dirname;4084my$fullname='';40854086foreachmy$dir(@dirname) {4087$fullname.= ($fullname?'/':'') .$dir;4088print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4089 hash_base=>$hb),4090-title =>$fullname}, esc_path($dir));4091print" / ";4092}4093if(defined$type&&$typeeq'blob') {4094print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4095 hash_base=>$hb),4096-title =>$name}, esc_path($basename));4097}elsif(defined$type&&$typeeq'tree') {4098print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4099 hash_base=>$hb),4100-title =>$name}, esc_path($basename));4101print" / ";4102}else{4103print esc_path($basename);4104}4105}4106print"<br/></div>\n";4107}41084109sub git_print_log {4110my$log=shift;4111my%opts=@_;41124113if($opts{'-remove_title'}) {4114# remove title, i.e. first line of log4115shift@$log;4116}4117# remove leading empty lines4118while(defined$log->[0] &&$log->[0]eq"") {4119shift@$log;4120}41214122# print log4123my$signoff=0;4124my$empty=0;4125foreachmy$line(@$log) {4126if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {4127$signoff=1;4128$empty=0;4129if(!$opts{'-remove_signoff'}) {4130print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4131next;4132}else{4133# remove signoff lines4134next;4135}4136}else{4137$signoff=0;4138}41394140# print only one empty line4141# do not print empty line after signoff4142if($lineeq"") {4143next if($empty||$signoff);4144$empty=1;4145}else{4146$empty=0;4147}41484149print format_log_line_html($line) ."<br/>\n";4150}41514152if($opts{'-final_empty_line'}) {4153# end with single empty line4154print"<br/>\n"unless$empty;4155}4156}41574158# return link target (what link points to)4159sub git_get_link_target {4160my$hash=shift;4161my$link_target;41624163# read link4164open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4165orreturn;4166{4167local$/=undef;4168$link_target= <$fd>;4169}4170close$fd4171orreturn;41724173return$link_target;4174}41754176# given link target, and the directory (basedir) the link is in,4177# return target of link relative to top directory (top tree);4178# return undef if it is not possible (including absolute links).4179sub normalize_link_target {4180my($link_target,$basedir) =@_;41814182# absolute symlinks (beginning with '/') cannot be normalized4183return if(substr($link_target,0,1)eq'/');41844185# normalize link target to path from top (root) tree (dir)4186my$path;4187if($basedir) {4188$path=$basedir.'/'.$link_target;4189}else{4190# we are in top (root) tree (dir)4191$path=$link_target;4192}41934194# remove //, /./, and /../4195my@path_parts;4196foreachmy$part(split('/',$path)) {4197# discard '.' and ''4198next if(!$part||$parteq'.');4199# handle '..'4200if($parteq'..') {4201if(@path_parts) {4202pop@path_parts;4203}else{4204# link leads outside repository (outside top dir)4205return;4206}4207}else{4208push@path_parts,$part;4209}4210}4211$path=join('/',@path_parts);42124213return$path;4214}42154216# print tree entry (row of git_tree), but without encompassing <tr> element4217sub git_print_tree_entry {4218my($t,$basedir,$hash_base,$have_blame) =@_;42194220my%base_key= ();4221$base_key{'hash_base'} =$hash_baseifdefined$hash_base;42224223# The format of a table row is: mode list link. Where mode is4224# the mode of the entry, list is the name of the entry, an href,4225# and link is the action links of the entry.42264227print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4228if(exists$t->{'size'}) {4229print"<td class=\"size\">$t->{'size'}</td>\n";4230}4231if($t->{'type'}eq"blob") {4232print"<td class=\"list\">".4233$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4234 file_name=>"$basedir$t->{'name'}",%base_key),4235-class=>"list"}, esc_path($t->{'name'}));4236if(S_ISLNK(oct$t->{'mode'})) {4237my$link_target= git_get_link_target($t->{'hash'});4238if($link_target) {4239my$norm_target= normalize_link_target($link_target,$basedir);4240if(defined$norm_target) {4241print" -> ".4242$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4243 file_name=>$norm_target),4244-title =>$norm_target}, esc_path($link_target));4245}else{4246print" -> ". esc_path($link_target);4247}4248}4249}4250print"</td>\n";4251print"<td class=\"link\">";4252print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4253 file_name=>"$basedir$t->{'name'}",%base_key)},4254"blob");4255if($have_blame) {4256print" | ".4257$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4258 file_name=>"$basedir$t->{'name'}",%base_key)},4259"blame");4260}4261if(defined$hash_base) {4262print" | ".4263$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4264 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4265"history");4266}4267print" | ".4268$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4269 file_name=>"$basedir$t->{'name'}")},4270"raw");4271print"</td>\n";42724273}elsif($t->{'type'}eq"tree") {4274print"<td class=\"list\">";4275print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4276 file_name=>"$basedir$t->{'name'}",4277%base_key)},4278 esc_path($t->{'name'}));4279print"</td>\n";4280print"<td class=\"link\">";4281print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4282 file_name=>"$basedir$t->{'name'}",4283%base_key)},4284"tree");4285if(defined$hash_base) {4286print" | ".4287$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4288 file_name=>"$basedir$t->{'name'}")},4289"history");4290}4291print"</td>\n";4292}else{4293# unknown object: we can only present history for it4294# (this includes 'commit' object, i.e. submodule support)4295print"<td class=\"list\">".4296 esc_path($t->{'name'}) .4297"</td>\n";4298print"<td class=\"link\">";4299if(defined$hash_base) {4300print$cgi->a({-href => href(action=>"history",4301 hash_base=>$hash_base,4302 file_name=>"$basedir$t->{'name'}")},4303"history");4304}4305print"</td>\n";4306}4307}43084309## ......................................................................4310## functions printing large fragments of HTML43114312# get pre-image filenames for merge (combined) diff4313sub fill_from_file_info {4314my($diff,@parents) =@_;43154316$diff->{'from_file'} = [ ];4317$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4318for(my$i=0;$i<$diff->{'nparents'};$i++) {4319if($diff->{'status'}[$i]eq'R'||4320$diff->{'status'}[$i]eq'C') {4321$diff->{'from_file'}[$i] =4322 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4323}4324}43254326return$diff;4327}43284329# is current raw difftree line of file deletion4330sub is_deleted {4331my$diffinfo=shift;43324333return$diffinfo->{'to_id'}eq('0' x 40);4334}43354336# does patch correspond to [previous] difftree raw line4337# $diffinfo - hashref of parsed raw diff format4338# $patchinfo - hashref of parsed patch diff format4339# (the same keys as in $diffinfo)4340sub is_patch_split {4341my($diffinfo,$patchinfo) =@_;43424343returndefined$diffinfo&&defined$patchinfo4344&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4345}434643474348sub git_difftree_body {4349my($difftree,$hash,@parents) =@_;4350my($parent) =$parents[0];4351my$have_blame= gitweb_check_feature('blame');4352print"<div class=\"list_head\">\n";4353if($#{$difftree} >10) {4354print(($#{$difftree} +1) ." files changed:\n");4355}4356print"</div>\n";43574358print"<table class=\"".4359(@parents>1?"combined ":"") .4360"diff_tree\">\n";43614362# header only for combined diff in 'commitdiff' view4363my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4364if($has_header) {4365# table header4366print"<thead><tr>\n".4367"<th></th><th></th>\n";# filename, patchN link4368for(my$i=0;$i<@parents;$i++) {4369my$par=$parents[$i];4370print"<th>".4371$cgi->a({-href => href(action=>"commitdiff",4372 hash=>$hash, hash_parent=>$par),4373-title =>'commitdiff to parent number '.4374($i+1) .': '.substr($par,0,7)},4375$i+1) .4376" </th>\n";4377}4378print"</tr></thead>\n<tbody>\n";4379}43804381my$alternate=1;4382my$patchno=0;4383foreachmy$line(@{$difftree}) {4384my$diff= parsed_difftree_line($line);43854386if($alternate) {4387print"<tr class=\"dark\">\n";4388}else{4389print"<tr class=\"light\">\n";4390}4391$alternate^=1;43924393if(exists$diff->{'nparents'}) {# combined diff43944395 fill_from_file_info($diff,@parents)4396unlessexists$diff->{'from_file'};43974398if(!is_deleted($diff)) {4399# file exists in the result (child) commit4400print"<td>".4401$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4402 file_name=>$diff->{'to_file'},4403 hash_base=>$hash),4404-class=>"list"}, esc_path($diff->{'to_file'})) .4405"</td>\n";4406}else{4407print"<td>".4408 esc_path($diff->{'to_file'}) .4409"</td>\n";4410}44114412if($actioneq'commitdiff') {4413# link to patch4414$patchno++;4415print"<td class=\"link\">".4416$cgi->a({-href => href(-anchor=>"patch$patchno")},4417"patch") .4418" | ".4419"</td>\n";4420}44214422my$has_history=0;4423my$not_deleted=0;4424for(my$i=0;$i<$diff->{'nparents'};$i++) {4425my$hash_parent=$parents[$i];4426my$from_hash=$diff->{'from_id'}[$i];4427my$from_path=$diff->{'from_file'}[$i];4428my$status=$diff->{'status'}[$i];44294430$has_history||= ($statusne'A');4431$not_deleted||= ($statusne'D');44324433if($statuseq'A') {4434print"<td class=\"link\"align=\"right\"> | </td>\n";4435}elsif($statuseq'D') {4436print"<td class=\"link\">".4437$cgi->a({-href => href(action=>"blob",4438 hash_base=>$hash,4439 hash=>$from_hash,4440 file_name=>$from_path)},4441"blob". ($i+1)) .4442" | </td>\n";4443}else{4444if($diff->{'to_id'}eq$from_hash) {4445print"<td class=\"link nochange\">";4446}else{4447print"<td class=\"link\">";4448}4449print$cgi->a({-href => href(action=>"blobdiff",4450 hash=>$diff->{'to_id'},4451 hash_parent=>$from_hash,4452 hash_base=>$hash,4453 hash_parent_base=>$hash_parent,4454 file_name=>$diff->{'to_file'},4455 file_parent=>$from_path)},4456"diff". ($i+1)) .4457" | </td>\n";4458}4459}44604461print"<td class=\"link\">";4462if($not_deleted) {4463print$cgi->a({-href => href(action=>"blob",4464 hash=>$diff->{'to_id'},4465 file_name=>$diff->{'to_file'},4466 hash_base=>$hash)},4467"blob");4468print" | "if($has_history);4469}4470if($has_history) {4471print$cgi->a({-href => href(action=>"history",4472 file_name=>$diff->{'to_file'},4473 hash_base=>$hash)},4474"history");4475}4476print"</td>\n";44774478print"</tr>\n";4479next;# instead of 'else' clause, to avoid extra indent4480}4481# else ordinary diff44824483my($to_mode_oct,$to_mode_str,$to_file_type);4484my($from_mode_oct,$from_mode_str,$from_file_type);4485if($diff->{'to_mode'}ne('0' x 6)) {4486$to_mode_oct=oct$diff->{'to_mode'};4487if(S_ISREG($to_mode_oct)) {# only for regular file4488$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4489}4490$to_file_type= file_type($diff->{'to_mode'});4491}4492if($diff->{'from_mode'}ne('0' x 6)) {4493$from_mode_oct=oct$diff->{'from_mode'};4494if(S_ISREG($from_mode_oct)) {# only for regular file4495$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4496}4497$from_file_type= file_type($diff->{'from_mode'});4498}44994500if($diff->{'status'}eq"A") {# created4501my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4502$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4503$mode_chng.="]</span>";4504print"<td>";4505print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4506 hash_base=>$hash, file_name=>$diff->{'file'}),4507-class=>"list"}, esc_path($diff->{'file'}));4508print"</td>\n";4509print"<td>$mode_chng</td>\n";4510print"<td class=\"link\">";4511if($actioneq'commitdiff') {4512# link to patch4513$patchno++;4514print$cgi->a({-href => href(-anchor=>"patch$patchno")},4515"patch") .4516" | ";4517}4518print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4519 hash_base=>$hash, file_name=>$diff->{'file'})},4520"blob");4521print"</td>\n";45224523}elsif($diff->{'status'}eq"D") {# deleted4524my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4525print"<td>";4526print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4527 hash_base=>$parent, file_name=>$diff->{'file'}),4528-class=>"list"}, esc_path($diff->{'file'}));4529print"</td>\n";4530print"<td>$mode_chng</td>\n";4531print"<td class=\"link\">";4532if($actioneq'commitdiff') {4533# link to patch4534$patchno++;4535print$cgi->a({-href => href(-anchor=>"patch$patchno")},4536"patch") .4537" | ";4538}4539print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4540 hash_base=>$parent, file_name=>$diff->{'file'})},4541"blob") ." | ";4542if($have_blame) {4543print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4544 file_name=>$diff->{'file'})},4545"blame") ." | ";4546}4547print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4548 file_name=>$diff->{'file'})},4549"history");4550print"</td>\n";45514552}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4553my$mode_chnge="";4554if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4555$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4556if($from_file_typene$to_file_type) {4557$mode_chnge.=" from$from_file_typeto$to_file_type";4558}4559if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4560if($from_mode_str&&$to_mode_str) {4561$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4562}elsif($to_mode_str) {4563$mode_chnge.=" mode:$to_mode_str";4564}4565}4566$mode_chnge.="]</span>\n";4567}4568print"<td>";4569print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4570 hash_base=>$hash, file_name=>$diff->{'file'}),4571-class=>"list"}, esc_path($diff->{'file'}));4572print"</td>\n";4573print"<td>$mode_chnge</td>\n";4574print"<td class=\"link\">";4575if($actioneq'commitdiff') {4576# link to patch4577$patchno++;4578print$cgi->a({-href => href(-anchor=>"patch$patchno")},4579"patch") .4580" | ";4581}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4582# "commit" view and modified file (not onlu mode changed)4583print$cgi->a({-href => href(action=>"blobdiff",4584 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4585 hash_base=>$hash, hash_parent_base=>$parent,4586 file_name=>$diff->{'file'})},4587"diff") .4588" | ";4589}4590print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4591 hash_base=>$hash, file_name=>$diff->{'file'})},4592"blob") ." | ";4593if($have_blame) {4594print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4595 file_name=>$diff->{'file'})},4596"blame") ." | ";4597}4598print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4599 file_name=>$diff->{'file'})},4600"history");4601print"</td>\n";46024603}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4604my%status_name= ('R'=>'moved','C'=>'copied');4605my$nstatus=$status_name{$diff->{'status'}};4606my$mode_chng="";4607if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4608# mode also for directories, so we cannot use $to_mode_str4609$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4610}4611print"<td>".4612$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4613 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4614-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4615"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4616$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4617 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4618-class=>"list"}, esc_path($diff->{'from_file'})) .4619" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4620"<td class=\"link\">";4621if($actioneq'commitdiff') {4622# link to patch4623$patchno++;4624print$cgi->a({-href => href(-anchor=>"patch$patchno")},4625"patch") .4626" | ";4627}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4628# "commit" view and modified file (not only pure rename or copy)4629print$cgi->a({-href => href(action=>"blobdiff",4630 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4631 hash_base=>$hash, hash_parent_base=>$parent,4632 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4633"diff") .4634" | ";4635}4636print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4637 hash_base=>$parent, file_name=>$diff->{'to_file'})},4638"blob") ." | ";4639if($have_blame) {4640print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4641 file_name=>$diff->{'to_file'})},4642"blame") ." | ";4643}4644print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4645 file_name=>$diff->{'to_file'})},4646"history");4647print"</td>\n";46484649}# we should not encounter Unmerged (U) or Unknown (X) status4650print"</tr>\n";4651}4652print"</tbody>"if$has_header;4653print"</table>\n";4654}46554656sub git_patchset_body {4657my($fd,$difftree,$hash,@hash_parents) =@_;4658my($hash_parent) =$hash_parents[0];46594660my$is_combined= (@hash_parents>1);4661my$patch_idx=0;4662my$patch_number=0;4663my$patch_line;4664my$diffinfo;4665my$to_name;4666my(%from,%to);46674668print"<div class=\"patchset\">\n";46694670# skip to first patch4671while($patch_line= <$fd>) {4672chomp$patch_line;46734674last if($patch_line=~m/^diff /);4675}46764677 PATCH:4678while($patch_line) {46794680# parse "git diff" header line4681if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4682# $1 is from_name, which we do not use4683$to_name= unquote($2);4684$to_name=~s!^b/!!;4685}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4686# $1 is 'cc' or 'combined', which we do not use4687$to_name= unquote($2);4688}else{4689$to_name=undef;4690}46914692# check if current patch belong to current raw line4693# and parse raw git-diff line if needed4694if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4695# this is continuation of a split patch4696print"<div class=\"patch cont\">\n";4697}else{4698# advance raw git-diff output if needed4699$patch_idx++ifdefined$diffinfo;47004701# read and prepare patch information4702$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);47034704# compact combined diff output can have some patches skipped4705# find which patch (using pathname of result) we are at now;4706if($is_combined) {4707while($to_namene$diffinfo->{'to_file'}) {4708print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4709 format_diff_cc_simplified($diffinfo,@hash_parents) .4710"</div>\n";# class="patch"47114712$patch_idx++;4713$patch_number++;47144715last if$patch_idx>$#$difftree;4716$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4717}4718}47194720# modifies %from, %to hashes4721 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);47224723# this is first patch for raw difftree line with $patch_idx index4724# we index @$difftree array from 0, but number patches from 14725print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4726}47274728# git diff header4729#assert($patch_line =~ m/^diff /) if DEBUG;4730#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4731$patch_number++;4732# print "git diff" header4733print format_git_diff_header_line($patch_line,$diffinfo,4734 \%from, \%to);47354736# print extended diff header4737print"<div class=\"diff extended_header\">\n";4738 EXTENDED_HEADER:4739while($patch_line= <$fd>) {4740chomp$patch_line;47414742last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);47434744print format_extended_diff_header_line($patch_line,$diffinfo,4745 \%from, \%to);4746}4747print"</div>\n";# class="diff extended_header"47484749# from-file/to-file diff header4750if(!$patch_line) {4751print"</div>\n";# class="patch"4752last PATCH;4753}4754next PATCH if($patch_line=~m/^diff /);4755#assert($patch_line =~ m/^---/) if DEBUG;47564757my$last_patch_line=$patch_line;4758$patch_line= <$fd>;4759chomp$patch_line;4760#assert($patch_line =~ m/^\+\+\+/) if DEBUG;47614762print format_diff_from_to_header($last_patch_line,$patch_line,4763$diffinfo, \%from, \%to,4764@hash_parents);47654766# the patch itself4767 LINE:4768while($patch_line= <$fd>) {4769chomp$patch_line;47704771next PATCH if($patch_line=~m/^diff /);47724773print format_diff_line($patch_line, \%from, \%to);4774}47754776}continue{4777print"</div>\n";# class="patch"4778}47794780# for compact combined (--cc) format, with chunk and patch simplification4781# the patchset might be empty, but there might be unprocessed raw lines4782for(++$patch_idxif$patch_number>0;4783$patch_idx<@$difftree;4784++$patch_idx) {4785# read and prepare patch information4786$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);47874788# generate anchor for "patch" links in difftree / whatchanged part4789print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4790 format_diff_cc_simplified($diffinfo,@hash_parents) .4791"</div>\n";# class="patch"47924793$patch_number++;4794}47954796if($patch_number==0) {4797if(@hash_parents>1) {4798print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4799}else{4800print"<div class=\"diff nodifferences\">No differences found</div>\n";4801}4802}48034804print"</div>\n";# class="patchset"4805}48064807# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .48084809# fills project list info (age, description, owner, forks) for each4810# project in the list, removing invalid projects from returned list4811# NOTE: modifies $projlist, but does not remove entries from it4812sub fill_project_list_info {4813my$projlist=shift;4814my@projects;48154816my$show_ctags= gitweb_check_feature('ctags');4817 PROJECT:4818foreachmy$pr(@$projlist) {4819my(@activity) = git_get_last_activity($pr->{'path'});4820unless(@activity) {4821next PROJECT;4822}4823($pr->{'age'},$pr->{'age_string'}) =@activity;4824if(!defined$pr->{'descr'}) {4825my$descr= git_get_project_description($pr->{'path'}) ||"";4826$descr= to_utf8($descr);4827$pr->{'descr_long'} =$descr;4828$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4829}4830if(!defined$pr->{'owner'}) {4831$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4832}4833if($show_ctags) {4834$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4835}4836push@projects,$pr;4837}48384839return@projects;4840}48414842sub sort_projects_list {4843my($projlist,$order) =@_;4844my@projects;48454846my%order_info= (4847 project => { key =>'path', type =>'str'},4848 descr => { key =>'descr_long', type =>'str'},4849 owner => { key =>'owner', type =>'str'},4850 age => { key =>'age', type =>'num'}4851);4852my$oi=$order_info{$order};4853return@$projlistunlessdefined$oi;4854if($oi->{'type'}eq'str') {4855@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@$projlist;4856}else{4857@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@$projlist;4858}48594860return@projects;4861}48624863# print 'sort by' <th> element, generating 'sort by $name' replay link4864# if that order is not selected4865sub print_sort_th {4866print format_sort_th(@_);4867}48684869sub format_sort_th {4870my($name,$order,$header) =@_;4871my$sort_th="";4872$header||=ucfirst($name);48734874if($ordereq$name) {4875$sort_th.="<th>$header</th>\n";4876}else{4877$sort_th.="<th>".4878$cgi->a({-href => href(-replay=>1, order=>$name),4879-class=>"header"},$header) .4880"</th>\n";4881}48824883return$sort_th;4884}48854886sub git_project_list_body {4887# actually uses global variable $project4888my($projlist,$order,$from,$to,$extra,$no_header) =@_;4889my@projects=@$projlist;48904891my$check_forks= gitweb_check_feature('forks');4892my$show_ctags= gitweb_check_feature('ctags');4893my$tagfilter=$show_ctags?$cgi->param('by_tag') :undef;4894$check_forks=undef4895if($tagfilter||$searchtext);48964897# filtering out forks before filling info allows to do less work4898@projects= filter_forks_from_projects_list(\@projects)4899if($check_forks);4900@projects= fill_project_list_info(\@projects);4901# searching projects require filling to be run before it4902@projects= search_projects_list(\@projects,4903'searchtext'=>$searchtext,4904'tagfilter'=>$tagfilter)4905if($tagfilter||$searchtext);49064907$order||=$default_projects_order;4908$from=0unlessdefined$from;4909$to=$#projectsif(!defined$to||$#projects<$to);49104911# short circuit4912if($from>$to) {4913print"<center>\n".4914"<b>No such projects found</b><br />\n".4915"Click ".$cgi->a({-href=>href(project=>undef)},"here")." to view all projects<br />\n".4916"</center>\n<br />\n";4917return;4918}49194920@projects= sort_projects_list(\@projects,$order);49214922if($show_ctags) {4923my%ctags;4924foreachmy$p(@projects) {4925foreachmy$ct(keys%{$p->{'ctags'}}) {4926$ctags{$ct} +=$p->{'ctags'}->{$ct};4927}4928}4929my$cloud= git_populate_project_tagcloud(\%ctags);4930print git_show_project_tagcloud($cloud,64);4931}49324933print"<table class=\"project_list\">\n";4934unless($no_header) {4935print"<tr>\n";4936if($check_forks) {4937print"<th></th>\n";4938}4939 print_sort_th('project',$order,'Project');4940 print_sort_th('descr',$order,'Description');4941 print_sort_th('owner',$order,'Owner');4942 print_sort_th('age',$order,'Last Change');4943print"<th></th>\n".# for links4944"</tr>\n";4945}4946my$alternate=1;4947for(my$i=$from;$i<=$to;$i++) {4948my$pr=$projects[$i];49494950if($alternate) {4951print"<tr class=\"dark\">\n";4952}else{4953print"<tr class=\"light\">\n";4954}4955$alternate^=1;49564957if($check_forks) {4958print"<td>";4959if($pr->{'forks'}) {4960my$nforks=scalar@{$pr->{'forks'}};4961if($nforks>0) {4962print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks"),4963-title =>"$nforksforks"},"+");4964}else{4965print$cgi->span({-title =>"$nforksforks"},"+");4966}4967}4968print"</td>\n";4969}4970print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4971-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4972"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4973-class=>"list", -title =>$pr->{'descr_long'}},4974 esc_html($pr->{'descr'})) ."</td>\n".4975"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4976print"<td class=\"". age_class($pr->{'age'}) ."\">".4977(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4978"<td class=\"link\">".4979$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4980$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4981$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4982$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4983($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4984"</td>\n".4985"</tr>\n";4986}4987if(defined$extra) {4988print"<tr>\n";4989if($check_forks) {4990print"<td></td>\n";4991}4992print"<td colspan=\"5\">$extra</td>\n".4993"</tr>\n";4994}4995print"</table>\n";4996}49974998sub git_log_body {4999# uses global variable $project5000my($commitlist,$from,$to,$refs,$extra) =@_;50015002$from=0unlessdefined$from;5003$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);50045005for(my$i=0;$i<=$to;$i++) {5006my%co= %{$commitlist->[$i]};5007next if!%co;5008my$commit=$co{'id'};5009my$ref= format_ref_marker($refs,$commit);5010 git_print_header_div('commit',5011"<span class=\"age\">$co{'age_string'}</span>".5012 esc_html($co{'title'}) .$ref,5013$commit);5014print"<div class=\"title_text\">\n".5015"<div class=\"log_link\">\n".5016$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .5017" | ".5018$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .5019" | ".5020$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .5021"<br/>\n".5022"</div>\n";5023 git_print_authorship(\%co, -tag =>'span');5024print"<br/>\n</div>\n";50255026print"<div class=\"log_body\">\n";5027 git_print_log($co{'comment'}, -final_empty_line=>1);5028print"</div>\n";5029}5030if($extra) {5031print"<div class=\"page_nav\">\n";5032print"$extra\n";5033print"</div>\n";5034}5035}50365037sub git_shortlog_body {5038# uses global variable $project5039my($commitlist,$from,$to,$refs,$extra) =@_;50405041$from=0unlessdefined$from;5042$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);50435044print"<table class=\"shortlog\">\n";5045my$alternate=1;5046for(my$i=$from;$i<=$to;$i++) {5047my%co= %{$commitlist->[$i]};5048my$commit=$co{'id'};5049my$ref= format_ref_marker($refs,$commit);5050if($alternate) {5051print"<tr class=\"dark\">\n";5052}else{5053print"<tr class=\"light\">\n";5054}5055$alternate^=1;5056# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .5057print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5058 format_author_html('td', \%co,10) ."<td>";5059print format_subject_html($co{'title'},$co{'title_short'},5060 href(action=>"commit", hash=>$commit),$ref);5061print"</td>\n".5062"<td class=\"link\">".5063$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".5064$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".5065$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");5066my$snapshot_links= format_snapshot_links($commit);5067if(defined$snapshot_links) {5068print" | ".$snapshot_links;5069}5070print"</td>\n".5071"</tr>\n";5072}5073if(defined$extra) {5074print"<tr>\n".5075"<td colspan=\"4\">$extra</td>\n".5076"</tr>\n";5077}5078print"</table>\n";5079}50805081sub git_history_body {5082# Warning: assumes constant type (blob or tree) during history5083my($commitlist,$from,$to,$refs,$extra,5084$file_name,$file_hash,$ftype) =@_;50855086$from=0unlessdefined$from;5087$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});50885089print"<table class=\"history\">\n";5090my$alternate=1;5091for(my$i=$from;$i<=$to;$i++) {5092my%co= %{$commitlist->[$i]};5093if(!%co) {5094next;5095}5096my$commit=$co{'id'};50975098my$ref= format_ref_marker($refs,$commit);50995100if($alternate) {5101print"<tr class=\"dark\">\n";5102}else{5103print"<tr class=\"light\">\n";5104}5105$alternate^=1;5106print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5107# shortlog: format_author_html('td', \%co, 10)5108 format_author_html('td', \%co,15,3) ."<td>";5109# originally git_history used chop_str($co{'title'}, 50)5110print format_subject_html($co{'title'},$co{'title_short'},5111 href(action=>"commit", hash=>$commit),$ref);5112print"</td>\n".5113"<td class=\"link\">".5114$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5115$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");51165117if($ftypeeq'blob') {5118my$blob_current=$file_hash;5119my$blob_parent= git_get_hash_by_path($commit,$file_name);5120if(defined$blob_current&&defined$blob_parent&&5121$blob_currentne$blob_parent) {5122print" | ".5123$cgi->a({-href => href(action=>"blobdiff",5124 hash=>$blob_current, hash_parent=>$blob_parent,5125 hash_base=>$hash_base, hash_parent_base=>$commit,5126 file_name=>$file_name)},5127"diff to current");5128}5129}5130print"</td>\n".5131"</tr>\n";5132}5133if(defined$extra) {5134print"<tr>\n".5135"<td colspan=\"4\">$extra</td>\n".5136"</tr>\n";5137}5138print"</table>\n";5139}51405141sub git_tags_body {5142# uses global variable $project5143my($taglist,$from,$to,$extra) =@_;5144$from=0unlessdefined$from;5145$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);51465147print"<table class=\"tags\">\n";5148my$alternate=1;5149for(my$i=$from;$i<=$to;$i++) {5150my$entry=$taglist->[$i];5151my%tag=%$entry;5152my$comment=$tag{'subject'};5153my$comment_short;5154if(defined$comment) {5155$comment_short= chop_str($comment,30,5);5156}5157if($alternate) {5158print"<tr class=\"dark\">\n";5159}else{5160print"<tr class=\"light\">\n";5161}5162$alternate^=1;5163if(defined$tag{'age'}) {5164print"<td><i>$tag{'age'}</i></td>\n";5165}else{5166print"<td></td>\n";5167}5168print"<td>".5169$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),5170-class=>"list name"}, esc_html($tag{'name'})) .5171"</td>\n".5172"<td>";5173if(defined$comment) {5174print format_subject_html($comment,$comment_short,5175 href(action=>"tag", hash=>$tag{'id'}));5176}5177print"</td>\n".5178"<td class=\"selflink\">";5179if($tag{'type'}eq"tag") {5180print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");5181}else{5182print" ";5183}5184print"</td>\n".5185"<td class=\"link\">"." | ".5186$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});5187if($tag{'reftype'}eq"commit") {5188print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .5189" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");5190}elsif($tag{'reftype'}eq"blob") {5191print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");5192}5193print"</td>\n".5194"</tr>";5195}5196if(defined$extra) {5197print"<tr>\n".5198"<td colspan=\"5\">$extra</td>\n".5199"</tr>\n";5200}5201print"</table>\n";5202}52035204sub git_heads_body {5205# uses global variable $project5206my($headlist,$head,$from,$to,$extra) =@_;5207$from=0unlessdefined$from;5208$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);52095210print"<table class=\"heads\">\n";5211my$alternate=1;5212for(my$i=$from;$i<=$to;$i++) {5213my$entry=$headlist->[$i];5214my%ref=%$entry;5215my$curr=$ref{'id'}eq$head;5216if($alternate) {5217print"<tr class=\"dark\">\n";5218}else{5219print"<tr class=\"light\">\n";5220}5221$alternate^=1;5222print"<td><i>$ref{'age'}</i></td>\n".5223($curr?"<td class=\"current_head\">":"<td>") .5224$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),5225-class=>"list name"},esc_html($ref{'name'})) .5226"</td>\n".5227"<td class=\"link\">".5228$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".5229$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".5230$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .5231"</td>\n".5232"</tr>";5233}5234if(defined$extra) {5235print"<tr>\n".5236"<td colspan=\"3\">$extra</td>\n".5237"</tr>\n";5238}5239print"</table>\n";5240}52415242# Display a single remote block5243sub git_remote_block {5244my($remote,$rdata,$limit,$head) =@_;52455246my$heads=$rdata->{'heads'};5247my$fetch=$rdata->{'fetch'};5248my$push=$rdata->{'push'};52495250my$urls_table="<table class=\"projects_list\">\n";52515252if(defined$fetch) {5253if($fetcheq$push) {5254$urls_table.= format_repo_url("URL",$fetch);5255}else{5256$urls_table.= format_repo_url("Fetch URL",$fetch);5257$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;5258}5259}elsif(defined$push) {5260$urls_table.= format_repo_url("Push URL",$push);5261}else{5262$urls_table.= format_repo_url("","No remote URL");5263}52645265$urls_table.="</table>\n";52665267my$dots;5268if(defined$limit&&$limit<@$heads) {5269$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");5270}52715272print$urls_table;5273 git_heads_body($heads,$head,0,$limit,$dots);5274}52755276# Display a list of remote names with the respective fetch and push URLs5277sub git_remotes_list {5278my($remotedata,$limit) =@_;5279print"<table class=\"heads\">\n";5280my$alternate=1;5281my@remotes=sort keys%$remotedata;52825283my$limited=$limit&&$limit<@remotes;52845285$#remotes=$limit-1if$limited;52865287while(my$remote=shift@remotes) {5288my$rdata=$remotedata->{$remote};5289my$fetch=$rdata->{'fetch'};5290my$push=$rdata->{'push'};5291if($alternate) {5292print"<tr class=\"dark\">\n";5293}else{5294print"<tr class=\"light\">\n";5295}5296$alternate^=1;5297print"<td>".5298$cgi->a({-href=> href(action=>'remotes', hash=>$remote),5299-class=>"list name"},esc_html($remote)) .5300"</td>";5301print"<td class=\"link\">".5302(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .5303" | ".5304(defined$push?$cgi->a({-href=>$push},"push") :"push") .5305"</td>";53065307print"</tr>\n";5308}53095310if($limited) {5311print"<tr>\n".5312"<td colspan=\"3\">".5313$cgi->a({-href => href(action=>"remotes")},"...") .5314"</td>\n"."</tr>\n";5315}53165317print"</table>";5318}53195320# Display remote heads grouped by remote, unless there are too many5321# remotes, in which case we only display the remote names5322sub git_remotes_body {5323my($remotedata,$limit,$head) =@_;5324if($limitand$limit<keys%$remotedata) {5325 git_remotes_list($remotedata,$limit);5326}else{5327 fill_remote_heads($remotedata);5328while(my($remote,$rdata) =each%$remotedata) {5329 git_print_section({-class=>"remote", -id=>$remote},5330["remotes",$remote,$remote],sub{5331 git_remote_block($remote,$rdata,$limit,$head);5332});5333}5334}5335}53365337sub git_search_grep_body {5338my($commitlist,$from,$to,$extra) =@_;5339$from=0unlessdefined$from;5340$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);53415342print"<table class=\"commit_search\">\n";5343my$alternate=1;5344for(my$i=$from;$i<=$to;$i++) {5345my%co= %{$commitlist->[$i]};5346if(!%co) {5347next;5348}5349my$commit=$co{'id'};5350if($alternate) {5351print"<tr class=\"dark\">\n";5352}else{5353print"<tr class=\"light\">\n";5354}5355$alternate^=1;5356print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5357 format_author_html('td', \%co,15,5) .5358"<td>".5359$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5360-class=>"list subject"},5361 chop_and_escape_str($co{'title'},50) ."<br/>");5362my$comment=$co{'comment'};5363foreachmy$line(@$comment) {5364if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5365my($lead,$match,$trail) = ($1,$2,$3);5366$match= chop_str($match,70,5,'center');5367my$contextlen=int((80-length($match))/2);5368$contextlen=30if($contextlen>30);5369$lead= chop_str($lead,$contextlen,10,'left');5370$trail= chop_str($trail,$contextlen,10,'right');53715372$lead= esc_html($lead);5373$match= esc_html($match);5374$trail= esc_html($trail);53755376print"$lead<span class=\"match\">$match</span>$trail<br />";5377}5378}5379print"</td>\n".5380"<td class=\"link\">".5381$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5382" | ".5383$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5384" | ".5385$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5386print"</td>\n".5387"</tr>\n";5388}5389if(defined$extra) {5390print"<tr>\n".5391"<td colspan=\"3\">$extra</td>\n".5392"</tr>\n";5393}5394print"</table>\n";5395}53965397## ======================================================================5398## ======================================================================5399## actions54005401sub git_project_list {5402my$order=$input_params{'order'};5403if(defined$order&&$order!~m/none|project|descr|owner|age/) {5404 die_error(400,"Unknown order parameter");5405}54065407my@list= git_get_projects_list();5408if(!@list) {5409 die_error(404,"No projects found");5410}54115412 git_header_html();5413if(defined$home_text&& -f $home_text) {5414print"<div class=\"index_include\">\n";5415 insert_file($home_text);5416print"</div>\n";5417}5418print$cgi->startform(-method=>"get") .5419"<p class=\"projsearch\">Search:\n".5420$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5421"</p>".5422$cgi->end_form() ."\n";5423 git_project_list_body(\@list,$order);5424 git_footer_html();5425}54265427sub git_forks {5428my$order=$input_params{'order'};5429if(defined$order&&$order!~m/none|project|descr|owner|age/) {5430 die_error(400,"Unknown order parameter");5431}54325433my@list= git_get_projects_list($project);5434if(!@list) {5435 die_error(404,"No forks found");5436}54375438 git_header_html();5439 git_print_page_nav('','');5440 git_print_header_div('summary',"$projectforks");5441 git_project_list_body(\@list,$order);5442 git_footer_html();5443}54445445sub git_project_index {5446my@projects= git_get_projects_list();5447if(!@projects) {5448 die_error(404,"No projects found");5449}54505451print$cgi->header(5452-type =>'text/plain',5453-charset =>'utf-8',5454-content_disposition =>'inline; filename="index.aux"');54555456foreachmy$pr(@projects) {5457if(!exists$pr->{'owner'}) {5458$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5459}54605461my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5462# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5463$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5464$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5465$path=~s/ /\+/g;5466$owner=~s/ /\+/g;54675468print"$path$owner\n";5469}5470}54715472sub git_summary {5473my$descr= git_get_project_description($project) ||"none";5474my%co= parse_commit("HEAD");5475my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5476my$head=$co{'id'};5477my$remote_heads= gitweb_check_feature('remote_heads');54785479my$owner= git_get_project_owner($project);54805481my$refs= git_get_references();5482# These get_*_list functions return one more to allow us to see if5483# there are more ...5484my@taglist= git_get_tags_list(16);5485my@headlist= git_get_heads_list(16);5486my%remotedata=$remote_heads? git_get_remotes_list() : ();5487my@forklist;5488my$check_forks= gitweb_check_feature('forks');54895490if($check_forks) {5491# find forks of a project5492@forklist= git_get_projects_list($project);5493# filter out forks of forks5494@forklist= filter_forks_from_projects_list(\@forklist)5495if(@forklist);5496}54975498 git_header_html();5499 git_print_page_nav('summary','',$head);55005501print"<div class=\"title\"> </div>\n";5502print"<table class=\"projects_list\">\n".5503"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5504"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5505if(defined$cd{'rfc2822'}) {5506print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";5507}55085509# use per project git URL list in $projectroot/$project/cloneurl5510# or make project git URL from git base URL and project name5511my$url_tag="URL";5512my@url_list= git_get_project_url_list($project);5513@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5514foreachmy$git_url(@url_list) {5515next unless$git_url;5516print format_repo_url($url_tag,$git_url);5517$url_tag="";5518}55195520# Tag cloud5521my$show_ctags= gitweb_check_feature('ctags');5522if($show_ctags) {5523my$ctags= git_get_project_ctags($project);5524my$cloud= git_populate_project_tagcloud($ctags);5525print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5526print"</td>\n<td>"unless%$ctags;5527print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5528print"</td>\n<td>"if%$ctags;5529print git_show_project_tagcloud($cloud,48);5530print"</td></tr>";5531}55325533print"</table>\n";55345535# If XSS prevention is on, we don't include README.html.5536# TODO: Allow a readme in some safe format.5537if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5538print"<div class=\"title\">readme</div>\n".5539"<div class=\"readme\">\n";5540 insert_file("$projectroot/$project/README.html");5541print"\n</div>\n";# class="readme"5542}55435544# we need to request one more than 16 (0..15) to check if5545# those 16 are all5546my@commitlist=$head? parse_commits($head,17) : ();5547if(@commitlist) {5548 git_print_header_div('shortlog');5549 git_shortlog_body(\@commitlist,0,15,$refs,5550$#commitlist<=15?undef:5551$cgi->a({-href => href(action=>"shortlog")},"..."));5552}55535554if(@taglist) {5555 git_print_header_div('tags');5556 git_tags_body(\@taglist,0,15,5557$#taglist<=15?undef:5558$cgi->a({-href => href(action=>"tags")},"..."));5559}55605561if(@headlist) {5562 git_print_header_div('heads');5563 git_heads_body(\@headlist,$head,0,15,5564$#headlist<=15?undef:5565$cgi->a({-href => href(action=>"heads")},"..."));5566}55675568if(%remotedata) {5569 git_print_header_div('remotes');5570 git_remotes_body(\%remotedata,15,$head);5571}55725573if(@forklist) {5574 git_print_header_div('forks');5575 git_project_list_body(\@forklist,'age',0,15,5576$#forklist<=15?undef:5577$cgi->a({-href => href(action=>"forks")},"..."),5578'no_header');5579}55805581 git_footer_html();5582}55835584sub git_tag {5585my%tag= parse_tag($hash);55865587if(!%tag) {5588 die_error(404,"Unknown tag object");5589}55905591my$head= git_get_head_hash($project);5592 git_header_html();5593 git_print_page_nav('','',$head,undef,$head);5594 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5595print"<div class=\"title_text\">\n".5596"<table class=\"object_header\">\n".5597"<tr>\n".5598"<td>object</td>\n".5599"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5600$tag{'object'}) ."</td>\n".5601"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5602$tag{'type'}) ."</td>\n".5603"</tr>\n";5604if(defined($tag{'author'})) {5605 git_print_authorship_rows(\%tag,'author');5606}5607print"</table>\n\n".5608"</div>\n";5609print"<div class=\"page_body\">";5610my$comment=$tag{'comment'};5611foreachmy$line(@$comment) {5612chomp$line;5613print esc_html($line, -nbsp=>1) ."<br/>\n";5614}5615print"</div>\n";5616 git_footer_html();5617}56185619sub git_blame_common {5620my$format=shift||'porcelain';5621if($formateq'porcelain'&&$cgi->param('js')) {5622$format='incremental';5623$action='blame_incremental';# for page title etc5624}56255626# permissions5627 gitweb_check_feature('blame')5628or die_error(403,"Blame view not allowed");56295630# error checking5631 die_error(400,"No file name given")unless$file_name;5632$hash_base||= git_get_head_hash($project);5633 die_error(404,"Couldn't find base commit")unless$hash_base;5634my%co= parse_commit($hash_base)5635or die_error(404,"Commit not found");5636my$ftype="blob";5637if(!defined$hash) {5638$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5639or die_error(404,"Error looking up file");5640}else{5641$ftype= git_get_type($hash);5642if($ftype!~"blob") {5643 die_error(400,"Object is not a blob");5644}5645}56465647my$fd;5648if($formateq'incremental') {5649# get file contents (as base)5650open$fd,"-|", git_cmd(),'cat-file','blob',$hash5651or die_error(500,"Open git-cat-file failed");5652}elsif($formateq'data') {5653# run git-blame --incremental5654open$fd,"-|", git_cmd(),"blame","--incremental",5655$hash_base,"--",$file_name5656or die_error(500,"Open git-blame --incremental failed");5657}else{5658# run git-blame --porcelain5659open$fd,"-|", git_cmd(),"blame",'-p',5660$hash_base,'--',$file_name5661or die_error(500,"Open git-blame --porcelain failed");5662}56635664# incremental blame data returns early5665if($formateq'data') {5666print$cgi->header(5667-type=>"text/plain", -charset =>"utf-8",5668-status=>"200 OK");5669local$| =1;# output autoflush5670printwhile<$fd>;5671close$fd5672or print"ERROR$!\n";56735674print'END';5675if(defined$t0&& gitweb_check_feature('timed')) {5676print' '.5677 tv_interval($t0, [ gettimeofday() ]).5678' '.$number_of_git_cmds;5679}5680print"\n";56815682return;5683}56845685# page header5686 git_header_html();5687my$formats_nav=5688$cgi->a({-href => href(action=>"blob", -replay=>1)},5689"blob") .5690" | ";5691if($formateq'incremental') {5692$formats_nav.=5693$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5694"blame") ." (non-incremental)";5695}else{5696$formats_nav.=5697$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5698"blame") ." (incremental)";5699}5700$formats_nav.=5701" | ".5702$cgi->a({-href => href(action=>"history", -replay=>1)},5703"history") .5704" | ".5705$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5706"HEAD");5707 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5708 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5709 git_print_page_path($file_name,$ftype,$hash_base);57105711# page body5712if($formateq'incremental') {5713print"<noscript>\n<div class=\"error\"><center><b>\n".5714"This page requires JavaScript to run.\nUse ".5715$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5716'this page').5717" instead.\n".5718"</b></center></div>\n</noscript>\n";57195720print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5721}57225723print qq!<div class="page_body">\n!;5724print qq!<div id="progress_info">.../ ...</div>\n!5725if($formateq'incremental');5726print qq!<table id="blame_table"class="blame" width="100%">\n!.5727#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5728 qq!<thead>\n!.5729 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5730 qq!</thead>\n!.5731 qq!<tbody>\n!;57325733my@rev_color=qw(light dark);5734my$num_colors=scalar(@rev_color);5735my$current_color=0;57365737if($formateq'incremental') {5738my$color_class=$rev_color[$current_color];57395740#contents of a file5741my$linenr=0;5742 LINE:5743while(my$line= <$fd>) {5744chomp$line;5745$linenr++;57465747print qq!<tr id="l$linenr"class="$color_class">!.5748 qq!<td class="sha1"><a href=""> </a></td>!.5749 qq!<td class="linenr">!.5750 qq!<a class="linenr" href="">$linenr</a></td>!;5751print qq!<td class="pre">! . esc_html($line) ."</td>\n";5752print qq!</tr>\n!;5753}57545755}else{# porcelain, i.e. ordinary blame5756my%metainfo= ();# saves information about commits57575758# blame data5759 LINE:5760while(my$line= <$fd>) {5761chomp$line;5762# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5763# no <lines in group> for subsequent lines in group of lines5764my($full_rev,$orig_lineno,$lineno,$group_size) =5765($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5766if(!exists$metainfo{$full_rev}) {5767$metainfo{$full_rev} = {'nprevious'=>0};5768}5769my$meta=$metainfo{$full_rev};5770my$data;5771while($data= <$fd>) {5772chomp$data;5773last if($data=~s/^\t//);# contents of line5774if($data=~/^(\S+)(?: (.*))?$/) {5775$meta->{$1} =$2unlessexists$meta->{$1};5776}5777if($data=~/^previous /) {5778$meta->{'nprevious'}++;5779}5780}5781my$short_rev=substr($full_rev,0,8);5782my$author=$meta->{'author'};5783my%date=5784 parse_date($meta->{'author-time'},$meta->{'author-tz'});5785my$date=$date{'iso-tz'};5786if($group_size) {5787$current_color= ($current_color+1) %$num_colors;5788}5789my$tr_class=$rev_color[$current_color];5790$tr_class.=' boundary'if(exists$meta->{'boundary'});5791$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5792$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5793print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5794if($group_size) {5795print"<td class=\"sha1\"";5796print" title=\"". esc_html($author) .",$date\"";5797print" rowspan=\"$group_size\""if($group_size>1);5798print">";5799print$cgi->a({-href => href(action=>"commit",5800 hash=>$full_rev,5801 file_name=>$file_name)},5802 esc_html($short_rev));5803if($group_size>=2) {5804my@author_initials= ($author=~/\b([[:upper:]])\B/g);5805if(@author_initials) {5806print"<br />".5807 esc_html(join('',@author_initials));5808# or join('.', ...)5809}5810}5811print"</td>\n";5812}5813# 'previous' <sha1 of parent commit> <filename at commit>5814if(exists$meta->{'previous'} &&5815$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5816$meta->{'parent'} =$1;5817$meta->{'file_parent'} = unquote($2);5818}5819my$linenr_commit=5820exists($meta->{'parent'}) ?5821$meta->{'parent'} :$full_rev;5822my$linenr_filename=5823exists($meta->{'file_parent'}) ?5824$meta->{'file_parent'} : unquote($meta->{'filename'});5825my$blamed= href(action =>'blame',5826 file_name =>$linenr_filename,5827 hash_base =>$linenr_commit);5828print"<td class=\"linenr\">";5829print$cgi->a({ -href =>"$blamed#l$orig_lineno",5830-class=>"linenr"},5831 esc_html($lineno));5832print"</td>";5833print"<td class=\"pre\">". esc_html($data) ."</td>\n";5834print"</tr>\n";5835}# end while58365837}58385839# footer5840print"</tbody>\n".5841"</table>\n";# class="blame"5842print"</div>\n";# class="blame_body"5843close$fd5844or print"Reading blob failed\n";58455846 git_footer_html();5847}58485849sub git_blame {5850 git_blame_common();5851}58525853sub git_blame_incremental {5854 git_blame_common('incremental');5855}58565857sub git_blame_data {5858 git_blame_common('data');5859}58605861sub git_tags {5862my$head= git_get_head_hash($project);5863 git_header_html();5864 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));5865 git_print_header_div('summary',$project);58665867my@tagslist= git_get_tags_list();5868if(@tagslist) {5869 git_tags_body(\@tagslist);5870}5871 git_footer_html();5872}58735874sub git_heads {5875my$head= git_get_head_hash($project);5876 git_header_html();5877 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));5878 git_print_header_div('summary',$project);58795880my@headslist= git_get_heads_list();5881if(@headslist) {5882 git_heads_body(\@headslist,$head);5883}5884 git_footer_html();5885}58865887# used both for single remote view and for list of all the remotes5888sub git_remotes {5889 gitweb_check_feature('remote_heads')5890or die_error(403,"Remote heads view is disabled");58915892my$head= git_get_head_hash($project);5893my$remote=$input_params{'hash'};58945895my$remotedata= git_get_remotes_list($remote);5896 die_error(500,"Unable to get remote information")unlessdefined$remotedata;58975898unless(%$remotedata) {5899 die_error(404,defined$remote?5900"Remote$remotenot found":5901"No remotes found");5902}59035904 git_header_html(undef,undef, -action_extra =>$remote);5905 git_print_page_nav('','',$head,undef,$head,5906 format_ref_views($remote?'':'remotes'));59075908 fill_remote_heads($remotedata);5909if(defined$remote) {5910 git_print_header_div('remotes',"$remoteremote for$project");5911 git_remote_block($remote,$remotedata->{$remote},undef,$head);5912}else{5913 git_print_header_div('summary',"$projectremotes");5914 git_remotes_body($remotedata,undef,$head);5915}59165917 git_footer_html();5918}59195920sub git_blob_plain {5921my$type=shift;5922my$expires;59235924if(!defined$hash) {5925if(defined$file_name) {5926my$base=$hash_base|| git_get_head_hash($project);5927$hash= git_get_hash_by_path($base,$file_name,"blob")5928or die_error(404,"Cannot find file");5929}else{5930 die_error(400,"No file name defined");5931}5932}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5933# blobs defined by non-textual hash id's can be cached5934$expires="+1d";5935}59365937open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5938or die_error(500,"Open git-cat-file blob '$hash' failed");59395940# content-type (can include charset)5941$type= blob_contenttype($fd,$file_name,$type);59425943# "save as" filename, even when no $file_name is given5944my$save_as="$hash";5945if(defined$file_name) {5946$save_as=$file_name;5947}elsif($type=~m/^text\//) {5948$save_as.='.txt';5949}59505951# With XSS prevention on, blobs of all types except a few known safe5952# ones are served with "Content-Disposition: attachment" to make sure5953# they don't run in our security domain. For certain image types,5954# blob view writes an <img> tag referring to blob_plain view, and we5955# want to be sure not to break that by serving the image as an5956# attachment (though Firefox 3 doesn't seem to care).5957my$sandbox=$prevent_xss&&5958$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;59595960print$cgi->header(5961-type =>$type,5962-expires =>$expires,5963-content_disposition =>5964($sandbox?'attachment':'inline')5965.'; filename="'.$save_as.'"');5966local$/=undef;5967binmode STDOUT,':raw';5968print<$fd>;5969binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5970close$fd;5971}59725973sub git_blob {5974my$expires;59755976if(!defined$hash) {5977if(defined$file_name) {5978my$base=$hash_base|| git_get_head_hash($project);5979$hash= git_get_hash_by_path($base,$file_name,"blob")5980or die_error(404,"Cannot find file");5981}else{5982 die_error(400,"No file name defined");5983}5984}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5985# blobs defined by non-textual hash id's can be cached5986$expires="+1d";5987}59885989my$have_blame= gitweb_check_feature('blame');5990open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5991or die_error(500,"Couldn't cat$file_name,$hash");5992my$mimetype= blob_mimetype($fd,$file_name);5993# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5994if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5995close$fd;5996return git_blob_plain($mimetype);5997}5998# we can have blame only for text/* mimetype5999$have_blame&&= ($mimetype=~m!^text/!);60006001my$highlight= gitweb_check_feature('highlight');6002my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);6003$fd= run_highlighter($fd,$highlight,$syntax)6004if$syntax;60056006 git_header_html(undef,$expires);6007my$formats_nav='';6008if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6009if(defined$file_name) {6010if($have_blame) {6011$formats_nav.=6012$cgi->a({-href => href(action=>"blame", -replay=>1)},6013"blame") .6014" | ";6015}6016$formats_nav.=6017$cgi->a({-href => href(action=>"history", -replay=>1)},6018"history") .6019" | ".6020$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},6021"raw") .6022" | ".6023$cgi->a({-href => href(action=>"blob",6024 hash_base=>"HEAD", file_name=>$file_name)},6025"HEAD");6026}else{6027$formats_nav.=6028$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},6029"raw");6030}6031 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6032 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6033}else{6034print"<div class=\"page_nav\">\n".6035"<br/><br/></div>\n".6036"<div class=\"title\">".esc_html($hash)."</div>\n";6037}6038 git_print_page_path($file_name,"blob",$hash_base);6039print"<div class=\"page_body\">\n";6040if($mimetype=~m!^image/!) {6041print qq!<img type="!.esc_attr($mimetype).qq!"!;6042if($file_name) {6043print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;6044}6045print qq! src="! .6046 href(action=>"blob_plain", hash=>$hash,6047 hash_base=>$hash_base, file_name=>$file_name) .6048 qq!"/>\n!;6049}else{6050my$nr;6051while(my$line= <$fd>) {6052chomp$line;6053$nr++;6054$line= untabify($line);6055printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,6056$nr, esc_attr(href(-replay =>1)),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);6057}6058}6059close$fd6060or print"Reading blob failed.\n";6061print"</div>";6062 git_footer_html();6063}60646065sub git_tree {6066if(!defined$hash_base) {6067$hash_base="HEAD";6068}6069if(!defined$hash) {6070if(defined$file_name) {6071$hash= git_get_hash_by_path($hash_base,$file_name,"tree");6072}else{6073$hash=$hash_base;6074}6075}6076 die_error(404,"No such tree")unlessdefined($hash);60776078my$show_sizes= gitweb_check_feature('show-sizes');6079my$have_blame= gitweb_check_feature('blame');60806081my@entries= ();6082{6083local$/="\0";6084open my$fd,"-|", git_cmd(),"ls-tree",'-z',6085($show_sizes?'-l': ()),@extra_options,$hash6086or die_error(500,"Open git-ls-tree failed");6087@entries=map{chomp;$_} <$fd>;6088close$fd6089or die_error(404,"Reading tree failed");6090}60916092my$refs= git_get_references();6093my$ref= format_ref_marker($refs,$hash_base);6094 git_header_html();6095my$basedir='';6096if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6097my@views_nav= ();6098if(defined$file_name) {6099push@views_nav,6100$cgi->a({-href => href(action=>"history", -replay=>1)},6101"history"),6102$cgi->a({-href => href(action=>"tree",6103 hash_base=>"HEAD", file_name=>$file_name)},6104"HEAD"),6105}6106my$snapshot_links= format_snapshot_links($hash);6107if(defined$snapshot_links) {6108# FIXME: Should be available when we have no hash base as well.6109push@views_nav,$snapshot_links;6110}6111 git_print_page_nav('tree','',$hash_base,undef,undef,6112join(' | ',@views_nav));6113 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);6114}else{6115undef$hash_base;6116print"<div class=\"page_nav\">\n";6117print"<br/><br/></div>\n";6118print"<div class=\"title\">".esc_html($hash)."</div>\n";6119}6120if(defined$file_name) {6121$basedir=$file_name;6122if($basedirne''&&substr($basedir, -1)ne'/') {6123$basedir.='/';6124}6125 git_print_page_path($file_name,'tree',$hash_base);6126}6127print"<div class=\"page_body\">\n";6128print"<table class=\"tree\">\n";6129my$alternate=1;6130# '..' (top directory) link if possible6131if(defined$hash_base&&6132defined$file_name&&$file_name=~m![^/]+$!) {6133if($alternate) {6134print"<tr class=\"dark\">\n";6135}else{6136print"<tr class=\"light\">\n";6137}6138$alternate^=1;61396140my$up=$file_name;6141$up=~s!/?[^/]+$!!;6142undef$upunless$up;6143# based on git_print_tree_entry6144print'<td class="mode">'. mode_str('040000') ."</td>\n";6145print'<td class="size"> </td>'."\n"if$show_sizes;6146print'<td class="list">';6147print$cgi->a({-href => href(action=>"tree",6148 hash_base=>$hash_base,6149 file_name=>$up)},6150"..");6151print"</td>\n";6152print"<td class=\"link\"></td>\n";61536154print"</tr>\n";6155}6156foreachmy$line(@entries) {6157my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);61586159if($alternate) {6160print"<tr class=\"dark\">\n";6161}else{6162print"<tr class=\"light\">\n";6163}6164$alternate^=1;61656166 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);61676168print"</tr>\n";6169}6170print"</table>\n".6171"</div>";6172 git_footer_html();6173}61746175sub snapshot_name {6176my($project,$hash) =@_;61776178# path/to/project.git -> project6179# path/to/project/.git -> project6180my$name= to_utf8($project);6181$name=~ s,([^/])/*\.git$,$1,;6182$name= basename($name);6183# sanitize name6184$name=~s/[[:cntrl:]]/?/g;61856186my$ver=$hash;6187if($hash=~/^[0-9a-fA-F]+$/) {6188# shorten SHA-1 hash6189my$full_hash= git_get_full_hash($project,$hash);6190if($full_hash=~/^$hash/&&length($hash) >7) {6191$ver= git_get_short_hash($project,$hash);6192}6193}elsif($hash=~m!^refs/tags/(.*)$!) {6194# tags don't need shortened SHA-1 hash6195$ver=$1;6196}else{6197# branches and other need shortened SHA-1 hash6198if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {6199$ver=$1;6200}6201$ver.='-'. git_get_short_hash($project,$hash);6202}6203# in case of hierarchical branch names6204$ver=~s!/!.!g;62056206# name = project-version_string6207$name="$name-$ver";62086209returnwantarray? ($name,$name) :$name;6210}62116212sub git_snapshot {6213my$format=$input_params{'snapshot_format'};6214if(!@snapshot_fmts) {6215 die_error(403,"Snapshots not allowed");6216}6217# default to first supported snapshot format6218$format||=$snapshot_fmts[0];6219if($format!~m/^[a-z0-9]+$/) {6220 die_error(400,"Invalid snapshot format parameter");6221}elsif(!exists($known_snapshot_formats{$format})) {6222 die_error(400,"Unknown snapshot format");6223}elsif($known_snapshot_formats{$format}{'disabled'}) {6224 die_error(403,"Snapshot format not allowed");6225}elsif(!grep($_eq$format,@snapshot_fmts)) {6226 die_error(403,"Unsupported snapshot format");6227}62286229my$type= git_get_type("$hash^{}");6230if(!$type) {6231 die_error(404,'Object does not exist');6232}elsif($typeeq'blob') {6233 die_error(400,'Object is not a tree-ish');6234}62356236my($name,$prefix) = snapshot_name($project,$hash);6237my$filename="$name$known_snapshot_formats{$format}{'suffix'}";6238my$cmd= quote_command(6239 git_cmd(),'archive',6240"--format=$known_snapshot_formats{$format}{'format'}",6241"--prefix=$prefix/",$hash);6242if(exists$known_snapshot_formats{$format}{'compressor'}) {6243$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});6244}62456246$filename=~s/(["\\])/\\$1/g;6247print$cgi->header(6248-type =>$known_snapshot_formats{$format}{'type'},6249-content_disposition =>'inline; filename="'.$filename.'"',6250-status =>'200 OK');62516252open my$fd,"-|",$cmd6253or die_error(500,"Execute git-archive failed");6254binmode STDOUT,':raw';6255print<$fd>;6256binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6257close$fd;6258}62596260sub git_log_generic {6261my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;62626263my$head= git_get_head_hash($project);6264if(!defined$base) {6265$base=$head;6266}6267if(!defined$page) {6268$page=0;6269}6270my$refs= git_get_references();62716272my$commit_hash=$base;6273if(defined$parent) {6274$commit_hash="$parent..$base";6275}6276my@commitlist=6277 parse_commits($commit_hash,101, (100*$page),6278defined$file_name? ($file_name,"--full-history") : ());62796280my$ftype;6281if(!defined$file_hash&&defined$file_name) {6282# some commits could have deleted file in question,6283# and not have it in tree, but one of them has to have it6284for(my$i=0;$i<@commitlist;$i++) {6285$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);6286last ifdefined$file_hash;6287}6288}6289if(defined$file_hash) {6290$ftype= git_get_type($file_hash);6291}6292if(defined$file_name&& !defined$ftype) {6293 die_error(500,"Unknown type of object");6294}6295my%co;6296if(defined$file_name) {6297%co= parse_commit($base)6298or die_error(404,"Unknown commit object");6299}630063016302my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);6303my$next_link='';6304if($#commitlist>=100) {6305$next_link=6306$cgi->a({-href => href(-replay=>1, page=>$page+1),6307-accesskey =>"n", -title =>"Alt-n"},"next");6308}6309my$patch_max= gitweb_get_feature('patches');6310if($patch_max&& !defined$file_name) {6311if($patch_max<0||@commitlist<=$patch_max) {6312$paging_nav.=" ⋅ ".6313$cgi->a({-href => href(action=>"patches", -replay=>1)},6314"patches");6315}6316}63176318 git_header_html();6319 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);6320if(defined$file_name) {6321 git_print_header_div('commit', esc_html($co{'title'}),$base);6322}else{6323 git_print_header_div('summary',$project)6324}6325 git_print_page_path($file_name,$ftype,$hash_base)6326if(defined$file_name);63276328$body_subr->(\@commitlist,0,99,$refs,$next_link,6329$file_name,$file_hash,$ftype);63306331 git_footer_html();6332}63336334sub git_log {6335 git_log_generic('log', \&git_log_body,6336$hash,$hash_parent);6337}63386339sub git_commit {6340$hash||=$hash_base||"HEAD";6341my%co= parse_commit($hash)6342or die_error(404,"Unknown commit object");63436344my$parent=$co{'parent'};6345my$parents=$co{'parents'};# listref63466347# we need to prepare $formats_nav before any parameter munging6348my$formats_nav;6349if(!defined$parent) {6350# --root commitdiff6351$formats_nav.='(initial)';6352}elsif(@$parents==1) {6353# single parent commit6354$formats_nav.=6355'(parent: '.6356$cgi->a({-href => href(action=>"commit",6357 hash=>$parent)},6358 esc_html(substr($parent,0,7))) .6359')';6360}else{6361# merge commit6362$formats_nav.=6363'(merge: '.6364join(' ',map{6365$cgi->a({-href => href(action=>"commit",6366 hash=>$_)},6367 esc_html(substr($_,0,7)));6368}@$parents) .6369')';6370}6371if(gitweb_check_feature('patches') &&@$parents<=1) {6372$formats_nav.=" | ".6373$cgi->a({-href => href(action=>"patch", -replay=>1)},6374"patch");6375}63766377if(!defined$parent) {6378$parent="--root";6379}6380my@difftree;6381open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",6382@diff_opts,6383(@$parents<=1?$parent:'-c'),6384$hash,"--"6385or die_error(500,"Open git-diff-tree failed");6386@difftree=map{chomp;$_} <$fd>;6387close$fdor die_error(404,"Reading git-diff-tree failed");63886389# non-textual hash id's can be cached6390my$expires;6391if($hash=~m/^[0-9a-fA-F]{40}$/) {6392$expires="+1d";6393}6394my$refs= git_get_references();6395my$ref= format_ref_marker($refs,$co{'id'});63966397 git_header_html(undef,$expires);6398 git_print_page_nav('commit','',6399$hash,$co{'tree'},$hash,6400$formats_nav);64016402if(defined$co{'parent'}) {6403 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6404}else{6405 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6406}6407print"<div class=\"title_text\">\n".6408"<table class=\"object_header\">\n";6409 git_print_authorship_rows(\%co);6410print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6411print"<tr>".6412"<td>tree</td>".6413"<td class=\"sha1\">".6414$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6415class=>"list"},$co{'tree'}) .6416"</td>".6417"<td class=\"link\">".6418$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6419"tree");6420my$snapshot_links= format_snapshot_links($hash);6421if(defined$snapshot_links) {6422print" | ".$snapshot_links;6423}6424print"</td>".6425"</tr>\n";64266427foreachmy$par(@$parents) {6428print"<tr>".6429"<td>parent</td>".6430"<td class=\"sha1\">".6431$cgi->a({-href => href(action=>"commit", hash=>$par),6432class=>"list"},$par) .6433"</td>".6434"<td class=\"link\">".6435$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6436" | ".6437$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6438"</td>".6439"</tr>\n";6440}6441print"</table>".6442"</div>\n";64436444print"<div class=\"page_body\">\n";6445 git_print_log($co{'comment'});6446print"</div>\n";64476448 git_difftree_body(\@difftree,$hash,@$parents);64496450 git_footer_html();6451}64526453sub git_object {6454# object is defined by:6455# - hash or hash_base alone6456# - hash_base and file_name6457my$type;64586459# - hash or hash_base alone6460if($hash|| ($hash_base&& !defined$file_name)) {6461my$object_id=$hash||$hash_base;64626463open my$fd,"-|", quote_command(6464 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6465or die_error(404,"Object does not exist");6466$type= <$fd>;6467chomp$type;6468close$fd6469or die_error(404,"Object does not exist");64706471# - hash_base and file_name6472}elsif($hash_base&&defined$file_name) {6473$file_name=~ s,/+$,,;64746475system(git_cmd(),"cat-file",'-e',$hash_base) ==06476or die_error(404,"Base object does not exist");64776478# here errors should not hapen6479open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6480or die_error(500,"Open git-ls-tree failed");6481my$line= <$fd>;6482close$fd;64836484#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6485unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6486 die_error(404,"File or directory for given base does not exist");6487}6488$type=$2;6489$hash=$3;6490}else{6491 die_error(400,"Not enough information to find object");6492}64936494print$cgi->redirect(-uri => href(action=>$type, -full=>1,6495 hash=>$hash, hash_base=>$hash_base,6496 file_name=>$file_name),6497-status =>'302 Found');6498}64996500sub git_blobdiff {6501my$format=shift||'html';65026503my$fd;6504my@difftree;6505my%diffinfo;6506my$expires;65076508# preparing $fd and %diffinfo for git_patchset_body6509# new style URI6510if(defined$hash_base&&defined$hash_parent_base) {6511if(defined$file_name) {6512# read raw output6513open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6514$hash_parent_base,$hash_base,6515"--", (defined$file_parent?$file_parent: ()),$file_name6516or die_error(500,"Open git-diff-tree failed");6517@difftree=map{chomp;$_} <$fd>;6518close$fd6519or die_error(404,"Reading git-diff-tree failed");6520@difftree6521or die_error(404,"Blob diff not found");65226523}elsif(defined$hash&&6524$hash=~/[0-9a-fA-F]{40}/) {6525# try to find filename from $hash65266527# read filtered raw output6528open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6529$hash_parent_base,$hash_base,"--"6530or die_error(500,"Open git-diff-tree failed");6531@difftree=6532# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6533# $hash == to_id6534grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6535map{chomp;$_} <$fd>;6536close$fd6537or die_error(404,"Reading git-diff-tree failed");6538@difftree6539or die_error(404,"Blob diff not found");65406541}else{6542 die_error(400,"Missing one of the blob diff parameters");6543}65446545if(@difftree>1) {6546 die_error(400,"Ambiguous blob diff specification");6547}65486549%diffinfo= parse_difftree_raw_line($difftree[0]);6550$file_parent||=$diffinfo{'from_file'} ||$file_name;6551$file_name||=$diffinfo{'to_file'};65526553$hash_parent||=$diffinfo{'from_id'};6554$hash||=$diffinfo{'to_id'};65556556# non-textual hash id's can be cached6557if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6558$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6559$expires='+1d';6560}65616562# open patch output6563open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6564'-p', ($formateq'html'?"--full-index": ()),6565$hash_parent_base,$hash_base,6566"--", (defined$file_parent?$file_parent: ()),$file_name6567or die_error(500,"Open git-diff-tree failed");6568}65696570# old/legacy style URI -- not generated anymore since 1.4.3.6571if(!%diffinfo) {6572 die_error('404 Not Found',"Missing one of the blob diff parameters")6573}65746575# header6576if($formateq'html') {6577my$formats_nav=6578$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6579"raw");6580 git_header_html(undef,$expires);6581if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6582 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6583 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6584}else{6585print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6586print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";6587}6588if(defined$file_name) {6589 git_print_page_path($file_name,"blob",$hash_base);6590}else{6591print"<div class=\"page_path\"></div>\n";6592}65936594}elsif($formateq'plain') {6595print$cgi->header(6596-type =>'text/plain',6597-charset =>'utf-8',6598-expires =>$expires,6599-content_disposition =>'inline; filename="'."$file_name".'.patch"');66006601print"X-Git-Url: ".$cgi->self_url() ."\n\n";66026603}else{6604 die_error(400,"Unknown blobdiff format");6605}66066607# patch6608if($formateq'html') {6609print"<div class=\"page_body\">\n";66106611 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6612close$fd;66136614print"</div>\n";# class="page_body"6615 git_footer_html();66166617}else{6618while(my$line= <$fd>) {6619$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6620$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;66216622print$line;66236624last if$line=~m!^\+\+\+!;6625}6626local$/=undef;6627print<$fd>;6628close$fd;6629}6630}66316632sub git_blobdiff_plain {6633 git_blobdiff('plain');6634}66356636sub git_commitdiff {6637my%params=@_;6638my$format=$params{-format} ||'html';66396640my($patch_max) = gitweb_get_feature('patches');6641if($formateq'patch') {6642 die_error(403,"Patch view not allowed")unless$patch_max;6643}66446645$hash||=$hash_base||"HEAD";6646my%co= parse_commit($hash)6647or die_error(404,"Unknown commit object");66486649# choose format for commitdiff for merge6650if(!defined$hash_parent&& @{$co{'parents'}} >1) {6651$hash_parent='--cc';6652}6653# we need to prepare $formats_nav before almost any parameter munging6654my$formats_nav;6655if($formateq'html') {6656$formats_nav=6657$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6658"raw");6659if($patch_max&& @{$co{'parents'}} <=1) {6660$formats_nav.=" | ".6661$cgi->a({-href => href(action=>"patch", -replay=>1)},6662"patch");6663}66646665if(defined$hash_parent&&6666$hash_parentne'-c'&&$hash_parentne'--cc') {6667# commitdiff with two commits given6668my$hash_parent_short=$hash_parent;6669if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6670$hash_parent_short=substr($hash_parent,0,7);6671}6672$formats_nav.=6673' (from';6674for(my$i=0;$i< @{$co{'parents'}};$i++) {6675if($co{'parents'}[$i]eq$hash_parent) {6676$formats_nav.=' parent '. ($i+1);6677last;6678}6679}6680$formats_nav.=': '.6681$cgi->a({-href => href(action=>"commitdiff",6682 hash=>$hash_parent)},6683 esc_html($hash_parent_short)) .6684')';6685}elsif(!$co{'parent'}) {6686# --root commitdiff6687$formats_nav.=' (initial)';6688}elsif(scalar@{$co{'parents'}} ==1) {6689# single parent commit6690$formats_nav.=6691' (parent: '.6692$cgi->a({-href => href(action=>"commitdiff",6693 hash=>$co{'parent'})},6694 esc_html(substr($co{'parent'},0,7))) .6695')';6696}else{6697# merge commit6698if($hash_parenteq'--cc') {6699$formats_nav.=' | '.6700$cgi->a({-href => href(action=>"commitdiff",6701 hash=>$hash, hash_parent=>'-c')},6702'combined');6703}else{# $hash_parent eq '-c'6704$formats_nav.=' | '.6705$cgi->a({-href => href(action=>"commitdiff",6706 hash=>$hash, hash_parent=>'--cc')},6707'compact');6708}6709$formats_nav.=6710' (merge: '.6711join(' ',map{6712$cgi->a({-href => href(action=>"commitdiff",6713 hash=>$_)},6714 esc_html(substr($_,0,7)));6715} @{$co{'parents'}} ) .6716')';6717}6718}67196720my$hash_parent_param=$hash_parent;6721if(!defined$hash_parent_param) {6722# --cc for multiple parents, --root for parentless6723$hash_parent_param=6724@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6725}67266727# read commitdiff6728my$fd;6729my@difftree;6730if($formateq'html') {6731open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6732"--no-commit-id","--patch-with-raw","--full-index",6733$hash_parent_param,$hash,"--"6734or die_error(500,"Open git-diff-tree failed");67356736while(my$line= <$fd>) {6737chomp$line;6738# empty line ends raw part of diff-tree output6739last unless$line;6740push@difftree,scalar parse_difftree_raw_line($line);6741}67426743}elsif($formateq'plain') {6744open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6745'-p',$hash_parent_param,$hash,"--"6746or die_error(500,"Open git-diff-tree failed");6747}elsif($formateq'patch') {6748# For commit ranges, we limit the output to the number of6749# patches specified in the 'patches' feature.6750# For single commits, we limit the output to a single patch,6751# diverging from the git-format-patch default.6752my@commit_spec= ();6753if($hash_parent) {6754if($patch_max>0) {6755push@commit_spec,"-$patch_max";6756}6757push@commit_spec,'-n',"$hash_parent..$hash";6758}else{6759if($params{-single}) {6760push@commit_spec,'-1';6761}else{6762if($patch_max>0) {6763push@commit_spec,"-$patch_max";6764}6765push@commit_spec,"-n";6766}6767push@commit_spec,'--root',$hash;6768}6769open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6770'--encoding=utf8','--stdout',@commit_spec6771or die_error(500,"Open git-format-patch failed");6772}else{6773 die_error(400,"Unknown commitdiff format");6774}67756776# non-textual hash id's can be cached6777my$expires;6778if($hash=~m/^[0-9a-fA-F]{40}$/) {6779$expires="+1d";6780}67816782# write commit message6783if($formateq'html') {6784my$refs= git_get_references();6785my$ref= format_ref_marker($refs,$co{'id'});67866787 git_header_html(undef,$expires);6788 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6789 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6790print"<div class=\"title_text\">\n".6791"<table class=\"object_header\">\n";6792 git_print_authorship_rows(\%co);6793print"</table>".6794"</div>\n";6795print"<div class=\"page_body\">\n";6796if(@{$co{'comment'}} >1) {6797print"<div class=\"log\">\n";6798 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6799print"</div>\n";# class="log"6800}68016802}elsif($formateq'plain') {6803my$refs= git_get_references("tags");6804my$tagname= git_get_rev_name_tags($hash);6805my$filename= basename($project) ."-$hash.patch";68066807print$cgi->header(6808-type =>'text/plain',6809-charset =>'utf-8',6810-expires =>$expires,6811-content_disposition =>'inline; filename="'."$filename".'"');6812my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6813print"From: ". to_utf8($co{'author'}) ."\n";6814print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6815print"Subject: ". to_utf8($co{'title'}) ."\n";68166817print"X-Git-Tag:$tagname\n"if$tagname;6818print"X-Git-Url: ".$cgi->self_url() ."\n\n";68196820foreachmy$line(@{$co{'comment'}}) {6821print to_utf8($line) ."\n";6822}6823print"---\n\n";6824}elsif($formateq'patch') {6825my$filename= basename($project) ."-$hash.patch";68266827print$cgi->header(6828-type =>'text/plain',6829-charset =>'utf-8',6830-expires =>$expires,6831-content_disposition =>'inline; filename="'."$filename".'"');6832}68336834# write patch6835if($formateq'html') {6836my$use_parents= !defined$hash_parent||6837$hash_parenteq'-c'||$hash_parenteq'--cc';6838 git_difftree_body(\@difftree,$hash,6839$use_parents? @{$co{'parents'}} :$hash_parent);6840print"<br/>\n";68416842 git_patchset_body($fd, \@difftree,$hash,6843$use_parents? @{$co{'parents'}} :$hash_parent);6844close$fd;6845print"</div>\n";# class="page_body"6846 git_footer_html();68476848}elsif($formateq'plain') {6849local$/=undef;6850print<$fd>;6851close$fd6852or print"Reading git-diff-tree failed\n";6853}elsif($formateq'patch') {6854local$/=undef;6855print<$fd>;6856close$fd6857or print"Reading git-format-patch failed\n";6858}6859}68606861sub git_commitdiff_plain {6862 git_commitdiff(-format =>'plain');6863}68646865# format-patch-style patches6866sub git_patch {6867 git_commitdiff(-format =>'patch', -single =>1);6868}68696870sub git_patches {6871 git_commitdiff(-format =>'patch');6872}68736874sub git_history {6875 git_log_generic('history', \&git_history_body,6876$hash_base,$hash_parent_base,6877$file_name,$hash);6878}68796880sub git_search {6881 gitweb_check_feature('search')or die_error(403,"Search is disabled");6882if(!defined$searchtext) {6883 die_error(400,"Text field is empty");6884}6885if(!defined$hash) {6886$hash= git_get_head_hash($project);6887}6888my%co= parse_commit($hash);6889if(!%co) {6890 die_error(404,"Unknown commit object");6891}6892if(!defined$page) {6893$page=0;6894}68956896$searchtype||='commit';6897if($searchtypeeq'pickaxe') {6898# pickaxe may take all resources of your box and run for several minutes6899# with every query - so decide by yourself how public you make this feature6900 gitweb_check_feature('pickaxe')6901or die_error(403,"Pickaxe is disabled");6902}6903if($searchtypeeq'grep') {6904 gitweb_check_feature('grep')6905or die_error(403,"Grep is disabled");6906}69076908 git_header_html();69096910if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6911my$greptype;6912if($searchtypeeq'commit') {6913$greptype="--grep=";6914}elsif($searchtypeeq'author') {6915$greptype="--author=";6916}elsif($searchtypeeq'committer') {6917$greptype="--committer=";6918}6919$greptype.=$searchtext;6920my@commitlist= parse_commits($hash,101, (100*$page),undef,6921$greptype,'--regexp-ignore-case',6922$search_use_regexp?'--extended-regexp':'--fixed-strings');69236924my$paging_nav='';6925if($page>0) {6926$paging_nav.=6927$cgi->a({-href => href(action=>"search", hash=>$hash,6928 searchtext=>$searchtext,6929 searchtype=>$searchtype)},6930"first");6931$paging_nav.=" ⋅ ".6932$cgi->a({-href => href(-replay=>1, page=>$page-1),6933-accesskey =>"p", -title =>"Alt-p"},"prev");6934}else{6935$paging_nav.="first";6936$paging_nav.=" ⋅ prev";6937}6938my$next_link='';6939if($#commitlist>=100) {6940$next_link=6941$cgi->a({-href => href(-replay=>1, page=>$page+1),6942-accesskey =>"n", -title =>"Alt-n"},"next");6943$paging_nav.=" ⋅$next_link";6944}else{6945$paging_nav.=" ⋅ next";6946}69476948 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6949 git_print_header_div('commit', esc_html($co{'title'}),$hash);6950if($page==0&& !@commitlist) {6951print"<p>No match.</p>\n";6952}else{6953 git_search_grep_body(\@commitlist,0,99,$next_link);6954}6955}69566957if($searchtypeeq'pickaxe') {6958 git_print_page_nav('','',$hash,$co{'tree'},$hash);6959 git_print_header_div('commit', esc_html($co{'title'}),$hash);69606961print"<table class=\"pickaxe search\">\n";6962my$alternate=1;6963local$/="\n";6964open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6965'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6966($search_use_regexp?'--pickaxe-regex': ());6967undef%co;6968my@files;6969while(my$line= <$fd>) {6970chomp$line;6971next unless$line;69726973my%set= parse_difftree_raw_line($line);6974if(defined$set{'commit'}) {6975# finish previous commit6976if(%co) {6977print"</td>\n".6978"<td class=\"link\">".6979$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6980" | ".6981$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6982print"</td>\n".6983"</tr>\n";6984}69856986if($alternate) {6987print"<tr class=\"dark\">\n";6988}else{6989print"<tr class=\"light\">\n";6990}6991$alternate^=1;6992%co= parse_commit($set{'commit'});6993my$author= chop_and_escape_str($co{'author_name'},15,5);6994print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6995"<td><i>$author</i></td>\n".6996"<td>".6997$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6998-class=>"list subject"},6999 chop_and_escape_str($co{'title'},50) ."<br/>");7000}elsif(defined$set{'to_id'}) {7001next if($set{'to_id'} =~m/^0{40}$/);70027003print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},7004 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),7005-class=>"list"},7006"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .7007"<br/>\n";7008}7009}7010close$fd;70117012# finish last commit (warning: repetition!)7013if(%co) {7014print"</td>\n".7015"<td class=\"link\">".7016$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .7017" | ".7018$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");7019print"</td>\n".7020"</tr>\n";7021}70227023print"</table>\n";7024}70257026if($searchtypeeq'grep') {7027 git_print_page_nav('','',$hash,$co{'tree'},$hash);7028 git_print_header_div('commit', esc_html($co{'title'}),$hash);70297030print"<table class=\"grep_search\">\n";7031my$alternate=1;7032my$matches=0;7033local$/="\n";7034open my$fd,"-|", git_cmd(),'grep','-n',7035$search_use_regexp? ('-E','-i') :'-F',7036$searchtext,$co{'tree'};7037my$lastfile='';7038while(my$line= <$fd>) {7039chomp$line;7040my($file,$lno,$ltext,$binary);7041last if($matches++>1000);7042if($line=~/^Binary file (.+) matches$/) {7043$file=$1;7044$binary=1;7045}else{7046(undef,$file,$lno,$ltext) =split(/:/,$line,4);7047}7048if($filene$lastfile) {7049$lastfileand print"</td></tr>\n";7050if($alternate++) {7051print"<tr class=\"dark\">\n";7052}else{7053print"<tr class=\"light\">\n";7054}7055print"<td class=\"list\">".7056$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},7057 file_name=>"$file"),7058-class=>"list"}, esc_path($file));7059print"</td><td>\n";7060$lastfile=$file;7061}7062if($binary) {7063print"<div class=\"binary\">Binary file</div>\n";7064}else{7065$ltext= untabify($ltext);7066if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {7067$ltext= esc_html($1, -nbsp=>1);7068$ltext.='<span class="match">';7069$ltext.= esc_html($2, -nbsp=>1);7070$ltext.='</span>';7071$ltext.= esc_html($3, -nbsp=>1);7072}else{7073$ltext= esc_html($ltext, -nbsp=>1);7074}7075print"<div class=\"pre\">".7076$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},7077 file_name=>"$file").'#l'.$lno,7078-class=>"linenr"},sprintf('%4i',$lno))7079.' '.$ltext."</div>\n";7080}7081}7082if($lastfile) {7083print"</td></tr>\n";7084if($matches>1000) {7085print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";7086}7087}else{7088print"<div class=\"diff nodifferences\">No matches found</div>\n";7089}7090close$fd;70917092print"</table>\n";7093}7094 git_footer_html();7095}70967097sub git_search_help {7098 git_header_html();7099 git_print_page_nav('','',$hash,$hash,$hash);7100print<<EOT;7101<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without7102regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,7103the pattern entered is recognized as the POSIX extended7104<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case7105insensitive).</p>7106<dl>7107<dt><b>commit</b></dt>7108<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>7109EOT7110my$have_grep= gitweb_check_feature('grep');7111if($have_grep) {7112print<<EOT;7113<dt><b>grep</b></dt>7114<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing7115 a different one) are searched for the given pattern. On large trees, this search can take7116a while and put some strain on the server, so please use it with some consideration. Note that7117due to git-grep peculiarity, currently if regexp mode is turned off, the matches are7118case-sensitive.</dd>7119EOT7120}7121print<<EOT;7122<dt><b>author</b></dt>7123<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>7124<dt><b>committer</b></dt>7125<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>7126EOT7127my$have_pickaxe= gitweb_check_feature('pickaxe');7128if($have_pickaxe) {7129print<<EOT;7130<dt><b>pickaxe</b></dt>7131<dd>All commits that caused the string to appear or disappear from any file (changes that7132added, removed or "modified" the string) will be listed. This search can take a while and7133takes a lot of strain on the server, so please use it wisely. Note that since you may be7134interested even in changes just changing the case as well, this search is case sensitive.</dd>7135EOT7136}7137print"</dl>\n";7138 git_footer_html();7139}71407141sub git_shortlog {7142 git_log_generic('shortlog', \&git_shortlog_body,7143$hash,$hash_parent);7144}71457146## ......................................................................7147## feeds (RSS, Atom; OPML)71487149sub git_feed {7150my$format=shift||'atom';7151my$have_blame= gitweb_check_feature('blame');71527153# Atom: http://www.atomenabled.org/developers/syndication/7154# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ7155if($formatne'rss'&&$formatne'atom') {7156 die_error(400,"Unknown web feed format");7157}71587159# log/feed of current (HEAD) branch, log of given branch, history of file/directory7160my$head=$hash||'HEAD';7161my@commitlist= parse_commits($head,150,0,$file_name);71627163my%latest_commit;7164my%latest_date;7165my$content_type="application/$format+xml";7166if(defined$cgi->http('HTTP_ACCEPT') &&7167$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {7168# browser (feed reader) prefers text/xml7169$content_type='text/xml';7170}7171if(defined($commitlist[0])) {7172%latest_commit= %{$commitlist[0]};7173my$latest_epoch=$latest_commit{'committer_epoch'};7174%latest_date= parse_date($latest_epoch,$latest_commit{'comitter_tz'});7175my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7176if(defined$if_modified) {7177my$since;7178if(eval{require HTTP::Date;1; }) {7179$since= HTTP::Date::str2time($if_modified);7180}elsif(eval{require Time::ParseDate;1; }) {7181$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7182}7183if(defined$since&&$latest_epoch<=$since) {7184print$cgi->header(7185-type =>$content_type,7186-charset =>'utf-8',7187-last_modified =>$latest_date{'rfc2822'},7188-status =>'304 Not Modified');7189return;7190}7191}7192print$cgi->header(7193-type =>$content_type,7194-charset =>'utf-8',7195-last_modified =>$latest_date{'rfc2822'});7196}else{7197print$cgi->header(7198-type =>$content_type,7199-charset =>'utf-8');7200}72017202# Optimization: skip generating the body if client asks only7203# for Last-Modified date.7204return if($cgi->request_method()eq'HEAD');72057206# header variables7207my$title="$site_name-$project/$action";7208my$feed_type='log';7209if(defined$hash) {7210$title.=" - '$hash'";7211$feed_type='branch log';7212if(defined$file_name) {7213$title.=" ::$file_name";7214$feed_type='history';7215}7216}elsif(defined$file_name) {7217$title.=" -$file_name";7218$feed_type='history';7219}7220$title.="$feed_type";7221my$descr= git_get_project_description($project);7222if(defined$descr) {7223$descr= esc_html($descr);7224}else{7225$descr="$project".7226($formateq'rss'?'RSS':'Atom') .7227" feed";7228}7229my$owner= git_get_project_owner($project);7230$owner= esc_html($owner);72317232#header7233my$alt_url;7234if(defined$file_name) {7235$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);7236}elsif(defined$hash) {7237$alt_url= href(-full=>1, action=>"log", hash=>$hash);7238}else{7239$alt_url= href(-full=>1, action=>"summary");7240}7241print qq!<?xml version="1.0" encoding="utf-8"?>\n!;7242if($formateq'rss') {7243print<<XML;7244<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">7245<channel>7246XML7247print"<title>$title</title>\n".7248"<link>$alt_url</link>\n".7249"<description>$descr</description>\n".7250"<language>en</language>\n".7251# project owner is responsible for 'editorial' content7252"<managingEditor>$owner</managingEditor>\n";7253if(defined$logo||defined$favicon) {7254# prefer the logo to the favicon, since RSS7255# doesn't allow both7256my$img= esc_url($logo||$favicon);7257print"<image>\n".7258"<url>$img</url>\n".7259"<title>$title</title>\n".7260"<link>$alt_url</link>\n".7261"</image>\n";7262}7263if(%latest_date) {7264print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";7265print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";7266}7267print"<generator>gitweb v.$version/$git_version</generator>\n";7268}elsif($formateq'atom') {7269print<<XML;7270<feed xmlns="http://www.w3.org/2005/Atom">7271XML7272print"<title>$title</title>\n".7273"<subtitle>$descr</subtitle>\n".7274'<link rel="alternate" type="text/html" href="'.7275$alt_url.'" />'."\n".7276'<link rel="self" type="'.$content_type.'" href="'.7277$cgi->self_url() .'" />'."\n".7278"<id>". href(-full=>1) ."</id>\n".7279# use project owner for feed author7280"<author><name>$owner</name></author>\n";7281if(defined$favicon) {7282print"<icon>". esc_url($favicon) ."</icon>\n";7283}7284if(defined$logo) {7285# not twice as wide as tall: 72 x 27 pixels7286print"<logo>". esc_url($logo) ."</logo>\n";7287}7288if(!%latest_date) {7289# dummy date to keep the feed valid until commits trickle in:7290print"<updated>1970-01-01T00:00:00Z</updated>\n";7291}else{7292print"<updated>$latest_date{'iso-8601'}</updated>\n";7293}7294print"<generator version='$version/$git_version'>gitweb</generator>\n";7295}72967297# contents7298for(my$i=0;$i<=$#commitlist;$i++) {7299my%co= %{$commitlist[$i]};7300my$commit=$co{'id'};7301# we read 150, we always show 30 and the ones more recent than 48 hours7302if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {7303last;7304}7305my%cd= parse_date($co{'author_epoch'},$co{'author_tz'});73067307# get list of changed files7308open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7309$co{'parent'} ||"--root",7310$co{'id'},"--", (defined$file_name?$file_name: ())7311ornext;7312my@difftree=map{chomp;$_} <$fd>;7313close$fd7314ornext;73157316# print element (entry, item)7317my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);7318if($formateq'rss') {7319print"<item>\n".7320"<title>". esc_html($co{'title'}) ."</title>\n".7321"<author>". esc_html($co{'author'}) ."</author>\n".7322"<pubDate>$cd{'rfc2822'}</pubDate>\n".7323"<guid isPermaLink=\"true\">$co_url</guid>\n".7324"<link>$co_url</link>\n".7325"<description>". esc_html($co{'title'}) ."</description>\n".7326"<content:encoded>".7327"<![CDATA[\n";7328}elsif($formateq'atom') {7329print"<entry>\n".7330"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".7331"<updated>$cd{'iso-8601'}</updated>\n".7332"<author>\n".7333" <name>". esc_html($co{'author_name'}) ."</name>\n";7334if($co{'author_email'}) {7335print" <email>". esc_html($co{'author_email'}) ."</email>\n";7336}7337print"</author>\n".7338# use committer for contributor7339"<contributor>\n".7340" <name>". esc_html($co{'committer_name'}) ."</name>\n";7341if($co{'committer_email'}) {7342print" <email>". esc_html($co{'committer_email'}) ."</email>\n";7343}7344print"</contributor>\n".7345"<published>$cd{'iso-8601'}</published>\n".7346"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".7347"<id>$co_url</id>\n".7348"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".7349"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";7350}7351my$comment=$co{'comment'};7352print"<pre>\n";7353foreachmy$line(@$comment) {7354$line= esc_html($line);7355print"$line\n";7356}7357print"</pre><ul>\n";7358foreachmy$difftree_line(@difftree) {7359my%difftree= parse_difftree_raw_line($difftree_line);7360next if!$difftree{'from_id'};73617362my$file=$difftree{'file'} ||$difftree{'to_file'};73637364print"<li>".7365"[".7366$cgi->a({-href => href(-full=>1, action=>"blobdiff",7367 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},7368 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},7369 file_name=>$file, file_parent=>$difftree{'from_file'}),7370-title =>"diff"},'D');7371if($have_blame) {7372print$cgi->a({-href => href(-full=>1, action=>"blame",7373 file_name=>$file, hash_base=>$commit),7374-title =>"blame"},'B');7375}7376# if this is not a feed of a file history7377if(!defined$file_name||$file_namene$file) {7378print$cgi->a({-href => href(-full=>1, action=>"history",7379 file_name=>$file, hash=>$commit),7380-title =>"history"},'H');7381}7382$file= esc_path($file);7383print"] ".7384"$file</li>\n";7385}7386if($formateq'rss') {7387print"</ul>]]>\n".7388"</content:encoded>\n".7389"</item>\n";7390}elsif($formateq'atom') {7391print"</ul>\n</div>\n".7392"</content>\n".7393"</entry>\n";7394}7395}73967397# end of feed7398if($formateq'rss') {7399print"</channel>\n</rss>\n";7400}elsif($formateq'atom') {7401print"</feed>\n";7402}7403}74047405sub git_rss {7406 git_feed('rss');7407}74087409sub git_atom {7410 git_feed('atom');7411}74127413sub git_opml {7414my@list= git_get_projects_list();7415if(!@list) {7416 die_error(404,"No projects found");7417}74187419print$cgi->header(7420-type =>'text/xml',7421-charset =>'utf-8',7422-content_disposition =>'inline; filename="opml.xml"');74237424print<<XML;7425<?xml version="1.0" encoding="utf-8"?>7426<opml version="1.0">7427<head>7428 <title>$site_nameOPML Export</title>7429</head>7430<body>7431<outline text="git RSS feeds">7432XML74337434foreachmy$pr(@list) {7435my%proj=%$pr;7436my$head= git_get_head_hash($proj{'path'});7437if(!defined$head) {7438next;7439}7440$git_dir="$projectroot/$proj{'path'}";7441my%co= parse_commit($head);7442if(!%co) {7443next;7444}74457446my$path= esc_html(chop_str($proj{'path'},25,5));7447my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7448my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7449print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7450}7451print<<XML;7452</outline>7453</body>7454</opml>7455XML7456}