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), 254# alternate extensions, see /etc/highlight/filetypes.conf 255'h'=>'c', 256map{$_=>'cpp'}qw(cxx c++ cc), 257map{$_=>'php'}qw(php3 php4), 258map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 259'mak'=>'make', 260map{$_=>'xml'}qw(xhtml html htm), 261); 262 263# You define site-wide feature defaults here; override them with 264# $GITWEB_CONFIG as necessary. 265our%feature= ( 266# feature => { 267# 'sub' => feature-sub (subroutine), 268# 'override' => allow-override (boolean), 269# 'default' => [ default options...] (array reference)} 270# 271# if feature is overridable (it means that allow-override has true value), 272# then feature-sub will be called with default options as parameters; 273# return value of feature-sub indicates if to enable specified feature 274# 275# if there is no 'sub' key (no feature-sub), then feature cannot be 276# overridden 277# 278# use gitweb_get_feature(<feature>) to retrieve the <feature> value 279# (an array) or gitweb_check_feature(<feature>) to check if <feature> 280# is enabled 281 282# Enable the 'blame' blob view, showing the last commit that modified 283# each line in the file. This can be very CPU-intensive. 284 285# To enable system wide have in $GITWEB_CONFIG 286# $feature{'blame'}{'default'} = [1]; 287# To have project specific config enable override in $GITWEB_CONFIG 288# $feature{'blame'}{'override'} = 1; 289# and in project config gitweb.blame = 0|1; 290'blame'=> { 291'sub'=>sub{ feature_bool('blame',@_) }, 292'override'=>0, 293'default'=> [0]}, 294 295# Enable the 'snapshot' link, providing a compressed archive of any 296# tree. This can potentially generate high traffic if you have large 297# project. 298 299# Value is a list of formats defined in %known_snapshot_formats that 300# you wish to offer. 301# To disable system wide have in $GITWEB_CONFIG 302# $feature{'snapshot'}{'default'} = []; 303# To have project specific config enable override in $GITWEB_CONFIG 304# $feature{'snapshot'}{'override'} = 1; 305# and in project config, a comma-separated list of formats or "none" 306# to disable. Example: gitweb.snapshot = tbz2,zip; 307'snapshot'=> { 308'sub'=> \&feature_snapshot, 309'override'=>0, 310'default'=> ['tgz']}, 311 312# Enable text search, which will list the commits which match author, 313# committer or commit text to a given string. Enabled by default. 314# Project specific override is not supported. 315'search'=> { 316'override'=>0, 317'default'=> [1]}, 318 319# Enable grep search, which will list the files in currently selected 320# tree containing the given string. Enabled by default. This can be 321# potentially CPU-intensive, of course. 322 323# To enable system wide have in $GITWEB_CONFIG 324# $feature{'grep'}{'default'} = [1]; 325# To have project specific config enable override in $GITWEB_CONFIG 326# $feature{'grep'}{'override'} = 1; 327# and in project config gitweb.grep = 0|1; 328'grep'=> { 329'sub'=>sub{ feature_bool('grep',@_) }, 330'override'=>0, 331'default'=> [1]}, 332 333# Enable the pickaxe search, which will list the commits that modified 334# a given string in a file. This can be practical and quite faster 335# alternative to 'blame', but still potentially CPU-intensive. 336 337# To enable system wide have in $GITWEB_CONFIG 338# $feature{'pickaxe'}{'default'} = [1]; 339# To have project specific config enable override in $GITWEB_CONFIG 340# $feature{'pickaxe'}{'override'} = 1; 341# and in project config gitweb.pickaxe = 0|1; 342'pickaxe'=> { 343'sub'=>sub{ feature_bool('pickaxe',@_) }, 344'override'=>0, 345'default'=> [1]}, 346 347# Enable showing size of blobs in a 'tree' view, in a separate 348# column, similar to what 'ls -l' does. This cost a bit of IO. 349 350# To disable system wide have in $GITWEB_CONFIG 351# $feature{'show-sizes'}{'default'} = [0]; 352# To have project specific config enable override in $GITWEB_CONFIG 353# $feature{'show-sizes'}{'override'} = 1; 354# and in project config gitweb.showsizes = 0|1; 355'show-sizes'=> { 356'sub'=>sub{ feature_bool('showsizes',@_) }, 357'override'=>0, 358'default'=> [1]}, 359 360# Make gitweb use an alternative format of the URLs which can be 361# more readable and natural-looking: project name is embedded 362# directly in the path and the query string contains other 363# auxiliary information. All gitweb installations recognize 364# URL in either format; this configures in which formats gitweb 365# generates links. 366 367# To enable system wide have in $GITWEB_CONFIG 368# $feature{'pathinfo'}{'default'} = [1]; 369# Project specific override is not supported. 370 371# Note that you will need to change the default location of CSS, 372# favicon, logo and possibly other files to an absolute URL. Also, 373# if gitweb.cgi serves as your indexfile, you will need to force 374# $my_uri to contain the script name in your $GITWEB_CONFIG. 375'pathinfo'=> { 376'override'=>0, 377'default'=> [0]}, 378 379# Make gitweb consider projects in project root subdirectories 380# to be forks of existing projects. Given project $projname.git, 381# projects matching $projname/*.git will not be shown in the main 382# projects list, instead a '+' mark will be added to $projname 383# there and a 'forks' view will be enabled for the project, listing 384# all the forks. If project list is taken from a file, forks have 385# to be listed after the main project. 386 387# To enable system wide have in $GITWEB_CONFIG 388# $feature{'forks'}{'default'} = [1]; 389# Project specific override is not supported. 390'forks'=> { 391'override'=>0, 392'default'=> [0]}, 393 394# Insert custom links to the action bar of all project pages. 395# This enables you mainly to link to third-party scripts integrating 396# into gitweb; e.g. git-browser for graphical history representation 397# or custom web-based repository administration interface. 398 399# The 'default' value consists of a list of triplets in the form 400# (label, link, position) where position is the label after which 401# to insert the link and link is a format string where %n expands 402# to the project name, %f to the project path within the filesystem, 403# %h to the current hash (h gitweb parameter) and %b to the current 404# hash base (hb gitweb parameter); %% expands to %. 405 406# To enable system wide have in $GITWEB_CONFIG e.g. 407# $feature{'actions'}{'default'} = [('graphiclog', 408# '/git-browser/by-commit.html?r=%n', 'summary')]; 409# Project specific override is not supported. 410'actions'=> { 411'override'=>0, 412'default'=> []}, 413 414# Allow gitweb scan project content tags described in ctags/ 415# of project repository, and display the popular Web 2.0-ish 416# "tag cloud" near the project list. Note that this is something 417# COMPLETELY different from the normal Git tags. 418 419# gitweb by itself can show existing tags, but it does not handle 420# tagging itself; you need an external application for that. 421# For an example script, check Girocco's cgi/tagproj.cgi. 422# You may want to install the HTML::TagCloud Perl module to get 423# a pretty tag cloud instead of just a list of tags. 424 425# To enable system wide have in $GITWEB_CONFIG 426# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 427# Project specific override is not supported. 428'ctags'=> { 429'override'=>0, 430'default'=> [0]}, 431 432# The maximum number of patches in a patchset generated in patch 433# view. Set this to 0 or undef to disable patch view, or to a 434# negative number to remove any limit. 435 436# To disable system wide have in $GITWEB_CONFIG 437# $feature{'patches'}{'default'} = [0]; 438# To have project specific config enable override in $GITWEB_CONFIG 439# $feature{'patches'}{'override'} = 1; 440# and in project config gitweb.patches = 0|n; 441# where n is the maximum number of patches allowed in a patchset. 442'patches'=> { 443'sub'=> \&feature_patches, 444'override'=>0, 445'default'=> [16]}, 446 447# Avatar support. When this feature is enabled, views such as 448# shortlog or commit will display an avatar associated with 449# the email of the committer(s) and/or author(s). 450 451# Currently available providers are gravatar and picon. 452# If an unknown provider is specified, the feature is disabled. 453 454# Gravatar depends on Digest::MD5. 455# Picon currently relies on the indiana.edu database. 456 457# To enable system wide have in $GITWEB_CONFIG 458# $feature{'avatar'}{'default'} = ['<provider>']; 459# where <provider> is either gravatar or picon. 460# To have project specific config enable override in $GITWEB_CONFIG 461# $feature{'avatar'}{'override'} = 1; 462# and in project config gitweb.avatar = <provider>; 463'avatar'=> { 464'sub'=> \&feature_avatar, 465'override'=>0, 466'default'=> ['']}, 467 468# Enable displaying how much time and how many git commands 469# it took to generate and display page. Disabled by default. 470# Project specific override is not supported. 471'timed'=> { 472'override'=>0, 473'default'=> [0]}, 474 475# Enable turning some links into links to actions which require 476# JavaScript to run (like 'blame_incremental'). Not enabled by 477# default. Project specific override is currently not supported. 478'javascript-actions'=> { 479'override'=>0, 480'default'=> [0]}, 481 482# Syntax highlighting support. This is based on Daniel Svensson's 483# and Sham Chukoury's work in gitweb-xmms2.git. 484# It requires the 'highlight' program present in $PATH, 485# and therefore is disabled by default. 486 487# To enable system wide have in $GITWEB_CONFIG 488# $feature{'highlight'}{'default'} = [1]; 489 490'highlight'=> { 491'sub'=>sub{ feature_bool('highlight',@_) }, 492'override'=>0, 493'default'=> [0]}, 494 495# Enable displaying of remote heads in the heads list 496 497# To enable system wide have in $GITWEB_CONFIG 498# $feature{'remote_heads'}{'default'} = [1]; 499# To have project specific config enable override in $GITWEB_CONFIG 500# $feature{'remote_heads'}{'override'} = 1; 501# and in project config gitweb.remote_heads = 0|1; 502'remote_heads'=> { 503'sub'=>sub{ feature_bool('remote_heads',@_) }, 504'override'=>0, 505'default'=> [0]}, 506); 507 508sub gitweb_get_feature { 509my($name) =@_; 510return unlessexists$feature{$name}; 511my($sub,$override,@defaults) = ( 512$feature{$name}{'sub'}, 513$feature{$name}{'override'}, 514@{$feature{$name}{'default'}}); 515# project specific override is possible only if we have project 516our$git_dir;# global variable, declared later 517if(!$override|| !defined$git_dir) { 518return@defaults; 519} 520if(!defined$sub) { 521warn"feature$nameis not overridable"; 522return@defaults; 523} 524return$sub->(@defaults); 525} 526 527# A wrapper to check if a given feature is enabled. 528# With this, you can say 529# 530# my $bool_feat = gitweb_check_feature('bool_feat'); 531# gitweb_check_feature('bool_feat') or somecode; 532# 533# instead of 534# 535# my ($bool_feat) = gitweb_get_feature('bool_feat'); 536# (gitweb_get_feature('bool_feat'))[0] or somecode; 537# 538sub gitweb_check_feature { 539return(gitweb_get_feature(@_))[0]; 540} 541 542 543sub feature_bool { 544my$key=shift; 545my($val) = git_get_project_config($key,'--bool'); 546 547if(!defined$val) { 548return($_[0]); 549}elsif($valeq'true') { 550return(1); 551}elsif($valeq'false') { 552return(0); 553} 554} 555 556sub feature_snapshot { 557my(@fmts) =@_; 558 559my($val) = git_get_project_config('snapshot'); 560 561if($val) { 562@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 563} 564 565return@fmts; 566} 567 568sub feature_patches { 569my@val= (git_get_project_config('patches','--int')); 570 571if(@val) { 572return@val; 573} 574 575return($_[0]); 576} 577 578sub feature_avatar { 579my@val= (git_get_project_config('avatar')); 580 581return@val?@val:@_; 582} 583 584# checking HEAD file with -e is fragile if the repository was 585# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 586# and then pruned. 587sub check_head_link { 588my($dir) =@_; 589my$headfile="$dir/HEAD"; 590return((-e $headfile) || 591(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 592} 593 594sub check_export_ok { 595my($dir) =@_; 596return(check_head_link($dir) && 597(!$export_ok|| -e "$dir/$export_ok") && 598(!$export_auth_hook||$export_auth_hook->($dir))); 599} 600 601# process alternate names for backward compatibility 602# filter out unsupported (unknown) snapshot formats 603sub filter_snapshot_fmts { 604my@fmts=@_; 605 606@fmts=map{ 607exists$known_snapshot_format_aliases{$_} ? 608$known_snapshot_format_aliases{$_} :$_}@fmts; 609@fmts=grep{ 610exists$known_snapshot_formats{$_} && 611!$known_snapshot_formats{$_}{'disabled'}}@fmts; 612} 613 614# If it is set to code reference, it is code that it is to be run once per 615# request, allowing updating configurations that change with each request, 616# while running other code in config file only once. 617# 618# Otherwise, if it is false then gitweb would process config file only once; 619# if it is true then gitweb config would be run for each request. 620our$per_request_config=1; 621 622our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 623sub evaluate_gitweb_config { 624our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 625our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 626# die if there are errors parsing config file 627if(-e $GITWEB_CONFIG) { 628do$GITWEB_CONFIG; 629die$@if$@; 630}elsif(-e $GITWEB_CONFIG_SYSTEM) { 631do$GITWEB_CONFIG_SYSTEM; 632die$@if$@; 633} 634} 635 636# Get loadavg of system, to compare against $maxload. 637# Currently it requires '/proc/loadavg' present to get loadavg; 638# if it is not present it returns 0, which means no load checking. 639sub get_loadavg { 640if( -e '/proc/loadavg'){ 641open my$fd,'<','/proc/loadavg' 642orreturn0; 643my@load=split(/\s+/,scalar<$fd>); 644close$fd; 645 646# The first three columns measure CPU and IO utilization of the last one, 647# five, and 10 minute periods. The fourth column shows the number of 648# currently running processes and the total number of processes in the m/n 649# format. The last column displays the last process ID used. 650return$load[0] ||0; 651} 652# additional checks for load average should go here for things that don't export 653# /proc/loadavg 654 655return0; 656} 657 658# version of the core git binary 659our$git_version; 660sub evaluate_git_version { 661our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 662$number_of_git_cmds++; 663} 664 665sub check_loadavg { 666if(defined$maxload&& get_loadavg() >$maxload) { 667 die_error(503,"The load average on the server is too high"); 668} 669} 670 671# ====================================================================== 672# input validation and dispatch 673 674# input parameters can be collected from a variety of sources (presently, CGI 675# and PATH_INFO), so we define an %input_params hash that collects them all 676# together during validation: this allows subsequent uses (e.g. href()) to be 677# agnostic of the parameter origin 678 679our%input_params= (); 680 681# input parameters are stored with the long parameter name as key. This will 682# also be used in the href subroutine to convert parameters to their CGI 683# equivalent, and since the href() usage is the most frequent one, we store 684# the name -> CGI key mapping here, instead of the reverse. 685# 686# XXX: Warning: If you touch this, check the search form for updating, 687# too. 688 689our@cgi_param_mapping= ( 690 project =>"p", 691 action =>"a", 692 file_name =>"f", 693 file_parent =>"fp", 694 hash =>"h", 695 hash_parent =>"hp", 696 hash_base =>"hb", 697 hash_parent_base =>"hpb", 698 page =>"pg", 699 order =>"o", 700 searchtext =>"s", 701 searchtype =>"st", 702 snapshot_format =>"sf", 703 extra_options =>"opt", 704 search_use_regexp =>"sr", 705# this must be last entry (for manipulation from JavaScript) 706 javascript =>"js" 707); 708our%cgi_param_mapping=@cgi_param_mapping; 709 710# we will also need to know the possible actions, for validation 711our%actions= ( 712"blame"=> \&git_blame, 713"blame_incremental"=> \&git_blame_incremental, 714"blame_data"=> \&git_blame_data, 715"blobdiff"=> \&git_blobdiff, 716"blobdiff_plain"=> \&git_blobdiff_plain, 717"blob"=> \&git_blob, 718"blob_plain"=> \&git_blob_plain, 719"commitdiff"=> \&git_commitdiff, 720"commitdiff_plain"=> \&git_commitdiff_plain, 721"commit"=> \&git_commit, 722"forks"=> \&git_forks, 723"heads"=> \&git_heads, 724"history"=> \&git_history, 725"log"=> \&git_log, 726"patch"=> \&git_patch, 727"patches"=> \&git_patches, 728"remotes"=> \&git_remotes, 729"rss"=> \&git_rss, 730"atom"=> \&git_atom, 731"search"=> \&git_search, 732"search_help"=> \&git_search_help, 733"shortlog"=> \&git_shortlog, 734"summary"=> \&git_summary, 735"tag"=> \&git_tag, 736"tags"=> \&git_tags, 737"tree"=> \&git_tree, 738"snapshot"=> \&git_snapshot, 739"object"=> \&git_object, 740# those below don't need $project 741"opml"=> \&git_opml, 742"project_list"=> \&git_project_list, 743"project_index"=> \&git_project_index, 744); 745 746# finally, we have the hash of allowed extra_options for the commands that 747# allow them 748our%allowed_options= ( 749"--no-merges"=> [qw(rss atom log shortlog history)], 750); 751 752# fill %input_params with the CGI parameters. All values except for 'opt' 753# should be single values, but opt can be an array. We should probably 754# build an array of parameters that can be multi-valued, but since for the time 755# being it's only this one, we just single it out 756sub evaluate_query_params { 757our$cgi; 758 759while(my($name,$symbol) =each%cgi_param_mapping) { 760if($symboleq'opt') { 761$input_params{$name} = [$cgi->param($symbol) ]; 762}else{ 763$input_params{$name} =$cgi->param($symbol); 764} 765} 766} 767 768# now read PATH_INFO and update the parameter list for missing parameters 769sub evaluate_path_info { 770return ifdefined$input_params{'project'}; 771return if!$path_info; 772$path_info=~ s,^/+,,; 773return if!$path_info; 774 775# find which part of PATH_INFO is project 776my$project=$path_info; 777$project=~ s,/+$,,; 778while($project&& !check_head_link("$projectroot/$project")) { 779$project=~ s,/*[^/]*$,,; 780} 781return unless$project; 782$input_params{'project'} =$project; 783 784# do not change any parameters if an action is given using the query string 785return if$input_params{'action'}; 786$path_info=~ s,^\Q$project\E/*,,; 787 788# next, check if we have an action 789my$action=$path_info; 790$action=~ s,/.*$,,; 791if(exists$actions{$action}) { 792$path_info=~ s,^$action/*,,; 793$input_params{'action'} =$action; 794} 795 796# list of actions that want hash_base instead of hash, but can have no 797# pathname (f) parameter 798my@wants_base= ( 799'tree', 800'history', 801); 802 803# we want to catch, among others 804# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 805my($parentrefname,$parentpathname,$refname,$pathname) = 806($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 807 808# first, analyze the 'current' part 809if(defined$pathname) { 810# we got "branch:filename" or "branch:dir/" 811# we could use git_get_type(branch:pathname), but: 812# - it needs $git_dir 813# - it does a git() call 814# - the convention of terminating directories with a slash 815# makes it superfluous 816# - embedding the action in the PATH_INFO would make it even 817# more superfluous 818$pathname=~ s,^/+,,; 819if(!$pathname||substr($pathname, -1)eq"/") { 820$input_params{'action'} ||="tree"; 821$pathname=~ s,/$,,; 822}else{ 823# the default action depends on whether we had parent info 824# or not 825if($parentrefname) { 826$input_params{'action'} ||="blobdiff_plain"; 827}else{ 828$input_params{'action'} ||="blob_plain"; 829} 830} 831$input_params{'hash_base'} ||=$refname; 832$input_params{'file_name'} ||=$pathname; 833}elsif(defined$refname) { 834# we got "branch". In this case we have to choose if we have to 835# set hash or hash_base. 836# 837# Most of the actions without a pathname only want hash to be 838# set, except for the ones specified in @wants_base that want 839# hash_base instead. It should also be noted that hand-crafted 840# links having 'history' as an action and no pathname or hash 841# set will fail, but that happens regardless of PATH_INFO. 842if(defined$parentrefname) { 843# if there is parent let the default be 'shortlog' action 844# (for http://git.example.com/repo.git/A..B links); if there 845# is no parent, dispatch will detect type of object and set 846# action appropriately if required (if action is not set) 847$input_params{'action'} ||="shortlog"; 848} 849if($input_params{'action'} && 850grep{$_eq$input_params{'action'} }@wants_base) { 851$input_params{'hash_base'} ||=$refname; 852}else{ 853$input_params{'hash'} ||=$refname; 854} 855} 856 857# next, handle the 'parent' part, if present 858if(defined$parentrefname) { 859# a missing pathspec defaults to the 'current' filename, allowing e.g. 860# someproject/blobdiff/oldrev..newrev:/filename 861if($parentpathname) { 862$parentpathname=~ s,^/+,,; 863$parentpathname=~ s,/$,,; 864$input_params{'file_parent'} ||=$parentpathname; 865}else{ 866$input_params{'file_parent'} ||=$input_params{'file_name'}; 867} 868# we assume that hash_parent_base is wanted if a path was specified, 869# or if the action wants hash_base instead of hash 870if(defined$input_params{'file_parent'} || 871grep{$_eq$input_params{'action'} }@wants_base) { 872$input_params{'hash_parent_base'} ||=$parentrefname; 873}else{ 874$input_params{'hash_parent'} ||=$parentrefname; 875} 876} 877 878# for the snapshot action, we allow URLs in the form 879# $project/snapshot/$hash.ext 880# where .ext determines the snapshot and gets removed from the 881# passed $refname to provide the $hash. 882# 883# To be able to tell that $refname includes the format extension, we 884# require the following two conditions to be satisfied: 885# - the hash input parameter MUST have been set from the $refname part 886# of the URL (i.e. they must be equal) 887# - the snapshot format MUST NOT have been defined already (e.g. from 888# CGI parameter sf) 889# It's also useless to try any matching unless $refname has a dot, 890# so we check for that too 891if(defined$input_params{'action'} && 892$input_params{'action'}eq'snapshot'&& 893defined$refname&&index($refname,'.') != -1&& 894$refnameeq$input_params{'hash'} && 895!defined$input_params{'snapshot_format'}) { 896# We loop over the known snapshot formats, checking for 897# extensions. Allowed extensions are both the defined suffix 898# (which includes the initial dot already) and the snapshot 899# format key itself, with a prepended dot 900while(my($fmt,$opt) =each%known_snapshot_formats) { 901my$hash=$refname; 902unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 903next; 904} 905my$sfx=$1; 906# a valid suffix was found, so set the snapshot format 907# and reset the hash parameter 908$input_params{'snapshot_format'} =$fmt; 909$input_params{'hash'} =$hash; 910# we also set the format suffix to the one requested 911# in the URL: this way a request for e.g. .tgz returns 912# a .tgz instead of a .tar.gz 913$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 914last; 915} 916} 917} 918 919our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 920$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 921$searchtext,$search_regexp); 922sub evaluate_and_validate_params { 923our$action=$input_params{'action'}; 924if(defined$action) { 925if(!validate_action($action)) { 926 die_error(400,"Invalid action parameter"); 927} 928} 929 930# parameters which are pathnames 931our$project=$input_params{'project'}; 932if(defined$project) { 933if(!validate_project($project)) { 934undef$project; 935 die_error(404,"No such project"); 936} 937} 938 939our$file_name=$input_params{'file_name'}; 940if(defined$file_name) { 941if(!validate_pathname($file_name)) { 942 die_error(400,"Invalid file parameter"); 943} 944} 945 946our$file_parent=$input_params{'file_parent'}; 947if(defined$file_parent) { 948if(!validate_pathname($file_parent)) { 949 die_error(400,"Invalid file parent parameter"); 950} 951} 952 953# parameters which are refnames 954our$hash=$input_params{'hash'}; 955if(defined$hash) { 956if(!validate_refname($hash)) { 957 die_error(400,"Invalid hash parameter"); 958} 959} 960 961our$hash_parent=$input_params{'hash_parent'}; 962if(defined$hash_parent) { 963if(!validate_refname($hash_parent)) { 964 die_error(400,"Invalid hash parent parameter"); 965} 966} 967 968our$hash_base=$input_params{'hash_base'}; 969if(defined$hash_base) { 970if(!validate_refname($hash_base)) { 971 die_error(400,"Invalid hash base parameter"); 972} 973} 974 975our@extra_options= @{$input_params{'extra_options'}}; 976# @extra_options is always defined, since it can only be (currently) set from 977# CGI, and $cgi->param() returns the empty array in array context if the param 978# is not set 979foreachmy$opt(@extra_options) { 980if(not exists$allowed_options{$opt}) { 981 die_error(400,"Invalid option parameter"); 982} 983if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 984 die_error(400,"Invalid option parameter for this action"); 985} 986} 987 988our$hash_parent_base=$input_params{'hash_parent_base'}; 989if(defined$hash_parent_base) { 990if(!validate_refname($hash_parent_base)) { 991 die_error(400,"Invalid hash parent base parameter"); 992} 993} 994 995# other parameters 996our$page=$input_params{'page'}; 997if(defined$page) { 998if($page=~m/[^0-9]/) { 999 die_error(400,"Invalid page parameter");1000}1001}10021003our$searchtype=$input_params{'searchtype'};1004if(defined$searchtype) {1005if($searchtype=~m/[^a-z]/) {1006 die_error(400,"Invalid searchtype parameter");1007}1008}10091010our$search_use_regexp=$input_params{'search_use_regexp'};10111012our$searchtext=$input_params{'searchtext'};1013our$search_regexp;1014if(defined$searchtext) {1015if(length($searchtext) <2) {1016 die_error(403,"At least two characters are required for search parameter");1017}1018$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1019}1020}10211022# path to the current git repository1023our$git_dir;1024sub evaluate_git_dir {1025our$git_dir="$projectroot/$project"if$project;1026}10271028our(@snapshot_fmts,$git_avatar);1029sub configure_gitweb_features {1030# list of supported snapshot formats1031our@snapshot_fmts= gitweb_get_feature('snapshot');1032@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10331034# check that the avatar feature is set to a known provider name,1035# and for each provider check if the dependencies are satisfied.1036# if the provider name is invalid or the dependencies are not met,1037# reset $git_avatar to the empty string.1038our($git_avatar) = gitweb_get_feature('avatar');1039if($git_avatareq'gravatar') {1040$git_avatar=''unless(eval{require Digest::MD5;1; });1041}elsif($git_avatareq'picon') {1042# no dependencies1043}else{1044$git_avatar='';1045}1046}10471048# custom error handler: 'die <message>' is Internal Server Error1049sub handle_errors_html {1050my$msg=shift;# it is already HTML escaped10511052# to avoid infinite loop where error occurs in die_error,1053# change handler to default handler, disabling handle_errors_html1054 set_message("Error occured when inside die_error:\n$msg");10551056# you cannot jump out of die_error when called as error handler;1057# the subroutine set via CGI::Carp::set_message is called _after_1058# HTTP headers are already written, so it cannot write them itself1059 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1060}1061set_message(\&handle_errors_html);10621063# dispatch1064sub dispatch {1065if(!defined$action) {1066if(defined$hash) {1067$action= git_get_type($hash);1068}elsif(defined$hash_base&&defined$file_name) {1069$action= git_get_type("$hash_base:$file_name");1070}elsif(defined$project) {1071$action='summary';1072}else{1073$action='project_list';1074}1075}1076if(!defined($actions{$action})) {1077 die_error(400,"Unknown action");1078}1079if($action!~m/^(?:opml|project_list|project_index)$/&&1080!$project) {1081 die_error(400,"Project needed");1082}1083$actions{$action}->();1084}10851086sub reset_timer {1087our$t0= [ gettimeofday() ]1088ifdefined$t0;1089our$number_of_git_cmds=0;1090}10911092our$first_request=1;1093sub run_request {1094 reset_timer();10951096 evaluate_uri();1097if($first_request) {1098 evaluate_gitweb_config();1099 evaluate_git_version();1100}1101if($per_request_config) {1102if(ref($per_request_config)eq'CODE') {1103$per_request_config->();1104}elsif(!$first_request) {1105 evaluate_gitweb_config();1106}1107}1108 check_loadavg();11091110# $projectroot and $projects_list might be set in gitweb config file1111$projects_list||=$projectroot;11121113 evaluate_query_params();1114 evaluate_path_info();1115 evaluate_and_validate_params();1116 evaluate_git_dir();11171118 configure_gitweb_features();11191120 dispatch();1121}11221123our$is_last_request=sub{1};1124our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1125our$CGI='CGI';1126our$cgi;1127sub configure_as_fcgi {1128require CGI::Fast;1129our$CGI='CGI::Fast';11301131my$request_number=0;1132# let each child service 100 requests1133our$is_last_request=sub{ ++$request_number>100};1134}1135sub evaluate_argv {1136my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1137 configure_as_fcgi()1138if$script_name=~/\.fcgi$/;11391140return unless(@ARGV);11411142require Getopt::Long;1143 Getopt::Long::GetOptions(1144'fastcgi|fcgi|f'=> \&configure_as_fcgi,1145'nproc|n=i'=>sub{1146my($arg,$val) =@_;1147return unlesseval{require FCGI::ProcManager;1; };1148my$proc_manager= FCGI::ProcManager->new({1149 n_processes =>$val,1150});1151our$pre_listen_hook=sub{$proc_manager->pm_manage() };1152our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1153our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1154},1155);1156}11571158sub run {1159 evaluate_argv();11601161$first_request=1;1162$pre_listen_hook->()1163if$pre_listen_hook;11641165 REQUEST:1166while($cgi=$CGI->new()) {1167$pre_dispatch_hook->()1168if$pre_dispatch_hook;11691170 run_request();11711172$post_dispatch_hook->()1173if$post_dispatch_hook;1174$first_request=0;11751176last REQUEST if($is_last_request->());1177}11781179 DONE_GITWEB:11801;1181}11821183run();11841185if(defined caller) {1186# wrapped in a subroutine processing requests,1187# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1188return;1189}else{1190# pure CGI script, serving single request1191exit;1192}11931194## ======================================================================1195## action links11961197# possible values of extra options1198# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1199# -replay => 1 - start from a current view (replay with modifications)1200# -path_info => 0|1 - don't use/use path_info URL (if possible)1201sub href {1202my%params=@_;1203# default is to use -absolute url() i.e. $my_uri1204my$href=$params{-full} ?$my_url:$my_uri;12051206$params{'project'} =$projectunlessexists$params{'project'};12071208if($params{-replay}) {1209while(my($name,$symbol) =each%cgi_param_mapping) {1210if(!exists$params{$name}) {1211$params{$name} =$input_params{$name};1212}1213}1214}12151216my$use_pathinfo= gitweb_check_feature('pathinfo');1217if(defined$params{'project'} &&1218(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1219# try to put as many parameters as possible in PATH_INFO:1220# - project name1221# - action1222# - hash_parent or hash_parent_base:/file_parent1223# - hash or hash_base:/filename1224# - the snapshot_format as an appropriate suffix12251226# When the script is the root DirectoryIndex for the domain,1227# $href here would be something like http://gitweb.example.com/1228# Thus, we strip any trailing / from $href, to spare us double1229# slashes in the final URL1230$href=~ s,/$,,;12311232# Then add the project name, if present1233$href.="/".esc_path_info($params{'project'});1234delete$params{'project'};12351236# since we destructively absorb parameters, we keep this1237# boolean that remembers if we're handling a snapshot1238my$is_snapshot=$params{'action'}eq'snapshot';12391240# Summary just uses the project path URL, any other action is1241# added to the URL1242if(defined$params{'action'}) {1243$href.="/".esc_path_info($params{'action'})1244unless$params{'action'}eq'summary';1245delete$params{'action'};1246}12471248# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1249# stripping nonexistent or useless pieces1250$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1251||$params{'hash_parent'} ||$params{'hash'});1252if(defined$params{'hash_base'}) {1253if(defined$params{'hash_parent_base'}) {1254$href.= esc_path_info($params{'hash_parent_base'});1255# skip the file_parent if it's the same as the file_name1256if(defined$params{'file_parent'}) {1257if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1258delete$params{'file_parent'};1259}elsif($params{'file_parent'} !~/\.\./) {1260$href.=":/".esc_path_info($params{'file_parent'});1261delete$params{'file_parent'};1262}1263}1264$href.="..";1265delete$params{'hash_parent'};1266delete$params{'hash_parent_base'};1267}elsif(defined$params{'hash_parent'}) {1268$href.= esc_path_info($params{'hash_parent'})."..";1269delete$params{'hash_parent'};1270}12711272$href.= esc_path_info($params{'hash_base'});1273if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1274$href.=":/".esc_path_info($params{'file_name'});1275delete$params{'file_name'};1276}1277delete$params{'hash'};1278delete$params{'hash_base'};1279}elsif(defined$params{'hash'}) {1280$href.= esc_path_info($params{'hash'});1281delete$params{'hash'};1282}12831284# If the action was a snapshot, we can absorb the1285# snapshot_format parameter too1286if($is_snapshot) {1287my$fmt=$params{'snapshot_format'};1288# snapshot_format should always be defined when href()1289# is called, but just in case some code forgets, we1290# fall back to the default1291$fmt||=$snapshot_fmts[0];1292$href.=$known_snapshot_formats{$fmt}{'suffix'};1293delete$params{'snapshot_format'};1294}1295}12961297# now encode the parameters explicitly1298my@result= ();1299for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1300my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1301if(defined$params{$name}) {1302if(ref($params{$name})eq"ARRAY") {1303foreachmy$par(@{$params{$name}}) {1304push@result,$symbol."=". esc_param($par);1305}1306}else{1307push@result,$symbol."=". esc_param($params{$name});1308}1309}1310}1311$href.="?".join(';',@result)ifscalar@result;13121313# final transformation: trailing spaces must be escaped (URI-encoded)1314$href=~s/(\s+)$/CGI::escape($1)/e;13151316return$href;1317}131813191320## ======================================================================1321## validation, quoting/unquoting and escaping13221323sub validate_action {1324my$input=shift||returnundef;1325returnundefunlessexists$actions{$input};1326return$input;1327}13281329sub validate_project {1330my$input=shift||returnundef;1331if(!validate_pathname($input) ||1332!(-d "$projectroot/$input") ||1333!check_export_ok("$projectroot/$input") ||1334($strict_export&& !project_in_list($input))) {1335returnundef;1336}else{1337return$input;1338}1339}13401341sub validate_pathname {1342my$input=shift||returnundef;13431344# no '.' or '..' as elements of path, i.e. no '.' nor '..'1345# at the beginning, at the end, and between slashes.1346# also this catches doubled slashes1347if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1348returnundef;1349}1350# no null characters1351if($input=~m!\0!) {1352returnundef;1353}1354return$input;1355}13561357sub validate_refname {1358my$input=shift||returnundef;13591360# textual hashes are O.K.1361if($input=~m/^[0-9a-fA-F]{40}$/) {1362return$input;1363}1364# it must be correct pathname1365$input= validate_pathname($input)1366orreturnundef;1367# restrictions on ref name according to git-check-ref-format1368if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1369returnundef;1370}1371return$input;1372}13731374# decode sequences of octets in utf8 into Perl's internal form,1375# which is utf-8 with utf8 flag set if needed. gitweb writes out1376# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1377sub to_utf8 {1378my$str=shift;1379returnundefunlessdefined$str;1380if(utf8::valid($str)) {1381 utf8::decode($str);1382return$str;1383}else{1384return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1385}1386}13871388# quote unsafe chars, but keep the slash, even when it's not1389# correct, but quoted slashes look too horrible in bookmarks1390sub esc_param {1391my$str=shift;1392returnundefunlessdefined$str;1393$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1394$str=~s/ /\+/g;1395return$str;1396}13971398# the quoting rules for path_info fragment are slightly different1399sub esc_path_info {1400my$str=shift;1401returnundefunlessdefined$str;14021403# path_info doesn't treat '+' as space (specially), but '?' must be escaped1404$str=~s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;14051406return$str;1407}14081409# quote unsafe chars in whole URL, so some characters cannot be quoted1410sub esc_url {1411my$str=shift;1412returnundefunlessdefined$str;1413$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1414$str=~s/ /\+/g;1415return$str;1416}14171418# quote unsafe characters in HTML attributes1419sub esc_attr {14201421# for XHTML conformance escaping '"' to '"' is not enough1422return esc_html(@_);1423}14241425# replace invalid utf8 character with SUBSTITUTION sequence1426sub esc_html {1427my$str=shift;1428my%opts=@_;14291430returnundefunlessdefined$str;14311432$str= to_utf8($str);1433$str=$cgi->escapeHTML($str);1434if($opts{'-nbsp'}) {1435$str=~s/ / /g;1436}1437$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1438return$str;1439}14401441# quote control characters and escape filename to HTML1442sub esc_path {1443my$str=shift;1444my%opts=@_;14451446returnundefunlessdefined$str;14471448$str= to_utf8($str);1449$str=$cgi->escapeHTML($str);1450if($opts{'-nbsp'}) {1451$str=~s/ / /g;1452}1453$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1454return$str;1455}14561457# Make control characters "printable", using character escape codes (CEC)1458sub quot_cec {1459my$cntrl=shift;1460my%opts=@_;1461my%es= (# character escape codes, aka escape sequences1462"\t"=>'\t',# tab (HT)1463"\n"=>'\n',# line feed (LF)1464"\r"=>'\r',# carrige return (CR)1465"\f"=>'\f',# form feed (FF)1466"\b"=>'\b',# backspace (BS)1467"\a"=>'\a',# alarm (bell) (BEL)1468"\e"=>'\e',# escape (ESC)1469"\013"=>'\v',# vertical tab (VT)1470"\000"=>'\0',# nul character (NUL)1471);1472my$chr= ( (exists$es{$cntrl})1473?$es{$cntrl}1474:sprintf('\%2x',ord($cntrl)) );1475if($opts{-nohtml}) {1476return$chr;1477}else{1478return"<span class=\"cntrl\">$chr</span>";1479}1480}14811482# Alternatively use unicode control pictures codepoints,1483# Unicode "printable representation" (PR)1484sub quot_upr {1485my$cntrl=shift;1486my%opts=@_;14871488my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1489if($opts{-nohtml}) {1490return$chr;1491}else{1492return"<span class=\"cntrl\">$chr</span>";1493}1494}14951496# git may return quoted and escaped filenames1497sub unquote {1498my$str=shift;14991500sub unq {1501my$seq=shift;1502my%es= (# character escape codes, aka escape sequences1503't'=>"\t",# tab (HT, TAB)1504'n'=>"\n",# newline (NL)1505'r'=>"\r",# return (CR)1506'f'=>"\f",# form feed (FF)1507'b'=>"\b",# backspace (BS)1508'a'=>"\a",# alarm (bell) (BEL)1509'e'=>"\e",# escape (ESC)1510'v'=>"\013",# vertical tab (VT)1511);15121513if($seq=~m/^[0-7]{1,3}$/) {1514# octal char sequence1515returnchr(oct($seq));1516}elsif(exists$es{$seq}) {1517# C escape sequence, aka character escape code1518return$es{$seq};1519}1520# quoted ordinary character1521return$seq;1522}15231524if($str=~m/^"(.*)"$/) {1525# needs unquoting1526$str=$1;1527$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1528}1529return$str;1530}15311532# escape tabs (convert tabs to spaces)1533sub untabify {1534my$line=shift;15351536while((my$pos=index($line,"\t")) != -1) {1537if(my$count= (8- ($pos%8))) {1538my$spaces=' ' x $count;1539$line=~s/\t/$spaces/;1540}1541}15421543return$line;1544}15451546sub project_in_list {1547my$project=shift;1548my@list= git_get_projects_list();1549return@list&&scalar(grep{$_->{'path'}eq$project}@list);1550}15511552## ----------------------------------------------------------------------1553## HTML aware string manipulation15541555# Try to chop given string on a word boundary between position1556# $len and $len+$add_len. If there is no word boundary there,1557# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1558# (marking chopped part) would be longer than given string.1559sub chop_str {1560my$str=shift;1561my$len=shift;1562my$add_len=shift||10;1563my$where=shift||'right';# 'left' | 'center' | 'right'15641565# Make sure perl knows it is utf8 encoded so we don't1566# cut in the middle of a utf8 multibyte char.1567$str= to_utf8($str);15681569# allow only $len chars, but don't cut a word if it would fit in $add_len1570# if it doesn't fit, cut it if it's still longer than the dots we would add1571# remove chopped character entities entirely15721573# when chopping in the middle, distribute $len into left and right part1574# return early if chopping wouldn't make string shorter1575if($whereeq'center') {1576return$strif($len+5>=length($str));# filler is length 51577$len=int($len/2);1578}else{1579return$strif($len+4>=length($str));# filler is length 41580}15811582# regexps: ending and beginning with word part up to $add_len1583my$endre=qr/.{$len}\w{0,$add_len}/;1584my$begre=qr/\w{0,$add_len}.{$len}/;15851586if($whereeq'left') {1587$str=~m/^(.*?)($begre)$/;1588my($lead,$body) = ($1,$2);1589if(length($lead) >4) {1590$lead=" ...";1591}1592return"$lead$body";15931594}elsif($whereeq'center') {1595$str=~m/^($endre)(.*)$/;1596my($left,$str) = ($1,$2);1597$str=~m/^(.*?)($begre)$/;1598my($mid,$right) = ($1,$2);1599if(length($mid) >5) {1600$mid=" ... ";1601}1602return"$left$mid$right";16031604}else{1605$str=~m/^($endre)(.*)$/;1606my$body=$1;1607my$tail=$2;1608if(length($tail) >4) {1609$tail="... ";1610}1611return"$body$tail";1612}1613}16141615# takes the same arguments as chop_str, but also wraps a <span> around the1616# result with a title attribute if it does get chopped. Additionally, the1617# string is HTML-escaped.1618sub chop_and_escape_str {1619my($str) =@_;16201621my$chopped= chop_str(@_);1622if($choppedeq$str) {1623return esc_html($chopped);1624}else{1625$str=~s/[[:cntrl:]]/?/g;1626return$cgi->span({-title=>$str}, esc_html($chopped));1627}1628}16291630## ----------------------------------------------------------------------1631## functions returning short strings16321633# CSS class for given age value (in seconds)1634sub age_class {1635my$age=shift;16361637if(!defined$age) {1638return"noage";1639}elsif($age<60*60*2) {1640return"age0";1641}elsif($age<60*60*24*2) {1642return"age1";1643}else{1644return"age2";1645}1646}16471648# convert age in seconds to "nn units ago" string1649sub age_string {1650my$age=shift;1651my$age_str;16521653if($age>60*60*24*365*2) {1654$age_str= (int$age/60/60/24/365);1655$age_str.=" years ago";1656}elsif($age>60*60*24*(365/12)*2) {1657$age_str=int$age/60/60/24/(365/12);1658$age_str.=" months ago";1659}elsif($age>60*60*24*7*2) {1660$age_str=int$age/60/60/24/7;1661$age_str.=" weeks ago";1662}elsif($age>60*60*24*2) {1663$age_str=int$age/60/60/24;1664$age_str.=" days ago";1665}elsif($age>60*60*2) {1666$age_str=int$age/60/60;1667$age_str.=" hours ago";1668}elsif($age>60*2) {1669$age_str=int$age/60;1670$age_str.=" min ago";1671}elsif($age>2) {1672$age_str=int$age;1673$age_str.=" sec ago";1674}else{1675$age_str.=" right now";1676}1677return$age_str;1678}16791680useconstant{1681 S_IFINVALID =>0030000,1682 S_IFGITLINK =>0160000,1683};16841685# submodule/subproject, a commit object reference1686sub S_ISGITLINK {1687my$mode=shift;16881689return(($mode& S_IFMT) == S_IFGITLINK)1690}16911692# convert file mode in octal to symbolic file mode string1693sub mode_str {1694my$mode=oct shift;16951696if(S_ISGITLINK($mode)) {1697return'm---------';1698}elsif(S_ISDIR($mode& S_IFMT)) {1699return'drwxr-xr-x';1700}elsif(S_ISLNK($mode)) {1701return'lrwxrwxrwx';1702}elsif(S_ISREG($mode)) {1703# git cares only about the executable bit1704if($mode& S_IXUSR) {1705return'-rwxr-xr-x';1706}else{1707return'-rw-r--r--';1708};1709}else{1710return'----------';1711}1712}17131714# convert file mode in octal to file type string1715sub file_type {1716my$mode=shift;17171718if($mode!~m/^[0-7]+$/) {1719return$mode;1720}else{1721$mode=oct$mode;1722}17231724if(S_ISGITLINK($mode)) {1725return"submodule";1726}elsif(S_ISDIR($mode& S_IFMT)) {1727return"directory";1728}elsif(S_ISLNK($mode)) {1729return"symlink";1730}elsif(S_ISREG($mode)) {1731return"file";1732}else{1733return"unknown";1734}1735}17361737# convert file mode in octal to file type description string1738sub file_type_long {1739my$mode=shift;17401741if($mode!~m/^[0-7]+$/) {1742return$mode;1743}else{1744$mode=oct$mode;1745}17461747if(S_ISGITLINK($mode)) {1748return"submodule";1749}elsif(S_ISDIR($mode& S_IFMT)) {1750return"directory";1751}elsif(S_ISLNK($mode)) {1752return"symlink";1753}elsif(S_ISREG($mode)) {1754if($mode& S_IXUSR) {1755return"executable";1756}else{1757return"file";1758};1759}else{1760return"unknown";1761}1762}176317641765## ----------------------------------------------------------------------1766## functions returning short HTML fragments, or transforming HTML fragments1767## which don't belong to other sections17681769# format line of commit message.1770sub format_log_line_html {1771my$line=shift;17721773$line= esc_html($line, -nbsp=>1);1774$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1775$cgi->a({-href => href(action=>"object", hash=>$1),1776-class=>"text"},$1);1777}eg;17781779return$line;1780}17811782# format marker of refs pointing to given object17831784# the destination action is chosen based on object type and current context:1785# - for annotated tags, we choose the tag view unless it's the current view1786# already, in which case we go to shortlog view1787# - for other refs, we keep the current view if we're in history, shortlog or1788# log view, and select shortlog otherwise1789sub format_ref_marker {1790my($refs,$id) =@_;1791my$markers='';17921793if(defined$refs->{$id}) {1794foreachmy$ref(@{$refs->{$id}}) {1795# this code exploits the fact that non-lightweight tags are the1796# only indirect objects, and that they are the only objects for which1797# we want to use tag instead of shortlog as action1798my($type,$name) =qw();1799my$indirect= ($ref=~s/\^\{\}$//);1800# e.g. tags/v2.6.11 or heads/next1801if($ref=~m!^(.*?)s?/(.*)$!) {1802$type=$1;1803$name=$2;1804}else{1805$type="ref";1806$name=$ref;1807}18081809my$class=$type;1810$class.=" indirect"if$indirect;18111812my$dest_action="shortlog";18131814if($indirect) {1815$dest_action="tag"unless$actioneq"tag";1816}elsif($action=~/^(history|(short)?log)$/) {1817$dest_action=$action;1818}18191820my$dest="";1821$dest.="refs/"unless$ref=~ m!^refs/!;1822$dest.=$ref;18231824my$link=$cgi->a({1825-href => href(1826 action=>$dest_action,1827 hash=>$dest1828)},$name);18291830$markers.=" <span class=\"".esc_attr($class)."\"title=\"".esc_attr($ref)."\">".1831$link."</span>";1832}1833}18341835if($markers) {1836return' <span class="refs">'.$markers.'</span>';1837}else{1838return"";1839}1840}18411842# format, perhaps shortened and with markers, title line1843sub format_subject_html {1844my($long,$short,$href,$extra) =@_;1845$extra=''unlessdefined($extra);18461847if(length($short) <length($long)) {1848$long=~s/[[:cntrl:]]/?/g;1849return$cgi->a({-href =>$href, -class=>"list subject",1850-title => to_utf8($long)},1851 esc_html($short)) .$extra;1852}else{1853return$cgi->a({-href =>$href, -class=>"list subject"},1854 esc_html($long)) .$extra;1855}1856}18571858# Rather than recomputing the url for an email multiple times, we cache it1859# after the first hit. This gives a visible benefit in views where the avatar1860# for the same email is used repeatedly (e.g. shortlog).1861# The cache is shared by all avatar engines (currently gravatar only), which1862# are free to use it as preferred. Since only one avatar engine is used for any1863# given page, there's no risk for cache conflicts.1864our%avatar_cache= ();18651866# Compute the picon url for a given email, by using the picon search service over at1867# http://www.cs.indiana.edu/picons/search.html1868sub picon_url {1869my$email=lc shift;1870if(!$avatar_cache{$email}) {1871my($user,$domain) =split('@',$email);1872$avatar_cache{$email} =1873"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1874"$domain/$user/".1875"users+domains+unknown/up/single";1876}1877return$avatar_cache{$email};1878}18791880# Compute the gravatar url for a given email, if it's not in the cache already.1881# Gravatar stores only the part of the URL before the size, since that's the1882# one computationally more expensive. This also allows reuse of the cache for1883# different sizes (for this particular engine).1884sub gravatar_url {1885my$email=lc shift;1886my$size=shift;1887$avatar_cache{$email} ||=1888"http://www.gravatar.com/avatar/".1889 Digest::MD5::md5_hex($email) ."?s=";1890return$avatar_cache{$email} .$size;1891}18921893# Insert an avatar for the given $email at the given $size if the feature1894# is enabled.1895sub git_get_avatar {1896my($email,%opts) =@_;1897my$pre_white= ($opts{-pad_before} ?" ":"");1898my$post_white= ($opts{-pad_after} ?" ":"");1899$opts{-size} ||='default';1900my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1901my$url="";1902if($git_avatareq'gravatar') {1903$url= gravatar_url($email,$size);1904}elsif($git_avatareq'picon') {1905$url= picon_url($email);1906}1907# Other providers can be added by extending the if chain, defining $url1908# as needed. If no variant puts something in $url, we assume avatars1909# are completely disabled/unavailable.1910if($url) {1911return$pre_white.1912"<img width=\"$size\"".1913"class=\"avatar\"".1914"src=\"".esc_url($url)."\"".1915"alt=\"\"".1916"/>".$post_white;1917}else{1918return"";1919}1920}19211922sub format_search_author {1923my($author,$searchtype,$displaytext) =@_;1924my$have_search= gitweb_check_feature('search');19251926if($have_search) {1927my$performed="";1928if($searchtypeeq'author') {1929$performed="authored";1930}elsif($searchtypeeq'committer') {1931$performed="committed";1932}19331934return$cgi->a({-href => href(action=>"search", hash=>$hash,1935 searchtext=>$author,1936 searchtype=>$searchtype),class=>"list",1937 title=>"Search for commits$performedby$author"},1938$displaytext);19391940}else{1941return$displaytext;1942}1943}19441945# format the author name of the given commit with the given tag1946# the author name is chopped and escaped according to the other1947# optional parameters (see chop_str).1948sub format_author_html {1949my$tag=shift;1950my$co=shift;1951my$author= chop_and_escape_str($co->{'author_name'},@_);1952return"<$tagclass=\"author\">".1953 format_search_author($co->{'author_name'},"author",1954 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1955$author) .1956"</$tag>";1957}19581959# format git diff header line, i.e. "diff --(git|combined|cc) ..."1960sub format_git_diff_header_line {1961my$line=shift;1962my$diffinfo=shift;1963my($from,$to) =@_;19641965if($diffinfo->{'nparents'}) {1966# combined diff1967$line=~s!^(diff (.*?) )"?.*$!$1!;1968if($to->{'href'}) {1969$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1970 esc_path($to->{'file'}));1971}else{# file was deleted (no href)1972$line.= esc_path($to->{'file'});1973}1974}else{1975# "ordinary" diff1976$line=~s!^(diff (.*?) )"?a/.*$!$1!;1977if($from->{'href'}) {1978$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1979'a/'. esc_path($from->{'file'}));1980}else{# file was added (no href)1981$line.='a/'. esc_path($from->{'file'});1982}1983$line.=' ';1984if($to->{'href'}) {1985$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1986'b/'. esc_path($to->{'file'}));1987}else{# file was deleted1988$line.='b/'. esc_path($to->{'file'});1989}1990}19911992return"<div class=\"diff header\">$line</div>\n";1993}19941995# format extended diff header line, before patch itself1996sub format_extended_diff_header_line {1997my$line=shift;1998my$diffinfo=shift;1999my($from,$to) =@_;20002001# match <path>2002if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {2003$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},2004 esc_path($from->{'file'}));2005}2006if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {2007$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},2008 esc_path($to->{'file'}));2009}2010# match single <mode>2011if($line=~m/\s(\d{6})$/) {2012$line.='<span class="info"> ('.2013 file_type_long($1) .2014')</span>';2015}2016# match <hash>2017if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {2018# can match only for combined diff2019$line='index ';2020for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2021if($from->{'href'}[$i]) {2022$line.=$cgi->a({-href=>$from->{'href'}[$i],2023-class=>"hash"},2024substr($diffinfo->{'from_id'}[$i],0,7));2025}else{2026$line.='0' x 7;2027}2028# separator2029$line.=','if($i<$diffinfo->{'nparents'} -1);2030}2031$line.='..';2032if($to->{'href'}) {2033$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2034substr($diffinfo->{'to_id'},0,7));2035}else{2036$line.='0' x 7;2037}20382039}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2040# can match only for ordinary diff2041my($from_link,$to_link);2042if($from->{'href'}) {2043$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2044substr($diffinfo->{'from_id'},0,7));2045}else{2046$from_link='0' x 7;2047}2048if($to->{'href'}) {2049$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2050substr($diffinfo->{'to_id'},0,7));2051}else{2052$to_link='0' x 7;2053}2054my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2055$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2056}20572058return$line."<br/>\n";2059}20602061# format from-file/to-file diff header2062sub format_diff_from_to_header {2063my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2064my$line;2065my$result='';20662067$line=$from_line;2068#assert($line =~ m/^---/) if DEBUG;2069# no extra formatting for "^--- /dev/null"2070if(!$diffinfo->{'nparents'}) {2071# ordinary (single parent) diff2072if($line=~m!^--- "?a/!) {2073if($from->{'href'}) {2074$line='--- a/'.2075$cgi->a({-href=>$from->{'href'}, -class=>"path"},2076 esc_path($from->{'file'}));2077}else{2078$line='--- a/'.2079 esc_path($from->{'file'});2080}2081}2082$result.= qq!<div class="diff from_file">$line</div>\n!;20832084}else{2085# combined diff (merge commit)2086for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2087if($from->{'href'}[$i]) {2088$line='--- '.2089$cgi->a({-href=>href(action=>"blobdiff",2090 hash_parent=>$diffinfo->{'from_id'}[$i],2091 hash_parent_base=>$parents[$i],2092 file_parent=>$from->{'file'}[$i],2093 hash=>$diffinfo->{'to_id'},2094 hash_base=>$hash,2095 file_name=>$to->{'file'}),2096-class=>"path",2097-title=>"diff". ($i+1)},2098$i+1) .2099'/'.2100$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2101 esc_path($from->{'file'}[$i]));2102}else{2103$line='--- /dev/null';2104}2105$result.= qq!<div class="diff from_file">$line</div>\n!;2106}2107}21082109$line=$to_line;2110#assert($line =~ m/^\+\+\+/) if DEBUG;2111# no extra formatting for "^+++ /dev/null"2112if($line=~m!^\+\+\+ "?b/!) {2113if($to->{'href'}) {2114$line='+++ b/'.2115$cgi->a({-href=>$to->{'href'}, -class=>"path"},2116 esc_path($to->{'file'}));2117}else{2118$line='+++ b/'.2119 esc_path($to->{'file'});2120}2121}2122$result.= qq!<div class="diff to_file">$line</div>\n!;21232124return$result;2125}21262127# create note for patch simplified by combined diff2128sub format_diff_cc_simplified {2129my($diffinfo,@parents) =@_;2130my$result='';21312132$result.="<div class=\"diff header\">".2133"diff --cc ";2134if(!is_deleted($diffinfo)) {2135$result.=$cgi->a({-href => href(action=>"blob",2136 hash_base=>$hash,2137 hash=>$diffinfo->{'to_id'},2138 file_name=>$diffinfo->{'to_file'}),2139-class=>"path"},2140 esc_path($diffinfo->{'to_file'}));2141}else{2142$result.= esc_path($diffinfo->{'to_file'});2143}2144$result.="</div>\n".# class="diff header"2145"<div class=\"diff nodifferences\">".2146"Simple merge".2147"</div>\n";# class="diff nodifferences"21482149return$result;2150}21512152# format patch (diff) line (not to be used for diff headers)2153sub format_diff_line {2154my$line=shift;2155my($from,$to) =@_;2156my$diff_class="";21572158chomp$line;21592160if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2161# combined diff2162my$prefix=substr($line,0,scalar@{$from->{'href'}});2163if($line=~m/^\@{3}/) {2164$diff_class=" chunk_header";2165}elsif($line=~m/^\\/) {2166$diff_class=" incomplete";2167}elsif($prefix=~tr/+/+/) {2168$diff_class=" add";2169}elsif($prefix=~tr/-/-/) {2170$diff_class=" rem";2171}2172}else{2173# assume ordinary diff2174my$char=substr($line,0,1);2175if($chareq'+') {2176$diff_class=" add";2177}elsif($chareq'-') {2178$diff_class=" rem";2179}elsif($chareq'@') {2180$diff_class=" chunk_header";2181}elsif($chareq"\\") {2182$diff_class=" incomplete";2183}2184}2185$line= untabify($line);2186if($from&&$to&&$line=~m/^\@{2} /) {2187my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2188$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21892190$from_lines=0unlessdefined$from_lines;2191$to_lines=0unlessdefined$to_lines;21922193if($from->{'href'}) {2194$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2195-class=>"list"},$from_text);2196}2197if($to->{'href'}) {2198$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2199-class=>"list"},$to_text);2200}2201$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2202"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2203return"<div class=\"diff$diff_class\">$line</div>\n";2204}elsif($from&&$to&&$line=~m/^\@{3}/) {2205my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2206my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);22072208@from_text=split(' ',$ranges);2209for(my$i=0;$i<@from_text; ++$i) {2210($from_start[$i],$from_nlines[$i]) =2211(split(',',substr($from_text[$i],1)),0);2212}22132214$to_text=pop@from_text;2215$to_start=pop@from_start;2216$to_nlines=pop@from_nlines;22172218$line="<span class=\"chunk_info\">$prefix";2219for(my$i=0;$i<@from_text; ++$i) {2220if($from->{'href'}[$i]) {2221$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2222-class=>"list"},$from_text[$i]);2223}else{2224$line.=$from_text[$i];2225}2226$line.=" ";2227}2228if($to->{'href'}) {2229$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2230-class=>"list"},$to_text);2231}else{2232$line.=$to_text;2233}2234$line.="$prefix</span>".2235"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2236return"<div class=\"diff$diff_class\">$line</div>\n";2237}2238return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2239}22402241# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2242# linked. Pass the hash of the tree/commit to snapshot.2243sub format_snapshot_links {2244my($hash) =@_;2245my$num_fmts=@snapshot_fmts;2246if($num_fmts>1) {2247# A parenthesized list of links bearing format names.2248# e.g. "snapshot (_tar.gz_ _zip_)"2249return"snapshot (".join(' ',map2250$cgi->a({2251-href => href(2252 action=>"snapshot",2253 hash=>$hash,2254 snapshot_format=>$_2255)2256},$known_snapshot_formats{$_}{'display'})2257,@snapshot_fmts) .")";2258}elsif($num_fmts==1) {2259# A single "snapshot" link whose tooltip bears the format name.2260# i.e. "_snapshot_"2261my($fmt) =@snapshot_fmts;2262return2263$cgi->a({2264-href => href(2265 action=>"snapshot",2266 hash=>$hash,2267 snapshot_format=>$fmt2268),2269-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2270},"snapshot");2271}else{# $num_fmts == 02272returnundef;2273}2274}22752276## ......................................................................2277## functions returning values to be passed, perhaps after some2278## transformation, to other functions; e.g. returning arguments to href()22792280# returns hash to be passed to href to generate gitweb URL2281# in -title key it returns description of link2282sub get_feed_info {2283my$format=shift||'Atom';2284my%res= (action =>lc($format));22852286# feed links are possible only for project views2287return unless(defined$project);2288# some views should link to OPML, or to generic project feed,2289# or don't have specific feed yet (so they should use generic)2290return if($action=~/^(?:tags|heads|forks|tag|search)$/x);22912292my$branch;2293# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2294# from tag links; this also makes possible to detect branch links2295if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2296(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2297$branch=$1;2298}2299# find log type for feed description (title)2300my$type='log';2301if(defined$file_name) {2302$type="history of$file_name";2303$type.="/"if($actioneq'tree');2304$type.=" on '$branch'"if(defined$branch);2305}else{2306$type="log of$branch"if(defined$branch);2307}23082309$res{-title} =$type;2310$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2311$res{'file_name'} =$file_name;23122313return%res;2314}23152316## ----------------------------------------------------------------------2317## git utility subroutines, invoking git commands23182319# returns path to the core git executable and the --git-dir parameter as list2320sub git_cmd {2321$number_of_git_cmds++;2322return$GIT,'--git-dir='.$git_dir;2323}23242325# quote the given arguments for passing them to the shell2326# quote_command("command", "arg 1", "arg with ' and ! characters")2327# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2328# Try to avoid using this function wherever possible.2329sub quote_command {2330returnjoin(' ',2331map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2332}23332334# get HEAD ref of given project as hash2335sub git_get_head_hash {2336return git_get_full_hash(shift,'HEAD');2337}23382339sub git_get_full_hash {2340return git_get_hash(@_);2341}23422343sub git_get_short_hash {2344return git_get_hash(@_,'--short=7');2345}23462347sub git_get_hash {2348my($project,$hash,@options) =@_;2349my$o_git_dir=$git_dir;2350my$retval=undef;2351$git_dir="$projectroot/$project";2352if(open my$fd,'-|', git_cmd(),'rev-parse',2353'--verify','-q',@options,$hash) {2354$retval= <$fd>;2355chomp$retvalifdefined$retval;2356close$fd;2357}2358if(defined$o_git_dir) {2359$git_dir=$o_git_dir;2360}2361return$retval;2362}23632364# get type of given object2365sub git_get_type {2366my$hash=shift;23672368open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2369my$type= <$fd>;2370close$fdorreturn;2371chomp$type;2372return$type;2373}23742375# repository configuration2376our$config_file='';2377our%config;23782379# store multiple values for single key as anonymous array reference2380# single values stored directly in the hash, not as [ <value> ]2381sub hash_set_multi {2382my($hash,$key,$value) =@_;23832384if(!exists$hash->{$key}) {2385$hash->{$key} =$value;2386}elsif(!ref$hash->{$key}) {2387$hash->{$key} = [$hash->{$key},$value];2388}else{2389push@{$hash->{$key}},$value;2390}2391}23922393# return hash of git project configuration2394# optionally limited to some section, e.g. 'gitweb'2395sub git_parse_project_config {2396my$section_regexp=shift;2397my%config;23982399local$/="\0";24002401open my$fh,"-|", git_cmd(),"config",'-z','-l',2402orreturn;24032404while(my$keyval= <$fh>) {2405chomp$keyval;2406my($key,$value) =split(/\n/,$keyval,2);24072408 hash_set_multi(\%config,$key,$value)2409if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2410}2411close$fh;24122413return%config;2414}24152416# convert config value to boolean: 'true' or 'false'2417# no value, number > 0, 'true' and 'yes' values are true2418# rest of values are treated as false (never as error)2419sub config_to_bool {2420my$val=shift;24212422return1if!defined$val;# section.key24232424# strip leading and trailing whitespace2425$val=~s/^\s+//;2426$val=~s/\s+$//;24272428return(($val=~/^\d+$/&&$val) ||# section.key = 12429($val=~/^(?:true|yes)$/i));# section.key = true2430}24312432# convert config value to simple decimal number2433# an optional value suffix of 'k', 'm', or 'g' will cause the value2434# to be multiplied by 1024, 1048576, or 10737418242435sub config_to_int {2436my$val=shift;24372438# strip leading and trailing whitespace2439$val=~s/^\s+//;2440$val=~s/\s+$//;24412442if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2443$unit=lc($unit);2444# unknown unit is treated as 12445return$num* ($uniteq'g'?1073741824:2446$uniteq'm'?1048576:2447$uniteq'k'?1024:1);2448}2449return$val;2450}24512452# convert config value to array reference, if needed2453sub config_to_multi {2454my$val=shift;24552456returnref($val) ?$val: (defined($val) ? [$val] : []);2457}24582459sub git_get_project_config {2460my($key,$type) =@_;24612462return unlessdefined$git_dir;24632464# key sanity check2465return unless($key);2466$key=~s/^gitweb\.//;2467return if($key=~m/\W/);24682469# type sanity check2470if(defined$type) {2471$type=~s/^--//;2472$type=undef2473unless($typeeq'bool'||$typeeq'int');2474}24752476# get config2477if(!defined$config_file||2478$config_filene"$git_dir/config") {2479%config= git_parse_project_config('gitweb');2480$config_file="$git_dir/config";2481}24822483# check if config variable (key) exists2484return unlessexists$config{"gitweb.$key"};24852486# ensure given type2487if(!defined$type) {2488return$config{"gitweb.$key"};2489}elsif($typeeq'bool') {2490# backward compatibility: 'git config --bool' returns true/false2491return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2492}elsif($typeeq'int') {2493return config_to_int($config{"gitweb.$key"});2494}2495return$config{"gitweb.$key"};2496}24972498# get hash of given path at given ref2499sub git_get_hash_by_path {2500my$base=shift;2501my$path=shift||returnundef;2502my$type=shift;25032504$path=~ s,/+$,,;25052506open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2507or die_error(500,"Open git-ls-tree failed");2508my$line= <$fd>;2509close$fdorreturnundef;25102511if(!defined$line) {2512# there is no tree or hash given by $path at $base2513returnundef;2514}25152516#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2517$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2518if(defined$type&&$typene$2) {2519# type doesn't match2520returnundef;2521}2522return$3;2523}25242525# get path of entry with given hash at given tree-ish (ref)2526# used to get 'from' filename for combined diff (merge commit) for renames2527sub git_get_path_by_hash {2528my$base=shift||return;2529my$hash=shift||return;25302531local$/="\0";25322533open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2534orreturnundef;2535while(my$line= <$fd>) {2536chomp$line;25372538#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2539#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2540if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2541close$fd;2542return$1;2543}2544}2545close$fd;2546returnundef;2547}25482549## ......................................................................2550## git utility functions, directly accessing git repository25512552sub git_get_project_description {2553my$path=shift;25542555$git_dir="$projectroot/$path";2556open my$fd,'<',"$git_dir/description"2557orreturn git_get_project_config('description');2558my$descr= <$fd>;2559close$fd;2560if(defined$descr) {2561chomp$descr;2562}2563return$descr;2564}25652566sub git_get_project_ctags {2567my$path=shift;2568my$ctags= {};25692570$git_dir="$projectroot/$path";2571opendir my$dh,"$git_dir/ctags"2572orreturn$ctags;2573foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2574open my$ct,'<',$_ornext;2575my$val= <$ct>;2576chomp$val;2577close$ct;2578my$ctag=$_;$ctag=~ s#.*/##;2579$ctags->{$ctag} =$val;2580}2581closedir$dh;2582$ctags;2583}25842585sub git_populate_project_tagcloud {2586my$ctags=shift;25872588# First, merge different-cased tags; tags vote on casing2589my%ctags_lc;2590foreach(keys%$ctags) {2591$ctags_lc{lc$_}->{count} +=$ctags->{$_};2592if(not$ctags_lc{lc$_}->{topcount}2593or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2594$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2595$ctags_lc{lc$_}->{topname} =$_;2596}2597}25982599my$cloud;2600if(eval{require HTML::TagCloud;1; }) {2601$cloud= HTML::TagCloud->new;2602foreach(sort keys%ctags_lc) {2603# Pad the title with spaces so that the cloud looks2604# less crammed.2605my$title=$ctags_lc{$_}->{topname};2606$title=~s/ / /g;2607$title=~s/^/ /g;2608$title=~s/$/ /g;2609$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2610}2611}else{2612$cloud= \%ctags_lc;2613}2614$cloud;2615}26162617sub git_show_project_tagcloud {2618my($cloud,$count) =@_;2619print STDERR ref($cloud)."..\n";2620if(ref$cloudeq'HTML::TagCloud') {2621return$cloud->html_and_css($count);2622}else{2623my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2624return'<p align="center">'.join(', ',map{2625$cgi->a({-href=>"$home_link?by_tag=$_"},$cloud->{$_}->{topname})2626}splice(@tags,0,$count)) .'</p>';2627}2628}26292630sub git_get_project_url_list {2631my$path=shift;26322633$git_dir="$projectroot/$path";2634open my$fd,'<',"$git_dir/cloneurl"2635orreturnwantarray?2636@{ config_to_multi(git_get_project_config('url')) } :2637 config_to_multi(git_get_project_config('url'));2638my@git_project_url_list=map{chomp;$_} <$fd>;2639close$fd;26402641returnwantarray?@git_project_url_list: \@git_project_url_list;2642}26432644sub git_get_projects_list {2645my($filter) =@_;2646my@list;26472648$filter||='';2649$filter=~s/\.git$//;26502651my$check_forks= gitweb_check_feature('forks');26522653if(-d $projects_list) {2654# search in directory2655my$dir=$projects_list. ($filter?"/$filter":'');2656# remove the trailing "/"2657$dir=~s!/+$!!;2658my$pfxlen=length("$dir");2659my$pfxdepth= ($dir=~tr!/!!);26602661 File::Find::find({2662 follow_fast =>1,# follow symbolic links2663 follow_skip =>2,# ignore duplicates2664 dangling_symlinks =>0,# ignore dangling symlinks, silently2665 wanted =>sub{2666# global variables2667our$project_maxdepth;2668our$projectroot;2669# skip project-list toplevel, if we get it.2670return if(m!^[/.]$!);2671# only directories can be git repositories2672return unless(-d $_);2673# don't traverse too deep (Find is super slow on os x)2674if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2675$File::Find::prune =1;2676return;2677}26782679my$subdir=substr($File::Find::name,$pfxlen+1);2680# we check related file in $projectroot2681my$path= ($filter?"$filter/":'') .$subdir;2682if(check_export_ok("$projectroot/$path")) {2683push@list, { path =>$path};2684$File::Find::prune =1;2685}2686},2687},"$dir");26882689}elsif(-f $projects_list) {2690# read from file(url-encoded):2691# 'git%2Fgit.git Linus+Torvalds'2692# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2693# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2694my%paths;2695open my$fd,'<',$projects_listorreturn;2696 PROJECT:2697while(my$line= <$fd>) {2698chomp$line;2699my($path,$owner) =split' ',$line;2700$path= unescape($path);2701$owner= unescape($owner);2702if(!defined$path) {2703next;2704}2705if($filterne'') {2706# looking for forks;2707my$pfx=substr($path,0,length($filter));2708if($pfxne$filter) {2709next PROJECT;2710}2711my$sfx=substr($path,length($filter));2712if($sfx!~/^\/.*\.git$/) {2713next PROJECT;2714}2715}elsif($check_forks) {2716 PATH:2717foreachmy$filter(keys%paths) {2718# looking for forks;2719my$pfx=substr($path,0,length($filter));2720if($pfxne$filter) {2721next PATH;2722}2723my$sfx=substr($path,length($filter));2724if($sfx!~/^\/.*\.git$/) {2725next PATH;2726}2727# is a fork, don't include it in2728# the list2729next PROJECT;2730}2731}2732if(check_export_ok("$projectroot/$path")) {2733my$pr= {2734 path =>$path,2735 owner => to_utf8($owner),2736};2737push@list,$pr;2738(my$forks_path=$path) =~s/\.git$//;2739$paths{$forks_path}++;2740}2741}2742close$fd;2743}2744return@list;2745}27462747our$gitweb_project_owner=undef;2748sub git_get_project_list_from_file {27492750return if(defined$gitweb_project_owner);27512752$gitweb_project_owner= {};2753# read from file (url-encoded):2754# 'git%2Fgit.git Linus+Torvalds'2755# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2756# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2757if(-f $projects_list) {2758open(my$fd,'<',$projects_list);2759while(my$line= <$fd>) {2760chomp$line;2761my($pr,$ow) =split' ',$line;2762$pr= unescape($pr);2763$ow= unescape($ow);2764$gitweb_project_owner->{$pr} = to_utf8($ow);2765}2766close$fd;2767}2768}27692770sub git_get_project_owner {2771my$project=shift;2772my$owner;27732774returnundefunless$project;2775$git_dir="$projectroot/$project";27762777if(!defined$gitweb_project_owner) {2778 git_get_project_list_from_file();2779}27802781if(exists$gitweb_project_owner->{$project}) {2782$owner=$gitweb_project_owner->{$project};2783}2784if(!defined$owner){2785$owner= git_get_project_config('owner');2786}2787if(!defined$owner) {2788$owner= get_file_owner("$git_dir");2789}27902791return$owner;2792}27932794sub git_get_last_activity {2795my($path) =@_;2796my$fd;27972798$git_dir="$projectroot/$path";2799open($fd,"-|", git_cmd(),'for-each-ref',2800'--format=%(committer)',2801'--sort=-committerdate',2802'--count=1',2803'refs/heads')orreturn;2804my$most_recent= <$fd>;2805close$fdorreturn;2806if(defined$most_recent&&2807$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2808my$timestamp=$1;2809my$age=time-$timestamp;2810return($age, age_string($age));2811}2812return(undef,undef);2813}28142815# Implementation note: when a single remote is wanted, we cannot use 'git2816# remote show -n' because that command always work (assuming it's a remote URL2817# if it's not defined), and we cannot use 'git remote show' because that would2818# try to make a network roundtrip. So the only way to find if that particular2819# remote is defined is to walk the list provided by 'git remote -v' and stop if2820# and when we find what we want.2821sub git_get_remotes_list {2822my$wanted=shift;2823my%remotes= ();28242825open my$fd,'-|', git_cmd(),'remote','-v';2826return unless$fd;2827while(my$remote= <$fd>) {2828chomp$remote;2829$remote=~s!\t(.*?)\s+\((\w+)\)$!!;2830next if$wantedand not$remoteeq$wanted;2831my($url,$key) = ($1,$2);28322833$remotes{$remote} ||= {'heads'=> () };2834$remotes{$remote}{$key} =$url;2835}2836close$fdorreturn;2837returnwantarray?%remotes: \%remotes;2838}28392840# Takes a hash of remotes as first parameter and fills it by adding the2841# available remote heads for each of the indicated remotes.2842sub fill_remote_heads {2843my$remotes=shift;2844my@heads=map{"remotes/$_"}keys%$remotes;2845my@remoteheads= git_get_heads_list(undef,@heads);2846foreachmy$remote(keys%$remotes) {2847$remotes->{$remote}{'heads'} = [grep{2848$_->{'name'} =~s!^$remote/!!2849}@remoteheads];2850}2851}28522853sub git_get_references {2854my$type=shift||"";2855my%refs;2856# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112857# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2858open my$fd,"-|", git_cmd(),"show-ref","--dereference",2859($type? ("--","refs/$type") : ())# use -- <pattern> if $type2860orreturn;28612862while(my$line= <$fd>) {2863chomp$line;2864if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2865if(defined$refs{$1}) {2866push@{$refs{$1}},$2;2867}else{2868$refs{$1} = [$2];2869}2870}2871}2872close$fdorreturn;2873return \%refs;2874}28752876sub git_get_rev_name_tags {2877my$hash=shift||returnundef;28782879open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2880orreturn;2881my$name_rev= <$fd>;2882close$fd;28832884if($name_rev=~ m|^$hash tags/(.*)$|) {2885return$1;2886}else{2887# catches also '$hash undefined' output2888returnundef;2889}2890}28912892## ----------------------------------------------------------------------2893## parse to hash functions28942895sub parse_date {2896my$epoch=shift;2897my$tz=shift||"-0000";28982899my%date;2900my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2901my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2902my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2903$date{'hour'} =$hour;2904$date{'minute'} =$min;2905$date{'mday'} =$mday;2906$date{'day'} =$days[$wday];2907$date{'month'} =$months[$mon];2908$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2909$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2910$date{'mday-time'} =sprintf"%d%s%02d:%02d",2911$mday,$months[$mon],$hour,$min;2912$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",29131900+$year,1+$mon,$mday,$hour,$min,$sec;29142915$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2916my$local=$epoch+ ((int$1+ ($2/60)) *3600);2917($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2918$date{'hour_local'} =$hour;2919$date{'minute_local'} =$min;2920$date{'tz_local'} =$tz;2921$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",29221900+$year,$mon+1,$mday,2923$hour,$min,$sec,$tz);2924return%date;2925}29262927sub parse_tag {2928my$tag_id=shift;2929my%tag;2930my@comment;29312932open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2933$tag{'id'} =$tag_id;2934while(my$line= <$fd>) {2935chomp$line;2936if($line=~m/^object ([0-9a-fA-F]{40})$/) {2937$tag{'object'} =$1;2938}elsif($line=~m/^type (.+)$/) {2939$tag{'type'} =$1;2940}elsif($line=~m/^tag (.+)$/) {2941$tag{'name'} =$1;2942}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2943$tag{'author'} =$1;2944$tag{'author_epoch'} =$2;2945$tag{'author_tz'} =$3;2946if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2947$tag{'author_name'} =$1;2948$tag{'author_email'} =$2;2949}else{2950$tag{'author_name'} =$tag{'author'};2951}2952}elsif($line=~m/--BEGIN/) {2953push@comment,$line;2954last;2955}elsif($lineeq"") {2956last;2957}2958}2959push@comment, <$fd>;2960$tag{'comment'} = \@comment;2961close$fdorreturn;2962if(!defined$tag{'name'}) {2963return2964};2965return%tag2966}29672968sub parse_commit_text {2969my($commit_text,$withparents) =@_;2970my@commit_lines=split'\n',$commit_text;2971my%co;29722973pop@commit_lines;# Remove '\0'29742975if(!@commit_lines) {2976return;2977}29782979my$header=shift@commit_lines;2980if($header!~m/^[0-9a-fA-F]{40}/) {2981return;2982}2983($co{'id'},my@parents) =split' ',$header;2984while(my$line=shift@commit_lines) {2985last if$lineeq"\n";2986if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2987$co{'tree'} =$1;2988}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2989push@parents,$1;2990}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2991$co{'author'} = to_utf8($1);2992$co{'author_epoch'} =$2;2993$co{'author_tz'} =$3;2994if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2995$co{'author_name'} =$1;2996$co{'author_email'} =$2;2997}else{2998$co{'author_name'} =$co{'author'};2999}3000}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {3001$co{'committer'} = to_utf8($1);3002$co{'committer_epoch'} =$2;3003$co{'committer_tz'} =$3;3004if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {3005$co{'committer_name'} =$1;3006$co{'committer_email'} =$2;3007}else{3008$co{'committer_name'} =$co{'committer'};3009}3010}3011}3012if(!defined$co{'tree'}) {3013return;3014};3015$co{'parents'} = \@parents;3016$co{'parent'} =$parents[0];30173018foreachmy$title(@commit_lines) {3019$title=~s/^ //;3020if($titlene"") {3021$co{'title'} = chop_str($title,80,5);3022# remove leading stuff of merges to make the interesting part visible3023if(length($title) >50) {3024$title=~s/^Automatic //;3025$title=~s/^merge (of|with) /Merge ... /i;3026if(length($title) >50) {3027$title=~s/(http|rsync):\/\///;3028}3029if(length($title) >50) {3030$title=~s/(master|www|rsync)\.//;3031}3032if(length($title) >50) {3033$title=~s/kernel.org:?//;3034}3035if(length($title) >50) {3036$title=~s/\/pub\/scm//;3037}3038}3039$co{'title_short'} = chop_str($title,50,5);3040last;3041}3042}3043if(!defined$co{'title'} ||$co{'title'}eq"") {3044$co{'title'} =$co{'title_short'} ='(no commit message)';3045}3046# remove added spaces3047foreachmy$line(@commit_lines) {3048$line=~s/^ //;3049}3050$co{'comment'} = \@commit_lines;30513052my$age=time-$co{'committer_epoch'};3053$co{'age'} =$age;3054$co{'age_string'} = age_string($age);3055my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3056if($age>60*60*24*7*2) {3057$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3058$co{'age_string_age'} =$co{'age_string'};3059}else{3060$co{'age_string_date'} =$co{'age_string'};3061$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3062}3063return%co;3064}30653066sub parse_commit {3067my($commit_id) =@_;3068my%co;30693070local$/="\0";30713072open my$fd,"-|", git_cmd(),"rev-list",3073"--parents",3074"--header",3075"--max-count=1",3076$commit_id,3077"--",3078or die_error(500,"Open git-rev-list failed");3079%co= parse_commit_text(<$fd>,1);3080close$fd;30813082return%co;3083}30843085sub parse_commits {3086my($commit_id,$maxcount,$skip,$filename,@args) =@_;3087my@cos;30883089$maxcount||=1;3090$skip||=0;30913092local$/="\0";30933094open my$fd,"-|", git_cmd(),"rev-list",3095"--header",3096@args,3097("--max-count=".$maxcount),3098("--skip=".$skip),3099@extra_options,3100$commit_id,3101"--",3102($filename? ($filename) : ())3103or die_error(500,"Open git-rev-list failed");3104while(my$line= <$fd>) {3105my%co= parse_commit_text($line);3106push@cos, \%co;3107}3108close$fd;31093110returnwantarray?@cos: \@cos;3111}31123113# parse line of git-diff-tree "raw" output3114sub parse_difftree_raw_line {3115my$line=shift;3116my%res;31173118# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3119# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3120if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3121$res{'from_mode'} =$1;3122$res{'to_mode'} =$2;3123$res{'from_id'} =$3;3124$res{'to_id'} =$4;3125$res{'status'} =$5;3126$res{'similarity'} =$6;3127if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3128($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3129}else{3130$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3131}3132}3133# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3134# combined diff (for merge commit)3135elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3136$res{'nparents'} =length($1);3137$res{'from_mode'} = [split(' ',$2) ];3138$res{'to_mode'} =pop@{$res{'from_mode'}};3139$res{'from_id'} = [split(' ',$3) ];3140$res{'to_id'} =pop@{$res{'from_id'}};3141$res{'status'} = [split('',$4) ];3142$res{'to_file'} = unquote($5);3143}3144# 'c512b523472485aef4fff9e57b229d9d243c967f'3145elsif($line=~m/^([0-9a-fA-F]{40})$/) {3146$res{'commit'} =$1;3147}31483149returnwantarray?%res: \%res;3150}31513152# wrapper: return parsed line of git-diff-tree "raw" output3153# (the argument might be raw line, or parsed info)3154sub parsed_difftree_line {3155my$line_or_ref=shift;31563157if(ref($line_or_ref)eq"HASH") {3158# pre-parsed (or generated by hand)3159return$line_or_ref;3160}else{3161return parse_difftree_raw_line($line_or_ref);3162}3163}31643165# parse line of git-ls-tree output3166sub parse_ls_tree_line {3167my$line=shift;3168my%opts=@_;3169my%res;31703171if($opts{'-l'}) {3172#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3173$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;31743175$res{'mode'} =$1;3176$res{'type'} =$2;3177$res{'hash'} =$3;3178$res{'size'} =$4;3179if($opts{'-z'}) {3180$res{'name'} =$5;3181}else{3182$res{'name'} = unquote($5);3183}3184}else{3185#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3186$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;31873188$res{'mode'} =$1;3189$res{'type'} =$2;3190$res{'hash'} =$3;3191if($opts{'-z'}) {3192$res{'name'} =$4;3193}else{3194$res{'name'} = unquote($4);3195}3196}31973198returnwantarray?%res: \%res;3199}32003201# generates _two_ hashes, references to which are passed as 2 and 3 argument3202sub parse_from_to_diffinfo {3203my($diffinfo,$from,$to,@parents) =@_;32043205if($diffinfo->{'nparents'}) {3206# combined diff3207$from->{'file'} = [];3208$from->{'href'} = [];3209 fill_from_file_info($diffinfo,@parents)3210unlessexists$diffinfo->{'from_file'};3211for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3212$from->{'file'}[$i] =3213defined$diffinfo->{'from_file'}[$i] ?3214$diffinfo->{'from_file'}[$i] :3215$diffinfo->{'to_file'};3216if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3217$from->{'href'}[$i] = href(action=>"blob",3218 hash_base=>$parents[$i],3219 hash=>$diffinfo->{'from_id'}[$i],3220 file_name=>$from->{'file'}[$i]);3221}else{3222$from->{'href'}[$i] =undef;3223}3224}3225}else{3226# ordinary (not combined) diff3227$from->{'file'} =$diffinfo->{'from_file'};3228if($diffinfo->{'status'}ne"A") {# not new (added) file3229$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3230 hash=>$diffinfo->{'from_id'},3231 file_name=>$from->{'file'});3232}else{3233delete$from->{'href'};3234}3235}32363237$to->{'file'} =$diffinfo->{'to_file'};3238if(!is_deleted($diffinfo)) {# file exists in result3239$to->{'href'} = href(action=>"blob", hash_base=>$hash,3240 hash=>$diffinfo->{'to_id'},3241 file_name=>$to->{'file'});3242}else{3243delete$to->{'href'};3244}3245}32463247## ......................................................................3248## parse to array of hashes functions32493250sub git_get_heads_list {3251my($limit,@classes) =@_;3252@classes= ('heads')unless@classes;3253my@patterns=map{"refs/$_"}@classes;3254my@headslist;32553256open my$fd,'-|', git_cmd(),'for-each-ref',3257($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3258'--format=%(objectname) %(refname) %(subject)%00%(committer)',3259@patterns3260orreturn;3261while(my$line= <$fd>) {3262my%ref_item;32633264chomp$line;3265my($refinfo,$committerinfo) =split(/\0/,$line);3266my($hash,$name,$title) =split(' ',$refinfo,3);3267my($committer,$epoch,$tz) =3268($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3269$ref_item{'fullname'} =$name;3270$name=~s!^refs/(?:head|remote)s/!!;32713272$ref_item{'name'} =$name;3273$ref_item{'id'} =$hash;3274$ref_item{'title'} =$title||'(no commit message)';3275$ref_item{'epoch'} =$epoch;3276if($epoch) {3277$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3278}else{3279$ref_item{'age'} ="unknown";3280}32813282push@headslist, \%ref_item;3283}3284close$fd;32853286returnwantarray?@headslist: \@headslist;3287}32883289sub git_get_tags_list {3290my$limit=shift;3291my@tagslist;32923293open my$fd,'-|', git_cmd(),'for-each-ref',3294($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3295'--format=%(objectname) %(objecttype) %(refname) '.3296'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3297'refs/tags'3298orreturn;3299while(my$line= <$fd>) {3300my%ref_item;33013302chomp$line;3303my($refinfo,$creatorinfo) =split(/\0/,$line);3304my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3305my($creator,$epoch,$tz) =3306($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3307$ref_item{'fullname'} =$name;3308$name=~s!^refs/tags/!!;33093310$ref_item{'type'} =$type;3311$ref_item{'id'} =$id;3312$ref_item{'name'} =$name;3313if($typeeq"tag") {3314$ref_item{'subject'} =$title;3315$ref_item{'reftype'} =$reftype;3316$ref_item{'refid'} =$refid;3317}else{3318$ref_item{'reftype'} =$type;3319$ref_item{'refid'} =$id;3320}33213322if($typeeq"tag"||$typeeq"commit") {3323$ref_item{'epoch'} =$epoch;3324if($epoch) {3325$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3326}else{3327$ref_item{'age'} ="unknown";3328}3329}33303331push@tagslist, \%ref_item;3332}3333close$fd;33343335returnwantarray?@tagslist: \@tagslist;3336}33373338## ----------------------------------------------------------------------3339## filesystem-related functions33403341sub get_file_owner {3342my$path=shift;33433344my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3345my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3346if(!defined$gcos) {3347returnundef;3348}3349my$owner=$gcos;3350$owner=~s/[,;].*$//;3351return to_utf8($owner);3352}33533354# assume that file exists3355sub insert_file {3356my$filename=shift;33573358open my$fd,'<',$filename;3359print map{ to_utf8($_) } <$fd>;3360close$fd;3361}33623363## ......................................................................3364## mimetype related functions33653366sub mimetype_guess_file {3367my$filename=shift;3368my$mimemap=shift;3369-r $mimemaporreturnundef;33703371my%mimemap;3372open(my$mh,'<',$mimemap)orreturnundef;3373while(<$mh>) {3374next ifm/^#/;# skip comments3375my($mimetype,$exts) =split(/\t+/);3376if(defined$exts) {3377my@exts=split(/\s+/,$exts);3378foreachmy$ext(@exts) {3379$mimemap{$ext} =$mimetype;3380}3381}3382}3383close($mh);33843385$filename=~/\.([^.]*)$/;3386return$mimemap{$1};3387}33883389sub mimetype_guess {3390my$filename=shift;3391my$mime;3392$filename=~/\./orreturnundef;33933394if($mimetypes_file) {3395my$file=$mimetypes_file;3396if($file!~m!^/!) {# if it is relative path3397# it is relative to project3398$file="$projectroot/$project/$file";3399}3400$mime= mimetype_guess_file($filename,$file);3401}3402$mime||= mimetype_guess_file($filename,'/etc/mime.types');3403return$mime;3404}34053406sub blob_mimetype {3407my$fd=shift;3408my$filename=shift;34093410if($filename) {3411my$mime= mimetype_guess($filename);3412$mimeandreturn$mime;3413}34143415# just in case3416return$default_blob_plain_mimetypeunless$fd;34173418if(-T $fd) {3419return'text/plain';3420}elsif(!$filename) {3421return'application/octet-stream';3422}elsif($filename=~m/\.png$/i) {3423return'image/png';3424}elsif($filename=~m/\.gif$/i) {3425return'image/gif';3426}elsif($filename=~m/\.jpe?g$/i) {3427return'image/jpeg';3428}else{3429return'application/octet-stream';3430}3431}34323433sub blob_contenttype {3434my($fd,$file_name,$type) =@_;34353436$type||= blob_mimetype($fd,$file_name);3437if($typeeq'text/plain'&&defined$default_text_plain_charset) {3438$type.="; charset=$default_text_plain_charset";3439}34403441return$type;3442}34433444# guess file syntax for syntax highlighting; return undef if no highlighting3445# the name of syntax can (in the future) depend on syntax highlighter used3446sub guess_file_syntax {3447my($highlight,$mimetype,$file_name) =@_;3448returnundefunless($highlight&&defined$file_name);3449my$basename= basename($file_name,'.in');3450return$highlight_basename{$basename}3451ifexists$highlight_basename{$basename};34523453$basename=~/\.([^.]*)$/;3454my$ext=$1orreturnundef;3455return$highlight_ext{$ext}3456ifexists$highlight_ext{$ext};34573458returnundef;3459}34603461# run highlighter and return FD of its output,3462# or return original FD if no highlighting3463sub run_highlighter {3464my($fd,$highlight,$syntax) =@_;3465return$fdunless($highlight&&defined$syntax);34663467close$fd3468or die_error(404,"Reading blob failed");3469open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3470 quote_command($highlight_bin).3471" --xhtml --fragment --syntax$syntax|"3472or die_error(500,"Couldn't open file or run syntax highlighter");3473return$fd;3474}34753476## ======================================================================3477## functions printing HTML: header, footer, error page34783479sub get_page_title {3480my$title= to_utf8($site_name);34813482return$titleunless(defined$project);3483$title.=" - ". to_utf8($project);34843485return$titleunless(defined$action);3486$title.="/$action";# $action is US-ASCII (7bit ASCII)34873488return$titleunless(defined$file_name);3489$title.=" - ". esc_path($file_name);3490if($actioneq"tree"&&$file_name!~ m|/$|) {3491$title.="/";3492}34933494return$title;3495}34963497sub print_feed_meta {3498if(defined$project) {3499my%href_params= get_feed_info();3500if(!exists$href_params{'-title'}) {3501$href_params{'-title'} ='log';3502}35033504foreachmy$formatqw(RSS Atom){3505my$type=lc($format);3506my%link_attr= (3507'-rel'=>'alternate',3508'-title'=> esc_attr("$project-$href_params{'-title'} -$formatfeed"),3509'-type'=>"application/$type+xml"3510);35113512$href_params{'action'} =$type;3513$link_attr{'-href'} = href(%href_params);3514print"<link ".3515"rel=\"$link_attr{'-rel'}\"".3516"title=\"$link_attr{'-title'}\"".3517"href=\"$link_attr{'-href'}\"".3518"type=\"$link_attr{'-type'}\"".3519"/>\n";35203521$href_params{'extra_options'} ='--no-merges';3522$link_attr{'-href'} = href(%href_params);3523$link_attr{'-title'} .=' (no merges)';3524print"<link ".3525"rel=\"$link_attr{'-rel'}\"".3526"title=\"$link_attr{'-title'}\"".3527"href=\"$link_attr{'-href'}\"".3528"type=\"$link_attr{'-type'}\"".3529"/>\n";3530}35313532}else{3533printf('<link rel="alternate" title="%sprojects list" '.3534'href="%s" type="text/plain; charset=utf-8" />'."\n",3535 esc_attr($site_name), href(project=>undef, action=>"project_index"));3536printf('<link rel="alternate" title="%sprojects feeds" '.3537'href="%s" type="text/x-opml" />'."\n",3538 esc_attr($site_name), href(project=>undef, action=>"opml"));3539}3540}35413542sub git_header_html {3543my$status=shift||"200 OK";3544my$expires=shift;3545my%opts=@_;35463547my$title= get_page_title();3548my$content_type;3549# require explicit support from the UA if we are to send the page as3550# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3551# we have to do this because MSIE sometimes globs '*/*', pretending to3552# support xhtml+xml but choking when it gets what it asked for.3553if(defined$cgi->http('HTTP_ACCEPT') &&3554$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3555$cgi->Accept('application/xhtml+xml') !=0) {3556$content_type='application/xhtml+xml';3557}else{3558$content_type='text/html';3559}3560print$cgi->header(-type=>$content_type, -charset =>'utf-8',3561-status=>$status, -expires =>$expires)3562unless($opts{'-no_http_header'});3563my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3564print<<EOF;3565<?xml version="1.0" encoding="utf-8"?>3566<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3567<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3568<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3569<!-- git core binaries version$git_version-->3570<head>3571<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3572<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3573<meta name="robots" content="index, nofollow"/>3574<title>$title</title>3575EOF3576# the stylesheet, favicon etc urls won't work correctly with path_info3577# unless we set the appropriate base URL3578if($ENV{'PATH_INFO'}) {3579print"<base href=\"".esc_url($base_url)."\"/>\n";3580}3581# print out each stylesheet that exist, providing backwards capability3582# for those people who defined $stylesheet in a config file3583if(defined$stylesheet) {3584print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3585}else{3586foreachmy$stylesheet(@stylesheets) {3587next unless$stylesheet;3588print'<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";3589}3590}3591 print_feed_meta()3592if($statuseq'200 OK');3593if(defined$favicon) {3594printqq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);3595}35963597print"</head>\n".3598"<body>\n";35993600if(defined$site_header&& -f $site_header) {3601 insert_file($site_header);3602}36033604print"<div class=\"page_header\">\n".3605$cgi->a({-href => esc_url($logo_url),3606-title =>$logo_label},3607qq(<img src=").esc_url($logo).qq(" width="72" height="27" alt="git" class="logo"/>));3608print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3609if(defined$project) {3610print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3611if(defined$action) {3612my$action_print=$action;3613if(defined$opts{-action_extra}) {3614$action_print=$cgi->a({-href => href(action=>$action)},3615$action);3616}3617print" /$action_print";3618}3619if(defined$opts{-action_extra}) {3620print" /$opts{-action_extra}";3621}3622print"\n";3623}3624print"</div>\n";36253626my$have_search= gitweb_check_feature('search');3627if(defined$project&&$have_search) {3628if(!defined$searchtext) {3629$searchtext="";3630}3631my$search_hash;3632if(defined$hash_base) {3633$search_hash=$hash_base;3634}elsif(defined$hash) {3635$search_hash=$hash;3636}else{3637$search_hash="HEAD";3638}3639my$action=$my_uri;3640my$use_pathinfo= gitweb_check_feature('pathinfo');3641if($use_pathinfo) {3642$action.="/".esc_url($project);3643}3644print$cgi->startform(-method=>"get", -action =>$action) .3645"<div class=\"search\">\n".3646(!$use_pathinfo&&3647$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3648$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3649$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3650$cgi->popup_menu(-name =>'st', -default=>'commit',3651-values=> ['commit','grep','author','committer','pickaxe']) .3652$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3653" search:\n",3654$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3655"<span title=\"Extended regular expression\">".3656$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3657-checked =>$search_use_regexp) .3658"</span>".3659"</div>".3660$cgi->end_form() ."\n";3661}3662}36633664sub git_footer_html {3665my$feed_class='rss_logo';36663667print"<div class=\"page_footer\">\n";3668if(defined$project) {3669my$descr= git_get_project_description($project);3670if(defined$descr) {3671print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3672}36733674my%href_params= get_feed_info();3675if(!%href_params) {3676$feed_class.=' generic';3677}3678$href_params{'-title'} ||='log';36793680foreachmy$formatqw(RSS Atom){3681$href_params{'action'} =lc($format);3682print$cgi->a({-href => href(%href_params),3683-title =>"$href_params{'-title'}$formatfeed",3684-class=>$feed_class},$format)."\n";3685}36863687}else{3688print$cgi->a({-href => href(project=>undef, action=>"opml"),3689-class=>$feed_class},"OPML") ." ";3690print$cgi->a({-href => href(project=>undef, action=>"project_index"),3691-class=>$feed_class},"TXT") ."\n";3692}3693print"</div>\n";# class="page_footer"36943695if(defined$t0&& gitweb_check_feature('timed')) {3696print"<div id=\"generating_info\">\n";3697print'This page took '.3698'<span id="generating_time" class="time_span">'.3699 tv_interval($t0, [ gettimeofday() ]).3700' seconds </span>'.3701' and '.3702'<span id="generating_cmd">'.3703$number_of_git_cmds.3704'</span> git commands '.3705" to generate.\n";3706print"</div>\n";# class="page_footer"3707}37083709if(defined$site_footer&& -f $site_footer) {3710 insert_file($site_footer);3711}37123713print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;3714if(defined$action&&3715$actioneq'blame_incremental') {3716print qq!<script type="text/javascript">\n!.3717 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3718 qq!"!. href() .qq!");\n!.3719 qq!</script>\n!;3720}elsif(gitweb_check_feature('javascript-actions')) {3721print qq!<script type="text/javascript">\n!.3722 qq!window.onload = fixLinks;\n!.3723 qq!</script>\n!;3724}37253726print"</body>\n".3727"</html>";3728}37293730# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3731# Example: die_error(404, 'Hash not found')3732# By convention, use the following status codes (as defined in RFC 2616):3733# 400: Invalid or missing CGI parameters, or3734# requested object exists but has wrong type.3735# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3736# this server or project.3737# 404: Requested object/revision/project doesn't exist.3738# 500: The server isn't configured properly, or3739# an internal error occurred (e.g. failed assertions caused by bugs), or3740# an unknown error occurred (e.g. the git binary died unexpectedly).3741# 503: The server is currently unavailable (because it is overloaded,3742# or down for maintenance). Generally, this is a temporary state.3743sub die_error {3744my$status=shift||500;3745my$error= esc_html(shift) ||"Internal Server Error";3746my$extra=shift;3747my%opts=@_;37483749my%http_responses= (3750400=>'400 Bad Request',3751403=>'403 Forbidden',3752404=>'404 Not Found',3753500=>'500 Internal Server Error',3754503=>'503 Service Unavailable',3755);3756 git_header_html($http_responses{$status},undef,%opts);3757print<<EOF;3758<div class="page_body">3759<br /><br />3760$status-$error3761<br />3762EOF3763if(defined$extra) {3764print"<hr />\n".3765"$extra\n";3766}3767print"</div>\n";37683769 git_footer_html();3770goto DONE_GITWEB3771unless($opts{'-error_handler'});3772}37733774## ----------------------------------------------------------------------3775## functions printing or outputting HTML: navigation37763777sub git_print_page_nav {3778my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3779$extra=''if!defined$extra;# pager or formats37803781my@navs=qw(summary shortlog log commit commitdiff tree);3782if($suppress) {3783@navs=grep{$_ne$suppress}@navs;3784}37853786my%arg=map{$_=> {action=>$_} }@navs;3787if(defined$head) {3788for(qw(commit commitdiff)) {3789$arg{$_}{'hash'} =$head;3790}3791if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3792for(qw(shortlog log)) {3793$arg{$_}{'hash'} =$head;3794}3795}3796}37973798$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3799$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;38003801my@actions= gitweb_get_feature('actions');3802my%repl= (3803'%'=>'%',3804'n'=>$project,# project name3805'f'=>$git_dir,# project path within filesystem3806'h'=>$treehead||'',# current hash ('h' parameter)3807'b'=>$treebase||'',# hash base ('hb' parameter)3808);3809while(@actions) {3810my($label,$link,$pos) =splice(@actions,0,3);3811# insert3812@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3813# munch munch3814$link=~s/%([%nfhb])/$repl{$1}/g;3815$arg{$label}{'_href'} =$link;3816}38173818print"<div class=\"page_nav\">\n".3819(join" | ",3820map{$_eq$current?3821$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3822}@navs);3823print"<br/>\n$extra<br/>\n".3824"</div>\n";3825}38263827# returns a submenu for the nagivation of the refs views (tags, heads,3828# remotes) with the current view disabled and the remotes view only3829# available if the feature is enabled3830sub format_ref_views {3831my($current) =@_;3832my@ref_views=qw{tags heads};3833push@ref_views,'remotes'if gitweb_check_feature('remote_heads');3834returnjoin" | ",map{3835$_eq$current?$_:3836$cgi->a({-href => href(action=>$_)},$_)3837}@ref_views3838}38393840sub format_paging_nav {3841my($action,$page,$has_next_link) =@_;3842my$paging_nav;384338443845if($page>0) {3846$paging_nav.=3847$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3848" ⋅ ".3849$cgi->a({-href => href(-replay=>1, page=>$page-1),3850-accesskey =>"p", -title =>"Alt-p"},"prev");3851}else{3852$paging_nav.="first ⋅ prev";3853}38543855if($has_next_link) {3856$paging_nav.=" ⋅ ".3857$cgi->a({-href => href(-replay=>1, page=>$page+1),3858-accesskey =>"n", -title =>"Alt-n"},"next");3859}else{3860$paging_nav.=" ⋅ next";3861}38623863return$paging_nav;3864}38653866## ......................................................................3867## functions printing or outputting HTML: div38683869sub git_print_header_div {3870my($action,$title,$hash,$hash_base) =@_;3871my%args= ();38723873$args{'action'} =$action;3874$args{'hash'} =$hashif$hash;3875$args{'hash_base'} =$hash_baseif$hash_base;38763877print"<div class=\"header\">\n".3878$cgi->a({-href => href(%args), -class=>"title"},3879$title?$title:$action) .3880"\n</div>\n";3881}38823883sub format_repo_url {3884my($name,$url) =@_;3885return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";3886}38873888# Group output by placing it in a DIV element and adding a header.3889# Options for start_div() can be provided by passing a hash reference as the3890# first parameter to the function.3891# Options to git_print_header_div() can be provided by passing an array3892# reference. This must follow the options to start_div if they are present.3893# The content can be a scalar, which is output as-is, a scalar reference, which3894# is output after html escaping, an IO handle passed either as *handle or3895# *handle{IO}, or a function reference. In the latter case all following3896# parameters will be taken as argument to the content function call.3897sub git_print_section {3898my($div_args,$header_args,$content);3899my$arg=shift;3900if(ref($arg)eq'HASH') {3901$div_args=$arg;3902$arg=shift;3903}3904if(ref($arg)eq'ARRAY') {3905$header_args=$arg;3906$arg=shift;3907}3908$content=$arg;39093910print$cgi->start_div($div_args);3911 git_print_header_div(@$header_args);39123913if(ref($content)eq'CODE') {3914$content->(@_);3915}elsif(ref($content)eq'SCALAR') {3916print esc_html($$content);3917}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {3918print<$content>;3919}elsif(!ref($content) &&defined($content)) {3920print$content;3921}39223923print$cgi->end_div;3924}39253926sub print_local_time {3927print format_local_time(@_);3928}39293930sub format_local_time {3931my$localtime='';3932my%date=@_;3933if($date{'hour_local'} <6) {3934$localtime.=sprintf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3935$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3936}else{3937$localtime.=sprintf(" (%02d:%02d%s)",3938$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3939}39403941return$localtime;3942}39433944# Outputs the author name and date in long form3945sub git_print_authorship {3946my$co=shift;3947my%opts=@_;3948my$tag=$opts{-tag} ||'div';3949my$author=$co->{'author_name'};39503951my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3952print"<$tagclass=\"author_date\">".3953 format_search_author($author,"author", esc_html($author)) .3954" [$ad{'rfc2822'}";3955 print_local_time(%ad)if($opts{-localtime});3956print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)3957."</$tag>\n";3958}39593960# Outputs table rows containing the full author or committer information,3961# in the format expected for 'commit' view (& similar).3962# Parameters are a commit hash reference, followed by the list of people3963# to output information for. If the list is empty it defaults to both3964# author and committer.3965sub git_print_authorship_rows {3966my$co=shift;3967# too bad we can't use @people = @_ || ('author', 'committer')3968my@people=@_;3969@people= ('author','committer')unless@people;3970foreachmy$who(@people) {3971my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3972print"<tr><td>$who</td><td>".3973 format_search_author($co->{"${who}_name"},$who,3974 esc_html($co->{"${who}_name"})) ." ".3975 format_search_author($co->{"${who}_email"},$who,3976 esc_html("<".$co->{"${who}_email"} .">")) .3977"</td><td rowspan=\"2\">".3978 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3979"</td></tr>\n".3980"<tr>".3981"<td></td><td>$wd{'rfc2822'}";3982 print_local_time(%wd);3983print"</td>".3984"</tr>\n";3985}3986}39873988sub git_print_page_path {3989my$name=shift;3990my$type=shift;3991my$hb=shift;399239933994print"<div class=\"page_path\">";3995print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),3996-title =>'tree root'}, to_utf8("[$project]"));3997print" / ";3998if(defined$name) {3999my@dirname=split'/',$name;4000my$basename=pop@dirname;4001my$fullname='';40024003foreachmy$dir(@dirname) {4004$fullname.= ($fullname?'/':'') .$dir;4005print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,4006 hash_base=>$hb),4007-title =>$fullname}, esc_path($dir));4008print" / ";4009}4010if(defined$type&&$typeeq'blob') {4011print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,4012 hash_base=>$hb),4013-title =>$name}, esc_path($basename));4014}elsif(defined$type&&$typeeq'tree') {4015print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,4016 hash_base=>$hb),4017-title =>$name}, esc_path($basename));4018print" / ";4019}else{4020print esc_path($basename);4021}4022}4023print"<br/></div>\n";4024}40254026sub git_print_log {4027my$log=shift;4028my%opts=@_;40294030if($opts{'-remove_title'}) {4031# remove title, i.e. first line of log4032shift@$log;4033}4034# remove leading empty lines4035while(defined$log->[0] &&$log->[0]eq"") {4036shift@$log;4037}40384039# print log4040my$signoff=0;4041my$empty=0;4042foreachmy$line(@$log) {4043if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {4044$signoff=1;4045$empty=0;4046if(!$opts{'-remove_signoff'}) {4047print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4048next;4049}else{4050# remove signoff lines4051next;4052}4053}else{4054$signoff=0;4055}40564057# print only one empty line4058# do not print empty line after signoff4059if($lineeq"") {4060next if($empty||$signoff);4061$empty=1;4062}else{4063$empty=0;4064}40654066print format_log_line_html($line) ."<br/>\n";4067}40684069if($opts{'-final_empty_line'}) {4070# end with single empty line4071print"<br/>\n"unless$empty;4072}4073}40744075# return link target (what link points to)4076sub git_get_link_target {4077my$hash=shift;4078my$link_target;40794080# read link4081open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4082orreturn;4083{4084local$/=undef;4085$link_target= <$fd>;4086}4087close$fd4088orreturn;40894090return$link_target;4091}40924093# given link target, and the directory (basedir) the link is in,4094# return target of link relative to top directory (top tree);4095# return undef if it is not possible (including absolute links).4096sub normalize_link_target {4097my($link_target,$basedir) =@_;40984099# absolute symlinks (beginning with '/') cannot be normalized4100return if(substr($link_target,0,1)eq'/');41014102# normalize link target to path from top (root) tree (dir)4103my$path;4104if($basedir) {4105$path=$basedir.'/'.$link_target;4106}else{4107# we are in top (root) tree (dir)4108$path=$link_target;4109}41104111# remove //, /./, and /../4112my@path_parts;4113foreachmy$part(split('/',$path)) {4114# discard '.' and ''4115next if(!$part||$parteq'.');4116# handle '..'4117if($parteq'..') {4118if(@path_parts) {4119pop@path_parts;4120}else{4121# link leads outside repository (outside top dir)4122return;4123}4124}else{4125push@path_parts,$part;4126}4127}4128$path=join('/',@path_parts);41294130return$path;4131}41324133# print tree entry (row of git_tree), but without encompassing <tr> element4134sub git_print_tree_entry {4135my($t,$basedir,$hash_base,$have_blame) =@_;41364137my%base_key= ();4138$base_key{'hash_base'} =$hash_baseifdefined$hash_base;41394140# The format of a table row is: mode list link. Where mode is4141# the mode of the entry, list is the name of the entry, an href,4142# and link is the action links of the entry.41434144print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4145if(exists$t->{'size'}) {4146print"<td class=\"size\">$t->{'size'}</td>\n";4147}4148if($t->{'type'}eq"blob") {4149print"<td class=\"list\">".4150$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4151 file_name=>"$basedir$t->{'name'}",%base_key),4152-class=>"list"}, esc_path($t->{'name'}));4153if(S_ISLNK(oct$t->{'mode'})) {4154my$link_target= git_get_link_target($t->{'hash'});4155if($link_target) {4156my$norm_target= normalize_link_target($link_target,$basedir);4157if(defined$norm_target) {4158print" -> ".4159$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4160 file_name=>$norm_target),4161-title =>$norm_target}, esc_path($link_target));4162}else{4163print" -> ". esc_path($link_target);4164}4165}4166}4167print"</td>\n";4168print"<td class=\"link\">";4169print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4170 file_name=>"$basedir$t->{'name'}",%base_key)},4171"blob");4172if($have_blame) {4173print" | ".4174$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4175 file_name=>"$basedir$t->{'name'}",%base_key)},4176"blame");4177}4178if(defined$hash_base) {4179print" | ".4180$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4181 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4182"history");4183}4184print" | ".4185$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4186 file_name=>"$basedir$t->{'name'}")},4187"raw");4188print"</td>\n";41894190}elsif($t->{'type'}eq"tree") {4191print"<td class=\"list\">";4192print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4193 file_name=>"$basedir$t->{'name'}",4194%base_key)},4195 esc_path($t->{'name'}));4196print"</td>\n";4197print"<td class=\"link\">";4198print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4199 file_name=>"$basedir$t->{'name'}",4200%base_key)},4201"tree");4202if(defined$hash_base) {4203print" | ".4204$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4205 file_name=>"$basedir$t->{'name'}")},4206"history");4207}4208print"</td>\n";4209}else{4210# unknown object: we can only present history for it4211# (this includes 'commit' object, i.e. submodule support)4212print"<td class=\"list\">".4213 esc_path($t->{'name'}) .4214"</td>\n";4215print"<td class=\"link\">";4216if(defined$hash_base) {4217print$cgi->a({-href => href(action=>"history",4218 hash_base=>$hash_base,4219 file_name=>"$basedir$t->{'name'}")},4220"history");4221}4222print"</td>\n";4223}4224}42254226## ......................................................................4227## functions printing large fragments of HTML42284229# get pre-image filenames for merge (combined) diff4230sub fill_from_file_info {4231my($diff,@parents) =@_;42324233$diff->{'from_file'} = [ ];4234$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4235for(my$i=0;$i<$diff->{'nparents'};$i++) {4236if($diff->{'status'}[$i]eq'R'||4237$diff->{'status'}[$i]eq'C') {4238$diff->{'from_file'}[$i] =4239 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4240}4241}42424243return$diff;4244}42454246# is current raw difftree line of file deletion4247sub is_deleted {4248my$diffinfo=shift;42494250return$diffinfo->{'to_id'}eq('0' x 40);4251}42524253# does patch correspond to [previous] difftree raw line4254# $diffinfo - hashref of parsed raw diff format4255# $patchinfo - hashref of parsed patch diff format4256# (the same keys as in $diffinfo)4257sub is_patch_split {4258my($diffinfo,$patchinfo) =@_;42594260returndefined$diffinfo&&defined$patchinfo4261&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4262}426342644265sub git_difftree_body {4266my($difftree,$hash,@parents) =@_;4267my($parent) =$parents[0];4268my$have_blame= gitweb_check_feature('blame');4269print"<div class=\"list_head\">\n";4270if($#{$difftree} >10) {4271print(($#{$difftree} +1) ." files changed:\n");4272}4273print"</div>\n";42744275print"<table class=\"".4276(@parents>1?"combined ":"") .4277"diff_tree\">\n";42784279# header only for combined diff in 'commitdiff' view4280my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4281if($has_header) {4282# table header4283print"<thead><tr>\n".4284"<th></th><th></th>\n";# filename, patchN link4285for(my$i=0;$i<@parents;$i++) {4286my$par=$parents[$i];4287print"<th>".4288$cgi->a({-href => href(action=>"commitdiff",4289 hash=>$hash, hash_parent=>$par),4290-title =>'commitdiff to parent number '.4291($i+1) .': '.substr($par,0,7)},4292$i+1) .4293" </th>\n";4294}4295print"</tr></thead>\n<tbody>\n";4296}42974298my$alternate=1;4299my$patchno=0;4300foreachmy$line(@{$difftree}) {4301my$diff= parsed_difftree_line($line);43024303if($alternate) {4304print"<tr class=\"dark\">\n";4305}else{4306print"<tr class=\"light\">\n";4307}4308$alternate^=1;43094310if(exists$diff->{'nparents'}) {# combined diff43114312 fill_from_file_info($diff,@parents)4313unlessexists$diff->{'from_file'};43144315if(!is_deleted($diff)) {4316# file exists in the result (child) commit4317print"<td>".4318$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4319 file_name=>$diff->{'to_file'},4320 hash_base=>$hash),4321-class=>"list"}, esc_path($diff->{'to_file'})) .4322"</td>\n";4323}else{4324print"<td>".4325 esc_path($diff->{'to_file'}) .4326"</td>\n";4327}43284329if($actioneq'commitdiff') {4330# link to patch4331$patchno++;4332print"<td class=\"link\">".4333$cgi->a({-href =>"#patch$patchno"},"patch") .4334" | ".4335"</td>\n";4336}43374338my$has_history=0;4339my$not_deleted=0;4340for(my$i=0;$i<$diff->{'nparents'};$i++) {4341my$hash_parent=$parents[$i];4342my$from_hash=$diff->{'from_id'}[$i];4343my$from_path=$diff->{'from_file'}[$i];4344my$status=$diff->{'status'}[$i];43454346$has_history||= ($statusne'A');4347$not_deleted||= ($statusne'D');43484349if($statuseq'A') {4350print"<td class=\"link\"align=\"right\"> | </td>\n";4351}elsif($statuseq'D') {4352print"<td class=\"link\">".4353$cgi->a({-href => href(action=>"blob",4354 hash_base=>$hash,4355 hash=>$from_hash,4356 file_name=>$from_path)},4357"blob". ($i+1)) .4358" | </td>\n";4359}else{4360if($diff->{'to_id'}eq$from_hash) {4361print"<td class=\"link nochange\">";4362}else{4363print"<td class=\"link\">";4364}4365print$cgi->a({-href => href(action=>"blobdiff",4366 hash=>$diff->{'to_id'},4367 hash_parent=>$from_hash,4368 hash_base=>$hash,4369 hash_parent_base=>$hash_parent,4370 file_name=>$diff->{'to_file'},4371 file_parent=>$from_path)},4372"diff". ($i+1)) .4373" | </td>\n";4374}4375}43764377print"<td class=\"link\">";4378if($not_deleted) {4379print$cgi->a({-href => href(action=>"blob",4380 hash=>$diff->{'to_id'},4381 file_name=>$diff->{'to_file'},4382 hash_base=>$hash)},4383"blob");4384print" | "if($has_history);4385}4386if($has_history) {4387print$cgi->a({-href => href(action=>"history",4388 file_name=>$diff->{'to_file'},4389 hash_base=>$hash)},4390"history");4391}4392print"</td>\n";43934394print"</tr>\n";4395next;# instead of 'else' clause, to avoid extra indent4396}4397# else ordinary diff43984399my($to_mode_oct,$to_mode_str,$to_file_type);4400my($from_mode_oct,$from_mode_str,$from_file_type);4401if($diff->{'to_mode'}ne('0' x 6)) {4402$to_mode_oct=oct$diff->{'to_mode'};4403if(S_ISREG($to_mode_oct)) {# only for regular file4404$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4405}4406$to_file_type= file_type($diff->{'to_mode'});4407}4408if($diff->{'from_mode'}ne('0' x 6)) {4409$from_mode_oct=oct$diff->{'from_mode'};4410if(S_ISREG($to_mode_oct)) {# only for regular file4411$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4412}4413$from_file_type= file_type($diff->{'from_mode'});4414}44154416if($diff->{'status'}eq"A") {# created4417my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4418$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4419$mode_chng.="]</span>";4420print"<td>";4421print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4422 hash_base=>$hash, file_name=>$diff->{'file'}),4423-class=>"list"}, esc_path($diff->{'file'}));4424print"</td>\n";4425print"<td>$mode_chng</td>\n";4426print"<td class=\"link\">";4427if($actioneq'commitdiff') {4428# link to patch4429$patchno++;4430print$cgi->a({-href =>"#patch$patchno"},"patch");4431print" | ";4432}4433print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4434 hash_base=>$hash, file_name=>$diff->{'file'})},4435"blob");4436print"</td>\n";44374438}elsif($diff->{'status'}eq"D") {# deleted4439my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4440print"<td>";4441print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4442 hash_base=>$parent, file_name=>$diff->{'file'}),4443-class=>"list"}, esc_path($diff->{'file'}));4444print"</td>\n";4445print"<td>$mode_chng</td>\n";4446print"<td class=\"link\">";4447if($actioneq'commitdiff') {4448# link to patch4449$patchno++;4450print$cgi->a({-href =>"#patch$patchno"},"patch");4451print" | ";4452}4453print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4454 hash_base=>$parent, file_name=>$diff->{'file'})},4455"blob") ." | ";4456if($have_blame) {4457print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4458 file_name=>$diff->{'file'})},4459"blame") ." | ";4460}4461print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4462 file_name=>$diff->{'file'})},4463"history");4464print"</td>\n";44654466}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4467my$mode_chnge="";4468if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4469$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4470if($from_file_typene$to_file_type) {4471$mode_chnge.=" from$from_file_typeto$to_file_type";4472}4473if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4474if($from_mode_str&&$to_mode_str) {4475$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4476}elsif($to_mode_str) {4477$mode_chnge.=" mode:$to_mode_str";4478}4479}4480$mode_chnge.="]</span>\n";4481}4482print"<td>";4483print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4484 hash_base=>$hash, file_name=>$diff->{'file'}),4485-class=>"list"}, esc_path($diff->{'file'}));4486print"</td>\n";4487print"<td>$mode_chnge</td>\n";4488print"<td class=\"link\">";4489if($actioneq'commitdiff') {4490# link to patch4491$patchno++;4492print$cgi->a({-href =>"#patch$patchno"},"patch") .4493" | ";4494}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4495# "commit" view and modified file (not onlu mode changed)4496print$cgi->a({-href => href(action=>"blobdiff",4497 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4498 hash_base=>$hash, hash_parent_base=>$parent,4499 file_name=>$diff->{'file'})},4500"diff") .4501" | ";4502}4503print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4504 hash_base=>$hash, file_name=>$diff->{'file'})},4505"blob") ." | ";4506if($have_blame) {4507print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4508 file_name=>$diff->{'file'})},4509"blame") ." | ";4510}4511print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4512 file_name=>$diff->{'file'})},4513"history");4514print"</td>\n";45154516}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4517my%status_name= ('R'=>'moved','C'=>'copied');4518my$nstatus=$status_name{$diff->{'status'}};4519my$mode_chng="";4520if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4521# mode also for directories, so we cannot use $to_mode_str4522$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4523}4524print"<td>".4525$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4526 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4527-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4528"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4529$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4530 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4531-class=>"list"}, esc_path($diff->{'from_file'})) .4532" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4533"<td class=\"link\">";4534if($actioneq'commitdiff') {4535# link to patch4536$patchno++;4537print$cgi->a({-href =>"#patch$patchno"},"patch") .4538" | ";4539}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4540# "commit" view and modified file (not only pure rename or copy)4541print$cgi->a({-href => href(action=>"blobdiff",4542 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4543 hash_base=>$hash, hash_parent_base=>$parent,4544 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},4545"diff") .4546" | ";4547}4548print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4549 hash_base=>$parent, file_name=>$diff->{'to_file'})},4550"blob") ." | ";4551if($have_blame) {4552print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4553 file_name=>$diff->{'to_file'})},4554"blame") ." | ";4555}4556print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4557 file_name=>$diff->{'to_file'})},4558"history");4559print"</td>\n";45604561}# we should not encounter Unmerged (U) or Unknown (X) status4562print"</tr>\n";4563}4564print"</tbody>"if$has_header;4565print"</table>\n";4566}45674568sub git_patchset_body {4569my($fd,$difftree,$hash,@hash_parents) =@_;4570my($hash_parent) =$hash_parents[0];45714572my$is_combined= (@hash_parents>1);4573my$patch_idx=0;4574my$patch_number=0;4575my$patch_line;4576my$diffinfo;4577my$to_name;4578my(%from,%to);45794580print"<div class=\"patchset\">\n";45814582# skip to first patch4583while($patch_line= <$fd>) {4584chomp$patch_line;45854586last if($patch_line=~m/^diff /);4587}45884589 PATCH:4590while($patch_line) {45914592# parse "git diff" header line4593if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4594# $1 is from_name, which we do not use4595$to_name= unquote($2);4596$to_name=~s!^b/!!;4597}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4598# $1 is 'cc' or 'combined', which we do not use4599$to_name= unquote($2);4600}else{4601$to_name=undef;4602}46034604# check if current patch belong to current raw line4605# and parse raw git-diff line if needed4606if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4607# this is continuation of a split patch4608print"<div class=\"patch cont\">\n";4609}else{4610# advance raw git-diff output if needed4611$patch_idx++ifdefined$diffinfo;46124613# read and prepare patch information4614$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);46154616# compact combined diff output can have some patches skipped4617# find which patch (using pathname of result) we are at now;4618if($is_combined) {4619while($to_namene$diffinfo->{'to_file'}) {4620print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4621 format_diff_cc_simplified($diffinfo,@hash_parents) .4622"</div>\n";# class="patch"46234624$patch_idx++;4625$patch_number++;46264627last if$patch_idx>$#$difftree;4628$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4629}4630}46314632# modifies %from, %to hashes4633 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);46344635# this is first patch for raw difftree line with $patch_idx index4636# we index @$difftree array from 0, but number patches from 14637print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4638}46394640# git diff header4641#assert($patch_line =~ m/^diff /) if DEBUG;4642#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4643$patch_number++;4644# print "git diff" header4645print format_git_diff_header_line($patch_line,$diffinfo,4646 \%from, \%to);46474648# print extended diff header4649print"<div class=\"diff extended_header\">\n";4650 EXTENDED_HEADER:4651while($patch_line= <$fd>) {4652chomp$patch_line;46534654last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);46554656print format_extended_diff_header_line($patch_line,$diffinfo,4657 \%from, \%to);4658}4659print"</div>\n";# class="diff extended_header"46604661# from-file/to-file diff header4662if(!$patch_line) {4663print"</div>\n";# class="patch"4664last PATCH;4665}4666next PATCH if($patch_line=~m/^diff /);4667#assert($patch_line =~ m/^---/) if DEBUG;46684669my$last_patch_line=$patch_line;4670$patch_line= <$fd>;4671chomp$patch_line;4672#assert($patch_line =~ m/^\+\+\+/) if DEBUG;46734674print format_diff_from_to_header($last_patch_line,$patch_line,4675$diffinfo, \%from, \%to,4676@hash_parents);46774678# the patch itself4679 LINE:4680while($patch_line= <$fd>) {4681chomp$patch_line;46824683next PATCH if($patch_line=~m/^diff /);46844685print format_diff_line($patch_line, \%from, \%to);4686}46874688}continue{4689print"</div>\n";# class="patch"4690}46914692# for compact combined (--cc) format, with chunk and patch simplification4693# the patchset might be empty, but there might be unprocessed raw lines4694for(++$patch_idxif$patch_number>0;4695$patch_idx<@$difftree;4696++$patch_idx) {4697# read and prepare patch information4698$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);46994700# generate anchor for "patch" links in difftree / whatchanged part4701print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4702 format_diff_cc_simplified($diffinfo,@hash_parents) .4703"</div>\n";# class="patch"47044705$patch_number++;4706}47074708if($patch_number==0) {4709if(@hash_parents>1) {4710print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4711}else{4712print"<div class=\"diff nodifferences\">No differences found</div>\n";4713}4714}47154716print"</div>\n";# class="patchset"4717}47184719# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .47204721# fills project list info (age, description, owner, forks) for each4722# project in the list, removing invalid projects from returned list4723# NOTE: modifies $projlist, but does not remove entries from it4724sub fill_project_list_info {4725my($projlist,$check_forks) =@_;4726my@projects;47274728my$show_ctags= gitweb_check_feature('ctags');4729 PROJECT:4730foreachmy$pr(@$projlist) {4731my(@activity) = git_get_last_activity($pr->{'path'});4732unless(@activity) {4733next PROJECT;4734}4735($pr->{'age'},$pr->{'age_string'}) =@activity;4736if(!defined$pr->{'descr'}) {4737my$descr= git_get_project_description($pr->{'path'}) ||"";4738$descr= to_utf8($descr);4739$pr->{'descr_long'} =$descr;4740$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4741}4742if(!defined$pr->{'owner'}) {4743$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4744}4745if($check_forks) {4746my$pname=$pr->{'path'};4747if(($pname=~s/\.git$//) &&4748($pname!~/\/$/) &&4749(-d "$projectroot/$pname")) {4750$pr->{'forks'} ="-d$projectroot/$pname";4751}else{4752$pr->{'forks'} =0;4753}4754}4755$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4756push@projects,$pr;4757}47584759return@projects;4760}47614762# print 'sort by' <th> element, generating 'sort by $name' replay link4763# if that order is not selected4764sub print_sort_th {4765print format_sort_th(@_);4766}47674768sub format_sort_th {4769my($name,$order,$header) =@_;4770my$sort_th="";4771$header||=ucfirst($name);47724773if($ordereq$name) {4774$sort_th.="<th>$header</th>\n";4775}else{4776$sort_th.="<th>".4777$cgi->a({-href => href(-replay=>1, order=>$name),4778-class=>"header"},$header) .4779"</th>\n";4780}47814782return$sort_th;4783}47844785sub git_project_list_body {4786# actually uses global variable $project4787my($projlist,$order,$from,$to,$extra,$no_header) =@_;47884789my$check_forks= gitweb_check_feature('forks');4790my@projects= fill_project_list_info($projlist,$check_forks);47914792$order||=$default_projects_order;4793$from=0unlessdefined$from;4794$to=$#projectsif(!defined$to||$#projects<$to);47954796my%order_info= (4797 project => { key =>'path', type =>'str'},4798 descr => { key =>'descr_long', type =>'str'},4799 owner => { key =>'owner', type =>'str'},4800 age => { key =>'age', type =>'num'}4801);4802my$oi=$order_info{$order};4803if($oi->{'type'}eq'str') {4804@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4805}else{4806@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4807}48084809my$show_ctags= gitweb_check_feature('ctags');4810if($show_ctags) {4811my%ctags;4812foreachmy$p(@projects) {4813foreachmy$ct(keys%{$p->{'ctags'}}) {4814$ctags{$ct} +=$p->{'ctags'}->{$ct};4815}4816}4817my$cloud= git_populate_project_tagcloud(\%ctags);4818print git_show_project_tagcloud($cloud,64);4819}48204821print"<table class=\"project_list\">\n";4822unless($no_header) {4823print"<tr>\n";4824if($check_forks) {4825print"<th></th>\n";4826}4827 print_sort_th('project',$order,'Project');4828 print_sort_th('descr',$order,'Description');4829 print_sort_th('owner',$order,'Owner');4830 print_sort_th('age',$order,'Last Change');4831print"<th></th>\n".# for links4832"</tr>\n";4833}4834my$alternate=1;4835my$tagfilter=$cgi->param('by_tag');4836for(my$i=$from;$i<=$to;$i++) {4837my$pr=$projects[$i];48384839next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4840next if$searchtextand not$pr->{'path'} =~/$searchtext/4841and not$pr->{'descr_long'} =~/$searchtext/;4842# Weed out forks or non-matching entries of search4843if($check_forks) {4844my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4845$forkbase="^$forkbase"if$forkbase;4846next ifnot$searchtextand not$tagfilterand$show_ctags4847and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4848}48494850if($alternate) {4851print"<tr class=\"dark\">\n";4852}else{4853print"<tr class=\"light\">\n";4854}4855$alternate^=1;4856if($check_forks) {4857print"<td>";4858if($pr->{'forks'}) {4859print"<!--$pr->{'forks'} -->\n";4860print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4861}4862print"</td>\n";4863}4864print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4865-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4866"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4867-class=>"list", -title =>$pr->{'descr_long'}},4868 esc_html($pr->{'descr'})) ."</td>\n".4869"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4870print"<td class=\"". age_class($pr->{'age'}) ."\">".4871(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4872"<td class=\"link\">".4873$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4874$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4875$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4876$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4877($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4878"</td>\n".4879"</tr>\n";4880}4881if(defined$extra) {4882print"<tr>\n";4883if($check_forks) {4884print"<td></td>\n";4885}4886print"<td colspan=\"5\">$extra</td>\n".4887"</tr>\n";4888}4889print"</table>\n";4890}48914892sub git_log_body {4893# uses global variable $project4894my($commitlist,$from,$to,$refs,$extra) =@_;48954896$from=0unlessdefined$from;4897$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);48984899for(my$i=0;$i<=$to;$i++) {4900my%co= %{$commitlist->[$i]};4901next if!%co;4902my$commit=$co{'id'};4903my$ref= format_ref_marker($refs,$commit);4904my%ad= parse_date($co{'author_epoch'});4905 git_print_header_div('commit',4906"<span class=\"age\">$co{'age_string'}</span>".4907 esc_html($co{'title'}) .$ref,4908$commit);4909print"<div class=\"title_text\">\n".4910"<div class=\"log_link\">\n".4911$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4912" | ".4913$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4914" | ".4915$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4916"<br/>\n".4917"</div>\n";4918 git_print_authorship(\%co, -tag =>'span');4919print"<br/>\n</div>\n";49204921print"<div class=\"log_body\">\n";4922 git_print_log($co{'comment'}, -final_empty_line=>1);4923print"</div>\n";4924}4925if($extra) {4926print"<div class=\"page_nav\">\n";4927print"$extra\n";4928print"</div>\n";4929}4930}49314932sub git_shortlog_body {4933# uses global variable $project4934my($commitlist,$from,$to,$refs,$extra) =@_;49354936$from=0unlessdefined$from;4937$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);49384939print"<table class=\"shortlog\">\n";4940my$alternate=1;4941for(my$i=$from;$i<=$to;$i++) {4942my%co= %{$commitlist->[$i]};4943my$commit=$co{'id'};4944my$ref= format_ref_marker($refs,$commit);4945if($alternate) {4946print"<tr class=\"dark\">\n";4947}else{4948print"<tr class=\"light\">\n";4949}4950$alternate^=1;4951# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4952print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4953 format_author_html('td', \%co,10) ."<td>";4954print format_subject_html($co{'title'},$co{'title_short'},4955 href(action=>"commit", hash=>$commit),$ref);4956print"</td>\n".4957"<td class=\"link\">".4958$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4959$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4960$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4961my$snapshot_links= format_snapshot_links($commit);4962if(defined$snapshot_links) {4963print" | ".$snapshot_links;4964}4965print"</td>\n".4966"</tr>\n";4967}4968if(defined$extra) {4969print"<tr>\n".4970"<td colspan=\"4\">$extra</td>\n".4971"</tr>\n";4972}4973print"</table>\n";4974}49754976sub git_history_body {4977# Warning: assumes constant type (blob or tree) during history4978my($commitlist,$from,$to,$refs,$extra,4979$file_name,$file_hash,$ftype) =@_;49804981$from=0unlessdefined$from;4982$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});49834984print"<table class=\"history\">\n";4985my$alternate=1;4986for(my$i=$from;$i<=$to;$i++) {4987my%co= %{$commitlist->[$i]};4988if(!%co) {4989next;4990}4991my$commit=$co{'id'};49924993my$ref= format_ref_marker($refs,$commit);49944995if($alternate) {4996print"<tr class=\"dark\">\n";4997}else{4998print"<tr class=\"light\">\n";4999}5000$alternate^=1;5001print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5002# shortlog: format_author_html('td', \%co, 10)5003 format_author_html('td', \%co,15,3) ."<td>";5004# originally git_history used chop_str($co{'title'}, 50)5005print format_subject_html($co{'title'},$co{'title_short'},5006 href(action=>"commit", hash=>$commit),$ref);5007print"</td>\n".5008"<td class=\"link\">".5009$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".5010$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");50115012if($ftypeeq'blob') {5013my$blob_current=$file_hash;5014my$blob_parent= git_get_hash_by_path($commit,$file_name);5015if(defined$blob_current&&defined$blob_parent&&5016$blob_currentne$blob_parent) {5017print" | ".5018$cgi->a({-href => href(action=>"blobdiff",5019 hash=>$blob_current, hash_parent=>$blob_parent,5020 hash_base=>$hash_base, hash_parent_base=>$commit,5021 file_name=>$file_name)},5022"diff to current");5023}5024}5025print"</td>\n".5026"</tr>\n";5027}5028if(defined$extra) {5029print"<tr>\n".5030"<td colspan=\"4\">$extra</td>\n".5031"</tr>\n";5032}5033print"</table>\n";5034}50355036sub git_tags_body {5037# uses global variable $project5038my($taglist,$from,$to,$extra) =@_;5039$from=0unlessdefined$from;5040$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);50415042print"<table class=\"tags\">\n";5043my$alternate=1;5044for(my$i=$from;$i<=$to;$i++) {5045my$entry=$taglist->[$i];5046my%tag=%$entry;5047my$comment=$tag{'subject'};5048my$comment_short;5049if(defined$comment) {5050$comment_short= chop_str($comment,30,5);5051}5052if($alternate) {5053print"<tr class=\"dark\">\n";5054}else{5055print"<tr class=\"light\">\n";5056}5057$alternate^=1;5058if(defined$tag{'age'}) {5059print"<td><i>$tag{'age'}</i></td>\n";5060}else{5061print"<td></td>\n";5062}5063print"<td>".5064$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),5065-class=>"list name"}, esc_html($tag{'name'})) .5066"</td>\n".5067"<td>";5068if(defined$comment) {5069print format_subject_html($comment,$comment_short,5070 href(action=>"tag", hash=>$tag{'id'}));5071}5072print"</td>\n".5073"<td class=\"selflink\">";5074if($tag{'type'}eq"tag") {5075print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");5076}else{5077print" ";5078}5079print"</td>\n".5080"<td class=\"link\">"." | ".5081$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});5082if($tag{'reftype'}eq"commit") {5083print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .5084" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");5085}elsif($tag{'reftype'}eq"blob") {5086print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");5087}5088print"</td>\n".5089"</tr>";5090}5091if(defined$extra) {5092print"<tr>\n".5093"<td colspan=\"5\">$extra</td>\n".5094"</tr>\n";5095}5096print"</table>\n";5097}50985099sub git_heads_body {5100# uses global variable $project5101my($headlist,$head,$from,$to,$extra) =@_;5102$from=0unlessdefined$from;5103$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);51045105print"<table class=\"heads\">\n";5106my$alternate=1;5107for(my$i=$from;$i<=$to;$i++) {5108my$entry=$headlist->[$i];5109my%ref=%$entry;5110my$curr=$ref{'id'}eq$head;5111if($alternate) {5112print"<tr class=\"dark\">\n";5113}else{5114print"<tr class=\"light\">\n";5115}5116$alternate^=1;5117print"<td><i>$ref{'age'}</i></td>\n".5118($curr?"<td class=\"current_head\">":"<td>") .5119$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),5120-class=>"list name"},esc_html($ref{'name'})) .5121"</td>\n".5122"<td class=\"link\">".5123$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".5124$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".5125$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .5126"</td>\n".5127"</tr>";5128}5129if(defined$extra) {5130print"<tr>\n".5131"<td colspan=\"3\">$extra</td>\n".5132"</tr>\n";5133}5134print"</table>\n";5135}51365137# Display a single remote block5138sub git_remote_block {5139my($remote,$rdata,$limit,$head) =@_;51405141my$heads=$rdata->{'heads'};5142my$fetch=$rdata->{'fetch'};5143my$push=$rdata->{'push'};51445145my$urls_table="<table class=\"projects_list\">\n";51465147if(defined$fetch) {5148if($fetcheq$push) {5149$urls_table.= format_repo_url("URL",$fetch);5150}else{5151$urls_table.= format_repo_url("Fetch URL",$fetch);5152$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;5153}5154}elsif(defined$push) {5155$urls_table.= format_repo_url("Push URL",$push);5156}else{5157$urls_table.= format_repo_url("","No remote URL");5158}51595160$urls_table.="</table>\n";51615162my$dots;5163if(defined$limit&&$limit<@$heads) {5164$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");5165}51665167print$urls_table;5168 git_heads_body($heads,$head,0,$limit,$dots);5169}51705171# Display a list of remote names with the respective fetch and push URLs5172sub git_remotes_list {5173my($remotedata,$limit) =@_;5174print"<table class=\"heads\">\n";5175my$alternate=1;5176my@remotes=sort keys%$remotedata;51775178my$limited=$limit&&$limit<@remotes;51795180$#remotes=$limit-1if$limited;51815182while(my$remote=shift@remotes) {5183my$rdata=$remotedata->{$remote};5184my$fetch=$rdata->{'fetch'};5185my$push=$rdata->{'push'};5186if($alternate) {5187print"<tr class=\"dark\">\n";5188}else{5189print"<tr class=\"light\">\n";5190}5191$alternate^=1;5192print"<td>".5193$cgi->a({-href=> href(action=>'remotes', hash=>$remote),5194-class=>"list name"},esc_html($remote)) .5195"</td>";5196print"<td class=\"link\">".5197(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .5198" | ".5199(defined$push?$cgi->a({-href=>$push},"push") :"push") .5200"</td>";52015202print"</tr>\n";5203}52045205if($limited) {5206print"<tr>\n".5207"<td colspan=\"3\">".5208$cgi->a({-href => href(action=>"remotes")},"...") .5209"</td>\n"."</tr>\n";5210}52115212print"</table>";5213}52145215# Display remote heads grouped by remote, unless there are too many5216# remotes, in which case we only display the remote names5217sub git_remotes_body {5218my($remotedata,$limit,$head) =@_;5219if($limitand$limit<keys%$remotedata) {5220 git_remotes_list($remotedata,$limit);5221}else{5222 fill_remote_heads($remotedata);5223while(my($remote,$rdata) =each%$remotedata) {5224 git_print_section({-class=>"remote", -id=>$remote},5225["remotes",$remote,$remote],sub{5226 git_remote_block($remote,$rdata,$limit,$head);5227});5228}5229}5230}52315232sub git_search_grep_body {5233my($commitlist,$from,$to,$extra) =@_;5234$from=0unlessdefined$from;5235$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);52365237print"<table class=\"commit_search\">\n";5238my$alternate=1;5239for(my$i=$from;$i<=$to;$i++) {5240my%co= %{$commitlist->[$i]};5241if(!%co) {5242next;5243}5244my$commit=$co{'id'};5245if($alternate) {5246print"<tr class=\"dark\">\n";5247}else{5248print"<tr class=\"light\">\n";5249}5250$alternate^=1;5251print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5252 format_author_html('td', \%co,15,5) .5253"<td>".5254$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5255-class=>"list subject"},5256 chop_and_escape_str($co{'title'},50) ."<br/>");5257my$comment=$co{'comment'};5258foreachmy$line(@$comment) {5259if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5260my($lead,$match,$trail) = ($1,$2,$3);5261$match= chop_str($match,70,5,'center');5262my$contextlen=int((80-length($match))/2);5263$contextlen=30if($contextlen>30);5264$lead= chop_str($lead,$contextlen,10,'left');5265$trail= chop_str($trail,$contextlen,10,'right');52665267$lead= esc_html($lead);5268$match= esc_html($match);5269$trail= esc_html($trail);52705271print"$lead<span class=\"match\">$match</span>$trail<br />";5272}5273}5274print"</td>\n".5275"<td class=\"link\">".5276$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5277" | ".5278$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5279" | ".5280$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5281print"</td>\n".5282"</tr>\n";5283}5284if(defined$extra) {5285print"<tr>\n".5286"<td colspan=\"3\">$extra</td>\n".5287"</tr>\n";5288}5289print"</table>\n";5290}52915292## ======================================================================5293## ======================================================================5294## actions52955296sub git_project_list {5297my$order=$input_params{'order'};5298if(defined$order&&$order!~m/none|project|descr|owner|age/) {5299 die_error(400,"Unknown order parameter");5300}53015302my@list= git_get_projects_list();5303if(!@list) {5304 die_error(404,"No projects found");5305}53065307 git_header_html();5308if(defined$home_text&& -f $home_text) {5309print"<div class=\"index_include\">\n";5310 insert_file($home_text);5311print"</div>\n";5312}5313print$cgi->startform(-method=>"get") .5314"<p class=\"projsearch\">Search:\n".5315$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5316"</p>".5317$cgi->end_form() ."\n";5318 git_project_list_body(\@list,$order);5319 git_footer_html();5320}53215322sub git_forks {5323my$order=$input_params{'order'};5324if(defined$order&&$order!~m/none|project|descr|owner|age/) {5325 die_error(400,"Unknown order parameter");5326}53275328my@list= git_get_projects_list($project);5329if(!@list) {5330 die_error(404,"No forks found");5331}53325333 git_header_html();5334 git_print_page_nav('','');5335 git_print_header_div('summary',"$projectforks");5336 git_project_list_body(\@list,$order);5337 git_footer_html();5338}53395340sub git_project_index {5341my@projects= git_get_projects_list($project);53425343print$cgi->header(5344-type =>'text/plain',5345-charset =>'utf-8',5346-content_disposition =>'inline; filename="index.aux"');53475348foreachmy$pr(@projects) {5349if(!exists$pr->{'owner'}) {5350$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5351}53525353my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5354# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5355$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5356$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5357$path=~s/ /\+/g;5358$owner=~s/ /\+/g;53595360print"$path$owner\n";5361}5362}53635364sub git_summary {5365my$descr= git_get_project_description($project) ||"none";5366my%co= parse_commit("HEAD");5367my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5368my$head=$co{'id'};5369my$remote_heads= gitweb_check_feature('remote_heads');53705371my$owner= git_get_project_owner($project);53725373my$refs= git_get_references();5374# These get_*_list functions return one more to allow us to see if5375# there are more ...5376my@taglist= git_get_tags_list(16);5377my@headlist= git_get_heads_list(16);5378my%remotedata=$remote_heads? git_get_remotes_list() : ();5379my@forklist;5380my$check_forks= gitweb_check_feature('forks');53815382if($check_forks) {5383@forklist= git_get_projects_list($project);5384}53855386 git_header_html();5387 git_print_page_nav('summary','',$head);53885389print"<div class=\"title\"> </div>\n";5390print"<table class=\"projects_list\">\n".5391"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5392"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5393if(defined$cd{'rfc2822'}) {5394print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";5395}53965397# use per project git URL list in $projectroot/$project/cloneurl5398# or make project git URL from git base URL and project name5399my$url_tag="URL";5400my@url_list= git_get_project_url_list($project);5401@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5402foreachmy$git_url(@url_list) {5403next unless$git_url;5404print format_repo_url($url_tag,$git_url);5405$url_tag="";5406}54075408# Tag cloud5409my$show_ctags= gitweb_check_feature('ctags');5410if($show_ctags) {5411my$ctags= git_get_project_ctags($project);5412my$cloud= git_populate_project_tagcloud($ctags);5413print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5414print"</td>\n<td>"unless%$ctags;5415print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5416print"</td>\n<td>"if%$ctags;5417print git_show_project_tagcloud($cloud,48);5418print"</td></tr>";5419}54205421print"</table>\n";54225423# If XSS prevention is on, we don't include README.html.5424# TODO: Allow a readme in some safe format.5425if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5426print"<div class=\"title\">readme</div>\n".5427"<div class=\"readme\">\n";5428 insert_file("$projectroot/$project/README.html");5429print"\n</div>\n";# class="readme"5430}54315432# we need to request one more than 16 (0..15) to check if5433# those 16 are all5434my@commitlist=$head? parse_commits($head,17) : ();5435if(@commitlist) {5436 git_print_header_div('shortlog');5437 git_shortlog_body(\@commitlist,0,15,$refs,5438$#commitlist<=15?undef:5439$cgi->a({-href => href(action=>"shortlog")},"..."));5440}54415442if(@taglist) {5443 git_print_header_div('tags');5444 git_tags_body(\@taglist,0,15,5445$#taglist<=15?undef:5446$cgi->a({-href => href(action=>"tags")},"..."));5447}54485449if(@headlist) {5450 git_print_header_div('heads');5451 git_heads_body(\@headlist,$head,0,15,5452$#headlist<=15?undef:5453$cgi->a({-href => href(action=>"heads")},"..."));5454}54555456if(%remotedata) {5457 git_print_header_div('remotes');5458 git_remotes_body(\%remotedata,15,$head);5459}54605461if(@forklist) {5462 git_print_header_div('forks');5463 git_project_list_body(\@forklist,'age',0,15,5464$#forklist<=15?undef:5465$cgi->a({-href => href(action=>"forks")},"..."),5466'no_header');5467}54685469 git_footer_html();5470}54715472sub git_tag {5473my%tag= parse_tag($hash);54745475if(!%tag) {5476 die_error(404,"Unknown tag object");5477}54785479my$head= git_get_head_hash($project);5480 git_header_html();5481 git_print_page_nav('','',$head,undef,$head);5482 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5483print"<div class=\"title_text\">\n".5484"<table class=\"object_header\">\n".5485"<tr>\n".5486"<td>object</td>\n".5487"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5488$tag{'object'}) ."</td>\n".5489"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5490$tag{'type'}) ."</td>\n".5491"</tr>\n";5492if(defined($tag{'author'})) {5493 git_print_authorship_rows(\%tag,'author');5494}5495print"</table>\n\n".5496"</div>\n";5497print"<div class=\"page_body\">";5498my$comment=$tag{'comment'};5499foreachmy$line(@$comment) {5500chomp$line;5501print esc_html($line, -nbsp=>1) ."<br/>\n";5502}5503print"</div>\n";5504 git_footer_html();5505}55065507sub git_blame_common {5508my$format=shift||'porcelain';5509if($formateq'porcelain'&&$cgi->param('js')) {5510$format='incremental';5511$action='blame_incremental';# for page title etc5512}55135514# permissions5515 gitweb_check_feature('blame')5516or die_error(403,"Blame view not allowed");55175518# error checking5519 die_error(400,"No file name given")unless$file_name;5520$hash_base||= git_get_head_hash($project);5521 die_error(404,"Couldn't find base commit")unless$hash_base;5522my%co= parse_commit($hash_base)5523or die_error(404,"Commit not found");5524my$ftype="blob";5525if(!defined$hash) {5526$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5527or die_error(404,"Error looking up file");5528}else{5529$ftype= git_get_type($hash);5530if($ftype!~"blob") {5531 die_error(400,"Object is not a blob");5532}5533}55345535my$fd;5536if($formateq'incremental') {5537# get file contents (as base)5538open$fd,"-|", git_cmd(),'cat-file','blob',$hash5539or die_error(500,"Open git-cat-file failed");5540}elsif($formateq'data') {5541# run git-blame --incremental5542open$fd,"-|", git_cmd(),"blame","--incremental",5543$hash_base,"--",$file_name5544or die_error(500,"Open git-blame --incremental failed");5545}else{5546# run git-blame --porcelain5547open$fd,"-|", git_cmd(),"blame",'-p',5548$hash_base,'--',$file_name5549or die_error(500,"Open git-blame --porcelain failed");5550}55515552# incremental blame data returns early5553if($formateq'data') {5554print$cgi->header(5555-type=>"text/plain", -charset =>"utf-8",5556-status=>"200 OK");5557local$| =1;# output autoflush5558printwhile<$fd>;5559close$fd5560or print"ERROR$!\n";55615562print'END';5563if(defined$t0&& gitweb_check_feature('timed')) {5564print' '.5565 tv_interval($t0, [ gettimeofday() ]).5566' '.$number_of_git_cmds;5567}5568print"\n";55695570return;5571}55725573# page header5574 git_header_html();5575my$formats_nav=5576$cgi->a({-href => href(action=>"blob", -replay=>1)},5577"blob") .5578" | ";5579if($formateq'incremental') {5580$formats_nav.=5581$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5582"blame") ." (non-incremental)";5583}else{5584$formats_nav.=5585$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5586"blame") ." (incremental)";5587}5588$formats_nav.=5589" | ".5590$cgi->a({-href => href(action=>"history", -replay=>1)},5591"history") .5592" | ".5593$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5594"HEAD");5595 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5596 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5597 git_print_page_path($file_name,$ftype,$hash_base);55985599# page body5600if($formateq'incremental') {5601print"<noscript>\n<div class=\"error\"><center><b>\n".5602"This page requires JavaScript to run.\nUse ".5603$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5604'this page').5605" instead.\n".5606"</b></center></div>\n</noscript>\n";56075608print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5609}56105611print qq!<div class="page_body">\n!;5612print qq!<div id="progress_info">.../ ...</div>\n!5613if($formateq'incremental');5614print qq!<table id="blame_table"class="blame" width="100%">\n!.5615#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5616 qq!<thead>\n!.5617 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5618 qq!</thead>\n!.5619 qq!<tbody>\n!;56205621my@rev_color=qw(light dark);5622my$num_colors=scalar(@rev_color);5623my$current_color=0;56245625if($formateq'incremental') {5626my$color_class=$rev_color[$current_color];56275628#contents of a file5629my$linenr=0;5630 LINE:5631while(my$line= <$fd>) {5632chomp$line;5633$linenr++;56345635print qq!<tr id="l$linenr"class="$color_class">!.5636 qq!<td class="sha1"><a href=""> </a></td>!.5637 qq!<td class="linenr">!.5638 qq!<a class="linenr" href="">$linenr</a></td>!;5639print qq!<td class="pre">! . esc_html($line) ."</td>\n";5640print qq!</tr>\n!;5641}56425643}else{# porcelain, i.e. ordinary blame5644my%metainfo= ();# saves information about commits56455646# blame data5647 LINE:5648while(my$line= <$fd>) {5649chomp$line;5650# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5651# no <lines in group> for subsequent lines in group of lines5652my($full_rev,$orig_lineno,$lineno,$group_size) =5653($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5654if(!exists$metainfo{$full_rev}) {5655$metainfo{$full_rev} = {'nprevious'=>0};5656}5657my$meta=$metainfo{$full_rev};5658my$data;5659while($data= <$fd>) {5660chomp$data;5661last if($data=~s/^\t//);# contents of line5662if($data=~/^(\S+)(?: (.*))?$/) {5663$meta->{$1} =$2unlessexists$meta->{$1};5664}5665if($data=~/^previous /) {5666$meta->{'nprevious'}++;5667}5668}5669my$short_rev=substr($full_rev,0,8);5670my$author=$meta->{'author'};5671my%date=5672 parse_date($meta->{'author-time'},$meta->{'author-tz'});5673my$date=$date{'iso-tz'};5674if($group_size) {5675$current_color= ($current_color+1) %$num_colors;5676}5677my$tr_class=$rev_color[$current_color];5678$tr_class.=' boundary'if(exists$meta->{'boundary'});5679$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5680$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5681print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5682if($group_size) {5683print"<td class=\"sha1\"";5684print" title=\"". esc_html($author) .",$date\"";5685print" rowspan=\"$group_size\""if($group_size>1);5686print">";5687print$cgi->a({-href => href(action=>"commit",5688 hash=>$full_rev,5689 file_name=>$file_name)},5690 esc_html($short_rev));5691if($group_size>=2) {5692my@author_initials= ($author=~/\b([[:upper:]])\B/g);5693if(@author_initials) {5694print"<br />".5695 esc_html(join('',@author_initials));5696# or join('.', ...)5697}5698}5699print"</td>\n";5700}5701# 'previous' <sha1 of parent commit> <filename at commit>5702if(exists$meta->{'previous'} &&5703$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5704$meta->{'parent'} =$1;5705$meta->{'file_parent'} = unquote($2);5706}5707my$linenr_commit=5708exists($meta->{'parent'}) ?5709$meta->{'parent'} :$full_rev;5710my$linenr_filename=5711exists($meta->{'file_parent'}) ?5712$meta->{'file_parent'} : unquote($meta->{'filename'});5713my$blamed= href(action =>'blame',5714 file_name =>$linenr_filename,5715 hash_base =>$linenr_commit);5716print"<td class=\"linenr\">";5717print$cgi->a({ -href =>"$blamed#l$orig_lineno",5718-class=>"linenr"},5719 esc_html($lineno));5720print"</td>";5721print"<td class=\"pre\">". esc_html($data) ."</td>\n";5722print"</tr>\n";5723}# end while57245725}57265727# footer5728print"</tbody>\n".5729"</table>\n";# class="blame"5730print"</div>\n";# class="blame_body"5731close$fd5732or print"Reading blob failed\n";57335734 git_footer_html();5735}57365737sub git_blame {5738 git_blame_common();5739}57405741sub git_blame_incremental {5742 git_blame_common('incremental');5743}57445745sub git_blame_data {5746 git_blame_common('data');5747}57485749sub git_tags {5750my$head= git_get_head_hash($project);5751 git_header_html();5752 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));5753 git_print_header_div('summary',$project);57545755my@tagslist= git_get_tags_list();5756if(@tagslist) {5757 git_tags_body(\@tagslist);5758}5759 git_footer_html();5760}57615762sub git_heads {5763my$head= git_get_head_hash($project);5764 git_header_html();5765 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));5766 git_print_header_div('summary',$project);57675768my@headslist= git_get_heads_list();5769if(@headslist) {5770 git_heads_body(\@headslist,$head);5771}5772 git_footer_html();5773}57745775# used both for single remote view and for list of all the remotes5776sub git_remotes {5777 gitweb_check_feature('remote_heads')5778or die_error(403,"Remote heads view is disabled");57795780my$head= git_get_head_hash($project);5781my$remote=$input_params{'hash'};57825783my$remotedata= git_get_remotes_list($remote);5784 die_error(500,"Unable to get remote information")unlessdefined$remotedata;57855786unless(%$remotedata) {5787 die_error(404,defined$remote?5788"Remote$remotenot found":5789"No remotes found");5790}57915792 git_header_html(undef,undef, -action_extra =>$remote);5793 git_print_page_nav('','',$head,undef,$head,5794 format_ref_views($remote?'':'remotes'));57955796 fill_remote_heads($remotedata);5797if(defined$remote) {5798 git_print_header_div('remotes',"$remoteremote for$project");5799 git_remote_block($remote,$remotedata->{$remote},undef,$head);5800}else{5801 git_print_header_div('summary',"$projectremotes");5802 git_remotes_body($remotedata,undef,$head);5803}58045805 git_footer_html();5806}58075808sub git_blob_plain {5809my$type=shift;5810my$expires;58115812if(!defined$hash) {5813if(defined$file_name) {5814my$base=$hash_base|| git_get_head_hash($project);5815$hash= git_get_hash_by_path($base,$file_name,"blob")5816or die_error(404,"Cannot find file");5817}else{5818 die_error(400,"No file name defined");5819}5820}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5821# blobs defined by non-textual hash id's can be cached5822$expires="+1d";5823}58245825open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5826or die_error(500,"Open git-cat-file blob '$hash' failed");58275828# content-type (can include charset)5829$type= blob_contenttype($fd,$file_name,$type);58305831# "save as" filename, even when no $file_name is given5832my$save_as="$hash";5833if(defined$file_name) {5834$save_as=$file_name;5835}elsif($type=~m/^text\//) {5836$save_as.='.txt';5837}58385839# With XSS prevention on, blobs of all types except a few known safe5840# ones are served with "Content-Disposition: attachment" to make sure5841# they don't run in our security domain. For certain image types,5842# blob view writes an <img> tag referring to blob_plain view, and we5843# want to be sure not to break that by serving the image as an5844# attachment (though Firefox 3 doesn't seem to care).5845my$sandbox=$prevent_xss&&5846$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;58475848print$cgi->header(5849-type =>$type,5850-expires =>$expires,5851-content_disposition =>5852($sandbox?'attachment':'inline')5853.'; filename="'.$save_as.'"');5854local$/=undef;5855binmode STDOUT,':raw';5856print<$fd>;5857binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5858close$fd;5859}58605861sub git_blob {5862my$expires;58635864if(!defined$hash) {5865if(defined$file_name) {5866my$base=$hash_base|| git_get_head_hash($project);5867$hash= git_get_hash_by_path($base,$file_name,"blob")5868or die_error(404,"Cannot find file");5869}else{5870 die_error(400,"No file name defined");5871}5872}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5873# blobs defined by non-textual hash id's can be cached5874$expires="+1d";5875}58765877my$have_blame= gitweb_check_feature('blame');5878open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5879or die_error(500,"Couldn't cat$file_name,$hash");5880my$mimetype= blob_mimetype($fd,$file_name);5881# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5882if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5883close$fd;5884return git_blob_plain($mimetype);5885}5886# we can have blame only for text/* mimetype5887$have_blame&&= ($mimetype=~m!^text/!);58885889my$highlight= gitweb_check_feature('highlight');5890my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);5891$fd= run_highlighter($fd,$highlight,$syntax)5892if$syntax;58935894 git_header_html(undef,$expires);5895my$formats_nav='';5896if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5897if(defined$file_name) {5898if($have_blame) {5899$formats_nav.=5900$cgi->a({-href => href(action=>"blame", -replay=>1)},5901"blame") .5902" | ";5903}5904$formats_nav.=5905$cgi->a({-href => href(action=>"history", -replay=>1)},5906"history") .5907" | ".5908$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5909"raw") .5910" | ".5911$cgi->a({-href => href(action=>"blob",5912 hash_base=>"HEAD", file_name=>$file_name)},5913"HEAD");5914}else{5915$formats_nav.=5916$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5917"raw");5918}5919 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5920 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5921}else{5922print"<div class=\"page_nav\">\n".5923"<br/><br/></div>\n".5924"<div class=\"title\">".esc_html($hash)."</div>\n";5925}5926 git_print_page_path($file_name,"blob",$hash_base);5927print"<div class=\"page_body\">\n";5928if($mimetype=~m!^image/!) {5929print qq!<img type="!.esc_attr($mimetype).qq!"!;5930if($file_name) {5931print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;5932}5933print qq! src="! .5934 href(action=>"blob_plain", hash=>$hash,5935 hash_base=>$hash_base, file_name=>$file_name) .5936 qq!"/>\n!;5937}else{5938my$nr;5939while(my$line= <$fd>) {5940chomp$line;5941$nr++;5942$line= untabify($line);5943printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,5944$nr, esc_attr(href(-replay =>1)),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);5945}5946}5947close$fd5948or print"Reading blob failed.\n";5949print"</div>";5950 git_footer_html();5951}59525953sub git_tree {5954if(!defined$hash_base) {5955$hash_base="HEAD";5956}5957if(!defined$hash) {5958if(defined$file_name) {5959$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5960}else{5961$hash=$hash_base;5962}5963}5964 die_error(404,"No such tree")unlessdefined($hash);59655966my$show_sizes= gitweb_check_feature('show-sizes');5967my$have_blame= gitweb_check_feature('blame');59685969my@entries= ();5970{5971local$/="\0";5972open my$fd,"-|", git_cmd(),"ls-tree",'-z',5973($show_sizes?'-l': ()),@extra_options,$hash5974or die_error(500,"Open git-ls-tree failed");5975@entries=map{chomp;$_} <$fd>;5976close$fd5977or die_error(404,"Reading tree failed");5978}59795980my$refs= git_get_references();5981my$ref= format_ref_marker($refs,$hash_base);5982 git_header_html();5983my$basedir='';5984if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5985my@views_nav= ();5986if(defined$file_name) {5987push@views_nav,5988$cgi->a({-href => href(action=>"history", -replay=>1)},5989"history"),5990$cgi->a({-href => href(action=>"tree",5991 hash_base=>"HEAD", file_name=>$file_name)},5992"HEAD"),5993}5994my$snapshot_links= format_snapshot_links($hash);5995if(defined$snapshot_links) {5996# FIXME: Should be available when we have no hash base as well.5997push@views_nav,$snapshot_links;5998}5999 git_print_page_nav('tree','',$hash_base,undef,undef,6000join(' | ',@views_nav));6001 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);6002}else{6003undef$hash_base;6004print"<div class=\"page_nav\">\n";6005print"<br/><br/></div>\n";6006print"<div class=\"title\">".esc_html($hash)."</div>\n";6007}6008if(defined$file_name) {6009$basedir=$file_name;6010if($basedirne''&&substr($basedir, -1)ne'/') {6011$basedir.='/';6012}6013 git_print_page_path($file_name,'tree',$hash_base);6014}6015print"<div class=\"page_body\">\n";6016print"<table class=\"tree\">\n";6017my$alternate=1;6018# '..' (top directory) link if possible6019if(defined$hash_base&&6020defined$file_name&&$file_name=~m![^/]+$!) {6021if($alternate) {6022print"<tr class=\"dark\">\n";6023}else{6024print"<tr class=\"light\">\n";6025}6026$alternate^=1;60276028my$up=$file_name;6029$up=~s!/?[^/]+$!!;6030undef$upunless$up;6031# based on git_print_tree_entry6032print'<td class="mode">'. mode_str('040000') ."</td>\n";6033print'<td class="size"> </td>'."\n"if$show_sizes;6034print'<td class="list">';6035print$cgi->a({-href => href(action=>"tree",6036 hash_base=>$hash_base,6037 file_name=>$up)},6038"..");6039print"</td>\n";6040print"<td class=\"link\"></td>\n";60416042print"</tr>\n";6043}6044foreachmy$line(@entries) {6045my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);60466047if($alternate) {6048print"<tr class=\"dark\">\n";6049}else{6050print"<tr class=\"light\">\n";6051}6052$alternate^=1;60536054 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);60556056print"</tr>\n";6057}6058print"</table>\n".6059"</div>";6060 git_footer_html();6061}60626063sub snapshot_name {6064my($project,$hash) =@_;60656066# path/to/project.git -> project6067# path/to/project/.git -> project6068my$name= to_utf8($project);6069$name=~ s,([^/])/*\.git$,$1,;6070$name= basename($name);6071# sanitize name6072$name=~s/[[:cntrl:]]/?/g;60736074my$ver=$hash;6075if($hash=~/^[0-9a-fA-F]+$/) {6076# shorten SHA-1 hash6077my$full_hash= git_get_full_hash($project,$hash);6078if($full_hash=~/^$hash/&&length($hash) >7) {6079$ver= git_get_short_hash($project,$hash);6080}6081}elsif($hash=~m!^refs/tags/(.*)$!) {6082# tags don't need shortened SHA-1 hash6083$ver=$1;6084}else{6085# branches and other need shortened SHA-1 hash6086if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {6087$ver=$1;6088}6089$ver.='-'. git_get_short_hash($project,$hash);6090}6091# in case of hierarchical branch names6092$ver=~s!/!.!g;60936094# name = project-version_string6095$name="$name-$ver";60966097returnwantarray? ($name,$name) :$name;6098}60996100sub git_snapshot {6101my$format=$input_params{'snapshot_format'};6102if(!@snapshot_fmts) {6103 die_error(403,"Snapshots not allowed");6104}6105# default to first supported snapshot format6106$format||=$snapshot_fmts[0];6107if($format!~m/^[a-z0-9]+$/) {6108 die_error(400,"Invalid snapshot format parameter");6109}elsif(!exists($known_snapshot_formats{$format})) {6110 die_error(400,"Unknown snapshot format");6111}elsif($known_snapshot_formats{$format}{'disabled'}) {6112 die_error(403,"Snapshot format not allowed");6113}elsif(!grep($_eq$format,@snapshot_fmts)) {6114 die_error(403,"Unsupported snapshot format");6115}61166117my$type= git_get_type("$hash^{}");6118if(!$type) {6119 die_error(404,'Object does not exist');6120}elsif($typeeq'blob') {6121 die_error(400,'Object is not a tree-ish');6122}61236124my($name,$prefix) = snapshot_name($project,$hash);6125my$filename="$name$known_snapshot_formats{$format}{'suffix'}";6126my$cmd= quote_command(6127 git_cmd(),'archive',6128"--format=$known_snapshot_formats{$format}{'format'}",6129"--prefix=$prefix/",$hash);6130if(exists$known_snapshot_formats{$format}{'compressor'}) {6131$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});6132}61336134$filename=~s/(["\\])/\\$1/g;6135print$cgi->header(6136-type =>$known_snapshot_formats{$format}{'type'},6137-content_disposition =>'inline; filename="'.$filename.'"',6138-status =>'200 OK');61396140open my$fd,"-|",$cmd6141or die_error(500,"Execute git-archive failed");6142binmode STDOUT,':raw';6143print<$fd>;6144binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6145close$fd;6146}61476148sub git_log_generic {6149my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;61506151my$head= git_get_head_hash($project);6152if(!defined$base) {6153$base=$head;6154}6155if(!defined$page) {6156$page=0;6157}6158my$refs= git_get_references();61596160my$commit_hash=$base;6161if(defined$parent) {6162$commit_hash="$parent..$base";6163}6164my@commitlist=6165 parse_commits($commit_hash,101, (100*$page),6166defined$file_name? ($file_name,"--full-history") : ());61676168my$ftype;6169if(!defined$file_hash&&defined$file_name) {6170# some commits could have deleted file in question,6171# and not have it in tree, but one of them has to have it6172for(my$i=0;$i<@commitlist;$i++) {6173$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);6174last ifdefined$file_hash;6175}6176}6177if(defined$file_hash) {6178$ftype= git_get_type($file_hash);6179}6180if(defined$file_name&& !defined$ftype) {6181 die_error(500,"Unknown type of object");6182}6183my%co;6184if(defined$file_name) {6185%co= parse_commit($base)6186or die_error(404,"Unknown commit object");6187}618861896190my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);6191my$next_link='';6192if($#commitlist>=100) {6193$next_link=6194$cgi->a({-href => href(-replay=>1, page=>$page+1),6195-accesskey =>"n", -title =>"Alt-n"},"next");6196}6197my$patch_max= gitweb_get_feature('patches');6198if($patch_max&& !defined$file_name) {6199if($patch_max<0||@commitlist<=$patch_max) {6200$paging_nav.=" ⋅ ".6201$cgi->a({-href => href(action=>"patches", -replay=>1)},6202"patches");6203}6204}62056206 git_header_html();6207 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);6208if(defined$file_name) {6209 git_print_header_div('commit', esc_html($co{'title'}),$base);6210}else{6211 git_print_header_div('summary',$project)6212}6213 git_print_page_path($file_name,$ftype,$hash_base)6214if(defined$file_name);62156216$body_subr->(\@commitlist,0,99,$refs,$next_link,6217$file_name,$file_hash,$ftype);62186219 git_footer_html();6220}62216222sub git_log {6223 git_log_generic('log', \&git_log_body,6224$hash,$hash_parent);6225}62266227sub git_commit {6228$hash||=$hash_base||"HEAD";6229my%co= parse_commit($hash)6230or die_error(404,"Unknown commit object");62316232my$parent=$co{'parent'};6233my$parents=$co{'parents'};# listref62346235# we need to prepare $formats_nav before any parameter munging6236my$formats_nav;6237if(!defined$parent) {6238# --root commitdiff6239$formats_nav.='(initial)';6240}elsif(@$parents==1) {6241# single parent commit6242$formats_nav.=6243'(parent: '.6244$cgi->a({-href => href(action=>"commit",6245 hash=>$parent)},6246 esc_html(substr($parent,0,7))) .6247')';6248}else{6249# merge commit6250$formats_nav.=6251'(merge: '.6252join(' ',map{6253$cgi->a({-href => href(action=>"commit",6254 hash=>$_)},6255 esc_html(substr($_,0,7)));6256}@$parents) .6257')';6258}6259if(gitweb_check_feature('patches') &&@$parents<=1) {6260$formats_nav.=" | ".6261$cgi->a({-href => href(action=>"patch", -replay=>1)},6262"patch");6263}62646265if(!defined$parent) {6266$parent="--root";6267}6268my@difftree;6269open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",6270@diff_opts,6271(@$parents<=1?$parent:'-c'),6272$hash,"--"6273or die_error(500,"Open git-diff-tree failed");6274@difftree=map{chomp;$_} <$fd>;6275close$fdor die_error(404,"Reading git-diff-tree failed");62766277# non-textual hash id's can be cached6278my$expires;6279if($hash=~m/^[0-9a-fA-F]{40}$/) {6280$expires="+1d";6281}6282my$refs= git_get_references();6283my$ref= format_ref_marker($refs,$co{'id'});62846285 git_header_html(undef,$expires);6286 git_print_page_nav('commit','',6287$hash,$co{'tree'},$hash,6288$formats_nav);62896290if(defined$co{'parent'}) {6291 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6292}else{6293 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6294}6295print"<div class=\"title_text\">\n".6296"<table class=\"object_header\">\n";6297 git_print_authorship_rows(\%co);6298print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6299print"<tr>".6300"<td>tree</td>".6301"<td class=\"sha1\">".6302$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6303class=>"list"},$co{'tree'}) .6304"</td>".6305"<td class=\"link\">".6306$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6307"tree");6308my$snapshot_links= format_snapshot_links($hash);6309if(defined$snapshot_links) {6310print" | ".$snapshot_links;6311}6312print"</td>".6313"</tr>\n";63146315foreachmy$par(@$parents) {6316print"<tr>".6317"<td>parent</td>".6318"<td class=\"sha1\">".6319$cgi->a({-href => href(action=>"commit", hash=>$par),6320class=>"list"},$par) .6321"</td>".6322"<td class=\"link\">".6323$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6324" | ".6325$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6326"</td>".6327"</tr>\n";6328}6329print"</table>".6330"</div>\n";63316332print"<div class=\"page_body\">\n";6333 git_print_log($co{'comment'});6334print"</div>\n";63356336 git_difftree_body(\@difftree,$hash,@$parents);63376338 git_footer_html();6339}63406341sub git_object {6342# object is defined by:6343# - hash or hash_base alone6344# - hash_base and file_name6345my$type;63466347# - hash or hash_base alone6348if($hash|| ($hash_base&& !defined$file_name)) {6349my$object_id=$hash||$hash_base;63506351open my$fd,"-|", quote_command(6352 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6353or die_error(404,"Object does not exist");6354$type= <$fd>;6355chomp$type;6356close$fd6357or die_error(404,"Object does not exist");63586359# - hash_base and file_name6360}elsif($hash_base&&defined$file_name) {6361$file_name=~ s,/+$,,;63626363system(git_cmd(),"cat-file",'-e',$hash_base) ==06364or die_error(404,"Base object does not exist");63656366# here errors should not hapen6367open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6368or die_error(500,"Open git-ls-tree failed");6369my$line= <$fd>;6370close$fd;63716372#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6373unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6374 die_error(404,"File or directory for given base does not exist");6375}6376$type=$2;6377$hash=$3;6378}else{6379 die_error(400,"Not enough information to find object");6380}63816382print$cgi->redirect(-uri => href(action=>$type, -full=>1,6383 hash=>$hash, hash_base=>$hash_base,6384 file_name=>$file_name),6385-status =>'302 Found');6386}63876388sub git_blobdiff {6389my$format=shift||'html';63906391my$fd;6392my@difftree;6393my%diffinfo;6394my$expires;63956396# preparing $fd and %diffinfo for git_patchset_body6397# new style URI6398if(defined$hash_base&&defined$hash_parent_base) {6399if(defined$file_name) {6400# read raw output6401open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6402$hash_parent_base,$hash_base,6403"--", (defined$file_parent?$file_parent: ()),$file_name6404or die_error(500,"Open git-diff-tree failed");6405@difftree=map{chomp;$_} <$fd>;6406close$fd6407or die_error(404,"Reading git-diff-tree failed");6408@difftree6409or die_error(404,"Blob diff not found");64106411}elsif(defined$hash&&6412$hash=~/[0-9a-fA-F]{40}/) {6413# try to find filename from $hash64146415# read filtered raw output6416open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6417$hash_parent_base,$hash_base,"--"6418or die_error(500,"Open git-diff-tree failed");6419@difftree=6420# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6421# $hash == to_id6422grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6423map{chomp;$_} <$fd>;6424close$fd6425or die_error(404,"Reading git-diff-tree failed");6426@difftree6427or die_error(404,"Blob diff not found");64286429}else{6430 die_error(400,"Missing one of the blob diff parameters");6431}64326433if(@difftree>1) {6434 die_error(400,"Ambiguous blob diff specification");6435}64366437%diffinfo= parse_difftree_raw_line($difftree[0]);6438$file_parent||=$diffinfo{'from_file'} ||$file_name;6439$file_name||=$diffinfo{'to_file'};64406441$hash_parent||=$diffinfo{'from_id'};6442$hash||=$diffinfo{'to_id'};64436444# non-textual hash id's can be cached6445if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6446$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6447$expires='+1d';6448}64496450# open patch output6451open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6452'-p', ($formateq'html'?"--full-index": ()),6453$hash_parent_base,$hash_base,6454"--", (defined$file_parent?$file_parent: ()),$file_name6455or die_error(500,"Open git-diff-tree failed");6456}64576458# old/legacy style URI -- not generated anymore since 1.4.3.6459if(!%diffinfo) {6460 die_error('404 Not Found',"Missing one of the blob diff parameters")6461}64626463# header6464if($formateq'html') {6465my$formats_nav=6466$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6467"raw");6468 git_header_html(undef,$expires);6469if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6470 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6471 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6472}else{6473print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6474print"<div class=\"title\">".esc_html("$hashvs$hash_parent")."</div>\n";6475}6476if(defined$file_name) {6477 git_print_page_path($file_name,"blob",$hash_base);6478}else{6479print"<div class=\"page_path\"></div>\n";6480}64816482}elsif($formateq'plain') {6483print$cgi->header(6484-type =>'text/plain',6485-charset =>'utf-8',6486-expires =>$expires,6487-content_disposition =>'inline; filename="'."$file_name".'.patch"');64886489print"X-Git-Url: ".$cgi->self_url() ."\n\n";64906491}else{6492 die_error(400,"Unknown blobdiff format");6493}64946495# patch6496if($formateq'html') {6497print"<div class=\"page_body\">\n";64986499 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6500close$fd;65016502print"</div>\n";# class="page_body"6503 git_footer_html();65046505}else{6506while(my$line= <$fd>) {6507$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6508$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;65096510print$line;65116512last if$line=~m!^\+\+\+!;6513}6514local$/=undef;6515print<$fd>;6516close$fd;6517}6518}65196520sub git_blobdiff_plain {6521 git_blobdiff('plain');6522}65236524sub git_commitdiff {6525my%params=@_;6526my$format=$params{-format} ||'html';65276528my($patch_max) = gitweb_get_feature('patches');6529if($formateq'patch') {6530 die_error(403,"Patch view not allowed")unless$patch_max;6531}65326533$hash||=$hash_base||"HEAD";6534my%co= parse_commit($hash)6535or die_error(404,"Unknown commit object");65366537# choose format for commitdiff for merge6538if(!defined$hash_parent&& @{$co{'parents'}} >1) {6539$hash_parent='--cc';6540}6541# we need to prepare $formats_nav before almost any parameter munging6542my$formats_nav;6543if($formateq'html') {6544$formats_nav=6545$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6546"raw");6547if($patch_max&& @{$co{'parents'}} <=1) {6548$formats_nav.=" | ".6549$cgi->a({-href => href(action=>"patch", -replay=>1)},6550"patch");6551}65526553if(defined$hash_parent&&6554$hash_parentne'-c'&&$hash_parentne'--cc') {6555# commitdiff with two commits given6556my$hash_parent_short=$hash_parent;6557if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6558$hash_parent_short=substr($hash_parent,0,7);6559}6560$formats_nav.=6561' (from';6562for(my$i=0;$i< @{$co{'parents'}};$i++) {6563if($co{'parents'}[$i]eq$hash_parent) {6564$formats_nav.=' parent '. ($i+1);6565last;6566}6567}6568$formats_nav.=': '.6569$cgi->a({-href => href(action=>"commitdiff",6570 hash=>$hash_parent)},6571 esc_html($hash_parent_short)) .6572')';6573}elsif(!$co{'parent'}) {6574# --root commitdiff6575$formats_nav.=' (initial)';6576}elsif(scalar@{$co{'parents'}} ==1) {6577# single parent commit6578$formats_nav.=6579' (parent: '.6580$cgi->a({-href => href(action=>"commitdiff",6581 hash=>$co{'parent'})},6582 esc_html(substr($co{'parent'},0,7))) .6583')';6584}else{6585# merge commit6586if($hash_parenteq'--cc') {6587$formats_nav.=' | '.6588$cgi->a({-href => href(action=>"commitdiff",6589 hash=>$hash, hash_parent=>'-c')},6590'combined');6591}else{# $hash_parent eq '-c'6592$formats_nav.=' | '.6593$cgi->a({-href => href(action=>"commitdiff",6594 hash=>$hash, hash_parent=>'--cc')},6595'compact');6596}6597$formats_nav.=6598' (merge: '.6599join(' ',map{6600$cgi->a({-href => href(action=>"commitdiff",6601 hash=>$_)},6602 esc_html(substr($_,0,7)));6603} @{$co{'parents'}} ) .6604')';6605}6606}66076608my$hash_parent_param=$hash_parent;6609if(!defined$hash_parent_param) {6610# --cc for multiple parents, --root for parentless6611$hash_parent_param=6612@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6613}66146615# read commitdiff6616my$fd;6617my@difftree;6618if($formateq'html') {6619open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6620"--no-commit-id","--patch-with-raw","--full-index",6621$hash_parent_param,$hash,"--"6622or die_error(500,"Open git-diff-tree failed");66236624while(my$line= <$fd>) {6625chomp$line;6626# empty line ends raw part of diff-tree output6627last unless$line;6628push@difftree,scalar parse_difftree_raw_line($line);6629}66306631}elsif($formateq'plain') {6632open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6633'-p',$hash_parent_param,$hash,"--"6634or die_error(500,"Open git-diff-tree failed");6635}elsif($formateq'patch') {6636# For commit ranges, we limit the output to the number of6637# patches specified in the 'patches' feature.6638# For single commits, we limit the output to a single patch,6639# diverging from the git-format-patch default.6640my@commit_spec= ();6641if($hash_parent) {6642if($patch_max>0) {6643push@commit_spec,"-$patch_max";6644}6645push@commit_spec,'-n',"$hash_parent..$hash";6646}else{6647if($params{-single}) {6648push@commit_spec,'-1';6649}else{6650if($patch_max>0) {6651push@commit_spec,"-$patch_max";6652}6653push@commit_spec,"-n";6654}6655push@commit_spec,'--root',$hash;6656}6657open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6658'--encoding=utf8','--stdout',@commit_spec6659or die_error(500,"Open git-format-patch failed");6660}else{6661 die_error(400,"Unknown commitdiff format");6662}66636664# non-textual hash id's can be cached6665my$expires;6666if($hash=~m/^[0-9a-fA-F]{40}$/) {6667$expires="+1d";6668}66696670# write commit message6671if($formateq'html') {6672my$refs= git_get_references();6673my$ref= format_ref_marker($refs,$co{'id'});66746675 git_header_html(undef,$expires);6676 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6677 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6678print"<div class=\"title_text\">\n".6679"<table class=\"object_header\">\n";6680 git_print_authorship_rows(\%co);6681print"</table>".6682"</div>\n";6683print"<div class=\"page_body\">\n";6684if(@{$co{'comment'}} >1) {6685print"<div class=\"log\">\n";6686 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6687print"</div>\n";# class="log"6688}66896690}elsif($formateq'plain') {6691my$refs= git_get_references("tags");6692my$tagname= git_get_rev_name_tags($hash);6693my$filename= basename($project) ."-$hash.patch";66946695print$cgi->header(6696-type =>'text/plain',6697-charset =>'utf-8',6698-expires =>$expires,6699-content_disposition =>'inline; filename="'."$filename".'"');6700my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6701print"From: ". to_utf8($co{'author'}) ."\n";6702print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6703print"Subject: ". to_utf8($co{'title'}) ."\n";67046705print"X-Git-Tag:$tagname\n"if$tagname;6706print"X-Git-Url: ".$cgi->self_url() ."\n\n";67076708foreachmy$line(@{$co{'comment'}}) {6709print to_utf8($line) ."\n";6710}6711print"---\n\n";6712}elsif($formateq'patch') {6713my$filename= basename($project) ."-$hash.patch";67146715print$cgi->header(6716-type =>'text/plain',6717-charset =>'utf-8',6718-expires =>$expires,6719-content_disposition =>'inline; filename="'."$filename".'"');6720}67216722# write patch6723if($formateq'html') {6724my$use_parents= !defined$hash_parent||6725$hash_parenteq'-c'||$hash_parenteq'--cc';6726 git_difftree_body(\@difftree,$hash,6727$use_parents? @{$co{'parents'}} :$hash_parent);6728print"<br/>\n";67296730 git_patchset_body($fd, \@difftree,$hash,6731$use_parents? @{$co{'parents'}} :$hash_parent);6732close$fd;6733print"</div>\n";# class="page_body"6734 git_footer_html();67356736}elsif($formateq'plain') {6737local$/=undef;6738print<$fd>;6739close$fd6740or print"Reading git-diff-tree failed\n";6741}elsif($formateq'patch') {6742local$/=undef;6743print<$fd>;6744close$fd6745or print"Reading git-format-patch failed\n";6746}6747}67486749sub git_commitdiff_plain {6750 git_commitdiff(-format =>'plain');6751}67526753# format-patch-style patches6754sub git_patch {6755 git_commitdiff(-format =>'patch', -single =>1);6756}67576758sub git_patches {6759 git_commitdiff(-format =>'patch');6760}67616762sub git_history {6763 git_log_generic('history', \&git_history_body,6764$hash_base,$hash_parent_base,6765$file_name,$hash);6766}67676768sub git_search {6769 gitweb_check_feature('search')or die_error(403,"Search is disabled");6770if(!defined$searchtext) {6771 die_error(400,"Text field is empty");6772}6773if(!defined$hash) {6774$hash= git_get_head_hash($project);6775}6776my%co= parse_commit($hash);6777if(!%co) {6778 die_error(404,"Unknown commit object");6779}6780if(!defined$page) {6781$page=0;6782}67836784$searchtype||='commit';6785if($searchtypeeq'pickaxe') {6786# pickaxe may take all resources of your box and run for several minutes6787# with every query - so decide by yourself how public you make this feature6788 gitweb_check_feature('pickaxe')6789or die_error(403,"Pickaxe is disabled");6790}6791if($searchtypeeq'grep') {6792 gitweb_check_feature('grep')6793or die_error(403,"Grep is disabled");6794}67956796 git_header_html();67976798if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6799my$greptype;6800if($searchtypeeq'commit') {6801$greptype="--grep=";6802}elsif($searchtypeeq'author') {6803$greptype="--author=";6804}elsif($searchtypeeq'committer') {6805$greptype="--committer=";6806}6807$greptype.=$searchtext;6808my@commitlist= parse_commits($hash,101, (100*$page),undef,6809$greptype,'--regexp-ignore-case',6810$search_use_regexp?'--extended-regexp':'--fixed-strings');68116812my$paging_nav='';6813if($page>0) {6814$paging_nav.=6815$cgi->a({-href => href(action=>"search", hash=>$hash,6816 searchtext=>$searchtext,6817 searchtype=>$searchtype)},6818"first");6819$paging_nav.=" ⋅ ".6820$cgi->a({-href => href(-replay=>1, page=>$page-1),6821-accesskey =>"p", -title =>"Alt-p"},"prev");6822}else{6823$paging_nav.="first";6824$paging_nav.=" ⋅ prev";6825}6826my$next_link='';6827if($#commitlist>=100) {6828$next_link=6829$cgi->a({-href => href(-replay=>1, page=>$page+1),6830-accesskey =>"n", -title =>"Alt-n"},"next");6831$paging_nav.=" ⋅$next_link";6832}else{6833$paging_nav.=" ⋅ next";6834}68356836 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6837 git_print_header_div('commit', esc_html($co{'title'}),$hash);6838if($page==0&& !@commitlist) {6839print"<p>No match.</p>\n";6840}else{6841 git_search_grep_body(\@commitlist,0,99,$next_link);6842}6843}68446845if($searchtypeeq'pickaxe') {6846 git_print_page_nav('','',$hash,$co{'tree'},$hash);6847 git_print_header_div('commit', esc_html($co{'title'}),$hash);68486849print"<table class=\"pickaxe search\">\n";6850my$alternate=1;6851local$/="\n";6852open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6853'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6854($search_use_regexp?'--pickaxe-regex': ());6855undef%co;6856my@files;6857while(my$line= <$fd>) {6858chomp$line;6859next unless$line;68606861my%set= parse_difftree_raw_line($line);6862if(defined$set{'commit'}) {6863# finish previous commit6864if(%co) {6865print"</td>\n".6866"<td class=\"link\">".6867$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6868" | ".6869$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6870print"</td>\n".6871"</tr>\n";6872}68736874if($alternate) {6875print"<tr class=\"dark\">\n";6876}else{6877print"<tr class=\"light\">\n";6878}6879$alternate^=1;6880%co= parse_commit($set{'commit'});6881my$author= chop_and_escape_str($co{'author_name'},15,5);6882print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6883"<td><i>$author</i></td>\n".6884"<td>".6885$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6886-class=>"list subject"},6887 chop_and_escape_str($co{'title'},50) ."<br/>");6888}elsif(defined$set{'to_id'}) {6889next if($set{'to_id'} =~m/^0{40}$/);68906891print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6892 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6893-class=>"list"},6894"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6895"<br/>\n";6896}6897}6898close$fd;68996900# finish last commit (warning: repetition!)6901if(%co) {6902print"</td>\n".6903"<td class=\"link\">".6904$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6905" | ".6906$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6907print"</td>\n".6908"</tr>\n";6909}69106911print"</table>\n";6912}69136914if($searchtypeeq'grep') {6915 git_print_page_nav('','',$hash,$co{'tree'},$hash);6916 git_print_header_div('commit', esc_html($co{'title'}),$hash);69176918print"<table class=\"grep_search\">\n";6919my$alternate=1;6920my$matches=0;6921local$/="\n";6922open my$fd,"-|", git_cmd(),'grep','-n',6923$search_use_regexp? ('-E','-i') :'-F',6924$searchtext,$co{'tree'};6925my$lastfile='';6926while(my$line= <$fd>) {6927chomp$line;6928my($file,$lno,$ltext,$binary);6929last if($matches++>1000);6930if($line=~/^Binary file (.+) matches$/) {6931$file=$1;6932$binary=1;6933}else{6934(undef,$file,$lno,$ltext) =split(/:/,$line,4);6935}6936if($filene$lastfile) {6937$lastfileand print"</td></tr>\n";6938if($alternate++) {6939print"<tr class=\"dark\">\n";6940}else{6941print"<tr class=\"light\">\n";6942}6943print"<td class=\"list\">".6944$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6945 file_name=>"$file"),6946-class=>"list"}, esc_path($file));6947print"</td><td>\n";6948$lastfile=$file;6949}6950if($binary) {6951print"<div class=\"binary\">Binary file</div>\n";6952}else{6953$ltext= untabify($ltext);6954if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6955$ltext= esc_html($1, -nbsp=>1);6956$ltext.='<span class="match">';6957$ltext.= esc_html($2, -nbsp=>1);6958$ltext.='</span>';6959$ltext.= esc_html($3, -nbsp=>1);6960}else{6961$ltext= esc_html($ltext, -nbsp=>1);6962}6963print"<div class=\"pre\">".6964$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6965 file_name=>"$file").'#l'.$lno,6966-class=>"linenr"},sprintf('%4i',$lno))6967.' '.$ltext."</div>\n";6968}6969}6970if($lastfile) {6971print"</td></tr>\n";6972if($matches>1000) {6973print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6974}6975}else{6976print"<div class=\"diff nodifferences\">No matches found</div>\n";6977}6978close$fd;69796980print"</table>\n";6981}6982 git_footer_html();6983}69846985sub git_search_help {6986 git_header_html();6987 git_print_page_nav('','',$hash,$hash,$hash);6988print<<EOT;6989<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without6990regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,6991the pattern entered is recognized as the POSIX extended6992<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case6993insensitive).</p>6994<dl>6995<dt><b>commit</b></dt>6996<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>6997EOT6998my$have_grep= gitweb_check_feature('grep');6999if($have_grep) {7000print<<EOT;7001<dt><b>grep</b></dt>7002<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing7003 a different one) are searched for the given pattern. On large trees, this search can take7004a while and put some strain on the server, so please use it with some consideration. Note that7005due to git-grep peculiarity, currently if regexp mode is turned off, the matches are7006case-sensitive.</dd>7007EOT7008}7009print<<EOT;7010<dt><b>author</b></dt>7011<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>7012<dt><b>committer</b></dt>7013<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>7014EOT7015my$have_pickaxe= gitweb_check_feature('pickaxe');7016if($have_pickaxe) {7017print<<EOT;7018<dt><b>pickaxe</b></dt>7019<dd>All commits that caused the string to appear or disappear from any file (changes that7020added, removed or "modified" the string) will be listed. This search can take a while and7021takes a lot of strain on the server, so please use it wisely. Note that since you may be7022interested even in changes just changing the case as well, this search is case sensitive.</dd>7023EOT7024}7025print"</dl>\n";7026 git_footer_html();7027}70287029sub git_shortlog {7030 git_log_generic('shortlog', \&git_shortlog_body,7031$hash,$hash_parent);7032}70337034## ......................................................................7035## feeds (RSS, Atom; OPML)70367037sub git_feed {7038my$format=shift||'atom';7039my$have_blame= gitweb_check_feature('blame');70407041# Atom: http://www.atomenabled.org/developers/syndication/7042# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ7043if($formatne'rss'&&$formatne'atom') {7044 die_error(400,"Unknown web feed format");7045}70467047# log/feed of current (HEAD) branch, log of given branch, history of file/directory7048my$head=$hash||'HEAD';7049my@commitlist= parse_commits($head,150,0,$file_name);70507051my%latest_commit;7052my%latest_date;7053my$content_type="application/$format+xml";7054if(defined$cgi->http('HTTP_ACCEPT') &&7055$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {7056# browser (feed reader) prefers text/xml7057$content_type='text/xml';7058}7059if(defined($commitlist[0])) {7060%latest_commit= %{$commitlist[0]};7061my$latest_epoch=$latest_commit{'committer_epoch'};7062%latest_date= parse_date($latest_epoch);7063my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7064if(defined$if_modified) {7065my$since;7066if(eval{require HTTP::Date;1; }) {7067$since= HTTP::Date::str2time($if_modified);7068}elsif(eval{require Time::ParseDate;1; }) {7069$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7070}7071if(defined$since&&$latest_epoch<=$since) {7072print$cgi->header(7073-type =>$content_type,7074-charset =>'utf-8',7075-last_modified =>$latest_date{'rfc2822'},7076-status =>'304 Not Modified');7077return;7078}7079}7080print$cgi->header(7081-type =>$content_type,7082-charset =>'utf-8',7083-last_modified =>$latest_date{'rfc2822'});7084}else{7085print$cgi->header(7086-type =>$content_type,7087-charset =>'utf-8');7088}70897090# Optimization: skip generating the body if client asks only7091# for Last-Modified date.7092return if($cgi->request_method()eq'HEAD');70937094# header variables7095my$title="$site_name-$project/$action";7096my$feed_type='log';7097if(defined$hash) {7098$title.=" - '$hash'";7099$feed_type='branch log';7100if(defined$file_name) {7101$title.=" ::$file_name";7102$feed_type='history';7103}7104}elsif(defined$file_name) {7105$title.=" -$file_name";7106$feed_type='history';7107}7108$title.="$feed_type";7109my$descr= git_get_project_description($project);7110if(defined$descr) {7111$descr= esc_html($descr);7112}else{7113$descr="$project".7114($formateq'rss'?'RSS':'Atom') .7115" feed";7116}7117my$owner= git_get_project_owner($project);7118$owner= esc_html($owner);71197120#header7121my$alt_url;7122if(defined$file_name) {7123$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);7124}elsif(defined$hash) {7125$alt_url= href(-full=>1, action=>"log", hash=>$hash);7126}else{7127$alt_url= href(-full=>1, action=>"summary");7128}7129print qq!<?xml version="1.0" encoding="utf-8"?>\n!;7130if($formateq'rss') {7131print<<XML;7132<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">7133<channel>7134XML7135print"<title>$title</title>\n".7136"<link>$alt_url</link>\n".7137"<description>$descr</description>\n".7138"<language>en</language>\n".7139# project owner is responsible for 'editorial' content7140"<managingEditor>$owner</managingEditor>\n";7141if(defined$logo||defined$favicon) {7142# prefer the logo to the favicon, since RSS7143# doesn't allow both7144my$img= esc_url($logo||$favicon);7145print"<image>\n".7146"<url>$img</url>\n".7147"<title>$title</title>\n".7148"<link>$alt_url</link>\n".7149"</image>\n";7150}7151if(%latest_date) {7152print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";7153print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";7154}7155print"<generator>gitweb v.$version/$git_version</generator>\n";7156}elsif($formateq'atom') {7157print<<XML;7158<feed xmlns="http://www.w3.org/2005/Atom">7159XML7160print"<title>$title</title>\n".7161"<subtitle>$descr</subtitle>\n".7162'<link rel="alternate" type="text/html" href="'.7163$alt_url.'" />'."\n".7164'<link rel="self" type="'.$content_type.'" href="'.7165$cgi->self_url() .'" />'."\n".7166"<id>". href(-full=>1) ."</id>\n".7167# use project owner for feed author7168"<author><name>$owner</name></author>\n";7169if(defined$favicon) {7170print"<icon>". esc_url($favicon) ."</icon>\n";7171}7172if(defined$logo) {7173# not twice as wide as tall: 72 x 27 pixels7174print"<logo>". esc_url($logo) ."</logo>\n";7175}7176if(!%latest_date) {7177# dummy date to keep the feed valid until commits trickle in:7178print"<updated>1970-01-01T00:00:00Z</updated>\n";7179}else{7180print"<updated>$latest_date{'iso-8601'}</updated>\n";7181}7182print"<generator version='$version/$git_version'>gitweb</generator>\n";7183}71847185# contents7186for(my$i=0;$i<=$#commitlist;$i++) {7187my%co= %{$commitlist[$i]};7188my$commit=$co{'id'};7189# we read 150, we always show 30 and the ones more recent than 48 hours7190if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {7191last;7192}7193my%cd= parse_date($co{'author_epoch'});71947195# get list of changed files7196open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7197$co{'parent'} ||"--root",7198$co{'id'},"--", (defined$file_name?$file_name: ())7199ornext;7200my@difftree=map{chomp;$_} <$fd>;7201close$fd7202ornext;72037204# print element (entry, item)7205my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);7206if($formateq'rss') {7207print"<item>\n".7208"<title>". esc_html($co{'title'}) ."</title>\n".7209"<author>". esc_html($co{'author'}) ."</author>\n".7210"<pubDate>$cd{'rfc2822'}</pubDate>\n".7211"<guid isPermaLink=\"true\">$co_url</guid>\n".7212"<link>$co_url</link>\n".7213"<description>". esc_html($co{'title'}) ."</description>\n".7214"<content:encoded>".7215"<![CDATA[\n";7216}elsif($formateq'atom') {7217print"<entry>\n".7218"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".7219"<updated>$cd{'iso-8601'}</updated>\n".7220"<author>\n".7221" <name>". esc_html($co{'author_name'}) ."</name>\n";7222if($co{'author_email'}) {7223print" <email>". esc_html($co{'author_email'}) ."</email>\n";7224}7225print"</author>\n".7226# use committer for contributor7227"<contributor>\n".7228" <name>". esc_html($co{'committer_name'}) ."</name>\n";7229if($co{'committer_email'}) {7230print" <email>". esc_html($co{'committer_email'}) ."</email>\n";7231}7232print"</contributor>\n".7233"<published>$cd{'iso-8601'}</published>\n".7234"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".7235"<id>$co_url</id>\n".7236"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".7237"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";7238}7239my$comment=$co{'comment'};7240print"<pre>\n";7241foreachmy$line(@$comment) {7242$line= esc_html($line);7243print"$line\n";7244}7245print"</pre><ul>\n";7246foreachmy$difftree_line(@difftree) {7247my%difftree= parse_difftree_raw_line($difftree_line);7248next if!$difftree{'from_id'};72497250my$file=$difftree{'file'} ||$difftree{'to_file'};72517252print"<li>".7253"[".7254$cgi->a({-href => href(-full=>1, action=>"blobdiff",7255 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},7256 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},7257 file_name=>$file, file_parent=>$difftree{'from_file'}),7258-title =>"diff"},'D');7259if($have_blame) {7260print$cgi->a({-href => href(-full=>1, action=>"blame",7261 file_name=>$file, hash_base=>$commit),7262-title =>"blame"},'B');7263}7264# if this is not a feed of a file history7265if(!defined$file_name||$file_namene$file) {7266print$cgi->a({-href => href(-full=>1, action=>"history",7267 file_name=>$file, hash=>$commit),7268-title =>"history"},'H');7269}7270$file= esc_path($file);7271print"] ".7272"$file</li>\n";7273}7274if($formateq'rss') {7275print"</ul>]]>\n".7276"</content:encoded>\n".7277"</item>\n";7278}elsif($formateq'atom') {7279print"</ul>\n</div>\n".7280"</content>\n".7281"</entry>\n";7282}7283}72847285# end of feed7286if($formateq'rss') {7287print"</channel>\n</rss>\n";7288}elsif($formateq'atom') {7289print"</feed>\n";7290}7291}72927293sub git_rss {7294 git_feed('rss');7295}72967297sub git_atom {7298 git_feed('atom');7299}73007301sub git_opml {7302my@list= git_get_projects_list();73037304print$cgi->header(7305-type =>'text/xml',7306-charset =>'utf-8',7307-content_disposition =>'inline; filename="opml.xml"');73087309print<<XML;7310<?xml version="1.0" encoding="utf-8"?>7311<opml version="1.0">7312<head>7313 <title>$site_nameOPML Export</title>7314</head>7315<body>7316<outline text="git RSS feeds">7317XML73187319foreachmy$pr(@list) {7320my%proj=%$pr;7321my$head= git_get_head_hash($proj{'path'});7322if(!defined$head) {7323next;7324}7325$git_dir="$projectroot/$proj{'path'}";7326my%co= parse_commit($head);7327if(!%co) {7328next;7329}73307331my$path= esc_html(chop_str($proj{'path'},25,5));7332my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7333my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7334print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7335}7336print<<XML;7337</outline>7338</body>7339</opml>7340XML7341}