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); 20binmode STDOUT,':utf8'; 21 22our$t0; 23if(eval{require Time::HiRes;1; }) { 24$t0= [Time::HiRes::gettimeofday()]; 25} 26our$number_of_git_cmds=0; 27 28BEGIN{ 29 CGI->compile()if$ENV{'MOD_PERL'}; 30} 31 32our$version="++GIT_VERSION++"; 33 34our($my_url,$my_uri,$base_url,$path_info,$home_link); 35sub evaluate_uri { 36our$cgi; 37 38our$my_url=$cgi->url(); 39our$my_uri=$cgi->url(-absolute =>1); 40 41# Base URL for relative URLs in gitweb ($logo, $favicon, ...), 42# needed and used only for URLs with nonempty PATH_INFO 43our$base_url=$my_url; 44 45# When the script is used as DirectoryIndex, the URL does not contain the name 46# of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we 47# have to do it ourselves. We make $path_info global because it's also used 48# later on. 49# 50# Another issue with the script being the DirectoryIndex is that the resulting 51# $my_url data is not the full script URL: this is good, because we want 52# generated links to keep implying the script name if it wasn't explicitly 53# indicated in the URL we're handling, but it means that $my_url cannot be used 54# as base URL. 55# Therefore, if we needed to strip PATH_INFO, then we know that we have 56# to build the base URL ourselves: 57our$path_info=$ENV{"PATH_INFO"}; 58if($path_info) { 59if($my_url=~ s,\Q$path_info\E$,, && 60$my_uri=~ s,\Q$path_info\E$,, && 61defined$ENV{'SCRIPT_NAME'}) { 62$base_url=$cgi->url(-base =>1) .$ENV{'SCRIPT_NAME'}; 63} 64} 65 66# target of the home link on top of all pages 67our$home_link=$my_uri||"/"; 68} 69 70# core git executable to use 71# this can just be "git" if your webserver has a sensible PATH 72our$GIT="++GIT_BINDIR++/git"; 73 74# absolute fs-path which will be prepended to the project path 75#our $projectroot = "/pub/scm"; 76our$projectroot="++GITWEB_PROJECTROOT++"; 77 78# fs traversing limit for getting project list 79# the number is relative to the projectroot 80our$project_maxdepth="++GITWEB_PROJECT_MAXDEPTH++"; 81 82# string of the home link on top of all pages 83our$home_link_str="++GITWEB_HOME_LINK_STR++"; 84 85# name of your site or organization to appear in page titles 86# replace this with something more descriptive for clearer bookmarks 87our$site_name="++GITWEB_SITENAME++" 88|| ($ENV{'SERVER_NAME'} ||"Untitled") ." Git"; 89 90# filename of html text to include at top of each page 91our$site_header="++GITWEB_SITE_HEADER++"; 92# html text to include at home page 93our$home_text="++GITWEB_HOMETEXT++"; 94# filename of html text to include at bottom of each page 95our$site_footer="++GITWEB_SITE_FOOTER++"; 96 97# URI of stylesheets 98our@stylesheets= ("++GITWEB_CSS++"); 99# URI of a single stylesheet, which can be overridden in GITWEB_CONFIG. 100our$stylesheet=undef; 101# URI of GIT logo (72x27 size) 102our$logo="++GITWEB_LOGO++"; 103# URI of GIT favicon, assumed to be image/png type 104our$favicon="++GITWEB_FAVICON++"; 105# URI of gitweb.js (JavaScript code for gitweb) 106our$javascript="++GITWEB_JS++"; 107 108# URI and label (title) of GIT logo link 109#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/"; 110#our $logo_label = "git documentation"; 111our$logo_url="http://git-scm.com/"; 112our$logo_label="git homepage"; 113 114# source of projects list 115our$projects_list="++GITWEB_LIST++"; 116 117# the width (in characters) of the projects list "Description" column 118our$projects_list_description_width=25; 119 120# default order of projects list 121# valid values are none, project, descr, owner, and age 122our$default_projects_order="project"; 123 124# show repository only if this file exists 125# (only effective if this variable evaluates to true) 126our$export_ok="++GITWEB_EXPORT_OK++"; 127 128# show repository only if this subroutine returns true 129# when given the path to the project, for example: 130# sub { return -e "$_[0]/git-daemon-export-ok"; } 131our$export_auth_hook=undef; 132 133# only allow viewing of repositories also shown on the overview page 134our$strict_export="++GITWEB_STRICT_EXPORT++"; 135 136# list of git base URLs used for URL to where fetch project from, 137# i.e. full URL is "$git_base_url/$project" 138our@git_base_url_list=grep{$_ne''} ("++GITWEB_BASE_URL++"); 139 140# default blob_plain mimetype and default charset for text/plain blob 141our$default_blob_plain_mimetype='text/plain'; 142our$default_text_plain_charset=undef; 143 144# file to use for guessing MIME types before trying /etc/mime.types 145# (relative to the current git repository) 146our$mimetypes_file=undef; 147 148# assume this charset if line contains non-UTF-8 characters; 149# it should be valid encoding (see Encoding::Supported(3pm) for list), 150# for which encoding all byte sequences are valid, for example 151# 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it 152# could be even 'utf-8' for the old behavior) 153our$fallback_encoding='latin1'; 154 155# rename detection options for git-diff and git-diff-tree 156# - default is '-M', with the cost proportional to 157# (number of removed files) * (number of new files). 158# - more costly is '-C' (which implies '-M'), with the cost proportional to 159# (number of changed files + number of removed files) * (number of new files) 160# - even more costly is '-C', '--find-copies-harder' with cost 161# (number of files in the original tree) * (number of new files) 162# - one might want to include '-B' option, e.g. '-B', '-M' 163our@diff_opts= ('-M');# taken from git_commit 164 165# Disables features that would allow repository owners to inject script into 166# the gitweb domain. 167our$prevent_xss=0; 168 169# Path to the highlight executable to use (must be the one from 170# http://www.andre-simon.de due to assumptions about parameters and output). 171# Useful if highlight is not installed on your webserver's PATH. 172# [Default: highlight] 173our$highlight_bin="++HIGHLIGHT_BIN++"; 174 175# information about snapshot formats that gitweb is capable of serving 176our%known_snapshot_formats= ( 177# name => { 178# 'display' => display name, 179# 'type' => mime type, 180# 'suffix' => filename suffix, 181# 'format' => --format for git-archive, 182# 'compressor' => [compressor command and arguments] 183# (array reference, optional) 184# 'disabled' => boolean (optional)} 185# 186'tgz'=> { 187'display'=>'tar.gz', 188'type'=>'application/x-gzip', 189'suffix'=>'.tar.gz', 190'format'=>'tar', 191'compressor'=> ['gzip']}, 192 193'tbz2'=> { 194'display'=>'tar.bz2', 195'type'=>'application/x-bzip2', 196'suffix'=>'.tar.bz2', 197'format'=>'tar', 198'compressor'=> ['bzip2']}, 199 200'txz'=> { 201'display'=>'tar.xz', 202'type'=>'application/x-xz', 203'suffix'=>'.tar.xz', 204'format'=>'tar', 205'compressor'=> ['xz'], 206'disabled'=>1}, 207 208'zip'=> { 209'display'=>'zip', 210'type'=>'application/x-zip', 211'suffix'=>'.zip', 212'format'=>'zip'}, 213); 214 215# Aliases so we understand old gitweb.snapshot values in repository 216# configuration. 217our%known_snapshot_format_aliases= ( 218'gzip'=>'tgz', 219'bzip2'=>'tbz2', 220'xz'=>'txz', 221 222# backward compatibility: legacy gitweb config support 223'x-gzip'=>undef,'gz'=>undef, 224'x-bzip2'=>undef,'bz2'=>undef, 225'x-zip'=>undef,''=>undef, 226); 227 228# Pixel sizes for icons and avatars. If the default font sizes or lineheights 229# are changed, it may be appropriate to change these values too via 230# $GITWEB_CONFIG. 231our%avatar_size= ( 232'default'=>16, 233'double'=>32 234); 235 236# Used to set the maximum load that we will still respond to gitweb queries. 237# If server load exceed this value then return "503 server busy" error. 238# If gitweb cannot determined server load, it is taken to be 0. 239# Leave it undefined (or set to 'undef') to turn off load checking. 240our$maxload=300; 241 242# configuration for 'highlight' (http://www.andre-simon.de/) 243# match by basename 244our%highlight_basename= ( 245#'Program' => 'py', 246#'Library' => 'py', 247'SConstruct'=>'py',# SCons equivalent of Makefile 248'Makefile'=>'make', 249); 250# match by extension 251our%highlight_ext= ( 252# main extensions, defining name of syntax; 253# see files in /usr/share/highlight/langDefs/ directory 254map{$_=>$_} 255qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl), 256# alternate extensions, see /etc/highlight/filetypes.conf 257'h'=>'c', 258map{$_=>'cpp'}qw(cxx c++ cc), 259map{$_=>'php'}qw(php3 php4), 260map{$_=>'pl'}qw(perl pm),# perhaps also 'cgi' 261'mak'=>'make', 262map{$_=>'xml'}qw(xhtml html htm), 263); 264 265# You define site-wide feature defaults here; override them with 266# $GITWEB_CONFIG as necessary. 267our%feature= ( 268# feature => { 269# 'sub' => feature-sub (subroutine), 270# 'override' => allow-override (boolean), 271# 'default' => [ default options...] (array reference)} 272# 273# if feature is overridable (it means that allow-override has true value), 274# then feature-sub will be called with default options as parameters; 275# return value of feature-sub indicates if to enable specified feature 276# 277# if there is no 'sub' key (no feature-sub), then feature cannot be 278# overridden 279# 280# use gitweb_get_feature(<feature>) to retrieve the <feature> value 281# (an array) or gitweb_check_feature(<feature>) to check if <feature> 282# is enabled 283 284# Enable the 'blame' blob view, showing the last commit that modified 285# each line in the file. This can be very CPU-intensive. 286 287# To enable system wide have in $GITWEB_CONFIG 288# $feature{'blame'}{'default'} = [1]; 289# To have project specific config enable override in $GITWEB_CONFIG 290# $feature{'blame'}{'override'} = 1; 291# and in project config gitweb.blame = 0|1; 292'blame'=> { 293'sub'=>sub{ feature_bool('blame',@_) }, 294'override'=>0, 295'default'=> [0]}, 296 297# Enable the 'snapshot' link, providing a compressed archive of any 298# tree. This can potentially generate high traffic if you have large 299# project. 300 301# Value is a list of formats defined in %known_snapshot_formats that 302# you wish to offer. 303# To disable system wide have in $GITWEB_CONFIG 304# $feature{'snapshot'}{'default'} = []; 305# To have project specific config enable override in $GITWEB_CONFIG 306# $feature{'snapshot'}{'override'} = 1; 307# and in project config, a comma-separated list of formats or "none" 308# to disable. Example: gitweb.snapshot = tbz2,zip; 309'snapshot'=> { 310'sub'=> \&feature_snapshot, 311'override'=>0, 312'default'=> ['tgz']}, 313 314# Enable text search, which will list the commits which match author, 315# committer or commit text to a given string. Enabled by default. 316# Project specific override is not supported. 317'search'=> { 318'override'=>0, 319'default'=> [1]}, 320 321# Enable grep search, which will list the files in currently selected 322# tree containing the given string. Enabled by default. This can be 323# potentially CPU-intensive, of course. 324 325# To enable system wide have in $GITWEB_CONFIG 326# $feature{'grep'}{'default'} = [1]; 327# To have project specific config enable override in $GITWEB_CONFIG 328# $feature{'grep'}{'override'} = 1; 329# and in project config gitweb.grep = 0|1; 330'grep'=> { 331'sub'=>sub{ feature_bool('grep',@_) }, 332'override'=>0, 333'default'=> [1]}, 334 335# Enable the pickaxe search, which will list the commits that modified 336# a given string in a file. This can be practical and quite faster 337# alternative to 'blame', but still potentially CPU-intensive. 338 339# To enable system wide have in $GITWEB_CONFIG 340# $feature{'pickaxe'}{'default'} = [1]; 341# To have project specific config enable override in $GITWEB_CONFIG 342# $feature{'pickaxe'}{'override'} = 1; 343# and in project config gitweb.pickaxe = 0|1; 344'pickaxe'=> { 345'sub'=>sub{ feature_bool('pickaxe',@_) }, 346'override'=>0, 347'default'=> [1]}, 348 349# Enable showing size of blobs in a 'tree' view, in a separate 350# column, similar to what 'ls -l' does. This cost a bit of IO. 351 352# To disable system wide have in $GITWEB_CONFIG 353# $feature{'show-sizes'}{'default'} = [0]; 354# To have project specific config enable override in $GITWEB_CONFIG 355# $feature{'show-sizes'}{'override'} = 1; 356# and in project config gitweb.showsizes = 0|1; 357'show-sizes'=> { 358'sub'=>sub{ feature_bool('showsizes',@_) }, 359'override'=>0, 360'default'=> [1]}, 361 362# Make gitweb use an alternative format of the URLs which can be 363# more readable and natural-looking: project name is embedded 364# directly in the path and the query string contains other 365# auxiliary information. All gitweb installations recognize 366# URL in either format; this configures in which formats gitweb 367# generates links. 368 369# To enable system wide have in $GITWEB_CONFIG 370# $feature{'pathinfo'}{'default'} = [1]; 371# Project specific override is not supported. 372 373# Note that you will need to change the default location of CSS, 374# favicon, logo and possibly other files to an absolute URL. Also, 375# if gitweb.cgi serves as your indexfile, you will need to force 376# $my_uri to contain the script name in your $GITWEB_CONFIG. 377'pathinfo'=> { 378'override'=>0, 379'default'=> [0]}, 380 381# Make gitweb consider projects in project root subdirectories 382# to be forks of existing projects. Given project $projname.git, 383# projects matching $projname/*.git will not be shown in the main 384# projects list, instead a '+' mark will be added to $projname 385# there and a 'forks' view will be enabled for the project, listing 386# all the forks. If project list is taken from a file, forks have 387# to be listed after the main project. 388 389# To enable system wide have in $GITWEB_CONFIG 390# $feature{'forks'}{'default'} = [1]; 391# Project specific override is not supported. 392'forks'=> { 393'override'=>0, 394'default'=> [0]}, 395 396# Insert custom links to the action bar of all project pages. 397# This enables you mainly to link to third-party scripts integrating 398# into gitweb; e.g. git-browser for graphical history representation 399# or custom web-based repository administration interface. 400 401# The 'default' value consists of a list of triplets in the form 402# (label, link, position) where position is the label after which 403# to insert the link and link is a format string where %n expands 404# to the project name, %f to the project path within the filesystem, 405# %h to the current hash (h gitweb parameter) and %b to the current 406# hash base (hb gitweb parameter); %% expands to %. 407 408# To enable system wide have in $GITWEB_CONFIG e.g. 409# $feature{'actions'}{'default'} = [('graphiclog', 410# '/git-browser/by-commit.html?r=%n', 'summary')]; 411# Project specific override is not supported. 412'actions'=> { 413'override'=>0, 414'default'=> []}, 415 416# Allow gitweb scan project content tags described in ctags/ 417# of project repository, and display the popular Web 2.0-ish 418# "tag cloud" near the project list. Note that this is something 419# COMPLETELY different from the normal Git tags. 420 421# gitweb by itself can show existing tags, but it does not handle 422# tagging itself; you need an external application for that. 423# For an example script, check Girocco's cgi/tagproj.cgi. 424# You may want to install the HTML::TagCloud Perl module to get 425# a pretty tag cloud instead of just a list of tags. 426 427# To enable system wide have in $GITWEB_CONFIG 428# $feature{'ctags'}{'default'} = ['path_to_tag_script']; 429# Project specific override is not supported. 430'ctags'=> { 431'override'=>0, 432'default'=> [0]}, 433 434# The maximum number of patches in a patchset generated in patch 435# view. Set this to 0 or undef to disable patch view, or to a 436# negative number to remove any limit. 437 438# To disable system wide have in $GITWEB_CONFIG 439# $feature{'patches'}{'default'} = [0]; 440# To have project specific config enable override in $GITWEB_CONFIG 441# $feature{'patches'}{'override'} = 1; 442# and in project config gitweb.patches = 0|n; 443# where n is the maximum number of patches allowed in a patchset. 444'patches'=> { 445'sub'=> \&feature_patches, 446'override'=>0, 447'default'=> [16]}, 448 449# Avatar support. When this feature is enabled, views such as 450# shortlog or commit will display an avatar associated with 451# the email of the committer(s) and/or author(s). 452 453# Currently available providers are gravatar and picon. 454# If an unknown provider is specified, the feature is disabled. 455 456# Gravatar depends on Digest::MD5. 457# Picon currently relies on the indiana.edu database. 458 459# To enable system wide have in $GITWEB_CONFIG 460# $feature{'avatar'}{'default'} = ['<provider>']; 461# where <provider> is either gravatar or picon. 462# To have project specific config enable override in $GITWEB_CONFIG 463# $feature{'avatar'}{'override'} = 1; 464# and in project config gitweb.avatar = <provider>; 465'avatar'=> { 466'sub'=> \&feature_avatar, 467'override'=>0, 468'default'=> ['']}, 469 470# Enable displaying how much time and how many git commands 471# it took to generate and display page. Disabled by default. 472# Project specific override is not supported. 473'timed'=> { 474'override'=>0, 475'default'=> [0]}, 476 477# Enable turning some links into links to actions which require 478# JavaScript to run (like 'blame_incremental'). Not enabled by 479# default. Project specific override is currently not supported. 480'javascript-actions'=> { 481'override'=>0, 482'default'=> [0]}, 483 484# Syntax highlighting support. This is based on Daniel Svensson's 485# and Sham Chukoury's work in gitweb-xmms2.git. 486# It requires the 'highlight' program present in $PATH, 487# and therefore is disabled by default. 488 489# To enable system wide have in $GITWEB_CONFIG 490# $feature{'highlight'}{'default'} = [1]; 491 492'highlight'=> { 493'sub'=>sub{ feature_bool('highlight',@_) }, 494'override'=>0, 495'default'=> [0]}, 496 497# Enable displaying of remote heads in the heads list 498 499# To enable system wide have in $GITWEB_CONFIG 500# $feature{'remote_heads'}{'default'} = [1]; 501# To have project specific config enable override in $GITWEB_CONFIG 502# $feature{'remote_heads'}{'override'} = 1; 503# and in project config gitweb.remote_heads = 0|1; 504'remote_heads'=> { 505'sub'=>sub{ feature_bool('remote_heads',@_) }, 506'override'=>0, 507'default'=> [0]}, 508); 509 510sub gitweb_get_feature { 511my($name) =@_; 512return unlessexists$feature{$name}; 513my($sub,$override,@defaults) = ( 514$feature{$name}{'sub'}, 515$feature{$name}{'override'}, 516@{$feature{$name}{'default'}}); 517# project specific override is possible only if we have project 518our$git_dir;# global variable, declared later 519if(!$override|| !defined$git_dir) { 520return@defaults; 521} 522if(!defined$sub) { 523warn"feature$nameis not overridable"; 524return@defaults; 525} 526return$sub->(@defaults); 527} 528 529# A wrapper to check if a given feature is enabled. 530# With this, you can say 531# 532# my $bool_feat = gitweb_check_feature('bool_feat'); 533# gitweb_check_feature('bool_feat') or somecode; 534# 535# instead of 536# 537# my ($bool_feat) = gitweb_get_feature('bool_feat'); 538# (gitweb_get_feature('bool_feat'))[0] or somecode; 539# 540sub gitweb_check_feature { 541return(gitweb_get_feature(@_))[0]; 542} 543 544 545sub feature_bool { 546my$key=shift; 547my($val) = git_get_project_config($key,'--bool'); 548 549if(!defined$val) { 550return($_[0]); 551}elsif($valeq'true') { 552return(1); 553}elsif($valeq'false') { 554return(0); 555} 556} 557 558sub feature_snapshot { 559my(@fmts) =@_; 560 561my($val) = git_get_project_config('snapshot'); 562 563if($val) { 564@fmts= ($valeq'none'? () :split/\s*[,\s]\s*/,$val); 565} 566 567return@fmts; 568} 569 570sub feature_patches { 571my@val= (git_get_project_config('patches','--int')); 572 573if(@val) { 574return@val; 575} 576 577return($_[0]); 578} 579 580sub feature_avatar { 581my@val= (git_get_project_config('avatar')); 582 583return@val?@val:@_; 584} 585 586# checking HEAD file with -e is fragile if the repository was 587# initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed 588# and then pruned. 589sub check_head_link { 590my($dir) =@_; 591my$headfile="$dir/HEAD"; 592return((-e $headfile) || 593(-l $headfile&&readlink($headfile) =~/^refs\/heads\//)); 594} 595 596sub check_export_ok { 597my($dir) =@_; 598return(check_head_link($dir) && 599(!$export_ok|| -e "$dir/$export_ok") && 600(!$export_auth_hook||$export_auth_hook->($dir))); 601} 602 603# process alternate names for backward compatibility 604# filter out unsupported (unknown) snapshot formats 605sub filter_snapshot_fmts { 606my@fmts=@_; 607 608@fmts=map{ 609exists$known_snapshot_format_aliases{$_} ? 610$known_snapshot_format_aliases{$_} :$_}@fmts; 611@fmts=grep{ 612exists$known_snapshot_formats{$_} && 613!$known_snapshot_formats{$_}{'disabled'}}@fmts; 614} 615 616our($GITWEB_CONFIG,$GITWEB_CONFIG_SYSTEM); 617sub evaluate_gitweb_config { 618our$GITWEB_CONFIG=$ENV{'GITWEB_CONFIG'} ||"++GITWEB_CONFIG++"; 619our$GITWEB_CONFIG_SYSTEM=$ENV{'GITWEB_CONFIG_SYSTEM'} ||"++GITWEB_CONFIG_SYSTEM++"; 620# die if there are errors parsing config file 621if(-e $GITWEB_CONFIG) { 622do$GITWEB_CONFIG; 623die$@if$@; 624}elsif(-e $GITWEB_CONFIG_SYSTEM) { 625do$GITWEB_CONFIG_SYSTEM; 626die$@if$@; 627} 628} 629 630# Get loadavg of system, to compare against $maxload. 631# Currently it requires '/proc/loadavg' present to get loadavg; 632# if it is not present it returns 0, which means no load checking. 633sub get_loadavg { 634if( -e '/proc/loadavg'){ 635open my$fd,'<','/proc/loadavg' 636orreturn0; 637my@load=split(/\s+/,scalar<$fd>); 638close$fd; 639 640# The first three columns measure CPU and IO utilization of the last one, 641# five, and 10 minute periods. The fourth column shows the number of 642# currently running processes and the total number of processes in the m/n 643# format. The last column displays the last process ID used. 644return$load[0] ||0; 645} 646# additional checks for load average should go here for things that don't export 647# /proc/loadavg 648 649return0; 650} 651 652# version of the core git binary 653our$git_version; 654sub evaluate_git_version { 655our$git_version=qx("$GIT" --version)=~m/git version (.*)$/?$1:"unknown"; 656$number_of_git_cmds++; 657} 658 659sub check_loadavg { 660if(defined$maxload&& get_loadavg() >$maxload) { 661 die_error(503,"The load average on the server is too high"); 662} 663} 664 665# ====================================================================== 666# input validation and dispatch 667 668# input parameters can be collected from a variety of sources (presently, CGI 669# and PATH_INFO), so we define an %input_params hash that collects them all 670# together during validation: this allows subsequent uses (e.g. href()) to be 671# agnostic of the parameter origin 672 673our%input_params= (); 674 675# input parameters are stored with the long parameter name as key. This will 676# also be used in the href subroutine to convert parameters to their CGI 677# equivalent, and since the href() usage is the most frequent one, we store 678# the name -> CGI key mapping here, instead of the reverse. 679# 680# XXX: Warning: If you touch this, check the search form for updating, 681# too. 682 683our@cgi_param_mapping= ( 684 project =>"p", 685 action =>"a", 686 file_name =>"f", 687 file_parent =>"fp", 688 hash =>"h", 689 hash_parent =>"hp", 690 hash_base =>"hb", 691 hash_parent_base =>"hpb", 692 page =>"pg", 693 order =>"o", 694 searchtext =>"s", 695 searchtype =>"st", 696 snapshot_format =>"sf", 697 extra_options =>"opt", 698 search_use_regexp =>"sr", 699# this must be last entry (for manipulation from JavaScript) 700 javascript =>"js" 701); 702our%cgi_param_mapping=@cgi_param_mapping; 703 704# we will also need to know the possible actions, for validation 705our%actions= ( 706"blame"=> \&git_blame, 707"blame_incremental"=> \&git_blame_incremental, 708"blame_data"=> \&git_blame_data, 709"blobdiff"=> \&git_blobdiff, 710"blobdiff_plain"=> \&git_blobdiff_plain, 711"blob"=> \&git_blob, 712"blob_plain"=> \&git_blob_plain, 713"commitdiff"=> \&git_commitdiff, 714"commitdiff_plain"=> \&git_commitdiff_plain, 715"commit"=> \&git_commit, 716"forks"=> \&git_forks, 717"heads"=> \&git_heads, 718"history"=> \&git_history, 719"log"=> \&git_log, 720"patch"=> \&git_patch, 721"patches"=> \&git_patches, 722"remotes"=> \&git_remotes, 723"rss"=> \&git_rss, 724"atom"=> \&git_atom, 725"search"=> \&git_search, 726"search_help"=> \&git_search_help, 727"shortlog"=> \&git_shortlog, 728"summary"=> \&git_summary, 729"tag"=> \&git_tag, 730"tags"=> \&git_tags, 731"tree"=> \&git_tree, 732"snapshot"=> \&git_snapshot, 733"object"=> \&git_object, 734# those below don't need $project 735"opml"=> \&git_opml, 736"project_list"=> \&git_project_list, 737"project_index"=> \&git_project_index, 738); 739 740# finally, we have the hash of allowed extra_options for the commands that 741# allow them 742our%allowed_options= ( 743"--no-merges"=> [qw(rss atom log shortlog history)], 744); 745 746# fill %input_params with the CGI parameters. All values except for 'opt' 747# should be single values, but opt can be an array. We should probably 748# build an array of parameters that can be multi-valued, but since for the time 749# being it's only this one, we just single it out 750sub evaluate_query_params { 751our$cgi; 752 753while(my($name,$symbol) =each%cgi_param_mapping) { 754if($symboleq'opt') { 755$input_params{$name} = [$cgi->param($symbol) ]; 756}else{ 757$input_params{$name} =$cgi->param($symbol); 758} 759} 760} 761 762# now read PATH_INFO and update the parameter list for missing parameters 763sub evaluate_path_info { 764return ifdefined$input_params{'project'}; 765return if!$path_info; 766$path_info=~ s,^/+,,; 767return if!$path_info; 768 769# find which part of PATH_INFO is project 770my$project=$path_info; 771$project=~ s,/+$,,; 772while($project&& !check_head_link("$projectroot/$project")) { 773$project=~ s,/*[^/]*$,,; 774} 775return unless$project; 776$input_params{'project'} =$project; 777 778# do not change any parameters if an action is given using the query string 779return if$input_params{'action'}; 780$path_info=~ s,^\Q$project\E/*,,; 781 782# next, check if we have an action 783my$action=$path_info; 784$action=~ s,/.*$,,; 785if(exists$actions{$action}) { 786$path_info=~ s,^$action/*,,; 787$input_params{'action'} =$action; 788} 789 790# list of actions that want hash_base instead of hash, but can have no 791# pathname (f) parameter 792my@wants_base= ( 793'tree', 794'history', 795); 796 797# we want to catch, among others 798# [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name] 799my($parentrefname,$parentpathname,$refname,$pathname) = 800($path_info=~/^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/); 801 802# first, analyze the 'current' part 803if(defined$pathname) { 804# we got "branch:filename" or "branch:dir/" 805# we could use git_get_type(branch:pathname), but: 806# - it needs $git_dir 807# - it does a git() call 808# - the convention of terminating directories with a slash 809# makes it superfluous 810# - embedding the action in the PATH_INFO would make it even 811# more superfluous 812$pathname=~ s,^/+,,; 813if(!$pathname||substr($pathname, -1)eq"/") { 814$input_params{'action'} ||="tree"; 815$pathname=~ s,/$,,; 816}else{ 817# the default action depends on whether we had parent info 818# or not 819if($parentrefname) { 820$input_params{'action'} ||="blobdiff_plain"; 821}else{ 822$input_params{'action'} ||="blob_plain"; 823} 824} 825$input_params{'hash_base'} ||=$refname; 826$input_params{'file_name'} ||=$pathname; 827}elsif(defined$refname) { 828# we got "branch". In this case we have to choose if we have to 829# set hash or hash_base. 830# 831# Most of the actions without a pathname only want hash to be 832# set, except for the ones specified in @wants_base that want 833# hash_base instead. It should also be noted that hand-crafted 834# links having 'history' as an action and no pathname or hash 835# set will fail, but that happens regardless of PATH_INFO. 836if(defined$parentrefname) { 837# if there is parent let the default be 'shortlog' action 838# (for http://git.example.com/repo.git/A..B links); if there 839# is no parent, dispatch will detect type of object and set 840# action appropriately if required (if action is not set) 841$input_params{'action'} ||="shortlog"; 842} 843if($input_params{'action'} && 844grep{$_eq$input_params{'action'} }@wants_base) { 845$input_params{'hash_base'} ||=$refname; 846}else{ 847$input_params{'hash'} ||=$refname; 848} 849} 850 851# next, handle the 'parent' part, if present 852if(defined$parentrefname) { 853# a missing pathspec defaults to the 'current' filename, allowing e.g. 854# someproject/blobdiff/oldrev..newrev:/filename 855if($parentpathname) { 856$parentpathname=~ s,^/+,,; 857$parentpathname=~ s,/$,,; 858$input_params{'file_parent'} ||=$parentpathname; 859}else{ 860$input_params{'file_parent'} ||=$input_params{'file_name'}; 861} 862# we assume that hash_parent_base is wanted if a path was specified, 863# or if the action wants hash_base instead of hash 864if(defined$input_params{'file_parent'} || 865grep{$_eq$input_params{'action'} }@wants_base) { 866$input_params{'hash_parent_base'} ||=$parentrefname; 867}else{ 868$input_params{'hash_parent'} ||=$parentrefname; 869} 870} 871 872# for the snapshot action, we allow URLs in the form 873# $project/snapshot/$hash.ext 874# where .ext determines the snapshot and gets removed from the 875# passed $refname to provide the $hash. 876# 877# To be able to tell that $refname includes the format extension, we 878# require the following two conditions to be satisfied: 879# - the hash input parameter MUST have been set from the $refname part 880# of the URL (i.e. they must be equal) 881# - the snapshot format MUST NOT have been defined already (e.g. from 882# CGI parameter sf) 883# It's also useless to try any matching unless $refname has a dot, 884# so we check for that too 885if(defined$input_params{'action'} && 886$input_params{'action'}eq'snapshot'&& 887defined$refname&&index($refname,'.') != -1&& 888$refnameeq$input_params{'hash'} && 889!defined$input_params{'snapshot_format'}) { 890# We loop over the known snapshot formats, checking for 891# extensions. Allowed extensions are both the defined suffix 892# (which includes the initial dot already) and the snapshot 893# format key itself, with a prepended dot 894while(my($fmt,$opt) =each%known_snapshot_formats) { 895my$hash=$refname; 896unless($hash=~s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) { 897next; 898} 899my$sfx=$1; 900# a valid suffix was found, so set the snapshot format 901# and reset the hash parameter 902$input_params{'snapshot_format'} =$fmt; 903$input_params{'hash'} =$hash; 904# we also set the format suffix to the one requested 905# in the URL: this way a request for e.g. .tgz returns 906# a .tgz instead of a .tar.gz 907$known_snapshot_formats{$fmt}{'suffix'} =$sfx; 908last; 909} 910} 911} 912 913our($action,$project,$file_name,$file_parent,$hash,$hash_parent,$hash_base, 914$hash_parent_base,@extra_options,$page,$searchtype,$search_use_regexp, 915$searchtext,$search_regexp); 916sub evaluate_and_validate_params { 917our$action=$input_params{'action'}; 918if(defined$action) { 919if(!validate_action($action)) { 920 die_error(400,"Invalid action parameter"); 921} 922} 923 924# parameters which are pathnames 925our$project=$input_params{'project'}; 926if(defined$project) { 927if(!validate_project($project)) { 928undef$project; 929 die_error(404,"No such project"); 930} 931} 932 933our$file_name=$input_params{'file_name'}; 934if(defined$file_name) { 935if(!validate_pathname($file_name)) { 936 die_error(400,"Invalid file parameter"); 937} 938} 939 940our$file_parent=$input_params{'file_parent'}; 941if(defined$file_parent) { 942if(!validate_pathname($file_parent)) { 943 die_error(400,"Invalid file parent parameter"); 944} 945} 946 947# parameters which are refnames 948our$hash=$input_params{'hash'}; 949if(defined$hash) { 950if(!validate_refname($hash)) { 951 die_error(400,"Invalid hash parameter"); 952} 953} 954 955our$hash_parent=$input_params{'hash_parent'}; 956if(defined$hash_parent) { 957if(!validate_refname($hash_parent)) { 958 die_error(400,"Invalid hash parent parameter"); 959} 960} 961 962our$hash_base=$input_params{'hash_base'}; 963if(defined$hash_base) { 964if(!validate_refname($hash_base)) { 965 die_error(400,"Invalid hash base parameter"); 966} 967} 968 969our@extra_options= @{$input_params{'extra_options'}}; 970# @extra_options is always defined, since it can only be (currently) set from 971# CGI, and $cgi->param() returns the empty array in array context if the param 972# is not set 973foreachmy$opt(@extra_options) { 974if(not exists$allowed_options{$opt}) { 975 die_error(400,"Invalid option parameter"); 976} 977if(not grep(/^$action$/, @{$allowed_options{$opt}})) { 978 die_error(400,"Invalid option parameter for this action"); 979} 980} 981 982our$hash_parent_base=$input_params{'hash_parent_base'}; 983if(defined$hash_parent_base) { 984if(!validate_refname($hash_parent_base)) { 985 die_error(400,"Invalid hash parent base parameter"); 986} 987} 988 989# other parameters 990our$page=$input_params{'page'}; 991if(defined$page) { 992if($page=~m/[^0-9]/) { 993 die_error(400,"Invalid page parameter"); 994} 995} 996 997our$searchtype=$input_params{'searchtype'}; 998if(defined$searchtype) { 999if($searchtype=~m/[^a-z]/) {1000 die_error(400,"Invalid searchtype parameter");1001}1002}10031004our$search_use_regexp=$input_params{'search_use_regexp'};10051006our$searchtext=$input_params{'searchtext'};1007our$search_regexp;1008if(defined$searchtext) {1009if(length($searchtext) <2) {1010 die_error(403,"At least two characters are required for search parameter");1011}1012$search_regexp=$search_use_regexp?$searchtext:quotemeta$searchtext;1013}1014}10151016# path to the current git repository1017our$git_dir;1018sub evaluate_git_dir {1019our$git_dir="$projectroot/$project"if$project;1020}10211022our(@snapshot_fmts,$git_avatar);1023sub configure_gitweb_features {1024# list of supported snapshot formats1025our@snapshot_fmts= gitweb_get_feature('snapshot');1026@snapshot_fmts= filter_snapshot_fmts(@snapshot_fmts);10271028# check that the avatar feature is set to a known provider name,1029# and for each provider check if the dependencies are satisfied.1030# if the provider name is invalid or the dependencies are not met,1031# reset $git_avatar to the empty string.1032our($git_avatar) = gitweb_get_feature('avatar');1033if($git_avatareq'gravatar') {1034$git_avatar=''unless(eval{require Digest::MD5;1; });1035}elsif($git_avatareq'picon') {1036# no dependencies1037}else{1038$git_avatar='';1039}1040}10411042# custom error handler: 'die <message>' is Internal Server Error1043sub handle_errors_html {1044my$msg=shift;# it is already HTML escaped10451046# to avoid infinite loop where error occurs in die_error,1047# change handler to default handler, disabling handle_errors_html1048 set_message("Error occured when inside die_error:\n$msg");10491050# you cannot jump out of die_error when called as error handler;1051# the subroutine set via CGI::Carp::set_message is called _after_1052# HTTP headers are already written, so it cannot write them itself1053 die_error(undef,undef,$msg, -error_handler =>1, -no_http_header =>1);1054}1055set_message(\&handle_errors_html);10561057# dispatch1058sub dispatch {1059if(!defined$action) {1060if(defined$hash) {1061$action= git_get_type($hash);1062}elsif(defined$hash_base&&defined$file_name) {1063$action= git_get_type("$hash_base:$file_name");1064}elsif(defined$project) {1065$action='summary';1066}else{1067$action='project_list';1068}1069}1070if(!defined($actions{$action})) {1071 die_error(400,"Unknown action");1072}1073if($action!~m/^(?:opml|project_list|project_index)$/&&1074!$project) {1075 die_error(400,"Project needed");1076}1077$actions{$action}->();1078}10791080sub reset_timer {1081our$t0= [Time::HiRes::gettimeofday()]1082ifdefined$t0;1083our$number_of_git_cmds=0;1084}10851086sub run_request {1087 reset_timer();10881089 evaluate_uri();1090 evaluate_gitweb_config();1091 evaluate_git_version();1092 check_loadavg();10931094# $projectroot and $projects_list might be set in gitweb config file1095$projects_list||=$projectroot;10961097 evaluate_query_params();1098 evaluate_path_info();1099 evaluate_and_validate_params();1100 evaluate_git_dir();11011102 configure_gitweb_features();11031104 dispatch();1105}11061107our$is_last_request=sub{1};1108our($pre_dispatch_hook,$post_dispatch_hook,$pre_listen_hook);1109our$CGI='CGI';1110our$cgi;1111sub configure_as_fcgi {1112require CGI::Fast;1113our$CGI='CGI::Fast';11141115my$request_number=0;1116# let each child service 100 requests1117our$is_last_request=sub{ ++$request_number>100};1118}1119sub evaluate_argv {1120my$script_name=$ENV{'SCRIPT_NAME'} ||$ENV{'SCRIPT_FILENAME'} || __FILE__;1121 configure_as_fcgi()1122if$script_name=~/\.fcgi$/;11231124return unless(@ARGV);11251126require Getopt::Long;1127 Getopt::Long::GetOptions(1128'fastcgi|fcgi|f'=> \&configure_as_fcgi,1129'nproc|n=i'=>sub{1130my($arg,$val) =@_;1131return unlesseval{require FCGI::ProcManager;1; };1132my$proc_manager= FCGI::ProcManager->new({1133 n_processes =>$val,1134});1135our$pre_listen_hook=sub{$proc_manager->pm_manage() };1136our$pre_dispatch_hook=sub{$proc_manager->pm_pre_dispatch() };1137our$post_dispatch_hook=sub{$proc_manager->pm_post_dispatch() };1138},1139);1140}11411142sub run {1143 evaluate_argv();11441145$pre_listen_hook->()1146if$pre_listen_hook;11471148 REQUEST:1149while($cgi=$CGI->new()) {1150$pre_dispatch_hook->()1151if$pre_dispatch_hook;11521153 run_request();11541155$post_dispatch_hook->()1156if$post_dispatch_hook;11571158last REQUEST if($is_last_request->());1159}11601161 DONE_GITWEB:11621;1163}11641165run();11661167if(defined caller) {1168# wrapped in a subroutine processing requests,1169# e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI1170return;1171}else{1172# pure CGI script, serving single request1173exit;1174}11751176## ======================================================================1177## action links11781179# possible values of extra options1180# -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)1181# -replay => 1 - start from a current view (replay with modifications)1182# -path_info => 0|1 - don't use/use path_info URL (if possible)1183sub href {1184my%params=@_;1185# default is to use -absolute url() i.e. $my_uri1186my$href=$params{-full} ?$my_url:$my_uri;11871188$params{'project'} =$projectunlessexists$params{'project'};11891190if($params{-replay}) {1191while(my($name,$symbol) =each%cgi_param_mapping) {1192if(!exists$params{$name}) {1193$params{$name} =$input_params{$name};1194}1195}1196}11971198my$use_pathinfo= gitweb_check_feature('pathinfo');1199if(defined$params{'project'} &&1200(exists$params{-path_info} ?$params{-path_info} :$use_pathinfo)) {1201# try to put as many parameters as possible in PATH_INFO:1202# - project name1203# - action1204# - hash_parent or hash_parent_base:/file_parent1205# - hash or hash_base:/filename1206# - the snapshot_format as an appropriate suffix12071208# When the script is the root DirectoryIndex for the domain,1209# $href here would be something like http://gitweb.example.com/1210# Thus, we strip any trailing / from $href, to spare us double1211# slashes in the final URL1212$href=~ s,/$,,;12131214# Then add the project name, if present1215$href.="/".esc_url($params{'project'});1216delete$params{'project'};12171218# since we destructively absorb parameters, we keep this1219# boolean that remembers if we're handling a snapshot1220my$is_snapshot=$params{'action'}eq'snapshot';12211222# Summary just uses the project path URL, any other action is1223# added to the URL1224if(defined$params{'action'}) {1225$href.="/".esc_url($params{'action'})unless$params{'action'}eq'summary';1226delete$params{'action'};1227}12281229# Next, we put hash_parent_base:/file_parent..hash_base:/file_name,1230# stripping nonexistent or useless pieces1231$href.="/"if($params{'hash_base'} ||$params{'hash_parent_base'}1232||$params{'hash_parent'} ||$params{'hash'});1233if(defined$params{'hash_base'}) {1234if(defined$params{'hash_parent_base'}) {1235$href.= esc_url($params{'hash_parent_base'});1236# skip the file_parent if it's the same as the file_name1237if(defined$params{'file_parent'}) {1238if(defined$params{'file_name'} &&$params{'file_parent'}eq$params{'file_name'}) {1239delete$params{'file_parent'};1240}elsif($params{'file_parent'} !~/\.\./) {1241$href.=":/".esc_url($params{'file_parent'});1242delete$params{'file_parent'};1243}1244}1245$href.="..";1246delete$params{'hash_parent'};1247delete$params{'hash_parent_base'};1248}elsif(defined$params{'hash_parent'}) {1249$href.= esc_url($params{'hash_parent'})."..";1250delete$params{'hash_parent'};1251}12521253$href.= esc_url($params{'hash_base'});1254if(defined$params{'file_name'} &&$params{'file_name'} !~/\.\./) {1255$href.=":/".esc_url($params{'file_name'});1256delete$params{'file_name'};1257}1258delete$params{'hash'};1259delete$params{'hash_base'};1260}elsif(defined$params{'hash'}) {1261$href.= esc_url($params{'hash'});1262delete$params{'hash'};1263}12641265# If the action was a snapshot, we can absorb the1266# snapshot_format parameter too1267if($is_snapshot) {1268my$fmt=$params{'snapshot_format'};1269# snapshot_format should always be defined when href()1270# is called, but just in case some code forgets, we1271# fall back to the default1272$fmt||=$snapshot_fmts[0];1273$href.=$known_snapshot_formats{$fmt}{'suffix'};1274delete$params{'snapshot_format'};1275}1276}12771278# now encode the parameters explicitly1279my@result= ();1280for(my$i=0;$i<@cgi_param_mapping;$i+=2) {1281my($name,$symbol) = ($cgi_param_mapping[$i],$cgi_param_mapping[$i+1]);1282if(defined$params{$name}) {1283if(ref($params{$name})eq"ARRAY") {1284foreachmy$par(@{$params{$name}}) {1285push@result,$symbol."=". esc_param($par);1286}1287}else{1288push@result,$symbol."=". esc_param($params{$name});1289}1290}1291}1292$href.="?".join(';',@result)ifscalar@result;12931294return$href;1295}129612971298## ======================================================================1299## validation, quoting/unquoting and escaping13001301sub validate_action {1302my$input=shift||returnundef;1303returnundefunlessexists$actions{$input};1304return$input;1305}13061307sub validate_project {1308my$input=shift||returnundef;1309if(!validate_pathname($input) ||1310!(-d "$projectroot/$input") ||1311!check_export_ok("$projectroot/$input") ||1312($strict_export&& !project_in_list($input))) {1313returnundef;1314}else{1315return$input;1316}1317}13181319sub validate_pathname {1320my$input=shift||returnundef;13211322# no '.' or '..' as elements of path, i.e. no '.' nor '..'1323# at the beginning, at the end, and between slashes.1324# also this catches doubled slashes1325if($input=~m!(^|/)(|\.|\.\.)(/|$)!) {1326returnundef;1327}1328# no null characters1329if($input=~m!\0!) {1330returnundef;1331}1332return$input;1333}13341335sub validate_refname {1336my$input=shift||returnundef;13371338# textual hashes are O.K.1339if($input=~m/^[0-9a-fA-F]{40}$/) {1340return$input;1341}1342# it must be correct pathname1343$input= validate_pathname($input)1344orreturnundef;1345# restrictions on ref name according to git-check-ref-format1346if($input=~m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {1347returnundef;1348}1349return$input;1350}13511352# decode sequences of octets in utf8 into Perl's internal form,1353# which is utf-8 with utf8 flag set if needed. gitweb writes out1354# in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning1355sub to_utf8 {1356my$str=shift;1357returnundefunlessdefined$str;1358if(utf8::valid($str)) {1359 utf8::decode($str);1360return$str;1361}else{1362return decode($fallback_encoding,$str, Encode::FB_DEFAULT);1363}1364}13651366# quote unsafe chars, but keep the slash, even when it's not1367# correct, but quoted slashes look too horrible in bookmarks1368sub esc_param {1369my$str=shift;1370returnundefunlessdefined$str;1371$str=~s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;1372$str=~s/ /\+/g;1373return$str;1374}13751376# quote unsafe chars in whole URL, so some characters cannot be quoted1377sub esc_url {1378my$str=shift;1379returnundefunlessdefined$str;1380$str=~s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;1381$str=~s/ /\+/g;1382return$str;1383}13841385# replace invalid utf8 character with SUBSTITUTION sequence1386sub esc_html {1387my$str=shift;1388my%opts=@_;13891390returnundefunlessdefined$str;13911392$str= to_utf8($str);1393$str=$cgi->escapeHTML($str);1394if($opts{'-nbsp'}) {1395$str=~s/ / /g;1396}1397$str=~ s|([[:cntrl:]])|(($1ne"\t") ? quot_cec($1) :$1)|eg;1398return$str;1399}14001401# quote control characters and escape filename to HTML1402sub esc_path {1403my$str=shift;1404my%opts=@_;14051406returnundefunlessdefined$str;14071408$str= to_utf8($str);1409$str=$cgi->escapeHTML($str);1410if($opts{'-nbsp'}) {1411$str=~s/ / /g;1412}1413$str=~ s|([[:cntrl:]])|quot_cec($1)|eg;1414return$str;1415}14161417# Make control characters "printable", using character escape codes (CEC)1418sub quot_cec {1419my$cntrl=shift;1420my%opts=@_;1421my%es= (# character escape codes, aka escape sequences1422"\t"=>'\t',# tab (HT)1423"\n"=>'\n',# line feed (LF)1424"\r"=>'\r',# carrige return (CR)1425"\f"=>'\f',# form feed (FF)1426"\b"=>'\b',# backspace (BS)1427"\a"=>'\a',# alarm (bell) (BEL)1428"\e"=>'\e',# escape (ESC)1429"\013"=>'\v',# vertical tab (VT)1430"\000"=>'\0',# nul character (NUL)1431);1432my$chr= ( (exists$es{$cntrl})1433?$es{$cntrl}1434:sprintf('\%2x',ord($cntrl)) );1435if($opts{-nohtml}) {1436return$chr;1437}else{1438return"<span class=\"cntrl\">$chr</span>";1439}1440}14411442# Alternatively use unicode control pictures codepoints,1443# Unicode "printable representation" (PR)1444sub quot_upr {1445my$cntrl=shift;1446my%opts=@_;14471448my$chr=sprintf('&#%04d;',0x2400+ord($cntrl));1449if($opts{-nohtml}) {1450return$chr;1451}else{1452return"<span class=\"cntrl\">$chr</span>";1453}1454}14551456# git may return quoted and escaped filenames1457sub unquote {1458my$str=shift;14591460sub unq {1461my$seq=shift;1462my%es= (# character escape codes, aka escape sequences1463't'=>"\t",# tab (HT, TAB)1464'n'=>"\n",# newline (NL)1465'r'=>"\r",# return (CR)1466'f'=>"\f",# form feed (FF)1467'b'=>"\b",# backspace (BS)1468'a'=>"\a",# alarm (bell) (BEL)1469'e'=>"\e",# escape (ESC)1470'v'=>"\013",# vertical tab (VT)1471);14721473if($seq=~m/^[0-7]{1,3}$/) {1474# octal char sequence1475returnchr(oct($seq));1476}elsif(exists$es{$seq}) {1477# C escape sequence, aka character escape code1478return$es{$seq};1479}1480# quoted ordinary character1481return$seq;1482}14831484if($str=~m/^"(.*)"$/) {1485# needs unquoting1486$str=$1;1487$str=~s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;1488}1489return$str;1490}14911492# escape tabs (convert tabs to spaces)1493sub untabify {1494my$line=shift;14951496while((my$pos=index($line,"\t")) != -1) {1497if(my$count= (8- ($pos%8))) {1498my$spaces=' ' x $count;1499$line=~s/\t/$spaces/;1500}1501}15021503return$line;1504}15051506sub project_in_list {1507my$project=shift;1508my@list= git_get_projects_list();1509return@list&&scalar(grep{$_->{'path'}eq$project}@list);1510}15111512## ----------------------------------------------------------------------1513## HTML aware string manipulation15141515# Try to chop given string on a word boundary between position1516# $len and $len+$add_len. If there is no word boundary there,1517# chop at $len+$add_len. Do not chop if chopped part plus ellipsis1518# (marking chopped part) would be longer than given string.1519sub chop_str {1520my$str=shift;1521my$len=shift;1522my$add_len=shift||10;1523my$where=shift||'right';# 'left' | 'center' | 'right'15241525# Make sure perl knows it is utf8 encoded so we don't1526# cut in the middle of a utf8 multibyte char.1527$str= to_utf8($str);15281529# allow only $len chars, but don't cut a word if it would fit in $add_len1530# if it doesn't fit, cut it if it's still longer than the dots we would add1531# remove chopped character entities entirely15321533# when chopping in the middle, distribute $len into left and right part1534# return early if chopping wouldn't make string shorter1535if($whereeq'center') {1536return$strif($len+5>=length($str));# filler is length 51537$len=int($len/2);1538}else{1539return$strif($len+4>=length($str));# filler is length 41540}15411542# regexps: ending and beginning with word part up to $add_len1543my$endre=qr/.{$len}\w{0,$add_len}/;1544my$begre=qr/\w{0,$add_len}.{$len}/;15451546if($whereeq'left') {1547$str=~m/^(.*?)($begre)$/;1548my($lead,$body) = ($1,$2);1549if(length($lead) >4) {1550$lead=" ...";1551}1552return"$lead$body";15531554}elsif($whereeq'center') {1555$str=~m/^($endre)(.*)$/;1556my($left,$str) = ($1,$2);1557$str=~m/^(.*?)($begre)$/;1558my($mid,$right) = ($1,$2);1559if(length($mid) >5) {1560$mid=" ... ";1561}1562return"$left$mid$right";15631564}else{1565$str=~m/^($endre)(.*)$/;1566my$body=$1;1567my$tail=$2;1568if(length($tail) >4) {1569$tail="... ";1570}1571return"$body$tail";1572}1573}15741575# takes the same arguments as chop_str, but also wraps a <span> around the1576# result with a title attribute if it does get chopped. Additionally, the1577# string is HTML-escaped.1578sub chop_and_escape_str {1579my($str) =@_;15801581my$chopped= chop_str(@_);1582if($choppedeq$str) {1583return esc_html($chopped);1584}else{1585$str=~s/[[:cntrl:]]/?/g;1586return$cgi->span({-title=>$str}, esc_html($chopped));1587}1588}15891590## ----------------------------------------------------------------------1591## functions returning short strings15921593# CSS class for given age value (in seconds)1594sub age_class {1595my$age=shift;15961597if(!defined$age) {1598return"noage";1599}elsif($age<60*60*2) {1600return"age0";1601}elsif($age<60*60*24*2) {1602return"age1";1603}else{1604return"age2";1605}1606}16071608# convert age in seconds to "nn units ago" string1609sub age_string {1610my$age=shift;1611my$age_str;16121613if($age>60*60*24*365*2) {1614$age_str= (int$age/60/60/24/365);1615$age_str.=" years ago";1616}elsif($age>60*60*24*(365/12)*2) {1617$age_str=int$age/60/60/24/(365/12);1618$age_str.=" months ago";1619}elsif($age>60*60*24*7*2) {1620$age_str=int$age/60/60/24/7;1621$age_str.=" weeks ago";1622}elsif($age>60*60*24*2) {1623$age_str=int$age/60/60/24;1624$age_str.=" days ago";1625}elsif($age>60*60*2) {1626$age_str=int$age/60/60;1627$age_str.=" hours ago";1628}elsif($age>60*2) {1629$age_str=int$age/60;1630$age_str.=" min ago";1631}elsif($age>2) {1632$age_str=int$age;1633$age_str.=" sec ago";1634}else{1635$age_str.=" right now";1636}1637return$age_str;1638}16391640useconstant{1641 S_IFINVALID =>0030000,1642 S_IFGITLINK =>0160000,1643};16441645# submodule/subproject, a commit object reference1646sub S_ISGITLINK {1647my$mode=shift;16481649return(($mode& S_IFMT) == S_IFGITLINK)1650}16511652# convert file mode in octal to symbolic file mode string1653sub mode_str {1654my$mode=oct shift;16551656if(S_ISGITLINK($mode)) {1657return'm---------';1658}elsif(S_ISDIR($mode& S_IFMT)) {1659return'drwxr-xr-x';1660}elsif(S_ISLNK($mode)) {1661return'lrwxrwxrwx';1662}elsif(S_ISREG($mode)) {1663# git cares only about the executable bit1664if($mode& S_IXUSR) {1665return'-rwxr-xr-x';1666}else{1667return'-rw-r--r--';1668};1669}else{1670return'----------';1671}1672}16731674# convert file mode in octal to file type string1675sub file_type {1676my$mode=shift;16771678if($mode!~m/^[0-7]+$/) {1679return$mode;1680}else{1681$mode=oct$mode;1682}16831684if(S_ISGITLINK($mode)) {1685return"submodule";1686}elsif(S_ISDIR($mode& S_IFMT)) {1687return"directory";1688}elsif(S_ISLNK($mode)) {1689return"symlink";1690}elsif(S_ISREG($mode)) {1691return"file";1692}else{1693return"unknown";1694}1695}16961697# convert file mode in octal to file type description string1698sub file_type_long {1699my$mode=shift;17001701if($mode!~m/^[0-7]+$/) {1702return$mode;1703}else{1704$mode=oct$mode;1705}17061707if(S_ISGITLINK($mode)) {1708return"submodule";1709}elsif(S_ISDIR($mode& S_IFMT)) {1710return"directory";1711}elsif(S_ISLNK($mode)) {1712return"symlink";1713}elsif(S_ISREG($mode)) {1714if($mode& S_IXUSR) {1715return"executable";1716}else{1717return"file";1718};1719}else{1720return"unknown";1721}1722}172317241725## ----------------------------------------------------------------------1726## functions returning short HTML fragments, or transforming HTML fragments1727## which don't belong to other sections17281729# format line of commit message.1730sub format_log_line_html {1731my$line=shift;17321733$line= esc_html($line, -nbsp=>1);1734$line=~ s{\b([0-9a-fA-F]{8,40})\b}{1735$cgi->a({-href => href(action=>"object", hash=>$1),1736-class=>"text"},$1);1737}eg;17381739return$line;1740}17411742# format marker of refs pointing to given object17431744# the destination action is chosen based on object type and current context:1745# - for annotated tags, we choose the tag view unless it's the current view1746# already, in which case we go to shortlog view1747# - for other refs, we keep the current view if we're in history, shortlog or1748# log view, and select shortlog otherwise1749sub format_ref_marker {1750my($refs,$id) =@_;1751my$markers='';17521753if(defined$refs->{$id}) {1754foreachmy$ref(@{$refs->{$id}}) {1755# this code exploits the fact that non-lightweight tags are the1756# only indirect objects, and that they are the only objects for which1757# we want to use tag instead of shortlog as action1758my($type,$name) =qw();1759my$indirect= ($ref=~s/\^\{\}$//);1760# e.g. tags/v2.6.11 or heads/next1761if($ref=~m!^(.*?)s?/(.*)$!) {1762$type=$1;1763$name=$2;1764}else{1765$type="ref";1766$name=$ref;1767}17681769my$class=$type;1770$class.=" indirect"if$indirect;17711772my$dest_action="shortlog";17731774if($indirect) {1775$dest_action="tag"unless$actioneq"tag";1776}elsif($action=~/^(history|(short)?log)$/) {1777$dest_action=$action;1778}17791780my$dest="";1781$dest.="refs/"unless$ref=~ m!^refs/!;1782$dest.=$ref;17831784my$link=$cgi->a({1785-href => href(1786 action=>$dest_action,1787 hash=>$dest1788)},$name);17891790$markers.=" <span class=\"$class\"title=\"$ref\">".1791$link."</span>";1792}1793}17941795if($markers) {1796return' <span class="refs">'.$markers.'</span>';1797}else{1798return"";1799}1800}18011802# format, perhaps shortened and with markers, title line1803sub format_subject_html {1804my($long,$short,$href,$extra) =@_;1805$extra=''unlessdefined($extra);18061807if(length($short) <length($long)) {1808$long=~s/[[:cntrl:]]/?/g;1809return$cgi->a({-href =>$href, -class=>"list subject",1810-title => to_utf8($long)},1811 esc_html($short)) .$extra;1812}else{1813return$cgi->a({-href =>$href, -class=>"list subject"},1814 esc_html($long)) .$extra;1815}1816}18171818# Rather than recomputing the url for an email multiple times, we cache it1819# after the first hit. This gives a visible benefit in views where the avatar1820# for the same email is used repeatedly (e.g. shortlog).1821# The cache is shared by all avatar engines (currently gravatar only), which1822# are free to use it as preferred. Since only one avatar engine is used for any1823# given page, there's no risk for cache conflicts.1824our%avatar_cache= ();18251826# Compute the picon url for a given email, by using the picon search service over at1827# http://www.cs.indiana.edu/picons/search.html1828sub picon_url {1829my$email=lc shift;1830if(!$avatar_cache{$email}) {1831my($user,$domain) =split('@',$email);1832$avatar_cache{$email} =1833"http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/".1834"$domain/$user/".1835"users+domains+unknown/up/single";1836}1837return$avatar_cache{$email};1838}18391840# Compute the gravatar url for a given email, if it's not in the cache already.1841# Gravatar stores only the part of the URL before the size, since that's the1842# one computationally more expensive. This also allows reuse of the cache for1843# different sizes (for this particular engine).1844sub gravatar_url {1845my$email=lc shift;1846my$size=shift;1847$avatar_cache{$email} ||=1848"http://www.gravatar.com/avatar/".1849 Digest::MD5::md5_hex($email) ."?s=";1850return$avatar_cache{$email} .$size;1851}18521853# Insert an avatar for the given $email at the given $size if the feature1854# is enabled.1855sub git_get_avatar {1856my($email,%opts) =@_;1857my$pre_white= ($opts{-pad_before} ?" ":"");1858my$post_white= ($opts{-pad_after} ?" ":"");1859$opts{-size} ||='default';1860my$size=$avatar_size{$opts{-size}} ||$avatar_size{'default'};1861my$url="";1862if($git_avatareq'gravatar') {1863$url= gravatar_url($email,$size);1864}elsif($git_avatareq'picon') {1865$url= picon_url($email);1866}1867# Other providers can be added by extending the if chain, defining $url1868# as needed. If no variant puts something in $url, we assume avatars1869# are completely disabled/unavailable.1870if($url) {1871return$pre_white.1872"<img width=\"$size\"".1873"class=\"avatar\"".1874"src=\"$url\"".1875"alt=\"\"".1876"/>".$post_white;1877}else{1878return"";1879}1880}18811882sub format_search_author {1883my($author,$searchtype,$displaytext) =@_;1884my$have_search= gitweb_check_feature('search');18851886if($have_search) {1887my$performed="";1888if($searchtypeeq'author') {1889$performed="authored";1890}elsif($searchtypeeq'committer') {1891$performed="committed";1892}18931894return$cgi->a({-href => href(action=>"search", hash=>$hash,1895 searchtext=>$author,1896 searchtype=>$searchtype),class=>"list",1897 title=>"Search for commits$performedby$author"},1898$displaytext);18991900}else{1901return$displaytext;1902}1903}19041905# format the author name of the given commit with the given tag1906# the author name is chopped and escaped according to the other1907# optional parameters (see chop_str).1908sub format_author_html {1909my$tag=shift;1910my$co=shift;1911my$author= chop_and_escape_str($co->{'author_name'},@_);1912return"<$tagclass=\"author\">".1913 format_search_author($co->{'author_name'},"author",1914 git_get_avatar($co->{'author_email'}, -pad_after =>1) .1915$author) .1916"</$tag>";1917}19181919# format git diff header line, i.e. "diff --(git|combined|cc) ..."1920sub format_git_diff_header_line {1921my$line=shift;1922my$diffinfo=shift;1923my($from,$to) =@_;19241925if($diffinfo->{'nparents'}) {1926# combined diff1927$line=~s!^(diff (.*?) )"?.*$!$1!;1928if($to->{'href'}) {1929$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1930 esc_path($to->{'file'}));1931}else{# file was deleted (no href)1932$line.= esc_path($to->{'file'});1933}1934}else{1935# "ordinary" diff1936$line=~s!^(diff (.*?) )"?a/.*$!$1!;1937if($from->{'href'}) {1938$line.=$cgi->a({-href =>$from->{'href'}, -class=>"path"},1939'a/'. esc_path($from->{'file'}));1940}else{# file was added (no href)1941$line.='a/'. esc_path($from->{'file'});1942}1943$line.=' ';1944if($to->{'href'}) {1945$line.=$cgi->a({-href =>$to->{'href'}, -class=>"path"},1946'b/'. esc_path($to->{'file'}));1947}else{# file was deleted1948$line.='b/'. esc_path($to->{'file'});1949}1950}19511952return"<div class=\"diff header\">$line</div>\n";1953}19541955# format extended diff header line, before patch itself1956sub format_extended_diff_header_line {1957my$line=shift;1958my$diffinfo=shift;1959my($from,$to) =@_;19601961# match <path>1962if($line=~s!^((copy|rename) from ).*$!$1!&&$from->{'href'}) {1963$line.=$cgi->a({-href=>$from->{'href'}, -class=>"path"},1964 esc_path($from->{'file'}));1965}1966if($line=~s!^((copy|rename) to ).*$!$1!&&$to->{'href'}) {1967$line.=$cgi->a({-href=>$to->{'href'}, -class=>"path"},1968 esc_path($to->{'file'}));1969}1970# match single <mode>1971if($line=~m/\s(\d{6})$/) {1972$line.='<span class="info"> ('.1973 file_type_long($1) .1974')</span>';1975}1976# match <hash>1977if($line=~m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {1978# can match only for combined diff1979$line='index ';1980for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {1981if($from->{'href'}[$i]) {1982$line.=$cgi->a({-href=>$from->{'href'}[$i],1983-class=>"hash"},1984substr($diffinfo->{'from_id'}[$i],0,7));1985}else{1986$line.='0' x 7;1987}1988# separator1989$line.=','if($i<$diffinfo->{'nparents'} -1);1990}1991$line.='..';1992if($to->{'href'}) {1993$line.=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},1994substr($diffinfo->{'to_id'},0,7));1995}else{1996$line.='0' x 7;1997}19981999}elsif($line=~m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {2000# can match only for ordinary diff2001my($from_link,$to_link);2002if($from->{'href'}) {2003$from_link=$cgi->a({-href=>$from->{'href'}, -class=>"hash"},2004substr($diffinfo->{'from_id'},0,7));2005}else{2006$from_link='0' x 7;2007}2008if($to->{'href'}) {2009$to_link=$cgi->a({-href=>$to->{'href'}, -class=>"hash"},2010substr($diffinfo->{'to_id'},0,7));2011}else{2012$to_link='0' x 7;2013}2014my($from_id,$to_id) = ($diffinfo->{'from_id'},$diffinfo->{'to_id'});2015$line=~s!$from_id\.\.$to_id!$from_link..$to_link!;2016}20172018return$line."<br/>\n";2019}20202021# format from-file/to-file diff header2022sub format_diff_from_to_header {2023my($from_line,$to_line,$diffinfo,$from,$to,@parents) =@_;2024my$line;2025my$result='';20262027$line=$from_line;2028#assert($line =~ m/^---/) if DEBUG;2029# no extra formatting for "^--- /dev/null"2030if(!$diffinfo->{'nparents'}) {2031# ordinary (single parent) diff2032if($line=~m!^--- "?a/!) {2033if($from->{'href'}) {2034$line='--- a/'.2035$cgi->a({-href=>$from->{'href'}, -class=>"path"},2036 esc_path($from->{'file'}));2037}else{2038$line='--- a/'.2039 esc_path($from->{'file'});2040}2041}2042$result.= qq!<div class="diff from_file">$line</div>\n!;20432044}else{2045# combined diff (merge commit)2046for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {2047if($from->{'href'}[$i]) {2048$line='--- '.2049$cgi->a({-href=>href(action=>"blobdiff",2050 hash_parent=>$diffinfo->{'from_id'}[$i],2051 hash_parent_base=>$parents[$i],2052 file_parent=>$from->{'file'}[$i],2053 hash=>$diffinfo->{'to_id'},2054 hash_base=>$hash,2055 file_name=>$to->{'file'}),2056-class=>"path",2057-title=>"diff". ($i+1)},2058$i+1) .2059'/'.2060$cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},2061 esc_path($from->{'file'}[$i]));2062}else{2063$line='--- /dev/null';2064}2065$result.= qq!<div class="diff from_file">$line</div>\n!;2066}2067}20682069$line=$to_line;2070#assert($line =~ m/^\+\+\+/) if DEBUG;2071# no extra formatting for "^+++ /dev/null"2072if($line=~m!^\+\+\+ "?b/!) {2073if($to->{'href'}) {2074$line='+++ b/'.2075$cgi->a({-href=>$to->{'href'}, -class=>"path"},2076 esc_path($to->{'file'}));2077}else{2078$line='+++ b/'.2079 esc_path($to->{'file'});2080}2081}2082$result.= qq!<div class="diff to_file">$line</div>\n!;20832084return$result;2085}20862087# create note for patch simplified by combined diff2088sub format_diff_cc_simplified {2089my($diffinfo,@parents) =@_;2090my$result='';20912092$result.="<div class=\"diff header\">".2093"diff --cc ";2094if(!is_deleted($diffinfo)) {2095$result.=$cgi->a({-href => href(action=>"blob",2096 hash_base=>$hash,2097 hash=>$diffinfo->{'to_id'},2098 file_name=>$diffinfo->{'to_file'}),2099-class=>"path"},2100 esc_path($diffinfo->{'to_file'}));2101}else{2102$result.= esc_path($diffinfo->{'to_file'});2103}2104$result.="</div>\n".# class="diff header"2105"<div class=\"diff nodifferences\">".2106"Simple merge".2107"</div>\n";# class="diff nodifferences"21082109return$result;2110}21112112# format patch (diff) line (not to be used for diff headers)2113sub format_diff_line {2114my$line=shift;2115my($from,$to) =@_;2116my$diff_class="";21172118chomp$line;21192120if($from&&$to&&ref($from->{'href'})eq"ARRAY") {2121# combined diff2122my$prefix=substr($line,0,scalar@{$from->{'href'}});2123if($line=~m/^\@{3}/) {2124$diff_class=" chunk_header";2125}elsif($line=~m/^\\/) {2126$diff_class=" incomplete";2127}elsif($prefix=~tr/+/+/) {2128$diff_class=" add";2129}elsif($prefix=~tr/-/-/) {2130$diff_class=" rem";2131}2132}else{2133# assume ordinary diff2134my$char=substr($line,0,1);2135if($chareq'+') {2136$diff_class=" add";2137}elsif($chareq'-') {2138$diff_class=" rem";2139}elsif($chareq'@') {2140$diff_class=" chunk_header";2141}elsif($chareq"\\") {2142$diff_class=" incomplete";2143}2144}2145$line= untabify($line);2146if($from&&$to&&$line=~m/^\@{2} /) {2147my($from_text,$from_start,$from_lines,$to_text,$to_start,$to_lines,$section) =2148$line=~m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;21492150$from_lines=0unlessdefined$from_lines;2151$to_lines=0unlessdefined$to_lines;21522153if($from->{'href'}) {2154$from_text=$cgi->a({-href=>"$from->{'href'}#l$from_start",2155-class=>"list"},$from_text);2156}2157if($to->{'href'}) {2158$to_text=$cgi->a({-href=>"$to->{'href'}#l$to_start",2159-class=>"list"},$to_text);2160}2161$line="<span class=\"chunk_info\">@@$from_text$to_text@@</span>".2162"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2163return"<div class=\"diff$diff_class\">$line</div>\n";2164}elsif($from&&$to&&$line=~m/^\@{3}/) {2165my($prefix,$ranges,$section) =$line=~m/^(\@+) (.*?) \@+(.*)$/;2166my(@from_text,@from_start,@from_nlines,$to_text,$to_start,$to_nlines);21672168@from_text=split(' ',$ranges);2169for(my$i=0;$i<@from_text; ++$i) {2170($from_start[$i],$from_nlines[$i]) =2171(split(',',substr($from_text[$i],1)),0);2172}21732174$to_text=pop@from_text;2175$to_start=pop@from_start;2176$to_nlines=pop@from_nlines;21772178$line="<span class=\"chunk_info\">$prefix";2179for(my$i=0;$i<@from_text; ++$i) {2180if($from->{'href'}[$i]) {2181$line.=$cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",2182-class=>"list"},$from_text[$i]);2183}else{2184$line.=$from_text[$i];2185}2186$line.=" ";2187}2188if($to->{'href'}) {2189$line.=$cgi->a({-href=>"$to->{'href'}#l$to_start",2190-class=>"list"},$to_text);2191}else{2192$line.=$to_text;2193}2194$line.="$prefix</span>".2195"<span class=\"section\">". esc_html($section, -nbsp=>1) ."</span>";2196return"<div class=\"diff$diff_class\">$line</div>\n";2197}2198return"<div class=\"diff$diff_class\">". esc_html($line, -nbsp=>1) ."</div>\n";2199}22002201# Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",2202# linked. Pass the hash of the tree/commit to snapshot.2203sub format_snapshot_links {2204my($hash) =@_;2205my$num_fmts=@snapshot_fmts;2206if($num_fmts>1) {2207# A parenthesized list of links bearing format names.2208# e.g. "snapshot (_tar.gz_ _zip_)"2209return"snapshot (".join(' ',map2210$cgi->a({2211-href => href(2212 action=>"snapshot",2213 hash=>$hash,2214 snapshot_format=>$_2215)2216},$known_snapshot_formats{$_}{'display'})2217,@snapshot_fmts) .")";2218}elsif($num_fmts==1) {2219# A single "snapshot" link whose tooltip bears the format name.2220# i.e. "_snapshot_"2221my($fmt) =@snapshot_fmts;2222return2223$cgi->a({2224-href => href(2225 action=>"snapshot",2226 hash=>$hash,2227 snapshot_format=>$fmt2228),2229-title =>"in format:$known_snapshot_formats{$fmt}{'display'}"2230},"snapshot");2231}else{# $num_fmts == 02232returnundef;2233}2234}22352236## ......................................................................2237## functions returning values to be passed, perhaps after some2238## transformation, to other functions; e.g. returning arguments to href()22392240# returns hash to be passed to href to generate gitweb URL2241# in -title key it returns description of link2242sub get_feed_info {2243my$format=shift||'Atom';2244my%res= (action =>lc($format));22452246# feed links are possible only for project views2247return unless(defined$project);2248# some views should link to OPML, or to generic project feed,2249# or don't have specific feed yet (so they should use generic)2250return if($action=~/^(?:tags|heads|forks|tag|search)$/x);22512252my$branch;2253# branches refs uses 'refs/heads/' prefix (fullname) to differentiate2254# from tag links; this also makes possible to detect branch links2255if((defined$hash_base&&$hash_base=~m!^refs/heads/(.*)$!) ||2256(defined$hash&&$hash=~m!^refs/heads/(.*)$!)) {2257$branch=$1;2258}2259# find log type for feed description (title)2260my$type='log';2261if(defined$file_name) {2262$type="history of$file_name";2263$type.="/"if($actioneq'tree');2264$type.=" on '$branch'"if(defined$branch);2265}else{2266$type="log of$branch"if(defined$branch);2267}22682269$res{-title} =$type;2270$res{'hash'} = (defined$branch?"refs/heads/$branch":undef);2271$res{'file_name'} =$file_name;22722273return%res;2274}22752276## ----------------------------------------------------------------------2277## git utility subroutines, invoking git commands22782279# returns path to the core git executable and the --git-dir parameter as list2280sub git_cmd {2281$number_of_git_cmds++;2282return$GIT,'--git-dir='.$git_dir;2283}22842285# quote the given arguments for passing them to the shell2286# quote_command("command", "arg 1", "arg with ' and ! characters")2287# => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"2288# Try to avoid using this function wherever possible.2289sub quote_command {2290returnjoin(' ',2291map{my$a=$_;$a=~s/(['!])/'\\$1'/g;"'$a'"}@_);2292}22932294# get HEAD ref of given project as hash2295sub git_get_head_hash {2296return git_get_full_hash(shift,'HEAD');2297}22982299sub git_get_full_hash {2300return git_get_hash(@_);2301}23022303sub git_get_short_hash {2304return git_get_hash(@_,'--short=7');2305}23062307sub git_get_hash {2308my($project,$hash,@options) =@_;2309my$o_git_dir=$git_dir;2310my$retval=undef;2311$git_dir="$projectroot/$project";2312if(open my$fd,'-|', git_cmd(),'rev-parse',2313'--verify','-q',@options,$hash) {2314$retval= <$fd>;2315chomp$retvalifdefined$retval;2316close$fd;2317}2318if(defined$o_git_dir) {2319$git_dir=$o_git_dir;2320}2321return$retval;2322}23232324# get type of given object2325sub git_get_type {2326my$hash=shift;23272328open my$fd,"-|", git_cmd(),"cat-file",'-t',$hashorreturn;2329my$type= <$fd>;2330close$fdorreturn;2331chomp$type;2332return$type;2333}23342335# repository configuration2336our$config_file='';2337our%config;23382339# store multiple values for single key as anonymous array reference2340# single values stored directly in the hash, not as [ <value> ]2341sub hash_set_multi {2342my($hash,$key,$value) =@_;23432344if(!exists$hash->{$key}) {2345$hash->{$key} =$value;2346}elsif(!ref$hash->{$key}) {2347$hash->{$key} = [$hash->{$key},$value];2348}else{2349push@{$hash->{$key}},$value;2350}2351}23522353# return hash of git project configuration2354# optionally limited to some section, e.g. 'gitweb'2355sub git_parse_project_config {2356my$section_regexp=shift;2357my%config;23582359local$/="\0";23602361open my$fh,"-|", git_cmd(),"config",'-z','-l',2362orreturn;23632364while(my$keyval= <$fh>) {2365chomp$keyval;2366my($key,$value) =split(/\n/,$keyval,2);23672368 hash_set_multi(\%config,$key,$value)2369if(!defined$section_regexp||$key=~/^(?:$section_regexp)\./o);2370}2371close$fh;23722373return%config;2374}23752376# convert config value to boolean: 'true' or 'false'2377# no value, number > 0, 'true' and 'yes' values are true2378# rest of values are treated as false (never as error)2379sub config_to_bool {2380my$val=shift;23812382return1if!defined$val;# section.key23832384# strip leading and trailing whitespace2385$val=~s/^\s+//;2386$val=~s/\s+$//;23872388return(($val=~/^\d+$/&&$val) ||# section.key = 12389($val=~/^(?:true|yes)$/i));# section.key = true2390}23912392# convert config value to simple decimal number2393# an optional value suffix of 'k', 'm', or 'g' will cause the value2394# to be multiplied by 1024, 1048576, or 10737418242395sub config_to_int {2396my$val=shift;23972398# strip leading and trailing whitespace2399$val=~s/^\s+//;2400$val=~s/\s+$//;24012402if(my($num,$unit) = ($val=~/^([0-9]*)([kmg])$/i)) {2403$unit=lc($unit);2404# unknown unit is treated as 12405return$num* ($uniteq'g'?1073741824:2406$uniteq'm'?1048576:2407$uniteq'k'?1024:1);2408}2409return$val;2410}24112412# convert config value to array reference, if needed2413sub config_to_multi {2414my$val=shift;24152416returnref($val) ?$val: (defined($val) ? [$val] : []);2417}24182419sub git_get_project_config {2420my($key,$type) =@_;24212422return unlessdefined$git_dir;24232424# key sanity check2425return unless($key);2426$key=~s/^gitweb\.//;2427return if($key=~m/\W/);24282429# type sanity check2430if(defined$type) {2431$type=~s/^--//;2432$type=undef2433unless($typeeq'bool'||$typeeq'int');2434}24352436# get config2437if(!defined$config_file||2438$config_filene"$git_dir/config") {2439%config= git_parse_project_config('gitweb');2440$config_file="$git_dir/config";2441}24422443# check if config variable (key) exists2444return unlessexists$config{"gitweb.$key"};24452446# ensure given type2447if(!defined$type) {2448return$config{"gitweb.$key"};2449}elsif($typeeq'bool') {2450# backward compatibility: 'git config --bool' returns true/false2451return config_to_bool($config{"gitweb.$key"}) ?'true':'false';2452}elsif($typeeq'int') {2453return config_to_int($config{"gitweb.$key"});2454}2455return$config{"gitweb.$key"};2456}24572458# get hash of given path at given ref2459sub git_get_hash_by_path {2460my$base=shift;2461my$path=shift||returnundef;2462my$type=shift;24632464$path=~ s,/+$,,;24652466open my$fd,"-|", git_cmd(),"ls-tree",$base,"--",$path2467or die_error(500,"Open git-ls-tree failed");2468my$line= <$fd>;2469close$fdorreturnundef;24702471if(!defined$line) {2472# there is no tree or hash given by $path at $base2473returnundef;2474}24752476#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'2477$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;2478if(defined$type&&$typene$2) {2479# type doesn't match2480returnundef;2481}2482return$3;2483}24842485# get path of entry with given hash at given tree-ish (ref)2486# used to get 'from' filename for combined diff (merge commit) for renames2487sub git_get_path_by_hash {2488my$base=shift||return;2489my$hash=shift||return;24902491local$/="\0";24922493open my$fd,"-|", git_cmd(),"ls-tree",'-r','-t','-z',$base2494orreturnundef;2495while(my$line= <$fd>) {2496chomp$line;24972498#'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'2499#'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'2500if($line=~m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {2501close$fd;2502return$1;2503}2504}2505close$fd;2506returnundef;2507}25082509## ......................................................................2510## git utility functions, directly accessing git repository25112512sub git_get_project_description {2513my$path=shift;25142515$git_dir="$projectroot/$path";2516open my$fd,'<',"$git_dir/description"2517orreturn git_get_project_config('description');2518my$descr= <$fd>;2519close$fd;2520if(defined$descr) {2521chomp$descr;2522}2523return$descr;2524}25252526sub git_get_project_ctags {2527my$path=shift;2528my$ctags= {};25292530$git_dir="$projectroot/$path";2531opendir my$dh,"$git_dir/ctags"2532orreturn$ctags;2533foreach(grep{ -f $_}map{"$git_dir/ctags/$_"}readdir($dh)) {2534open my$ct,'<',$_ornext;2535my$val= <$ct>;2536chomp$val;2537close$ct;2538my$ctag=$_;$ctag=~ s#.*/##;2539$ctags->{$ctag} =$val;2540}2541closedir$dh;2542$ctags;2543}25442545sub git_populate_project_tagcloud {2546my$ctags=shift;25472548# First, merge different-cased tags; tags vote on casing2549my%ctags_lc;2550foreach(keys%$ctags) {2551$ctags_lc{lc$_}->{count} +=$ctags->{$_};2552if(not$ctags_lc{lc$_}->{topcount}2553or$ctags_lc{lc$_}->{topcount} <$ctags->{$_}) {2554$ctags_lc{lc$_}->{topcount} =$ctags->{$_};2555$ctags_lc{lc$_}->{topname} =$_;2556}2557}25582559my$cloud;2560if(eval{require HTML::TagCloud;1; }) {2561$cloud= HTML::TagCloud->new;2562foreach(sort keys%ctags_lc) {2563# Pad the title with spaces so that the cloud looks2564# less crammed.2565my$title=$ctags_lc{$_}->{topname};2566$title=~s/ / /g;2567$title=~s/^/ /g;2568$title=~s/$/ /g;2569$cloud->add($title,$home_link."?by_tag=".$_,$ctags_lc{$_}->{count});2570}2571}else{2572$cloud= \%ctags_lc;2573}2574$cloud;2575}25762577sub git_show_project_tagcloud {2578my($cloud,$count) =@_;2579print STDERR ref($cloud)."..\n";2580if(ref$cloudeq'HTML::TagCloud') {2581return$cloud->html_and_css($count);2582}else{2583my@tags=sort{$cloud->{$a}->{count} <=>$cloud->{$b}->{count} }keys%$cloud;2584return'<p align="center">'.join(', ',map{2585"<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"2586}splice(@tags,0,$count)) .'</p>';2587}2588}25892590sub git_get_project_url_list {2591my$path=shift;25922593$git_dir="$projectroot/$path";2594open my$fd,'<',"$git_dir/cloneurl"2595orreturnwantarray?2596@{ config_to_multi(git_get_project_config('url')) } :2597 config_to_multi(git_get_project_config('url'));2598my@git_project_url_list=map{chomp;$_} <$fd>;2599close$fd;26002601returnwantarray?@git_project_url_list: \@git_project_url_list;2602}26032604sub git_get_projects_list {2605my($filter) =@_;2606my@list;26072608$filter||='';2609$filter=~s/\.git$//;26102611my$check_forks= gitweb_check_feature('forks');26122613if(-d $projects_list) {2614# search in directory2615my$dir=$projects_list. ($filter?"/$filter":'');2616# remove the trailing "/"2617$dir=~s!/+$!!;2618my$pfxlen=length("$dir");2619my$pfxdepth= ($dir=~tr!/!!);26202621 File::Find::find({2622 follow_fast =>1,# follow symbolic links2623 follow_skip =>2,# ignore duplicates2624 dangling_symlinks =>0,# ignore dangling symlinks, silently2625 wanted =>sub{2626# global variables2627our$project_maxdepth;2628our$projectroot;2629# skip project-list toplevel, if we get it.2630return if(m!^[/.]$!);2631# only directories can be git repositories2632return unless(-d $_);2633# don't traverse too deep (Find is super slow on os x)2634if(($File::Find::name =~tr!/!!) -$pfxdepth>$project_maxdepth) {2635$File::Find::prune =1;2636return;2637}26382639my$subdir=substr($File::Find::name,$pfxlen+1);2640# we check related file in $projectroot2641my$path= ($filter?"$filter/":'') .$subdir;2642if(check_export_ok("$projectroot/$path")) {2643push@list, { path =>$path};2644$File::Find::prune =1;2645}2646},2647},"$dir");26482649}elsif(-f $projects_list) {2650# read from file(url-encoded):2651# 'git%2Fgit.git Linus+Torvalds'2652# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2653# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2654my%paths;2655open my$fd,'<',$projects_listorreturn;2656 PROJECT:2657while(my$line= <$fd>) {2658chomp$line;2659my($path,$owner) =split' ',$line;2660$path= unescape($path);2661$owner= unescape($owner);2662if(!defined$path) {2663next;2664}2665if($filterne'') {2666# looking for forks;2667my$pfx=substr($path,0,length($filter));2668if($pfxne$filter) {2669next PROJECT;2670}2671my$sfx=substr($path,length($filter));2672if($sfx!~/^\/.*\.git$/) {2673next PROJECT;2674}2675}elsif($check_forks) {2676 PATH:2677foreachmy$filter(keys%paths) {2678# looking for forks;2679my$pfx=substr($path,0,length($filter));2680if($pfxne$filter) {2681next PATH;2682}2683my$sfx=substr($path,length($filter));2684if($sfx!~/^\/.*\.git$/) {2685next PATH;2686}2687# is a fork, don't include it in2688# the list2689next PROJECT;2690}2691}2692if(check_export_ok("$projectroot/$path")) {2693my$pr= {2694 path =>$path,2695 owner => to_utf8($owner),2696};2697push@list,$pr;2698(my$forks_path=$path) =~s/\.git$//;2699$paths{$forks_path}++;2700}2701}2702close$fd;2703}2704return@list;2705}27062707our$gitweb_project_owner=undef;2708sub git_get_project_list_from_file {27092710return if(defined$gitweb_project_owner);27112712$gitweb_project_owner= {};2713# read from file (url-encoded):2714# 'git%2Fgit.git Linus+Torvalds'2715# 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'2716# 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'2717if(-f $projects_list) {2718open(my$fd,'<',$projects_list);2719while(my$line= <$fd>) {2720chomp$line;2721my($pr,$ow) =split' ',$line;2722$pr= unescape($pr);2723$ow= unescape($ow);2724$gitweb_project_owner->{$pr} = to_utf8($ow);2725}2726close$fd;2727}2728}27292730sub git_get_project_owner {2731my$project=shift;2732my$owner;27332734returnundefunless$project;2735$git_dir="$projectroot/$project";27362737if(!defined$gitweb_project_owner) {2738 git_get_project_list_from_file();2739}27402741if(exists$gitweb_project_owner->{$project}) {2742$owner=$gitweb_project_owner->{$project};2743}2744if(!defined$owner){2745$owner= git_get_project_config('owner');2746}2747if(!defined$owner) {2748$owner= get_file_owner("$git_dir");2749}27502751return$owner;2752}27532754sub git_get_last_activity {2755my($path) =@_;2756my$fd;27572758$git_dir="$projectroot/$path";2759open($fd,"-|", git_cmd(),'for-each-ref',2760'--format=%(committer)',2761'--sort=-committerdate',2762'--count=1',2763'refs/heads')orreturn;2764my$most_recent= <$fd>;2765close$fdorreturn;2766if(defined$most_recent&&2767$most_recent=~/ (\d+) [-+][01]\d\d\d$/) {2768my$timestamp=$1;2769my$age=time-$timestamp;2770return($age, age_string($age));2771}2772return(undef,undef);2773}27742775# Implementation note: when a single remote is wanted, we cannot use 'git2776# remote show -n' because that command always work (assuming it's a remote URL2777# if it's not defined), and we cannot use 'git remote show' because that would2778# try to make a network roundtrip. So the only way to find if that particular2779# remote is defined is to walk the list provided by 'git remote -v' and stop if2780# and when we find what we want.2781sub git_get_remotes_list {2782my$wanted=shift;2783my%remotes= ();27842785open my$fd,'-|', git_cmd(),'remote','-v';2786return unless$fd;2787while(my$remote= <$fd>) {2788chomp$remote;2789$remote=~s!\t(.*?)\s+\((\w+)\)$!!;2790next if$wantedand not$remoteeq$wanted;2791my($url,$key) = ($1,$2);27922793$remotes{$remote} ||= {'heads'=> () };2794$remotes{$remote}{$key} =$url;2795}2796close$fdorreturn;2797returnwantarray?%remotes: \%remotes;2798}27992800# Takes a hash of remotes as first parameter and fills it by adding the2801# available remote heads for each of the indicated remotes.2802sub fill_remote_heads {2803my$remotes=shift;2804my@heads=map{"remotes/$_"}keys%$remotes;2805my@remoteheads= git_get_heads_list(undef,@heads);2806foreachmy$remote(keys%$remotes) {2807$remotes->{$remote}{'heads'} = [grep{2808$_->{'name'} =~s!^$remote/!!2809}@remoteheads];2810}2811}28122813sub git_get_references {2814my$type=shift||"";2815my%refs;2816# 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.112817# c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}2818open my$fd,"-|", git_cmd(),"show-ref","--dereference",2819($type? ("--","refs/$type") : ())# use -- <pattern> if $type2820orreturn;28212822while(my$line= <$fd>) {2823chomp$line;2824if($line=~m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {2825if(defined$refs{$1}) {2826push@{$refs{$1}},$2;2827}else{2828$refs{$1} = [$2];2829}2830}2831}2832close$fdorreturn;2833return \%refs;2834}28352836sub git_get_rev_name_tags {2837my$hash=shift||returnundef;28382839open my$fd,"-|", git_cmd(),"name-rev","--tags",$hash2840orreturn;2841my$name_rev= <$fd>;2842close$fd;28432844if($name_rev=~ m|^$hash tags/(.*)$|) {2845return$1;2846}else{2847# catches also '$hash undefined' output2848returnundef;2849}2850}28512852## ----------------------------------------------------------------------2853## parse to hash functions28542855sub parse_date {2856my$epoch=shift;2857my$tz=shift||"-0000";28582859my%date;2860my@months= ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");2861my@days= ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");2862my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($epoch);2863$date{'hour'} =$hour;2864$date{'minute'} =$min;2865$date{'mday'} =$mday;2866$date{'day'} =$days[$wday];2867$date{'month'} =$months[$mon];2868$date{'rfc2822'} =sprintf"%s,%d%s%4d%02d:%02d:%02d+0000",2869$days[$wday],$mday,$months[$mon],1900+$year,$hour,$min,$sec;2870$date{'mday-time'} =sprintf"%d%s%02d:%02d",2871$mday,$months[$mon],$hour,$min;2872$date{'iso-8601'} =sprintf"%04d-%02d-%02dT%02d:%02d:%02dZ",28731900+$year,1+$mon,$mday,$hour,$min,$sec;28742875$tz=~m/^([+\-][0-9][0-9])([0-9][0-9])$/;2876my$local=$epoch+ ((int$1+ ($2/60)) *3600);2877($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($local);2878$date{'hour_local'} =$hour;2879$date{'minute_local'} =$min;2880$date{'tz_local'} =$tz;2881$date{'iso-tz'} =sprintf("%04d-%02d-%02d%02d:%02d:%02d%s",28821900+$year,$mon+1,$mday,2883$hour,$min,$sec,$tz);2884return%date;2885}28862887sub parse_tag {2888my$tag_id=shift;2889my%tag;2890my@comment;28912892open my$fd,"-|", git_cmd(),"cat-file","tag",$tag_idorreturn;2893$tag{'id'} =$tag_id;2894while(my$line= <$fd>) {2895chomp$line;2896if($line=~m/^object ([0-9a-fA-F]{40})$/) {2897$tag{'object'} =$1;2898}elsif($line=~m/^type (.+)$/) {2899$tag{'type'} =$1;2900}elsif($line=~m/^tag (.+)$/) {2901$tag{'name'} =$1;2902}elsif($line=~m/^tagger (.*) ([0-9]+) (.*)$/) {2903$tag{'author'} =$1;2904$tag{'author_epoch'} =$2;2905$tag{'author_tz'} =$3;2906if($tag{'author'} =~m/^([^<]+) <([^>]*)>/) {2907$tag{'author_name'} =$1;2908$tag{'author_email'} =$2;2909}else{2910$tag{'author_name'} =$tag{'author'};2911}2912}elsif($line=~m/--BEGIN/) {2913push@comment,$line;2914last;2915}elsif($lineeq"") {2916last;2917}2918}2919push@comment, <$fd>;2920$tag{'comment'} = \@comment;2921close$fdorreturn;2922if(!defined$tag{'name'}) {2923return2924};2925return%tag2926}29272928sub parse_commit_text {2929my($commit_text,$withparents) =@_;2930my@commit_lines=split'\n',$commit_text;2931my%co;29322933pop@commit_lines;# Remove '\0'29342935if(!@commit_lines) {2936return;2937}29382939my$header=shift@commit_lines;2940if($header!~m/^[0-9a-fA-F]{40}/) {2941return;2942}2943($co{'id'},my@parents) =split' ',$header;2944while(my$line=shift@commit_lines) {2945last if$lineeq"\n";2946if($line=~m/^tree ([0-9a-fA-F]{40})$/) {2947$co{'tree'} =$1;2948}elsif((!defined$withparents) && ($line=~m/^parent ([0-9a-fA-F]{40})$/)) {2949push@parents,$1;2950}elsif($line=~m/^author (.*) ([0-9]+) (.*)$/) {2951$co{'author'} = to_utf8($1);2952$co{'author_epoch'} =$2;2953$co{'author_tz'} =$3;2954if($co{'author'} =~m/^([^<]+) <([^>]*)>/) {2955$co{'author_name'} =$1;2956$co{'author_email'} =$2;2957}else{2958$co{'author_name'} =$co{'author'};2959}2960}elsif($line=~m/^committer (.*) ([0-9]+) (.*)$/) {2961$co{'committer'} = to_utf8($1);2962$co{'committer_epoch'} =$2;2963$co{'committer_tz'} =$3;2964if($co{'committer'} =~m/^([^<]+) <([^>]*)>/) {2965$co{'committer_name'} =$1;2966$co{'committer_email'} =$2;2967}else{2968$co{'committer_name'} =$co{'committer'};2969}2970}2971}2972if(!defined$co{'tree'}) {2973return;2974};2975$co{'parents'} = \@parents;2976$co{'parent'} =$parents[0];29772978foreachmy$title(@commit_lines) {2979$title=~s/^ //;2980if($titlene"") {2981$co{'title'} = chop_str($title,80,5);2982# remove leading stuff of merges to make the interesting part visible2983if(length($title) >50) {2984$title=~s/^Automatic //;2985$title=~s/^merge (of|with) /Merge ... /i;2986if(length($title) >50) {2987$title=~s/(http|rsync):\/\///;2988}2989if(length($title) >50) {2990$title=~s/(master|www|rsync)\.//;2991}2992if(length($title) >50) {2993$title=~s/kernel.org:?//;2994}2995if(length($title) >50) {2996$title=~s/\/pub\/scm//;2997}2998}2999$co{'title_short'} = chop_str($title,50,5);3000last;3001}3002}3003if(!defined$co{'title'} ||$co{'title'}eq"") {3004$co{'title'} =$co{'title_short'} ='(no commit message)';3005}3006# remove added spaces3007foreachmy$line(@commit_lines) {3008$line=~s/^ //;3009}3010$co{'comment'} = \@commit_lines;30113012my$age=time-$co{'committer_epoch'};3013$co{'age'} =$age;3014$co{'age_string'} = age_string($age);3015my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) =gmtime($co{'committer_epoch'});3016if($age>60*60*24*7*2) {3017$co{'age_string_date'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3018$co{'age_string_age'} =$co{'age_string'};3019}else{3020$co{'age_string_date'} =$co{'age_string'};3021$co{'age_string_age'} =sprintf"%4i-%02u-%02i",1900+$year,$mon+1,$mday;3022}3023return%co;3024}30253026sub parse_commit {3027my($commit_id) =@_;3028my%co;30293030local$/="\0";30313032open my$fd,"-|", git_cmd(),"rev-list",3033"--parents",3034"--header",3035"--max-count=1",3036$commit_id,3037"--",3038or die_error(500,"Open git-rev-list failed");3039%co= parse_commit_text(<$fd>,1);3040close$fd;30413042return%co;3043}30443045sub parse_commits {3046my($commit_id,$maxcount,$skip,$filename,@args) =@_;3047my@cos;30483049$maxcount||=1;3050$skip||=0;30513052local$/="\0";30533054open my$fd,"-|", git_cmd(),"rev-list",3055"--header",3056@args,3057("--max-count=".$maxcount),3058("--skip=".$skip),3059@extra_options,3060$commit_id,3061"--",3062($filename? ($filename) : ())3063or die_error(500,"Open git-rev-list failed");3064while(my$line= <$fd>) {3065my%co= parse_commit_text($line);3066push@cos, \%co;3067}3068close$fd;30693070returnwantarray?@cos: \@cos;3071}30723073# parse line of git-diff-tree "raw" output3074sub parse_difftree_raw_line {3075my$line=shift;3076my%res;30773078# ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'3079# ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'3080if($line=~m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {3081$res{'from_mode'} =$1;3082$res{'to_mode'} =$2;3083$res{'from_id'} =$3;3084$res{'to_id'} =$4;3085$res{'status'} =$5;3086$res{'similarity'} =$6;3087if($res{'status'}eq'R'||$res{'status'}eq'C') {# renamed or copied3088($res{'from_file'},$res{'to_file'}) =map{ unquote($_) }split("\t",$7);3089}else{3090$res{'from_file'} =$res{'to_file'} =$res{'file'} = unquote($7);3091}3092}3093# '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'3094# combined diff (for merge commit)3095elsif($line=~s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {3096$res{'nparents'} =length($1);3097$res{'from_mode'} = [split(' ',$2) ];3098$res{'to_mode'} =pop@{$res{'from_mode'}};3099$res{'from_id'} = [split(' ',$3) ];3100$res{'to_id'} =pop@{$res{'from_id'}};3101$res{'status'} = [split('',$4) ];3102$res{'to_file'} = unquote($5);3103}3104# 'c512b523472485aef4fff9e57b229d9d243c967f'3105elsif($line=~m/^([0-9a-fA-F]{40})$/) {3106$res{'commit'} =$1;3107}31083109returnwantarray?%res: \%res;3110}31113112# wrapper: return parsed line of git-diff-tree "raw" output3113# (the argument might be raw line, or parsed info)3114sub parsed_difftree_line {3115my$line_or_ref=shift;31163117if(ref($line_or_ref)eq"HASH") {3118# pre-parsed (or generated by hand)3119return$line_or_ref;3120}else{3121return parse_difftree_raw_line($line_or_ref);3122}3123}31243125# parse line of git-ls-tree output3126sub parse_ls_tree_line {3127my$line=shift;3128my%opts=@_;3129my%res;31303131if($opts{'-l'}) {3132#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'3133$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;31343135$res{'mode'} =$1;3136$res{'type'} =$2;3137$res{'hash'} =$3;3138$res{'size'} =$4;3139if($opts{'-z'}) {3140$res{'name'} =$5;3141}else{3142$res{'name'} = unquote($5);3143}3144}else{3145#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'3146$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;31473148$res{'mode'} =$1;3149$res{'type'} =$2;3150$res{'hash'} =$3;3151if($opts{'-z'}) {3152$res{'name'} =$4;3153}else{3154$res{'name'} = unquote($4);3155}3156}31573158returnwantarray?%res: \%res;3159}31603161# generates _two_ hashes, references to which are passed as 2 and 3 argument3162sub parse_from_to_diffinfo {3163my($diffinfo,$from,$to,@parents) =@_;31643165if($diffinfo->{'nparents'}) {3166# combined diff3167$from->{'file'} = [];3168$from->{'href'} = [];3169 fill_from_file_info($diffinfo,@parents)3170unlessexists$diffinfo->{'from_file'};3171for(my$i=0;$i<$diffinfo->{'nparents'};$i++) {3172$from->{'file'}[$i] =3173defined$diffinfo->{'from_file'}[$i] ?3174$diffinfo->{'from_file'}[$i] :3175$diffinfo->{'to_file'};3176if($diffinfo->{'status'}[$i]ne"A") {# not new (added) file3177$from->{'href'}[$i] = href(action=>"blob",3178 hash_base=>$parents[$i],3179 hash=>$diffinfo->{'from_id'}[$i],3180 file_name=>$from->{'file'}[$i]);3181}else{3182$from->{'href'}[$i] =undef;3183}3184}3185}else{3186# ordinary (not combined) diff3187$from->{'file'} =$diffinfo->{'from_file'};3188if($diffinfo->{'status'}ne"A") {# not new (added) file3189$from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,3190 hash=>$diffinfo->{'from_id'},3191 file_name=>$from->{'file'});3192}else{3193delete$from->{'href'};3194}3195}31963197$to->{'file'} =$diffinfo->{'to_file'};3198if(!is_deleted($diffinfo)) {# file exists in result3199$to->{'href'} = href(action=>"blob", hash_base=>$hash,3200 hash=>$diffinfo->{'to_id'},3201 file_name=>$to->{'file'});3202}else{3203delete$to->{'href'};3204}3205}32063207## ......................................................................3208## parse to array of hashes functions32093210sub git_get_heads_list {3211my($limit,@classes) =@_;3212@classes= ('heads')unless@classes;3213my@patterns=map{"refs/$_"}@classes;3214my@headslist;32153216open my$fd,'-|', git_cmd(),'for-each-ref',3217($limit?'--count='.($limit+1) : ()),'--sort=-committerdate',3218'--format=%(objectname) %(refname) %(subject)%00%(committer)',3219@patterns3220orreturn;3221while(my$line= <$fd>) {3222my%ref_item;32233224chomp$line;3225my($refinfo,$committerinfo) =split(/\0/,$line);3226my($hash,$name,$title) =split(' ',$refinfo,3);3227my($committer,$epoch,$tz) =3228($committerinfo=~/^(.*) ([0-9]+) (.*)$/);3229$ref_item{'fullname'} =$name;3230$name=~s!^refs/(?:head|remote)s/!!;32313232$ref_item{'name'} =$name;3233$ref_item{'id'} =$hash;3234$ref_item{'title'} =$title||'(no commit message)';3235$ref_item{'epoch'} =$epoch;3236if($epoch) {3237$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3238}else{3239$ref_item{'age'} ="unknown";3240}32413242push@headslist, \%ref_item;3243}3244close$fd;32453246returnwantarray?@headslist: \@headslist;3247}32483249sub git_get_tags_list {3250my$limit=shift;3251my@tagslist;32523253open my$fd,'-|', git_cmd(),'for-each-ref',3254($limit?'--count='.($limit+1) : ()),'--sort=-creatordate',3255'--format=%(objectname) %(objecttype) %(refname) '.3256'%(*objectname) %(*objecttype) %(subject)%00%(creator)',3257'refs/tags'3258orreturn;3259while(my$line= <$fd>) {3260my%ref_item;32613262chomp$line;3263my($refinfo,$creatorinfo) =split(/\0/,$line);3264my($id,$type,$name,$refid,$reftype,$title) =split(' ',$refinfo,6);3265my($creator,$epoch,$tz) =3266($creatorinfo=~/^(.*) ([0-9]+) (.*)$/);3267$ref_item{'fullname'} =$name;3268$name=~s!^refs/tags/!!;32693270$ref_item{'type'} =$type;3271$ref_item{'id'} =$id;3272$ref_item{'name'} =$name;3273if($typeeq"tag") {3274$ref_item{'subject'} =$title;3275$ref_item{'reftype'} =$reftype;3276$ref_item{'refid'} =$refid;3277}else{3278$ref_item{'reftype'} =$type;3279$ref_item{'refid'} =$id;3280}32813282if($typeeq"tag"||$typeeq"commit") {3283$ref_item{'epoch'} =$epoch;3284if($epoch) {3285$ref_item{'age'} = age_string(time-$ref_item{'epoch'});3286}else{3287$ref_item{'age'} ="unknown";3288}3289}32903291push@tagslist, \%ref_item;3292}3293close$fd;32943295returnwantarray?@tagslist: \@tagslist;3296}32973298## ----------------------------------------------------------------------3299## filesystem-related functions33003301sub get_file_owner {3302my$path=shift;33033304my($dev,$ino,$mode,$nlink,$st_uid,$st_gid,$rdev,$size) =stat($path);3305my($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) =getpwuid($st_uid);3306if(!defined$gcos) {3307returnundef;3308}3309my$owner=$gcos;3310$owner=~s/[,;].*$//;3311return to_utf8($owner);3312}33133314# assume that file exists3315sub insert_file {3316my$filename=shift;33173318open my$fd,'<',$filename;3319print map{ to_utf8($_) } <$fd>;3320close$fd;3321}33223323## ......................................................................3324## mimetype related functions33253326sub mimetype_guess_file {3327my$filename=shift;3328my$mimemap=shift;3329-r $mimemaporreturnundef;33303331my%mimemap;3332open(my$mh,'<',$mimemap)orreturnundef;3333while(<$mh>) {3334next ifm/^#/;# skip comments3335my($mimetype,$exts) =split(/\t+/);3336if(defined$exts) {3337my@exts=split(/\s+/,$exts);3338foreachmy$ext(@exts) {3339$mimemap{$ext} =$mimetype;3340}3341}3342}3343close($mh);33443345$filename=~/\.([^.]*)$/;3346return$mimemap{$1};3347}33483349sub mimetype_guess {3350my$filename=shift;3351my$mime;3352$filename=~/\./orreturnundef;33533354if($mimetypes_file) {3355my$file=$mimetypes_file;3356if($file!~m!^/!) {# if it is relative path3357# it is relative to project3358$file="$projectroot/$project/$file";3359}3360$mime= mimetype_guess_file($filename,$file);3361}3362$mime||= mimetype_guess_file($filename,'/etc/mime.types');3363return$mime;3364}33653366sub blob_mimetype {3367my$fd=shift;3368my$filename=shift;33693370if($filename) {3371my$mime= mimetype_guess($filename);3372$mimeandreturn$mime;3373}33743375# just in case3376return$default_blob_plain_mimetypeunless$fd;33773378if(-T $fd) {3379return'text/plain';3380}elsif(!$filename) {3381return'application/octet-stream';3382}elsif($filename=~m/\.png$/i) {3383return'image/png';3384}elsif($filename=~m/\.gif$/i) {3385return'image/gif';3386}elsif($filename=~m/\.jpe?g$/i) {3387return'image/jpeg';3388}else{3389return'application/octet-stream';3390}3391}33923393sub blob_contenttype {3394my($fd,$file_name,$type) =@_;33953396$type||= blob_mimetype($fd,$file_name);3397if($typeeq'text/plain'&&defined$default_text_plain_charset) {3398$type.="; charset=$default_text_plain_charset";3399}34003401return$type;3402}34033404# guess file syntax for syntax highlighting; return undef if no highlighting3405# the name of syntax can (in the future) depend on syntax highlighter used3406sub guess_file_syntax {3407my($highlight,$mimetype,$file_name) =@_;3408returnundefunless($highlight&&defined$file_name);3409my$basename= basename($file_name,'.in');3410return$highlight_basename{$basename}3411ifexists$highlight_basename{$basename};34123413$basename=~/\.([^.]*)$/;3414my$ext=$1orreturnundef;3415return$highlight_ext{$ext}3416ifexists$highlight_ext{$ext};34173418returnundef;3419}34203421# run highlighter and return FD of its output,3422# or return original FD if no highlighting3423sub run_highlighter {3424my($fd,$highlight,$syntax) =@_;3425return$fdunless($highlight&&defined$syntax);34263427close$fd3428or die_error(404,"Reading blob failed");3429open$fd, quote_command(git_cmd(),"cat-file","blob",$hash)." | ".3430 quote_command($highlight_bin).3431" --xhtml --fragment --syntax$syntax|"3432or die_error(500,"Couldn't open file or run syntax highlighter");3433return$fd;3434}34353436## ======================================================================3437## functions printing HTML: header, footer, error page34383439sub get_page_title {3440my$title= to_utf8($site_name);34413442return$titleunless(defined$project);3443$title.=" - ". to_utf8($project);34443445return$titleunless(defined$action);3446$title.="/$action";# $action is US-ASCII (7bit ASCII)34473448return$titleunless(defined$file_name);3449$title.=" - ". esc_path($file_name);3450if($actioneq"tree"&&$file_name!~ m|/$|) {3451$title.="/";3452}34533454return$title;3455}34563457sub git_header_html {3458my$status=shift||"200 OK";3459my$expires=shift;3460my%opts=@_;34613462my$title= get_page_title();3463my$content_type;3464# require explicit support from the UA if we are to send the page as3465# 'application/xhtml+xml', otherwise send it as plain old 'text/html'.3466# we have to do this because MSIE sometimes globs '*/*', pretending to3467# support xhtml+xml but choking when it gets what it asked for.3468if(defined$cgi->http('HTTP_ACCEPT') &&3469$cgi->http('HTTP_ACCEPT') =~m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&3470$cgi->Accept('application/xhtml+xml') !=0) {3471$content_type='application/xhtml+xml';3472}else{3473$content_type='text/html';3474}3475print$cgi->header(-type=>$content_type, -charset =>'utf-8',3476-status=>$status, -expires =>$expires)3477unless($opts{'-no_http_header'});3478my$mod_perl_version=$ENV{'MOD_PERL'} ?"$ENV{'MOD_PERL'}":'';3479print<<EOF;3480<?xml version="1.0" encoding="utf-8"?>3481<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">3482<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">3483<!-- git web interface version$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->3484<!-- git core binaries version$git_version-->3485<head>3486<meta http-equiv="content-type" content="$content_type; charset=utf-8"/>3487<meta name="generator" content="gitweb/$versiongit/$git_version$mod_perl_version"/>3488<meta name="robots" content="index, nofollow"/>3489<title>$title</title>3490EOF3491# the stylesheet, favicon etc urls won't work correctly with path_info3492# unless we set the appropriate base URL3493if($ENV{'PATH_INFO'}) {3494print"<base href=\"".esc_url($base_url)."\"/>\n";3495}3496# print out each stylesheet that exist, providing backwards capability3497# for those people who defined $stylesheet in a config file3498if(defined$stylesheet) {3499print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";3500}else{3501foreachmy$stylesheet(@stylesheets) {3502next unless$stylesheet;3503print'<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";3504}3505}3506if(defined$project) {3507my%href_params= get_feed_info();3508if(!exists$href_params{'-title'}) {3509$href_params{'-title'} ='log';3510}35113512foreachmy$formatqw(RSS Atom){3513my$type=lc($format);3514my%link_attr= (3515'-rel'=>'alternate',3516'-title'=>"$project-$href_params{'-title'} -$formatfeed",3517'-type'=>"application/$type+xml"3518);35193520$href_params{'action'} =$type;3521$link_attr{'-href'} = href(%href_params);3522print"<link ".3523"rel=\"$link_attr{'-rel'}\"".3524"title=\"$link_attr{'-title'}\"".3525"href=\"$link_attr{'-href'}\"".3526"type=\"$link_attr{'-type'}\"".3527"/>\n";35283529$href_params{'extra_options'} ='--no-merges';3530$link_attr{'-href'} = href(%href_params);3531$link_attr{'-title'} .=' (no merges)';3532print"<link ".3533"rel=\"$link_attr{'-rel'}\"".3534"title=\"$link_attr{'-title'}\"".3535"href=\"$link_attr{'-href'}\"".3536"type=\"$link_attr{'-type'}\"".3537"/>\n";3538}35393540}else{3541printf('<link rel="alternate" title="%sprojects list" '.3542'href="%s" type="text/plain; charset=utf-8" />'."\n",3543$site_name, href(project=>undef, action=>"project_index"));3544printf('<link rel="alternate" title="%sprojects feeds" '.3545'href="%s" type="text/x-opml" />'."\n",3546$site_name, href(project=>undef, action=>"opml"));3547}3548if(defined$favicon) {3549printqq(<link rel="shortcut icon" href="$favicon" type="image/png" />\n);3550}35513552print"</head>\n".3553"<body>\n";35543555if(defined$site_header&& -f $site_header) {3556 insert_file($site_header);3557}35583559print"<div class=\"page_header\">\n".3560$cgi->a({-href => esc_url($logo_url),3561-title =>$logo_label},3562qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));3563print$cgi->a({-href => esc_url($home_link)},$home_link_str) ." / ";3564if(defined$project) {3565print$cgi->a({-href => href(action=>"summary")}, esc_html($project));3566if(defined$action) {3567my$action_print=$action;3568if(defined$opts{-action_extra}) {3569$action_print=$cgi->a({-href => href(action=>$action)},3570$action);3571}3572print" /$action_print";3573}3574if(defined$opts{-action_extra}) {3575print" /$opts{-action_extra}";3576}3577print"\n";3578}3579print"</div>\n";35803581my$have_search= gitweb_check_feature('search');3582if(defined$project&&$have_search) {3583if(!defined$searchtext) {3584$searchtext="";3585}3586my$search_hash;3587if(defined$hash_base) {3588$search_hash=$hash_base;3589}elsif(defined$hash) {3590$search_hash=$hash;3591}else{3592$search_hash="HEAD";3593}3594my$action=$my_uri;3595my$use_pathinfo= gitweb_check_feature('pathinfo');3596if($use_pathinfo) {3597$action.="/".esc_url($project);3598}3599print$cgi->startform(-method=>"get", -action =>$action) .3600"<div class=\"search\">\n".3601(!$use_pathinfo&&3602$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) ."\n") .3603$cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) ."\n".3604$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) ."\n".3605$cgi->popup_menu(-name =>'st', -default=>'commit',3606-values=> ['commit','grep','author','committer','pickaxe']) .3607$cgi->sup($cgi->a({-href => href(action=>"search_help")},"?")) .3608" search:\n",3609$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".3610"<span title=\"Extended regular expression\">".3611$cgi->checkbox(-name =>'sr', -value =>1, -label =>'re',3612-checked =>$search_use_regexp) .3613"</span>".3614"</div>".3615$cgi->end_form() ."\n";3616}3617}36183619sub git_footer_html {3620my$feed_class='rss_logo';36213622print"<div class=\"page_footer\">\n";3623if(defined$project) {3624my$descr= git_get_project_description($project);3625if(defined$descr) {3626print"<div class=\"page_footer_text\">". esc_html($descr) ."</div>\n";3627}36283629my%href_params= get_feed_info();3630if(!%href_params) {3631$feed_class.=' generic';3632}3633$href_params{'-title'} ||='log';36343635foreachmy$formatqw(RSS Atom){3636$href_params{'action'} =lc($format);3637print$cgi->a({-href => href(%href_params),3638-title =>"$href_params{'-title'}$formatfeed",3639-class=>$feed_class},$format)."\n";3640}36413642}else{3643print$cgi->a({-href => href(project=>undef, action=>"opml"),3644-class=>$feed_class},"OPML") ." ";3645print$cgi->a({-href => href(project=>undef, action=>"project_index"),3646-class=>$feed_class},"TXT") ."\n";3647}3648print"</div>\n";# class="page_footer"36493650if(defined$t0&& gitweb_check_feature('timed')) {3651print"<div id=\"generating_info\">\n";3652print'This page took '.3653'<span id="generating_time" class="time_span">'.3654 Time::HiRes::tv_interval($t0, [Time::HiRes::gettimeofday()]).3655' seconds </span>'.3656' and '.3657'<span id="generating_cmd">'.3658$number_of_git_cmds.3659'</span> git commands '.3660" to generate.\n";3661print"</div>\n";# class="page_footer"3662}36633664if(defined$site_footer&& -f $site_footer) {3665 insert_file($site_footer);3666}36673668print qq!<script type="text/javascript" src="$javascript"></script>\n!;3669if(defined$action&&3670$actioneq'blame_incremental') {3671print qq!<script type="text/javascript">\n!.3672 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.3673 qq!"!. href() .qq!");\n!.3674 qq!</script>\n!;3675}elsif(gitweb_check_feature('javascript-actions')) {3676print qq!<script type="text/javascript">\n!.3677 qq!window.onload = fixLinks;\n!.3678 qq!</script>\n!;3679}36803681print"</body>\n".3682"</html>";3683}36843685# die_error(<http_status_code>, <error_message>[, <detailed_html_description>])3686# Example: die_error(404, 'Hash not found')3687# By convention, use the following status codes (as defined in RFC 2616):3688# 400: Invalid or missing CGI parameters, or3689# requested object exists but has wrong type.3690# 403: Requested feature (like "pickaxe" or "snapshot") not enabled on3691# this server or project.3692# 404: Requested object/revision/project doesn't exist.3693# 500: The server isn't configured properly, or3694# an internal error occurred (e.g. failed assertions caused by bugs), or3695# an unknown error occurred (e.g. the git binary died unexpectedly).3696# 503: The server is currently unavailable (because it is overloaded,3697# or down for maintenance). Generally, this is a temporary state.3698sub die_error {3699my$status=shift||500;3700my$error= esc_html(shift) ||"Internal Server Error";3701my$extra=shift;3702my%opts=@_;37033704my%http_responses= (3705400=>'400 Bad Request',3706403=>'403 Forbidden',3707404=>'404 Not Found',3708500=>'500 Internal Server Error',3709503=>'503 Service Unavailable',3710);3711 git_header_html($http_responses{$status},undef,%opts);3712print<<EOF;3713<div class="page_body">3714<br /><br />3715$status-$error3716<br />3717EOF3718if(defined$extra) {3719print"<hr />\n".3720"$extra\n";3721}3722print"</div>\n";37233724 git_footer_html();3725goto DONE_GITWEB3726unless($opts{'-error_handler'});3727}37283729## ----------------------------------------------------------------------3730## functions printing or outputting HTML: navigation37313732sub git_print_page_nav {3733my($current,$suppress,$head,$treehead,$treebase,$extra) =@_;3734$extra=''if!defined$extra;# pager or formats37353736my@navs=qw(summary shortlog log commit commitdiff tree);3737if($suppress) {3738@navs=grep{$_ne$suppress}@navs;3739}37403741my%arg=map{$_=> {action=>$_} }@navs;3742if(defined$head) {3743for(qw(commit commitdiff)) {3744$arg{$_}{'hash'} =$head;3745}3746if($current=~m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {3747for(qw(shortlog log)) {3748$arg{$_}{'hash'} =$head;3749}3750}3751}37523753$arg{'tree'}{'hash'} =$treeheadifdefined$treehead;3754$arg{'tree'}{'hash_base'} =$treebaseifdefined$treebase;37553756my@actions= gitweb_get_feature('actions');3757my%repl= (3758'%'=>'%',3759'n'=>$project,# project name3760'f'=>$git_dir,# project path within filesystem3761'h'=>$treehead||'',# current hash ('h' parameter)3762'b'=>$treebase||'',# hash base ('hb' parameter)3763);3764while(@actions) {3765my($label,$link,$pos) =splice(@actions,0,3);3766# insert3767@navs=map{$_eq$pos? ($_,$label) :$_}@navs;3768# munch munch3769$link=~s/%([%nfhb])/$repl{$1}/g;3770$arg{$label}{'_href'} =$link;3771}37723773print"<div class=\"page_nav\">\n".3774(join" | ",3775map{$_eq$current?3776$_:$cgi->a({-href => ($arg{$_}{_href} ?$arg{$_}{_href} : href(%{$arg{$_}}))},"$_")3777}@navs);3778print"<br/>\n$extra<br/>\n".3779"</div>\n";3780}37813782# returns a submenu for the nagivation of the refs views (tags, heads,3783# remotes) with the current view disabled and the remotes view only3784# available if the feature is enabled3785sub format_ref_views {3786my($current) =@_;3787my@ref_views=qw{tags heads};3788push@ref_views,'remotes'if gitweb_check_feature('remote_heads');3789returnjoin" | ",map{3790$_eq$current?$_:3791$cgi->a({-href => href(action=>$_)},$_)3792}@ref_views3793}37943795sub format_paging_nav {3796my($action,$page,$has_next_link) =@_;3797my$paging_nav;379837993800if($page>0) {3801$paging_nav.=3802$cgi->a({-href => href(-replay=>1, page=>undef)},"first") .3803" ⋅ ".3804$cgi->a({-href => href(-replay=>1, page=>$page-1),3805-accesskey =>"p", -title =>"Alt-p"},"prev");3806}else{3807$paging_nav.="first ⋅ prev";3808}38093810if($has_next_link) {3811$paging_nav.=" ⋅ ".3812$cgi->a({-href => href(-replay=>1, page=>$page+1),3813-accesskey =>"n", -title =>"Alt-n"},"next");3814}else{3815$paging_nav.=" ⋅ next";3816}38173818return$paging_nav;3819}38203821## ......................................................................3822## functions printing or outputting HTML: div38233824sub git_print_header_div {3825my($action,$title,$hash,$hash_base) =@_;3826my%args= ();38273828$args{'action'} =$action;3829$args{'hash'} =$hashif$hash;3830$args{'hash_base'} =$hash_baseif$hash_base;38313832print"<div class=\"header\">\n".3833$cgi->a({-href => href(%args), -class=>"title"},3834$title?$title:$action) .3835"\n</div>\n";3836}38373838sub format_repo_url {3839my($name,$url) =@_;3840return"<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";3841}38423843# Group output by placing it in a DIV element and adding a header.3844# Options for start_div() can be provided by passing a hash reference as the3845# first parameter to the function.3846# Options to git_print_header_div() can be provided by passing an array3847# reference. This must follow the options to start_div if they are present.3848# The content can be a scalar, which is output as-is, a scalar reference, which3849# is output after html escaping, an IO handle passed either as *handle or3850# *handle{IO}, or a function reference. In the latter case all following3851# parameters will be taken as argument to the content function call.3852sub git_print_section {3853my($div_args,$header_args,$content);3854my$arg=shift;3855if(ref($arg)eq'HASH') {3856$div_args=$arg;3857$arg=shift;3858}3859if(ref($arg)eq'ARRAY') {3860$header_args=$arg;3861$arg=shift;3862}3863$content=$arg;38643865print$cgi->start_div($div_args);3866 git_print_header_div(@$header_args);38673868if(ref($content)eq'CODE') {3869$content->(@_);3870}elsif(ref($content)eq'SCALAR') {3871print esc_html($$content);3872}elsif(ref($content)eq'GLOB'or ref($content)eq'IO::Handle') {3873print<$content>;3874}elsif(!ref($content) &&defined($content)) {3875print$content;3876}38773878print$cgi->end_div;3879}38803881sub print_local_time {3882print format_local_time(@_);3883}38843885sub format_local_time {3886my$localtime='';3887my%date=@_;3888if($date{'hour_local'} <6) {3889$localtime.=sprintf(" (<span class=\"atnight\">%02d:%02d</span>%s)",3890$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3891}else{3892$localtime.=sprintf(" (%02d:%02d%s)",3893$date{'hour_local'},$date{'minute_local'},$date{'tz_local'});3894}38953896return$localtime;3897}38983899# Outputs the author name and date in long form3900sub git_print_authorship {3901my$co=shift;3902my%opts=@_;3903my$tag=$opts{-tag} ||'div';3904my$author=$co->{'author_name'};39053906my%ad= parse_date($co->{'author_epoch'},$co->{'author_tz'});3907print"<$tagclass=\"author_date\">".3908 format_search_author($author,"author", esc_html($author)) .3909" [$ad{'rfc2822'}";3910 print_local_time(%ad)if($opts{-localtime});3911print"]". git_get_avatar($co->{'author_email'}, -pad_before =>1)3912."</$tag>\n";3913}39143915# Outputs table rows containing the full author or committer information,3916# in the format expected for 'commit' view (& similar).3917# Parameters are a commit hash reference, followed by the list of people3918# to output information for. If the list is empty it defaults to both3919# author and committer.3920sub git_print_authorship_rows {3921my$co=shift;3922# too bad we can't use @people = @_ || ('author', 'committer')3923my@people=@_;3924@people= ('author','committer')unless@people;3925foreachmy$who(@people) {3926my%wd= parse_date($co->{"${who}_epoch"},$co->{"${who}_tz"});3927print"<tr><td>$who</td><td>".3928 format_search_author($co->{"${who}_name"},$who,3929 esc_html($co->{"${who}_name"})) ." ".3930 format_search_author($co->{"${who}_email"},$who,3931 esc_html("<".$co->{"${who}_email"} .">")) .3932"</td><td rowspan=\"2\">".3933 git_get_avatar($co->{"${who}_email"}, -size =>'double') .3934"</td></tr>\n".3935"<tr>".3936"<td></td><td>$wd{'rfc2822'}";3937 print_local_time(%wd);3938print"</td>".3939"</tr>\n";3940}3941}39423943sub git_print_page_path {3944my$name=shift;3945my$type=shift;3946my$hb=shift;394739483949print"<div class=\"page_path\">";3950print$cgi->a({-href => href(action=>"tree", hash_base=>$hb),3951-title =>'tree root'}, to_utf8("[$project]"));3952print" / ";3953if(defined$name) {3954my@dirname=split'/',$name;3955my$basename=pop@dirname;3956my$fullname='';39573958foreachmy$dir(@dirname) {3959$fullname.= ($fullname?'/':'') .$dir;3960print$cgi->a({-href => href(action=>"tree", file_name=>$fullname,3961 hash_base=>$hb),3962-title =>$fullname}, esc_path($dir));3963print" / ";3964}3965if(defined$type&&$typeeq'blob') {3966print$cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,3967 hash_base=>$hb),3968-title =>$name}, esc_path($basename));3969}elsif(defined$type&&$typeeq'tree') {3970print$cgi->a({-href => href(action=>"tree", file_name=>$file_name,3971 hash_base=>$hb),3972-title =>$name}, esc_path($basename));3973print" / ";3974}else{3975print esc_path($basename);3976}3977}3978print"<br/></div>\n";3979}39803981sub git_print_log {3982my$log=shift;3983my%opts=@_;39843985if($opts{'-remove_title'}) {3986# remove title, i.e. first line of log3987shift@$log;3988}3989# remove leading empty lines3990while(defined$log->[0] &&$log->[0]eq"") {3991shift@$log;3992}39933994# print log3995my$signoff=0;3996my$empty=0;3997foreachmy$line(@$log) {3998if($line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {3999$signoff=1;4000$empty=0;4001if(!$opts{'-remove_signoff'}) {4002print"<span class=\"signoff\">". esc_html($line) ."</span><br/>\n";4003next;4004}else{4005# remove signoff lines4006next;4007}4008}else{4009$signoff=0;4010}40114012# print only one empty line4013# do not print empty line after signoff4014if($lineeq"") {4015next if($empty||$signoff);4016$empty=1;4017}else{4018$empty=0;4019}40204021print format_log_line_html($line) ."<br/>\n";4022}40234024if($opts{'-final_empty_line'}) {4025# end with single empty line4026print"<br/>\n"unless$empty;4027}4028}40294030# return link target (what link points to)4031sub git_get_link_target {4032my$hash=shift;4033my$link_target;40344035# read link4036open my$fd,"-|", git_cmd(),"cat-file","blob",$hash4037orreturn;4038{4039local$/=undef;4040$link_target= <$fd>;4041}4042close$fd4043orreturn;40444045return$link_target;4046}40474048# given link target, and the directory (basedir) the link is in,4049# return target of link relative to top directory (top tree);4050# return undef if it is not possible (including absolute links).4051sub normalize_link_target {4052my($link_target,$basedir) =@_;40534054# absolute symlinks (beginning with '/') cannot be normalized4055return if(substr($link_target,0,1)eq'/');40564057# normalize link target to path from top (root) tree (dir)4058my$path;4059if($basedir) {4060$path=$basedir.'/'.$link_target;4061}else{4062# we are in top (root) tree (dir)4063$path=$link_target;4064}40654066# remove //, /./, and /../4067my@path_parts;4068foreachmy$part(split('/',$path)) {4069# discard '.' and ''4070next if(!$part||$parteq'.');4071# handle '..'4072if($parteq'..') {4073if(@path_parts) {4074pop@path_parts;4075}else{4076# link leads outside repository (outside top dir)4077return;4078}4079}else{4080push@path_parts,$part;4081}4082}4083$path=join('/',@path_parts);40844085return$path;4086}40874088# print tree entry (row of git_tree), but without encompassing <tr> element4089sub git_print_tree_entry {4090my($t,$basedir,$hash_base,$have_blame) =@_;40914092my%base_key= ();4093$base_key{'hash_base'} =$hash_baseifdefined$hash_base;40944095# The format of a table row is: mode list link. Where mode is4096# the mode of the entry, list is the name of the entry, an href,4097# and link is the action links of the entry.40984099print"<td class=\"mode\">". mode_str($t->{'mode'}) ."</td>\n";4100if(exists$t->{'size'}) {4101print"<td class=\"size\">$t->{'size'}</td>\n";4102}4103if($t->{'type'}eq"blob") {4104print"<td class=\"list\">".4105$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4106 file_name=>"$basedir$t->{'name'}",%base_key),4107-class=>"list"}, esc_path($t->{'name'}));4108if(S_ISLNK(oct$t->{'mode'})) {4109my$link_target= git_get_link_target($t->{'hash'});4110if($link_target) {4111my$norm_target= normalize_link_target($link_target,$basedir);4112if(defined$norm_target) {4113print" -> ".4114$cgi->a({-href => href(action=>"object", hash_base=>$hash_base,4115 file_name=>$norm_target),4116-title =>$norm_target}, esc_path($link_target));4117}else{4118print" -> ". esc_path($link_target);4119}4120}4121}4122print"</td>\n";4123print"<td class=\"link\">";4124print$cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},4125 file_name=>"$basedir$t->{'name'}",%base_key)},4126"blob");4127if($have_blame) {4128print" | ".4129$cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},4130 file_name=>"$basedir$t->{'name'}",%base_key)},4131"blame");4132}4133if(defined$hash_base) {4134print" | ".4135$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4136 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},4137"history");4138}4139print" | ".4140$cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,4141 file_name=>"$basedir$t->{'name'}")},4142"raw");4143print"</td>\n";41444145}elsif($t->{'type'}eq"tree") {4146print"<td class=\"list\">";4147print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4148 file_name=>"$basedir$t->{'name'}",4149%base_key)},4150 esc_path($t->{'name'}));4151print"</td>\n";4152print"<td class=\"link\">";4153print$cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},4154 file_name=>"$basedir$t->{'name'}",4155%base_key)},4156"tree");4157if(defined$hash_base) {4158print" | ".4159$cgi->a({-href => href(action=>"history", hash_base=>$hash_base,4160 file_name=>"$basedir$t->{'name'}")},4161"history");4162}4163print"</td>\n";4164}else{4165# unknown object: we can only present history for it4166# (this includes 'commit' object, i.e. submodule support)4167print"<td class=\"list\">".4168 esc_path($t->{'name'}) .4169"</td>\n";4170print"<td class=\"link\">";4171if(defined$hash_base) {4172print$cgi->a({-href => href(action=>"history",4173 hash_base=>$hash_base,4174 file_name=>"$basedir$t->{'name'}")},4175"history");4176}4177print"</td>\n";4178}4179}41804181## ......................................................................4182## functions printing large fragments of HTML41834184# get pre-image filenames for merge (combined) diff4185sub fill_from_file_info {4186my($diff,@parents) =@_;41874188$diff->{'from_file'} = [ ];4189$diff->{'from_file'}[$diff->{'nparents'} -1] =undef;4190for(my$i=0;$i<$diff->{'nparents'};$i++) {4191if($diff->{'status'}[$i]eq'R'||4192$diff->{'status'}[$i]eq'C') {4193$diff->{'from_file'}[$i] =4194 git_get_path_by_hash($parents[$i],$diff->{'from_id'}[$i]);4195}4196}41974198return$diff;4199}42004201# is current raw difftree line of file deletion4202sub is_deleted {4203my$diffinfo=shift;42044205return$diffinfo->{'to_id'}eq('0' x 40);4206}42074208# does patch correspond to [previous] difftree raw line4209# $diffinfo - hashref of parsed raw diff format4210# $patchinfo - hashref of parsed patch diff format4211# (the same keys as in $diffinfo)4212sub is_patch_split {4213my($diffinfo,$patchinfo) =@_;42144215returndefined$diffinfo&&defined$patchinfo4216&&$diffinfo->{'to_file'}eq$patchinfo->{'to_file'};4217}421842194220sub git_difftree_body {4221my($difftree,$hash,@parents) =@_;4222my($parent) =$parents[0];4223my$have_blame= gitweb_check_feature('blame');4224print"<div class=\"list_head\">\n";4225if($#{$difftree} >10) {4226print(($#{$difftree} +1) ." files changed:\n");4227}4228print"</div>\n";42294230print"<table class=\"".4231(@parents>1?"combined ":"") .4232"diff_tree\">\n";42334234# header only for combined diff in 'commitdiff' view4235my$has_header=@$difftree&&@parents>1&&$actioneq'commitdiff';4236if($has_header) {4237# table header4238print"<thead><tr>\n".4239"<th></th><th></th>\n";# filename, patchN link4240for(my$i=0;$i<@parents;$i++) {4241my$par=$parents[$i];4242print"<th>".4243$cgi->a({-href => href(action=>"commitdiff",4244 hash=>$hash, hash_parent=>$par),4245-title =>'commitdiff to parent number '.4246($i+1) .': '.substr($par,0,7)},4247$i+1) .4248" </th>\n";4249}4250print"</tr></thead>\n<tbody>\n";4251}42524253my$alternate=1;4254my$patchno=0;4255foreachmy$line(@{$difftree}) {4256my$diff= parsed_difftree_line($line);42574258if($alternate) {4259print"<tr class=\"dark\">\n";4260}else{4261print"<tr class=\"light\">\n";4262}4263$alternate^=1;42644265if(exists$diff->{'nparents'}) {# combined diff42664267 fill_from_file_info($diff,@parents)4268unlessexists$diff->{'from_file'};42694270if(!is_deleted($diff)) {4271# file exists in the result (child) commit4272print"<td>".4273$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4274 file_name=>$diff->{'to_file'},4275 hash_base=>$hash),4276-class=>"list"}, esc_path($diff->{'to_file'})) .4277"</td>\n";4278}else{4279print"<td>".4280 esc_path($diff->{'to_file'}) .4281"</td>\n";4282}42834284if($actioneq'commitdiff') {4285# link to patch4286$patchno++;4287print"<td class=\"link\">".4288$cgi->a({-href =>"#patch$patchno"},"patch") .4289" | ".4290"</td>\n";4291}42924293my$has_history=0;4294my$not_deleted=0;4295for(my$i=0;$i<$diff->{'nparents'};$i++) {4296my$hash_parent=$parents[$i];4297my$from_hash=$diff->{'from_id'}[$i];4298my$from_path=$diff->{'from_file'}[$i];4299my$status=$diff->{'status'}[$i];43004301$has_history||= ($statusne'A');4302$not_deleted||= ($statusne'D');43034304if($statuseq'A') {4305print"<td class=\"link\"align=\"right\"> | </td>\n";4306}elsif($statuseq'D') {4307print"<td class=\"link\">".4308$cgi->a({-href => href(action=>"blob",4309 hash_base=>$hash,4310 hash=>$from_hash,4311 file_name=>$from_path)},4312"blob". ($i+1)) .4313" | </td>\n";4314}else{4315if($diff->{'to_id'}eq$from_hash) {4316print"<td class=\"link nochange\">";4317}else{4318print"<td class=\"link\">";4319}4320print$cgi->a({-href => href(action=>"blobdiff",4321 hash=>$diff->{'to_id'},4322 hash_parent=>$from_hash,4323 hash_base=>$hash,4324 hash_parent_base=>$hash_parent,4325 file_name=>$diff->{'to_file'},4326 file_parent=>$from_path)},4327"diff". ($i+1)) .4328" | </td>\n";4329}4330}43314332print"<td class=\"link\">";4333if($not_deleted) {4334print$cgi->a({-href => href(action=>"blob",4335 hash=>$diff->{'to_id'},4336 file_name=>$diff->{'to_file'},4337 hash_base=>$hash)},4338"blob");4339print" | "if($has_history);4340}4341if($has_history) {4342print$cgi->a({-href => href(action=>"history",4343 file_name=>$diff->{'to_file'},4344 hash_base=>$hash)},4345"history");4346}4347print"</td>\n";43484349print"</tr>\n";4350next;# instead of 'else' clause, to avoid extra indent4351}4352# else ordinary diff43534354my($to_mode_oct,$to_mode_str,$to_file_type);4355my($from_mode_oct,$from_mode_str,$from_file_type);4356if($diff->{'to_mode'}ne('0' x 6)) {4357$to_mode_oct=oct$diff->{'to_mode'};4358if(S_ISREG($to_mode_oct)) {# only for regular file4359$to_mode_str=sprintf("%04o",$to_mode_oct&0777);# permission bits4360}4361$to_file_type= file_type($diff->{'to_mode'});4362}4363if($diff->{'from_mode'}ne('0' x 6)) {4364$from_mode_oct=oct$diff->{'from_mode'};4365if(S_ISREG($to_mode_oct)) {# only for regular file4366$from_mode_str=sprintf("%04o",$from_mode_oct&0777);# permission bits4367}4368$from_file_type= file_type($diff->{'from_mode'});4369}43704371if($diff->{'status'}eq"A") {# created4372my$mode_chng="<span class=\"file_status new\">[new$to_file_type";4373$mode_chng.=" with mode:$to_mode_str"if$to_mode_str;4374$mode_chng.="]</span>";4375print"<td>";4376print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4377 hash_base=>$hash, file_name=>$diff->{'file'}),4378-class=>"list"}, esc_path($diff->{'file'}));4379print"</td>\n";4380print"<td>$mode_chng</td>\n";4381print"<td class=\"link\">";4382if($actioneq'commitdiff') {4383# link to patch4384$patchno++;4385print$cgi->a({-href =>"#patch$patchno"},"patch");4386print" | ";4387}4388print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4389 hash_base=>$hash, file_name=>$diff->{'file'})},4390"blob");4391print"</td>\n";43924393}elsif($diff->{'status'}eq"D") {# deleted4394my$mode_chng="<span class=\"file_status deleted\">[deleted$from_file_type]</span>";4395print"<td>";4396print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4397 hash_base=>$parent, file_name=>$diff->{'file'}),4398-class=>"list"}, esc_path($diff->{'file'}));4399print"</td>\n";4400print"<td>$mode_chng</td>\n";4401print"<td class=\"link\">";4402if($actioneq'commitdiff') {4403# link to patch4404$patchno++;4405print$cgi->a({-href =>"#patch$patchno"},"patch");4406print" | ";4407}4408print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},4409 hash_base=>$parent, file_name=>$diff->{'file'})},4410"blob") ." | ";4411if($have_blame) {4412print$cgi->a({-href => href(action=>"blame", hash_base=>$parent,4413 file_name=>$diff->{'file'})},4414"blame") ." | ";4415}4416print$cgi->a({-href => href(action=>"history", hash_base=>$parent,4417 file_name=>$diff->{'file'})},4418"history");4419print"</td>\n";44204421}elsif($diff->{'status'}eq"M"||$diff->{'status'}eq"T") {# modified, or type changed4422my$mode_chnge="";4423if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4424$mode_chnge="<span class=\"file_status mode_chnge\">[changed";4425if($from_file_typene$to_file_type) {4426$mode_chnge.=" from$from_file_typeto$to_file_type";4427}4428if(($from_mode_oct&0777) != ($to_mode_oct&0777)) {4429if($from_mode_str&&$to_mode_str) {4430$mode_chnge.=" mode:$from_mode_str->$to_mode_str";4431}elsif($to_mode_str) {4432$mode_chnge.=" mode:$to_mode_str";4433}4434}4435$mode_chnge.="]</span>\n";4436}4437print"<td>";4438print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4439 hash_base=>$hash, file_name=>$diff->{'file'}),4440-class=>"list"}, esc_path($diff->{'file'}));4441print"</td>\n";4442print"<td>$mode_chnge</td>\n";4443print"<td class=\"link\">";4444if($actioneq'commitdiff') {4445# link to patch4446$patchno++;4447print$cgi->a({-href =>"#patch$patchno"},"patch") .4448" | ";4449}elsif($diff->{'to_id'}ne$diff->{'from_id'}) {4450# "commit" view and modified file (not onlu mode changed)4451print$cgi->a({-href => href(action=>"blobdiff",4452 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},4453 hash_base=>$hash, hash_parent_base=>$parent,4454 file_name=>$diff->{'file'})},4455"diff") .4456" | ";4457}4458print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4459 hash_base=>$hash, file_name=>$diff->{'file'})},4460"blob") ." | ";4461if($have_blame) {4462print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4463 file_name=>$diff->{'file'})},4464"blame") ." | ";4465}4466print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4467 file_name=>$diff->{'file'})},4468"history");4469print"</td>\n";44704471}elsif($diff->{'status'}eq"R"||$diff->{'status'}eq"C") {# renamed or copied4472my%status_name= ('R'=>'moved','C'=>'copied');4473my$nstatus=$status_name{$diff->{'status'}};4474my$mode_chng="";4475if($diff->{'from_mode'} !=$diff->{'to_mode'}) {4476# mode also for directories, so we cannot use $to_mode_str4477$mode_chng=sprintf(", mode:%04o",$to_mode_oct&0777);4478}4479print"<td>".4480$cgi->a({-href => href(action=>"blob", hash_base=>$hash,4481 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),4482-class=>"list"}, esc_path($diff->{'to_file'})) ."</td>\n".4483"<td><span class=\"file_status$nstatus\">[$nstatusfrom ".4484$cgi->a({-href => href(action=>"blob", hash_base=>$parent,4485 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),4486-class=>"list"}, esc_path($diff->{'from_file'})) .4487" with ". (int$diff->{'similarity'}) ."% similarity$mode_chng]</span></td>\n".4488"<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 only pure rename or copy)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->{'to_file'}, file_parent=>$diff->{'from_file'})},4500"diff") .4501" | ";4502}4503print$cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},4504 hash_base=>$parent, file_name=>$diff->{'to_file'})},4505"blob") ." | ";4506if($have_blame) {4507print$cgi->a({-href => href(action=>"blame", hash_base=>$hash,4508 file_name=>$diff->{'to_file'})},4509"blame") ." | ";4510}4511print$cgi->a({-href => href(action=>"history", hash_base=>$hash,4512 file_name=>$diff->{'to_file'})},4513"history");4514print"</td>\n";45154516}# we should not encounter Unmerged (U) or Unknown (X) status4517print"</tr>\n";4518}4519print"</tbody>"if$has_header;4520print"</table>\n";4521}45224523sub git_patchset_body {4524my($fd,$difftree,$hash,@hash_parents) =@_;4525my($hash_parent) =$hash_parents[0];45264527my$is_combined= (@hash_parents>1);4528my$patch_idx=0;4529my$patch_number=0;4530my$patch_line;4531my$diffinfo;4532my$to_name;4533my(%from,%to);45344535print"<div class=\"patchset\">\n";45364537# skip to first patch4538while($patch_line= <$fd>) {4539chomp$patch_line;45404541last if($patch_line=~m/^diff /);4542}45434544 PATCH:4545while($patch_line) {45464547# parse "git diff" header line4548if($patch_line=~m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {4549# $1 is from_name, which we do not use4550$to_name= unquote($2);4551$to_name=~s!^b/!!;4552}elsif($patch_line=~m/^diff --(cc|combined) ("?.*"?)$/) {4553# $1 is 'cc' or 'combined', which we do not use4554$to_name= unquote($2);4555}else{4556$to_name=undef;4557}45584559# check if current patch belong to current raw line4560# and parse raw git-diff line if needed4561if(is_patch_split($diffinfo, {'to_file'=>$to_name})) {4562# this is continuation of a split patch4563print"<div class=\"patch cont\">\n";4564}else{4565# advance raw git-diff output if needed4566$patch_idx++ifdefined$diffinfo;45674568# read and prepare patch information4569$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);45704571# compact combined diff output can have some patches skipped4572# find which patch (using pathname of result) we are at now;4573if($is_combined) {4574while($to_namene$diffinfo->{'to_file'}) {4575print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4576 format_diff_cc_simplified($diffinfo,@hash_parents) .4577"</div>\n";# class="patch"45784579$patch_idx++;4580$patch_number++;45814582last if$patch_idx>$#$difftree;4583$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);4584}4585}45864587# modifies %from, %to hashes4588 parse_from_to_diffinfo($diffinfo, \%from, \%to,@hash_parents);45894590# this is first patch for raw difftree line with $patch_idx index4591# we index @$difftree array from 0, but number patches from 14592print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n";4593}45944595# git diff header4596#assert($patch_line =~ m/^diff /) if DEBUG;4597#assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed4598$patch_number++;4599# print "git diff" header4600print format_git_diff_header_line($patch_line,$diffinfo,4601 \%from, \%to);46024603# print extended diff header4604print"<div class=\"diff extended_header\">\n";4605 EXTENDED_HEADER:4606while($patch_line= <$fd>) {4607chomp$patch_line;46084609last EXTENDED_HEADER if($patch_line=~m/^--- |^diff /);46104611print format_extended_diff_header_line($patch_line,$diffinfo,4612 \%from, \%to);4613}4614print"</div>\n";# class="diff extended_header"46154616# from-file/to-file diff header4617if(!$patch_line) {4618print"</div>\n";# class="patch"4619last PATCH;4620}4621next PATCH if($patch_line=~m/^diff /);4622#assert($patch_line =~ m/^---/) if DEBUG;46234624my$last_patch_line=$patch_line;4625$patch_line= <$fd>;4626chomp$patch_line;4627#assert($patch_line =~ m/^\+\+\+/) if DEBUG;46284629print format_diff_from_to_header($last_patch_line,$patch_line,4630$diffinfo, \%from, \%to,4631@hash_parents);46324633# the patch itself4634 LINE:4635while($patch_line= <$fd>) {4636chomp$patch_line;46374638next PATCH if($patch_line=~m/^diff /);46394640print format_diff_line($patch_line, \%from, \%to);4641}46424643}continue{4644print"</div>\n";# class="patch"4645}46464647# for compact combined (--cc) format, with chunk and patch simplification4648# the patchset might be empty, but there might be unprocessed raw lines4649for(++$patch_idxif$patch_number>0;4650$patch_idx<@$difftree;4651++$patch_idx) {4652# read and prepare patch information4653$diffinfo= parsed_difftree_line($difftree->[$patch_idx]);46544655# generate anchor for "patch" links in difftree / whatchanged part4656print"<div class=\"patch\"id=\"patch". ($patch_idx+1) ."\">\n".4657 format_diff_cc_simplified($diffinfo,@hash_parents) .4658"</div>\n";# class="patch"46594660$patch_number++;4661}46624663if($patch_number==0) {4664if(@hash_parents>1) {4665print"<div class=\"diff nodifferences\">Trivial merge</div>\n";4666}else{4667print"<div class=\"diff nodifferences\">No differences found</div>\n";4668}4669}46704671print"</div>\n";# class="patchset"4672}46734674# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .46754676# fills project list info (age, description, owner, forks) for each4677# project in the list, removing invalid projects from returned list4678# NOTE: modifies $projlist, but does not remove entries from it4679sub fill_project_list_info {4680my($projlist,$check_forks) =@_;4681my@projects;46824683my$show_ctags= gitweb_check_feature('ctags');4684 PROJECT:4685foreachmy$pr(@$projlist) {4686my(@activity) = git_get_last_activity($pr->{'path'});4687unless(@activity) {4688next PROJECT;4689}4690($pr->{'age'},$pr->{'age_string'}) =@activity;4691if(!defined$pr->{'descr'}) {4692my$descr= git_get_project_description($pr->{'path'}) ||"";4693$descr= to_utf8($descr);4694$pr->{'descr_long'} =$descr;4695$pr->{'descr'} = chop_str($descr,$projects_list_description_width,5);4696}4697if(!defined$pr->{'owner'}) {4698$pr->{'owner'} = git_get_project_owner("$pr->{'path'}") ||"";4699}4700if($check_forks) {4701my$pname=$pr->{'path'};4702if(($pname=~s/\.git$//) &&4703($pname!~/\/$/) &&4704(-d "$projectroot/$pname")) {4705$pr->{'forks'} ="-d$projectroot/$pname";4706}else{4707$pr->{'forks'} =0;4708}4709}4710$show_ctagsand$pr->{'ctags'} = git_get_project_ctags($pr->{'path'});4711push@projects,$pr;4712}47134714return@projects;4715}47164717# print 'sort by' <th> element, generating 'sort by $name' replay link4718# if that order is not selected4719sub print_sort_th {4720print format_sort_th(@_);4721}47224723sub format_sort_th {4724my($name,$order,$header) =@_;4725my$sort_th="";4726$header||=ucfirst($name);47274728if($ordereq$name) {4729$sort_th.="<th>$header</th>\n";4730}else{4731$sort_th.="<th>".4732$cgi->a({-href => href(-replay=>1, order=>$name),4733-class=>"header"},$header) .4734"</th>\n";4735}47364737return$sort_th;4738}47394740sub git_project_list_body {4741# actually uses global variable $project4742my($projlist,$order,$from,$to,$extra,$no_header) =@_;47434744my$check_forks= gitweb_check_feature('forks');4745my@projects= fill_project_list_info($projlist,$check_forks);47464747$order||=$default_projects_order;4748$from=0unlessdefined$from;4749$to=$#projectsif(!defined$to||$#projects<$to);47504751my%order_info= (4752 project => { key =>'path', type =>'str'},4753 descr => { key =>'descr_long', type =>'str'},4754 owner => { key =>'owner', type =>'str'},4755 age => { key =>'age', type =>'num'}4756);4757my$oi=$order_info{$order};4758if($oi->{'type'}eq'str') {4759@projects=sort{$a->{$oi->{'key'}}cmp$b->{$oi->{'key'}}}@projects;4760}else{4761@projects=sort{$a->{$oi->{'key'}} <=>$b->{$oi->{'key'}}}@projects;4762}47634764my$show_ctags= gitweb_check_feature('ctags');4765if($show_ctags) {4766my%ctags;4767foreachmy$p(@projects) {4768foreachmy$ct(keys%{$p->{'ctags'}}) {4769$ctags{$ct} +=$p->{'ctags'}->{$ct};4770}4771}4772my$cloud= git_populate_project_tagcloud(\%ctags);4773print git_show_project_tagcloud($cloud,64);4774}47754776print"<table class=\"project_list\">\n";4777unless($no_header) {4778print"<tr>\n";4779if($check_forks) {4780print"<th></th>\n";4781}4782 print_sort_th('project',$order,'Project');4783 print_sort_th('descr',$order,'Description');4784 print_sort_th('owner',$order,'Owner');4785 print_sort_th('age',$order,'Last Change');4786print"<th></th>\n".# for links4787"</tr>\n";4788}4789my$alternate=1;4790my$tagfilter=$cgi->param('by_tag');4791for(my$i=$from;$i<=$to;$i++) {4792my$pr=$projects[$i];47934794next if$tagfilterand$show_ctagsand not grep{lc$_eq lc$tagfilter}keys%{$pr->{'ctags'}};4795next if$searchtextand not$pr->{'path'} =~/$searchtext/4796and not$pr->{'descr_long'} =~/$searchtext/;4797# Weed out forks or non-matching entries of search4798if($check_forks) {4799my$forkbase=$project;$forkbase||='';$forkbase=~ s#\.git$#/#;4800$forkbase="^$forkbase"if$forkbase;4801next ifnot$searchtextand not$tagfilterand$show_ctags4802and$pr->{'path'} =~ m#$forkbase.*/.*#; # regexp-safe4803}48044805if($alternate) {4806print"<tr class=\"dark\">\n";4807}else{4808print"<tr class=\"light\">\n";4809}4810$alternate^=1;4811if($check_forks) {4812print"<td>";4813if($pr->{'forks'}) {4814print"<!--$pr->{'forks'} -->\n";4815print$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"+");4816}4817print"</td>\n";4818}4819print"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4820-class=>"list"}, esc_html($pr->{'path'})) ."</td>\n".4821"<td>".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),4822-class=>"list", -title =>$pr->{'descr_long'}},4823 esc_html($pr->{'descr'})) ."</td>\n".4824"<td><i>". chop_and_escape_str($pr->{'owner'},15) ."</i></td>\n";4825print"<td class=\"". age_class($pr->{'age'}) ."\">".4826(defined$pr->{'age_string'} ?$pr->{'age_string'} :"No commits") ."</td>\n".4827"<td class=\"link\">".4828$cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")},"summary") ." | ".4829$cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")},"shortlog") ." | ".4830$cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")},"log") ." | ".4831$cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")},"tree") .4832($pr->{'forks'} ?" | ".$cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")},"forks") :'') .4833"</td>\n".4834"</tr>\n";4835}4836if(defined$extra) {4837print"<tr>\n";4838if($check_forks) {4839print"<td></td>\n";4840}4841print"<td colspan=\"5\">$extra</td>\n".4842"</tr>\n";4843}4844print"</table>\n";4845}48464847sub git_log_body {4848# uses global variable $project4849my($commitlist,$from,$to,$refs,$extra) =@_;48504851$from=0unlessdefined$from;4852$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);48534854for(my$i=0;$i<=$to;$i++) {4855my%co= %{$commitlist->[$i]};4856next if!%co;4857my$commit=$co{'id'};4858my$ref= format_ref_marker($refs,$commit);4859my%ad= parse_date($co{'author_epoch'});4860 git_print_header_div('commit',4861"<span class=\"age\">$co{'age_string'}</span>".4862 esc_html($co{'title'}) .$ref,4863$commit);4864print"<div class=\"title_text\">\n".4865"<div class=\"log_link\">\n".4866$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") .4867" | ".4868$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") .4869" | ".4870$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree") .4871"<br/>\n".4872"</div>\n";4873 git_print_authorship(\%co, -tag =>'span');4874print"<br/>\n</div>\n";48754876print"<div class=\"log_body\">\n";4877 git_print_log($co{'comment'}, -final_empty_line=>1);4878print"</div>\n";4879}4880if($extra) {4881print"<div class=\"page_nav\">\n";4882print"$extra\n";4883print"</div>\n";4884}4885}48864887sub git_shortlog_body {4888# uses global variable $project4889my($commitlist,$from,$to,$refs,$extra) =@_;48904891$from=0unlessdefined$from;4892$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);48934894print"<table class=\"shortlog\">\n";4895my$alternate=1;4896for(my$i=$from;$i<=$to;$i++) {4897my%co= %{$commitlist->[$i]};4898my$commit=$co{'id'};4899my$ref= format_ref_marker($refs,$commit);4900if($alternate) {4901print"<tr class=\"dark\">\n";4902}else{4903print"<tr class=\"light\">\n";4904}4905$alternate^=1;4906# git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .4907print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4908 format_author_html('td', \%co,10) ."<td>";4909print format_subject_html($co{'title'},$co{'title_short'},4910 href(action=>"commit", hash=>$commit),$ref);4911print"</td>\n".4912"<td class=\"link\">".4913$cgi->a({-href => href(action=>"commit", hash=>$commit)},"commit") ." | ".4914$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff") ." | ".4915$cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)},"tree");4916my$snapshot_links= format_snapshot_links($commit);4917if(defined$snapshot_links) {4918print" | ".$snapshot_links;4919}4920print"</td>\n".4921"</tr>\n";4922}4923if(defined$extra) {4924print"<tr>\n".4925"<td colspan=\"4\">$extra</td>\n".4926"</tr>\n";4927}4928print"</table>\n";4929}49304931sub git_history_body {4932# Warning: assumes constant type (blob or tree) during history4933my($commitlist,$from,$to,$refs,$extra,4934$file_name,$file_hash,$ftype) =@_;49354936$from=0unlessdefined$from;4937$to=$#{$commitlist}unless(defined$to&&$to<=$#{$commitlist});49384939print"<table class=\"history\">\n";4940my$alternate=1;4941for(my$i=$from;$i<=$to;$i++) {4942my%co= %{$commitlist->[$i]};4943if(!%co) {4944next;4945}4946my$commit=$co{'id'};49474948my$ref= format_ref_marker($refs,$commit);49494950if($alternate) {4951print"<tr class=\"dark\">\n";4952}else{4953print"<tr class=\"light\">\n";4954}4955$alternate^=1;4956print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".4957# shortlog: format_author_html('td', \%co, 10)4958 format_author_html('td', \%co,15,3) ."<td>";4959# originally git_history used chop_str($co{'title'}, 50)4960print format_subject_html($co{'title'},$co{'title_short'},4961 href(action=>"commit", hash=>$commit),$ref);4962print"</td>\n".4963"<td class=\"link\">".4964$cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)},$ftype) ." | ".4965$cgi->a({-href => href(action=>"commitdiff", hash=>$commit)},"commitdiff");49664967if($ftypeeq'blob') {4968my$blob_current=$file_hash;4969my$blob_parent= git_get_hash_by_path($commit,$file_name);4970if(defined$blob_current&&defined$blob_parent&&4971$blob_currentne$blob_parent) {4972print" | ".4973$cgi->a({-href => href(action=>"blobdiff",4974 hash=>$blob_current, hash_parent=>$blob_parent,4975 hash_base=>$hash_base, hash_parent_base=>$commit,4976 file_name=>$file_name)},4977"diff to current");4978}4979}4980print"</td>\n".4981"</tr>\n";4982}4983if(defined$extra) {4984print"<tr>\n".4985"<td colspan=\"4\">$extra</td>\n".4986"</tr>\n";4987}4988print"</table>\n";4989}49904991sub git_tags_body {4992# uses global variable $project4993my($taglist,$from,$to,$extra) =@_;4994$from=0unlessdefined$from;4995$to=$#{$taglist}if(!defined$to||$#{$taglist} <$to);49964997print"<table class=\"tags\">\n";4998my$alternate=1;4999for(my$i=$from;$i<=$to;$i++) {5000my$entry=$taglist->[$i];5001my%tag=%$entry;5002my$comment=$tag{'subject'};5003my$comment_short;5004if(defined$comment) {5005$comment_short= chop_str($comment,30,5);5006}5007if($alternate) {5008print"<tr class=\"dark\">\n";5009}else{5010print"<tr class=\"light\">\n";5011}5012$alternate^=1;5013if(defined$tag{'age'}) {5014print"<td><i>$tag{'age'}</i></td>\n";5015}else{5016print"<td></td>\n";5017}5018print"<td>".5019$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),5020-class=>"list name"}, esc_html($tag{'name'})) .5021"</td>\n".5022"<td>";5023if(defined$comment) {5024print format_subject_html($comment,$comment_short,5025 href(action=>"tag", hash=>$tag{'id'}));5026}5027print"</td>\n".5028"<td class=\"selflink\">";5029if($tag{'type'}eq"tag") {5030print$cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})},"tag");5031}else{5032print" ";5033}5034print"</td>\n".5035"<td class=\"link\">"." | ".5036$cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})},$tag{'reftype'});5037if($tag{'reftype'}eq"commit") {5038print" | ".$cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})},"shortlog") .5039" | ".$cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})},"log");5040}elsif($tag{'reftype'}eq"blob") {5041print" | ".$cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})},"raw");5042}5043print"</td>\n".5044"</tr>";5045}5046if(defined$extra) {5047print"<tr>\n".5048"<td colspan=\"5\">$extra</td>\n".5049"</tr>\n";5050}5051print"</table>\n";5052}50535054sub git_heads_body {5055# uses global variable $project5056my($headlist,$head,$from,$to,$extra) =@_;5057$from=0unlessdefined$from;5058$to=$#{$headlist}if(!defined$to||$#{$headlist} <$to);50595060print"<table class=\"heads\">\n";5061my$alternate=1;5062for(my$i=$from;$i<=$to;$i++) {5063my$entry=$headlist->[$i];5064my%ref=%$entry;5065my$curr=$ref{'id'}eq$head;5066if($alternate) {5067print"<tr class=\"dark\">\n";5068}else{5069print"<tr class=\"light\">\n";5070}5071$alternate^=1;5072print"<td><i>$ref{'age'}</i></td>\n".5073($curr?"<td class=\"current_head\">":"<td>") .5074$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),5075-class=>"list name"},esc_html($ref{'name'})) .5076"</td>\n".5077"<td class=\"link\">".5078$cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})},"shortlog") ." | ".5079$cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})},"log") ." | ".5080$cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})},"tree") .5081"</td>\n".5082"</tr>";5083}5084if(defined$extra) {5085print"<tr>\n".5086"<td colspan=\"3\">$extra</td>\n".5087"</tr>\n";5088}5089print"</table>\n";5090}50915092# Display a single remote block5093sub git_remote_block {5094my($remote,$rdata,$limit,$head) =@_;50955096my$heads=$rdata->{'heads'};5097my$fetch=$rdata->{'fetch'};5098my$push=$rdata->{'push'};50995100my$urls_table="<table class=\"projects_list\">\n";51015102if(defined$fetch) {5103if($fetcheq$push) {5104$urls_table.= format_repo_url("URL",$fetch);5105}else{5106$urls_table.= format_repo_url("Fetch URL",$fetch);5107$urls_table.= format_repo_url("Push URL",$push)ifdefined$push;5108}5109}elsif(defined$push) {5110$urls_table.= format_repo_url("Push URL",$push);5111}else{5112$urls_table.= format_repo_url("","No remote URL");5113}51145115$urls_table.="</table>\n";51165117my$dots;5118if(defined$limit&&$limit<@$heads) {5119$dots=$cgi->a({-href => href(action=>"remotes", hash=>$remote)},"...");5120}51215122print$urls_table;5123 git_heads_body($heads,$head,0,$limit,$dots);5124}51255126# Display a list of remote names with the respective fetch and push URLs5127sub git_remotes_list {5128my($remotedata,$limit) =@_;5129print"<table class=\"heads\">\n";5130my$alternate=1;5131my@remotes=sort keys%$remotedata;51325133my$limited=$limit&&$limit<@remotes;51345135$#remotes=$limit-1if$limited;51365137while(my$remote=shift@remotes) {5138my$rdata=$remotedata->{$remote};5139my$fetch=$rdata->{'fetch'};5140my$push=$rdata->{'push'};5141if($alternate) {5142print"<tr class=\"dark\">\n";5143}else{5144print"<tr class=\"light\">\n";5145}5146$alternate^=1;5147print"<td>".5148$cgi->a({-href=> href(action=>'remotes', hash=>$remote),5149-class=>"list name"},esc_html($remote)) .5150"</td>";5151print"<td class=\"link\">".5152(defined$fetch?$cgi->a({-href=>$fetch},"fetch") :"fetch") .5153" | ".5154(defined$push?$cgi->a({-href=>$push},"push") :"push") .5155"</td>";51565157print"</tr>\n";5158}51595160if($limited) {5161print"<tr>\n".5162"<td colspan=\"3\">".5163$cgi->a({-href => href(action=>"remotes")},"...") .5164"</td>\n"."</tr>\n";5165}51665167print"</table>";5168}51695170# Display remote heads grouped by remote, unless there are too many5171# remotes, in which case we only display the remote names5172sub git_remotes_body {5173my($remotedata,$limit,$head) =@_;5174if($limitand$limit<keys%$remotedata) {5175 git_remotes_list($remotedata,$limit);5176}else{5177 fill_remote_heads($remotedata);5178while(my($remote,$rdata) =each%$remotedata) {5179 git_print_section({-class=>"remote", -id=>$remote},5180["remotes",$remote,$remote],sub{5181 git_remote_block($remote,$rdata,$limit,$head);5182});5183}5184}5185}51865187sub git_search_grep_body {5188my($commitlist,$from,$to,$extra) =@_;5189$from=0unlessdefined$from;5190$to=$#{$commitlist}if(!defined$to||$#{$commitlist} <$to);51915192print"<table class=\"commit_search\">\n";5193my$alternate=1;5194for(my$i=$from;$i<=$to;$i++) {5195my%co= %{$commitlist->[$i]};5196if(!%co) {5197next;5198}5199my$commit=$co{'id'};5200if($alternate) {5201print"<tr class=\"dark\">\n";5202}else{5203print"<tr class=\"light\">\n";5204}5205$alternate^=1;5206print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".5207 format_author_html('td', \%co,15,5) .5208"<td>".5209$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),5210-class=>"list subject"},5211 chop_and_escape_str($co{'title'},50) ."<br/>");5212my$comment=$co{'comment'};5213foreachmy$line(@$comment) {5214if($line=~m/^(.*?)($search_regexp)(.*)$/i) {5215my($lead,$match,$trail) = ($1,$2,$3);5216$match= chop_str($match,70,5,'center');5217my$contextlen=int((80-length($match))/2);5218$contextlen=30if($contextlen>30);5219$lead= chop_str($lead,$contextlen,10,'left');5220$trail= chop_str($trail,$contextlen,10,'right');52215222$lead= esc_html($lead);5223$match= esc_html($match);5224$trail= esc_html($trail);52255226print"$lead<span class=\"match\">$match</span>$trail<br />";5227}5228}5229print"</td>\n".5230"<td class=\"link\">".5231$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .5232" | ".5233$cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})},"commitdiff") .5234" | ".5235$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");5236print"</td>\n".5237"</tr>\n";5238}5239if(defined$extra) {5240print"<tr>\n".5241"<td colspan=\"3\">$extra</td>\n".5242"</tr>\n";5243}5244print"</table>\n";5245}52465247## ======================================================================5248## ======================================================================5249## actions52505251sub git_project_list {5252my$order=$input_params{'order'};5253if(defined$order&&$order!~m/none|project|descr|owner|age/) {5254 die_error(400,"Unknown order parameter");5255}52565257my@list= git_get_projects_list();5258if(!@list) {5259 die_error(404,"No projects found");5260}52615262 git_header_html();5263if(defined$home_text&& -f $home_text) {5264print"<div class=\"index_include\">\n";5265 insert_file($home_text);5266print"</div>\n";5267}5268print$cgi->startform(-method=>"get") .5269"<p class=\"projsearch\">Search:\n".5270$cgi->textfield(-name =>"s", -value =>$searchtext) ."\n".5271"</p>".5272$cgi->end_form() ."\n";5273 git_project_list_body(\@list,$order);5274 git_footer_html();5275}52765277sub git_forks {5278my$order=$input_params{'order'};5279if(defined$order&&$order!~m/none|project|descr|owner|age/) {5280 die_error(400,"Unknown order parameter");5281}52825283my@list= git_get_projects_list($project);5284if(!@list) {5285 die_error(404,"No forks found");5286}52875288 git_header_html();5289 git_print_page_nav('','');5290 git_print_header_div('summary',"$projectforks");5291 git_project_list_body(\@list,$order);5292 git_footer_html();5293}52945295sub git_project_index {5296my@projects= git_get_projects_list($project);52975298print$cgi->header(5299-type =>'text/plain',5300-charset =>'utf-8',5301-content_disposition =>'inline; filename="index.aux"');53025303foreachmy$pr(@projects) {5304if(!exists$pr->{'owner'}) {5305$pr->{'owner'} = git_get_project_owner("$pr->{'path'}");5306}53075308my($path,$owner) = ($pr->{'path'},$pr->{'owner'});5309# quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '5310$path=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5311$owner=~s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X",ord($1))/eg;5312$path=~s/ /\+/g;5313$owner=~s/ /\+/g;53145315print"$path$owner\n";5316}5317}53185319sub git_summary {5320my$descr= git_get_project_description($project) ||"none";5321my%co= parse_commit("HEAD");5322my%cd=%co? parse_date($co{'committer_epoch'},$co{'committer_tz'}) : ();5323my$head=$co{'id'};5324my$remote_heads= gitweb_check_feature('remote_heads');53255326my$owner= git_get_project_owner($project);53275328my$refs= git_get_references();5329# These get_*_list functions return one more to allow us to see if5330# there are more ...5331my@taglist= git_get_tags_list(16);5332my@headlist= git_get_heads_list(16);5333my%remotedata=$remote_heads? git_get_remotes_list() : ();5334my@forklist;5335my$check_forks= gitweb_check_feature('forks');53365337if($check_forks) {5338@forklist= git_get_projects_list($project);5339}53405341 git_header_html();5342 git_print_page_nav('summary','',$head);53435344print"<div class=\"title\"> </div>\n";5345print"<table class=\"projects_list\">\n".5346"<tr id=\"metadata_desc\"><td>description</td><td>". esc_html($descr) ."</td></tr>\n".5347"<tr id=\"metadata_owner\"><td>owner</td><td>". esc_html($owner) ."</td></tr>\n";5348if(defined$cd{'rfc2822'}) {5349print"<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";5350}53515352# use per project git URL list in $projectroot/$project/cloneurl5353# or make project git URL from git base URL and project name5354my$url_tag="URL";5355my@url_list= git_get_project_url_list($project);5356@url_list=map{"$_/$project"}@git_base_url_listunless@url_list;5357foreachmy$git_url(@url_list) {5358next unless$git_url;5359print format_repo_url($url_tag,$git_url);5360$url_tag="";5361}53625363# Tag cloud5364my$show_ctags= gitweb_check_feature('ctags');5365if($show_ctags) {5366my$ctags= git_get_project_ctags($project);5367my$cloud= git_populate_project_tagcloud($ctags);5368print"<tr id=\"metadata_ctags\"><td>Content tags:<br />";5369print"</td>\n<td>"unless%$ctags;5370print"<form action=\"$show_ctags\"method=\"post\"><input type=\"hidden\"name=\"p\"value=\"$project\"/>Add: <input type=\"text\"name=\"t\"size=\"8\"/></form>";5371print"</td>\n<td>"if%$ctags;5372print git_show_project_tagcloud($cloud,48);5373print"</td></tr>";5374}53755376print"</table>\n";53775378# If XSS prevention is on, we don't include README.html.5379# TODO: Allow a readme in some safe format.5380if(!$prevent_xss&& -s "$projectroot/$project/README.html") {5381print"<div class=\"title\">readme</div>\n".5382"<div class=\"readme\">\n";5383 insert_file("$projectroot/$project/README.html");5384print"\n</div>\n";# class="readme"5385}53865387# we need to request one more than 16 (0..15) to check if5388# those 16 are all5389my@commitlist=$head? parse_commits($head,17) : ();5390if(@commitlist) {5391 git_print_header_div('shortlog');5392 git_shortlog_body(\@commitlist,0,15,$refs,5393$#commitlist<=15?undef:5394$cgi->a({-href => href(action=>"shortlog")},"..."));5395}53965397if(@taglist) {5398 git_print_header_div('tags');5399 git_tags_body(\@taglist,0,15,5400$#taglist<=15?undef:5401$cgi->a({-href => href(action=>"tags")},"..."));5402}54035404if(@headlist) {5405 git_print_header_div('heads');5406 git_heads_body(\@headlist,$head,0,15,5407$#headlist<=15?undef:5408$cgi->a({-href => href(action=>"heads")},"..."));5409}54105411if(%remotedata) {5412 git_print_header_div('remotes');5413 git_remotes_body(\%remotedata,15,$head);5414}54155416if(@forklist) {5417 git_print_header_div('forks');5418 git_project_list_body(\@forklist,'age',0,15,5419$#forklist<=15?undef:5420$cgi->a({-href => href(action=>"forks")},"..."),5421'no_header');5422}54235424 git_footer_html();5425}54265427sub git_tag {5428my%tag= parse_tag($hash);54295430if(!%tag) {5431 die_error(404,"Unknown tag object");5432}54335434my$head= git_get_head_hash($project);5435 git_header_html();5436 git_print_page_nav('','',$head,undef,$head);5437 git_print_header_div('commit', esc_html($tag{'name'}),$hash);5438print"<div class=\"title_text\">\n".5439"<table class=\"object_header\">\n".5440"<tr>\n".5441"<td>object</td>\n".5442"<td>".$cgi->a({-class=>"list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5443$tag{'object'}) ."</td>\n".5444"<td class=\"link\">".$cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},5445$tag{'type'}) ."</td>\n".5446"</tr>\n";5447if(defined($tag{'author'})) {5448 git_print_authorship_rows(\%tag,'author');5449}5450print"</table>\n\n".5451"</div>\n";5452print"<div class=\"page_body\">";5453my$comment=$tag{'comment'};5454foreachmy$line(@$comment) {5455chomp$line;5456print esc_html($line, -nbsp=>1) ."<br/>\n";5457}5458print"</div>\n";5459 git_footer_html();5460}54615462sub git_blame_common {5463my$format=shift||'porcelain';5464if($formateq'porcelain'&&$cgi->param('js')) {5465$format='incremental';5466$action='blame_incremental';# for page title etc5467}54685469# permissions5470 gitweb_check_feature('blame')5471or die_error(403,"Blame view not allowed");54725473# error checking5474 die_error(400,"No file name given")unless$file_name;5475$hash_base||= git_get_head_hash($project);5476 die_error(404,"Couldn't find base commit")unless$hash_base;5477my%co= parse_commit($hash_base)5478or die_error(404,"Commit not found");5479my$ftype="blob";5480if(!defined$hash) {5481$hash= git_get_hash_by_path($hash_base,$file_name,"blob")5482or die_error(404,"Error looking up file");5483}else{5484$ftype= git_get_type($hash);5485if($ftype!~"blob") {5486 die_error(400,"Object is not a blob");5487}5488}54895490my$fd;5491if($formateq'incremental') {5492# get file contents (as base)5493open$fd,"-|", git_cmd(),'cat-file','blob',$hash5494or die_error(500,"Open git-cat-file failed");5495}elsif($formateq'data') {5496# run git-blame --incremental5497open$fd,"-|", git_cmd(),"blame","--incremental",5498$hash_base,"--",$file_name5499or die_error(500,"Open git-blame --incremental failed");5500}else{5501# run git-blame --porcelain5502open$fd,"-|", git_cmd(),"blame",'-p',5503$hash_base,'--',$file_name5504or die_error(500,"Open git-blame --porcelain failed");5505}55065507# incremental blame data returns early5508if($formateq'data') {5509print$cgi->header(5510-type=>"text/plain", -charset =>"utf-8",5511-status=>"200 OK");5512local$| =1;# output autoflush5513printwhile<$fd>;5514close$fd5515or print"ERROR$!\n";55165517print'END';5518if(defined$t0&& gitweb_check_feature('timed')) {5519print' '.5520 Time::HiRes::tv_interval($t0, [Time::HiRes::gettimeofday()]).5521' '.$number_of_git_cmds;5522}5523print"\n";55245525return;5526}55275528# page header5529 git_header_html();5530my$formats_nav=5531$cgi->a({-href => href(action=>"blob", -replay=>1)},5532"blob") .5533" | ";5534if($formateq'incremental') {5535$formats_nav.=5536$cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},5537"blame") ." (non-incremental)";5538}else{5539$formats_nav.=5540$cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},5541"blame") ." (incremental)";5542}5543$formats_nav.=5544" | ".5545$cgi->a({-href => href(action=>"history", -replay=>1)},5546"history") .5547" | ".5548$cgi->a({-href => href(action=>$action, file_name=>$file_name)},5549"HEAD");5550 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5551 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5552 git_print_page_path($file_name,$ftype,$hash_base);55535554# page body5555if($formateq'incremental') {5556print"<noscript>\n<div class=\"error\"><center><b>\n".5557"This page requires JavaScript to run.\nUse ".5558$cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},5559'this page').5560" instead.\n".5561"</b></center></div>\n</noscript>\n";55625563print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;5564}55655566print qq!<div class="page_body">\n!;5567print qq!<div id="progress_info">.../ ...</div>\n!5568if($formateq'incremental');5569print qq!<table id="blame_table"class="blame" width="100%">\n!.5570#qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.5571 qq!<thead>\n!.5572 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.5573 qq!</thead>\n!.5574 qq!<tbody>\n!;55755576my@rev_color=qw(light dark);5577my$num_colors=scalar(@rev_color);5578my$current_color=0;55795580if($formateq'incremental') {5581my$color_class=$rev_color[$current_color];55825583#contents of a file5584my$linenr=0;5585 LINE:5586while(my$line= <$fd>) {5587chomp$line;5588$linenr++;55895590print qq!<tr id="l$linenr"class="$color_class">!.5591 qq!<td class="sha1"><a href=""> </a></td>!.5592 qq!<td class="linenr">!.5593 qq!<a class="linenr" href="">$linenr</a></td>!;5594print qq!<td class="pre">! . esc_html($line) ."</td>\n";5595print qq!</tr>\n!;5596}55975598}else{# porcelain, i.e. ordinary blame5599my%metainfo= ();# saves information about commits56005601# blame data5602 LINE:5603while(my$line= <$fd>) {5604chomp$line;5605# the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]5606# no <lines in group> for subsequent lines in group of lines5607my($full_rev,$orig_lineno,$lineno,$group_size) =5608($line=~/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);5609if(!exists$metainfo{$full_rev}) {5610$metainfo{$full_rev} = {'nprevious'=>0};5611}5612my$meta=$metainfo{$full_rev};5613my$data;5614while($data= <$fd>) {5615chomp$data;5616last if($data=~s/^\t//);# contents of line5617if($data=~/^(\S+)(?: (.*))?$/) {5618$meta->{$1} =$2unlessexists$meta->{$1};5619}5620if($data=~/^previous /) {5621$meta->{'nprevious'}++;5622}5623}5624my$short_rev=substr($full_rev,0,8);5625my$author=$meta->{'author'};5626my%date=5627 parse_date($meta->{'author-time'},$meta->{'author-tz'});5628my$date=$date{'iso-tz'};5629if($group_size) {5630$current_color= ($current_color+1) %$num_colors;5631}5632my$tr_class=$rev_color[$current_color];5633$tr_class.=' boundary'if(exists$meta->{'boundary'});5634$tr_class.=' no-previous'if($meta->{'nprevious'} ==0);5635$tr_class.=' multiple-previous'if($meta->{'nprevious'} >1);5636print"<tr id=\"l$lineno\"class=\"$tr_class\">\n";5637if($group_size) {5638print"<td class=\"sha1\"";5639print" title=\"". esc_html($author) .",$date\"";5640print" rowspan=\"$group_size\""if($group_size>1);5641print">";5642print$cgi->a({-href => href(action=>"commit",5643 hash=>$full_rev,5644 file_name=>$file_name)},5645 esc_html($short_rev));5646if($group_size>=2) {5647my@author_initials= ($author=~/\b([[:upper:]])\B/g);5648if(@author_initials) {5649print"<br />".5650 esc_html(join('',@author_initials));5651# or join('.', ...)5652}5653}5654print"</td>\n";5655}5656# 'previous' <sha1 of parent commit> <filename at commit>5657if(exists$meta->{'previous'} &&5658$meta->{'previous'} =~/^([a-fA-F0-9]{40}) (.*)$/) {5659$meta->{'parent'} =$1;5660$meta->{'file_parent'} = unquote($2);5661}5662my$linenr_commit=5663exists($meta->{'parent'}) ?5664$meta->{'parent'} :$full_rev;5665my$linenr_filename=5666exists($meta->{'file_parent'}) ?5667$meta->{'file_parent'} : unquote($meta->{'filename'});5668my$blamed= href(action =>'blame',5669 file_name =>$linenr_filename,5670 hash_base =>$linenr_commit);5671print"<td class=\"linenr\">";5672print$cgi->a({ -href =>"$blamed#l$orig_lineno",5673-class=>"linenr"},5674 esc_html($lineno));5675print"</td>";5676print"<td class=\"pre\">". esc_html($data) ."</td>\n";5677print"</tr>\n";5678}# end while56795680}56815682# footer5683print"</tbody>\n".5684"</table>\n";# class="blame"5685print"</div>\n";# class="blame_body"5686close$fd5687or print"Reading blob failed\n";56885689 git_footer_html();5690}56915692sub git_blame {5693 git_blame_common();5694}56955696sub git_blame_incremental {5697 git_blame_common('incremental');5698}56995700sub git_blame_data {5701 git_blame_common('data');5702}57035704sub git_tags {5705my$head= git_get_head_hash($project);5706 git_header_html();5707 git_print_page_nav('','',$head,undef,$head,format_ref_views('tags'));5708 git_print_header_div('summary',$project);57095710my@tagslist= git_get_tags_list();5711if(@tagslist) {5712 git_tags_body(\@tagslist);5713}5714 git_footer_html();5715}57165717sub git_heads {5718my$head= git_get_head_hash($project);5719 git_header_html();5720 git_print_page_nav('','',$head,undef,$head,format_ref_views('heads'));5721 git_print_header_div('summary',$project);57225723my@headslist= git_get_heads_list();5724if(@headslist) {5725 git_heads_body(\@headslist,$head);5726}5727 git_footer_html();5728}57295730# used both for single remote view and for list of all the remotes5731sub git_remotes {5732 gitweb_check_feature('remote_heads')5733or die_error(403,"Remote heads view is disabled");57345735my$head= git_get_head_hash($project);5736my$remote=$input_params{'hash'};57375738my$remotedata= git_get_remotes_list($remote);5739 die_error(500,"Unable to get remote information")unlessdefined$remotedata;57405741unless(%$remotedata) {5742 die_error(404,defined$remote?5743"Remote$remotenot found":5744"No remotes found");5745}57465747 git_header_html(undef,undef, -action_extra =>$remote);5748 git_print_page_nav('','',$head,undef,$head,5749 format_ref_views($remote?'':'remotes'));57505751 fill_remote_heads($remotedata);5752if(defined$remote) {5753 git_print_header_div('remotes',"$remoteremote for$project");5754 git_remote_block($remote,$remotedata->{$remote},undef,$head);5755}else{5756 git_print_header_div('summary',"$projectremotes");5757 git_remotes_body($remotedata,undef,$head);5758}57595760 git_footer_html();5761}57625763sub git_blob_plain {5764my$type=shift;5765my$expires;57665767if(!defined$hash) {5768if(defined$file_name) {5769my$base=$hash_base|| git_get_head_hash($project);5770$hash= git_get_hash_by_path($base,$file_name,"blob")5771or die_error(404,"Cannot find file");5772}else{5773 die_error(400,"No file name defined");5774}5775}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5776# blobs defined by non-textual hash id's can be cached5777$expires="+1d";5778}57795780open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5781or die_error(500,"Open git-cat-file blob '$hash' failed");57825783# content-type (can include charset)5784$type= blob_contenttype($fd,$file_name,$type);57855786# "save as" filename, even when no $file_name is given5787my$save_as="$hash";5788if(defined$file_name) {5789$save_as=$file_name;5790}elsif($type=~m/^text\//) {5791$save_as.='.txt';5792}57935794# With XSS prevention on, blobs of all types except a few known safe5795# ones are served with "Content-Disposition: attachment" to make sure5796# they don't run in our security domain. For certain image types,5797# blob view writes an <img> tag referring to blob_plain view, and we5798# want to be sure not to break that by serving the image as an5799# attachment (though Firefox 3 doesn't seem to care).5800my$sandbox=$prevent_xss&&5801$type!~m!^(?:text/plain|image/(?:gif|png|jpeg))$!;58025803print$cgi->header(5804-type =>$type,5805-expires =>$expires,5806-content_disposition =>5807($sandbox?'attachment':'inline')5808.'; filename="'.$save_as.'"');5809local$/=undef;5810binmode STDOUT,':raw';5811print<$fd>;5812binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi5813close$fd;5814}58155816sub git_blob {5817my$expires;58185819if(!defined$hash) {5820if(defined$file_name) {5821my$base=$hash_base|| git_get_head_hash($project);5822$hash= git_get_hash_by_path($base,$file_name,"blob")5823or die_error(404,"Cannot find file");5824}else{5825 die_error(400,"No file name defined");5826}5827}elsif($hash=~m/^[0-9a-fA-F]{40}$/) {5828# blobs defined by non-textual hash id's can be cached5829$expires="+1d";5830}58315832my$have_blame= gitweb_check_feature('blame');5833open my$fd,"-|", git_cmd(),"cat-file","blob",$hash5834or die_error(500,"Couldn't cat$file_name,$hash");5835my$mimetype= blob_mimetype($fd,$file_name);5836# use 'blob_plain' (aka 'raw') view for files that cannot be displayed5837if($mimetype!~m!^(?:text/|image/(?:gif|png|jpeg)$)!&& -B $fd) {5838close$fd;5839return git_blob_plain($mimetype);5840}5841# we can have blame only for text/* mimetype5842$have_blame&&= ($mimetype=~m!^text/!);58435844my$highlight= gitweb_check_feature('highlight');5845my$syntax= guess_file_syntax($highlight,$mimetype,$file_name);5846$fd= run_highlighter($fd,$highlight,$syntax)5847if$syntax;58485849 git_header_html(undef,$expires);5850my$formats_nav='';5851if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5852if(defined$file_name) {5853if($have_blame) {5854$formats_nav.=5855$cgi->a({-href => href(action=>"blame", -replay=>1)},5856"blame") .5857" | ";5858}5859$formats_nav.=5860$cgi->a({-href => href(action=>"history", -replay=>1)},5861"history") .5862" | ".5863$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5864"raw") .5865" | ".5866$cgi->a({-href => href(action=>"blob",5867 hash_base=>"HEAD", file_name=>$file_name)},5868"HEAD");5869}else{5870$formats_nav.=5871$cgi->a({-href => href(action=>"blob_plain", -replay=>1)},5872"raw");5873}5874 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);5875 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);5876}else{5877print"<div class=\"page_nav\">\n".5878"<br/><br/></div>\n".5879"<div class=\"title\">$hash</div>\n";5880}5881 git_print_page_path($file_name,"blob",$hash_base);5882print"<div class=\"page_body\">\n";5883if($mimetype=~m!^image/!) {5884print qq!<img type="$mimetype"!;5885if($file_name) {5886print qq! alt="$file_name" title="$file_name"!;5887}5888print qq! src="! .5889 href(action=>"blob_plain", hash=>$hash,5890 hash_base=>$hash_base, file_name=>$file_name) .5891 qq!"/>\n!;5892}else{5893my$nr;5894while(my$line= <$fd>) {5895chomp$line;5896$nr++;5897$line= untabify($line);5898printf qq!<div class="pre"><a id="l%i" href="%s#l%i"class="linenr">%4i</a> %s</div>\n!,5899$nr, href(-replay =>1),$nr,$nr,$syntax?$line: esc_html($line, -nbsp=>1);5900}5901}5902close$fd5903or print"Reading blob failed.\n";5904print"</div>";5905 git_footer_html();5906}59075908sub git_tree {5909if(!defined$hash_base) {5910$hash_base="HEAD";5911}5912if(!defined$hash) {5913if(defined$file_name) {5914$hash= git_get_hash_by_path($hash_base,$file_name,"tree");5915}else{5916$hash=$hash_base;5917}5918}5919 die_error(404,"No such tree")unlessdefined($hash);59205921my$show_sizes= gitweb_check_feature('show-sizes');5922my$have_blame= gitweb_check_feature('blame');59235924my@entries= ();5925{5926local$/="\0";5927open my$fd,"-|", git_cmd(),"ls-tree",'-z',5928($show_sizes?'-l': ()),@extra_options,$hash5929or die_error(500,"Open git-ls-tree failed");5930@entries=map{chomp;$_} <$fd>;5931close$fd5932or die_error(404,"Reading tree failed");5933}59345935my$refs= git_get_references();5936my$ref= format_ref_marker($refs,$hash_base);5937 git_header_html();5938my$basedir='';5939if(defined$hash_base&& (my%co= parse_commit($hash_base))) {5940my@views_nav= ();5941if(defined$file_name) {5942push@views_nav,5943$cgi->a({-href => href(action=>"history", -replay=>1)},5944"history"),5945$cgi->a({-href => href(action=>"tree",5946 hash_base=>"HEAD", file_name=>$file_name)},5947"HEAD"),5948}5949my$snapshot_links= format_snapshot_links($hash);5950if(defined$snapshot_links) {5951# FIXME: Should be available when we have no hash base as well.5952push@views_nav,$snapshot_links;5953}5954 git_print_page_nav('tree','',$hash_base,undef,undef,5955join(' | ',@views_nav));5956 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash_base);5957}else{5958undef$hash_base;5959print"<div class=\"page_nav\">\n";5960print"<br/><br/></div>\n";5961print"<div class=\"title\">$hash</div>\n";5962}5963if(defined$file_name) {5964$basedir=$file_name;5965if($basedirne''&&substr($basedir, -1)ne'/') {5966$basedir.='/';5967}5968 git_print_page_path($file_name,'tree',$hash_base);5969}5970print"<div class=\"page_body\">\n";5971print"<table class=\"tree\">\n";5972my$alternate=1;5973# '..' (top directory) link if possible5974if(defined$hash_base&&5975defined$file_name&&$file_name=~m![^/]+$!) {5976if($alternate) {5977print"<tr class=\"dark\">\n";5978}else{5979print"<tr class=\"light\">\n";5980}5981$alternate^=1;59825983my$up=$file_name;5984$up=~s!/?[^/]+$!!;5985undef$upunless$up;5986# based on git_print_tree_entry5987print'<td class="mode">'. mode_str('040000') ."</td>\n";5988print'<td class="size"> </td>'."\n"if$show_sizes;5989print'<td class="list">';5990print$cgi->a({-href => href(action=>"tree",5991 hash_base=>$hash_base,5992 file_name=>$up)},5993"..");5994print"</td>\n";5995print"<td class=\"link\"></td>\n";59965997print"</tr>\n";5998}5999foreachmy$line(@entries) {6000my%t= parse_ls_tree_line($line, -z =>1, -l =>$show_sizes);60016002if($alternate) {6003print"<tr class=\"dark\">\n";6004}else{6005print"<tr class=\"light\">\n";6006}6007$alternate^=1;60086009 git_print_tree_entry(\%t,$basedir,$hash_base,$have_blame);60106011print"</tr>\n";6012}6013print"</table>\n".6014"</div>";6015 git_footer_html();6016}60176018sub snapshot_name {6019my($project,$hash) =@_;60206021# path/to/project.git -> project6022# path/to/project/.git -> project6023my$name= to_utf8($project);6024$name=~ s,([^/])/*\.git$,$1,;6025$name= basename($name);6026# sanitize name6027$name=~s/[[:cntrl:]]/?/g;60286029my$ver=$hash;6030if($hash=~/^[0-9a-fA-F]+$/) {6031# shorten SHA-1 hash6032my$full_hash= git_get_full_hash($project,$hash);6033if($full_hash=~/^$hash/&&length($hash) >7) {6034$ver= git_get_short_hash($project,$hash);6035}6036}elsif($hash=~m!^refs/tags/(.*)$!) {6037# tags don't need shortened SHA-1 hash6038$ver=$1;6039}else{6040# branches and other need shortened SHA-1 hash6041if($hash=~m!^refs/(?:heads|remotes)/(.*)$!) {6042$ver=$1;6043}6044$ver.='-'. git_get_short_hash($project,$hash);6045}6046# in case of hierarchical branch names6047$ver=~s!/!.!g;60486049# name = project-version_string6050$name="$name-$ver";60516052returnwantarray? ($name,$name) :$name;6053}60546055sub git_snapshot {6056my$format=$input_params{'snapshot_format'};6057if(!@snapshot_fmts) {6058 die_error(403,"Snapshots not allowed");6059}6060# default to first supported snapshot format6061$format||=$snapshot_fmts[0];6062if($format!~m/^[a-z0-9]+$/) {6063 die_error(400,"Invalid snapshot format parameter");6064}elsif(!exists($known_snapshot_formats{$format})) {6065 die_error(400,"Unknown snapshot format");6066}elsif($known_snapshot_formats{$format}{'disabled'}) {6067 die_error(403,"Snapshot format not allowed");6068}elsif(!grep($_eq$format,@snapshot_fmts)) {6069 die_error(403,"Unsupported snapshot format");6070}60716072my$type= git_get_type("$hash^{}");6073if(!$type) {6074 die_error(404,'Object does not exist');6075}elsif($typeeq'blob') {6076 die_error(400,'Object is not a tree-ish');6077}60786079my($name,$prefix) = snapshot_name($project,$hash);6080my$filename="$name$known_snapshot_formats{$format}{'suffix'}";6081my$cmd= quote_command(6082 git_cmd(),'archive',6083"--format=$known_snapshot_formats{$format}{'format'}",6084"--prefix=$prefix/",$hash);6085if(exists$known_snapshot_formats{$format}{'compressor'}) {6086$cmd.=' | '. quote_command(@{$known_snapshot_formats{$format}{'compressor'}});6087}60886089$filename=~s/(["\\])/\\$1/g;6090print$cgi->header(6091-type =>$known_snapshot_formats{$format}{'type'},6092-content_disposition =>'inline; filename="'.$filename.'"',6093-status =>'200 OK');60946095open my$fd,"-|",$cmd6096or die_error(500,"Execute git-archive failed");6097binmode STDOUT,':raw';6098print<$fd>;6099binmode STDOUT,':utf8';# as set at the beginning of gitweb.cgi6100close$fd;6101}61026103sub git_log_generic {6104my($fmt_name,$body_subr,$base,$parent,$file_name,$file_hash) =@_;61056106my$head= git_get_head_hash($project);6107if(!defined$base) {6108$base=$head;6109}6110if(!defined$page) {6111$page=0;6112}6113my$refs= git_get_references();61146115my$commit_hash=$base;6116if(defined$parent) {6117$commit_hash="$parent..$base";6118}6119my@commitlist=6120 parse_commits($commit_hash,101, (100*$page),6121defined$file_name? ($file_name,"--full-history") : ());61226123my$ftype;6124if(!defined$file_hash&&defined$file_name) {6125# some commits could have deleted file in question,6126# and not have it in tree, but one of them has to have it6127for(my$i=0;$i<@commitlist;$i++) {6128$file_hash= git_get_hash_by_path($commitlist[$i]{'id'},$file_name);6129last ifdefined$file_hash;6130}6131}6132if(defined$file_hash) {6133$ftype= git_get_type($file_hash);6134}6135if(defined$file_name&& !defined$ftype) {6136 die_error(500,"Unknown type of object");6137}6138my%co;6139if(defined$file_name) {6140%co= parse_commit($base)6141or die_error(404,"Unknown commit object");6142}614361446145my$paging_nav= format_paging_nav($fmt_name,$page,$#commitlist>=100);6146my$next_link='';6147if($#commitlist>=100) {6148$next_link=6149$cgi->a({-href => href(-replay=>1, page=>$page+1),6150-accesskey =>"n", -title =>"Alt-n"},"next");6151}6152my$patch_max= gitweb_get_feature('patches');6153if($patch_max&& !defined$file_name) {6154if($patch_max<0||@commitlist<=$patch_max) {6155$paging_nav.=" ⋅ ".6156$cgi->a({-href => href(action=>"patches", -replay=>1)},6157"patches");6158}6159}61606161 git_header_html();6162 git_print_page_nav($fmt_name,'',$hash,$hash,$hash,$paging_nav);6163if(defined$file_name) {6164 git_print_header_div('commit', esc_html($co{'title'}),$base);6165}else{6166 git_print_header_div('summary',$project)6167}6168 git_print_page_path($file_name,$ftype,$hash_base)6169if(defined$file_name);61706171$body_subr->(\@commitlist,0,99,$refs,$next_link,6172$file_name,$file_hash,$ftype);61736174 git_footer_html();6175}61766177sub git_log {6178 git_log_generic('log', \&git_log_body,6179$hash,$hash_parent);6180}61816182sub git_commit {6183$hash||=$hash_base||"HEAD";6184my%co= parse_commit($hash)6185or die_error(404,"Unknown commit object");61866187my$parent=$co{'parent'};6188my$parents=$co{'parents'};# listref61896190# we need to prepare $formats_nav before any parameter munging6191my$formats_nav;6192if(!defined$parent) {6193# --root commitdiff6194$formats_nav.='(initial)';6195}elsif(@$parents==1) {6196# single parent commit6197$formats_nav.=6198'(parent: '.6199$cgi->a({-href => href(action=>"commit",6200 hash=>$parent)},6201 esc_html(substr($parent,0,7))) .6202')';6203}else{6204# merge commit6205$formats_nav.=6206'(merge: '.6207join(' ',map{6208$cgi->a({-href => href(action=>"commit",6209 hash=>$_)},6210 esc_html(substr($_,0,7)));6211}@$parents) .6212')';6213}6214if(gitweb_check_feature('patches') &&@$parents<=1) {6215$formats_nav.=" | ".6216$cgi->a({-href => href(action=>"patch", -replay=>1)},6217"patch");6218}62196220if(!defined$parent) {6221$parent="--root";6222}6223my@difftree;6224open my$fd,"-|", git_cmd(),"diff-tree",'-r',"--no-commit-id",6225@diff_opts,6226(@$parents<=1?$parent:'-c'),6227$hash,"--"6228or die_error(500,"Open git-diff-tree failed");6229@difftree=map{chomp;$_} <$fd>;6230close$fdor die_error(404,"Reading git-diff-tree failed");62316232# non-textual hash id's can be cached6233my$expires;6234if($hash=~m/^[0-9a-fA-F]{40}$/) {6235$expires="+1d";6236}6237my$refs= git_get_references();6238my$ref= format_ref_marker($refs,$co{'id'});62396240 git_header_html(undef,$expires);6241 git_print_page_nav('commit','',6242$hash,$co{'tree'},$hash,6243$formats_nav);62446245if(defined$co{'parent'}) {6246 git_print_header_div('commitdiff', esc_html($co{'title'}) .$ref,$hash);6247}else{6248 git_print_header_div('tree', esc_html($co{'title'}) .$ref,$co{'tree'},$hash);6249}6250print"<div class=\"title_text\">\n".6251"<table class=\"object_header\">\n";6252 git_print_authorship_rows(\%co);6253print"<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";6254print"<tr>".6255"<td>tree</td>".6256"<td class=\"sha1\">".6257$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),6258class=>"list"},$co{'tree'}) .6259"</td>".6260"<td class=\"link\">".6261$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},6262"tree");6263my$snapshot_links= format_snapshot_links($hash);6264if(defined$snapshot_links) {6265print" | ".$snapshot_links;6266}6267print"</td>".6268"</tr>\n";62696270foreachmy$par(@$parents) {6271print"<tr>".6272"<td>parent</td>".6273"<td class=\"sha1\">".6274$cgi->a({-href => href(action=>"commit", hash=>$par),6275class=>"list"},$par) .6276"</td>".6277"<td class=\"link\">".6278$cgi->a({-href => href(action=>"commit", hash=>$par)},"commit") .6279" | ".6280$cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)},"diff") .6281"</td>".6282"</tr>\n";6283}6284print"</table>".6285"</div>\n";62866287print"<div class=\"page_body\">\n";6288 git_print_log($co{'comment'});6289print"</div>\n";62906291 git_difftree_body(\@difftree,$hash,@$parents);62926293 git_footer_html();6294}62956296sub git_object {6297# object is defined by:6298# - hash or hash_base alone6299# - hash_base and file_name6300my$type;63016302# - hash or hash_base alone6303if($hash|| ($hash_base&& !defined$file_name)) {6304my$object_id=$hash||$hash_base;63056306open my$fd,"-|", quote_command(6307 git_cmd(),'cat-file','-t',$object_id) .' 2> /dev/null'6308or die_error(404,"Object does not exist");6309$type= <$fd>;6310chomp$type;6311close$fd6312or die_error(404,"Object does not exist");63136314# - hash_base and file_name6315}elsif($hash_base&&defined$file_name) {6316$file_name=~ s,/+$,,;63176318system(git_cmd(),"cat-file",'-e',$hash_base) ==06319or die_error(404,"Base object does not exist");63206321# here errors should not hapen6322open my$fd,"-|", git_cmd(),"ls-tree",$hash_base,"--",$file_name6323or die_error(500,"Open git-ls-tree failed");6324my$line= <$fd>;6325close$fd;63266327#'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'6328unless($line&&$line=~m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {6329 die_error(404,"File or directory for given base does not exist");6330}6331$type=$2;6332$hash=$3;6333}else{6334 die_error(400,"Not enough information to find object");6335}63366337print$cgi->redirect(-uri => href(action=>$type, -full=>1,6338 hash=>$hash, hash_base=>$hash_base,6339 file_name=>$file_name),6340-status =>'302 Found');6341}63426343sub git_blobdiff {6344my$format=shift||'html';63456346my$fd;6347my@difftree;6348my%diffinfo;6349my$expires;63506351# preparing $fd and %diffinfo for git_patchset_body6352# new style URI6353if(defined$hash_base&&defined$hash_parent_base) {6354if(defined$file_name) {6355# read raw output6356open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6357$hash_parent_base,$hash_base,6358"--", (defined$file_parent?$file_parent: ()),$file_name6359or die_error(500,"Open git-diff-tree failed");6360@difftree=map{chomp;$_} <$fd>;6361close$fd6362or die_error(404,"Reading git-diff-tree failed");6363@difftree6364or die_error(404,"Blob diff not found");63656366}elsif(defined$hash&&6367$hash=~/[0-9a-fA-F]{40}/) {6368# try to find filename from $hash63696370# read filtered raw output6371open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6372$hash_parent_base,$hash_base,"--"6373or die_error(500,"Open git-diff-tree failed");6374@difftree=6375# ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'6376# $hash == to_id6377grep{/^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/}6378map{chomp;$_} <$fd>;6379close$fd6380or die_error(404,"Reading git-diff-tree failed");6381@difftree6382or die_error(404,"Blob diff not found");63836384}else{6385 die_error(400,"Missing one of the blob diff parameters");6386}63876388if(@difftree>1) {6389 die_error(400,"Ambiguous blob diff specification");6390}63916392%diffinfo= parse_difftree_raw_line($difftree[0]);6393$file_parent||=$diffinfo{'from_file'} ||$file_name;6394$file_name||=$diffinfo{'to_file'};63956396$hash_parent||=$diffinfo{'from_id'};6397$hash||=$diffinfo{'to_id'};63986399# non-textual hash id's can be cached6400if($hash_base=~m/^[0-9a-fA-F]{40}$/&&6401$hash_parent_base=~m/^[0-9a-fA-F]{40}$/) {6402$expires='+1d';6403}64046405# open patch output6406open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6407'-p', ($formateq'html'?"--full-index": ()),6408$hash_parent_base,$hash_base,6409"--", (defined$file_parent?$file_parent: ()),$file_name6410or die_error(500,"Open git-diff-tree failed");6411}64126413# old/legacy style URI -- not generated anymore since 1.4.3.6414if(!%diffinfo) {6415 die_error('404 Not Found',"Missing one of the blob diff parameters")6416}64176418# header6419if($formateq'html') {6420my$formats_nav=6421$cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},6422"raw");6423 git_header_html(undef,$expires);6424if(defined$hash_base&& (my%co= parse_commit($hash_base))) {6425 git_print_page_nav('','',$hash_base,$co{'tree'},$hash_base,$formats_nav);6426 git_print_header_div('commit', esc_html($co{'title'}),$hash_base);6427}else{6428print"<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";6429print"<div class=\"title\">$hashvs$hash_parent</div>\n";6430}6431if(defined$file_name) {6432 git_print_page_path($file_name,"blob",$hash_base);6433}else{6434print"<div class=\"page_path\"></div>\n";6435}64366437}elsif($formateq'plain') {6438print$cgi->header(6439-type =>'text/plain',6440-charset =>'utf-8',6441-expires =>$expires,6442-content_disposition =>'inline; filename="'."$file_name".'.patch"');64436444print"X-Git-Url: ".$cgi->self_url() ."\n\n";64456446}else{6447 die_error(400,"Unknown blobdiff format");6448}64496450# patch6451if($formateq'html') {6452print"<div class=\"page_body\">\n";64536454 git_patchset_body($fd, [ \%diffinfo],$hash_base,$hash_parent_base);6455close$fd;64566457print"</div>\n";# class="page_body"6458 git_footer_html();64596460}else{6461while(my$line= <$fd>) {6462$line=~s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;6463$line=~s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;64646465print$line;64666467last if$line=~m!^\+\+\+!;6468}6469local$/=undef;6470print<$fd>;6471close$fd;6472}6473}64746475sub git_blobdiff_plain {6476 git_blobdiff('plain');6477}64786479sub git_commitdiff {6480my%params=@_;6481my$format=$params{-format} ||'html';64826483my($patch_max) = gitweb_get_feature('patches');6484if($formateq'patch') {6485 die_error(403,"Patch view not allowed")unless$patch_max;6486}64876488$hash||=$hash_base||"HEAD";6489my%co= parse_commit($hash)6490or die_error(404,"Unknown commit object");64916492# choose format for commitdiff for merge6493if(!defined$hash_parent&& @{$co{'parents'}} >1) {6494$hash_parent='--cc';6495}6496# we need to prepare $formats_nav before almost any parameter munging6497my$formats_nav;6498if($formateq'html') {6499$formats_nav=6500$cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},6501"raw");6502if($patch_max&& @{$co{'parents'}} <=1) {6503$formats_nav.=" | ".6504$cgi->a({-href => href(action=>"patch", -replay=>1)},6505"patch");6506}65076508if(defined$hash_parent&&6509$hash_parentne'-c'&&$hash_parentne'--cc') {6510# commitdiff with two commits given6511my$hash_parent_short=$hash_parent;6512if($hash_parent=~m/^[0-9a-fA-F]{40}$/) {6513$hash_parent_short=substr($hash_parent,0,7);6514}6515$formats_nav.=6516' (from';6517for(my$i=0;$i< @{$co{'parents'}};$i++) {6518if($co{'parents'}[$i]eq$hash_parent) {6519$formats_nav.=' parent '. ($i+1);6520last;6521}6522}6523$formats_nav.=': '.6524$cgi->a({-href => href(action=>"commitdiff",6525 hash=>$hash_parent)},6526 esc_html($hash_parent_short)) .6527')';6528}elsif(!$co{'parent'}) {6529# --root commitdiff6530$formats_nav.=' (initial)';6531}elsif(scalar@{$co{'parents'}} ==1) {6532# single parent commit6533$formats_nav.=6534' (parent: '.6535$cgi->a({-href => href(action=>"commitdiff",6536 hash=>$co{'parent'})},6537 esc_html(substr($co{'parent'},0,7))) .6538')';6539}else{6540# merge commit6541if($hash_parenteq'--cc') {6542$formats_nav.=' | '.6543$cgi->a({-href => href(action=>"commitdiff",6544 hash=>$hash, hash_parent=>'-c')},6545'combined');6546}else{# $hash_parent eq '-c'6547$formats_nav.=' | '.6548$cgi->a({-href => href(action=>"commitdiff",6549 hash=>$hash, hash_parent=>'--cc')},6550'compact');6551}6552$formats_nav.=6553' (merge: '.6554join(' ',map{6555$cgi->a({-href => href(action=>"commitdiff",6556 hash=>$_)},6557 esc_html(substr($_,0,7)));6558} @{$co{'parents'}} ) .6559')';6560}6561}65626563my$hash_parent_param=$hash_parent;6564if(!defined$hash_parent_param) {6565# --cc for multiple parents, --root for parentless6566$hash_parent_param=6567@{$co{'parents'}} >1?'--cc':$co{'parent'} ||'--root';6568}65696570# read commitdiff6571my$fd;6572my@difftree;6573if($formateq'html') {6574open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6575"--no-commit-id","--patch-with-raw","--full-index",6576$hash_parent_param,$hash,"--"6577or die_error(500,"Open git-diff-tree failed");65786579while(my$line= <$fd>) {6580chomp$line;6581# empty line ends raw part of diff-tree output6582last unless$line;6583push@difftree,scalar parse_difftree_raw_line($line);6584}65856586}elsif($formateq'plain') {6587open$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,6588'-p',$hash_parent_param,$hash,"--"6589or die_error(500,"Open git-diff-tree failed");6590}elsif($formateq'patch') {6591# For commit ranges, we limit the output to the number of6592# patches specified in the 'patches' feature.6593# For single commits, we limit the output to a single patch,6594# diverging from the git-format-patch default.6595my@commit_spec= ();6596if($hash_parent) {6597if($patch_max>0) {6598push@commit_spec,"-$patch_max";6599}6600push@commit_spec,'-n',"$hash_parent..$hash";6601}else{6602if($params{-single}) {6603push@commit_spec,'-1';6604}else{6605if($patch_max>0) {6606push@commit_spec,"-$patch_max";6607}6608push@commit_spec,"-n";6609}6610push@commit_spec,'--root',$hash;6611}6612open$fd,"-|", git_cmd(),"format-patch",@diff_opts,6613'--encoding=utf8','--stdout',@commit_spec6614or die_error(500,"Open git-format-patch failed");6615}else{6616 die_error(400,"Unknown commitdiff format");6617}66186619# non-textual hash id's can be cached6620my$expires;6621if($hash=~m/^[0-9a-fA-F]{40}$/) {6622$expires="+1d";6623}66246625# write commit message6626if($formateq'html') {6627my$refs= git_get_references();6628my$ref= format_ref_marker($refs,$co{'id'});66296630 git_header_html(undef,$expires);6631 git_print_page_nav('commitdiff','',$hash,$co{'tree'},$hash,$formats_nav);6632 git_print_header_div('commit', esc_html($co{'title'}) .$ref,$hash);6633print"<div class=\"title_text\">\n".6634"<table class=\"object_header\">\n";6635 git_print_authorship_rows(\%co);6636print"</table>".6637"</div>\n";6638print"<div class=\"page_body\">\n";6639if(@{$co{'comment'}} >1) {6640print"<div class=\"log\">\n";6641 git_print_log($co{'comment'}, -final_empty_line=>1, -remove_title =>1);6642print"</div>\n";# class="log"6643}66446645}elsif($formateq'plain') {6646my$refs= git_get_references("tags");6647my$tagname= git_get_rev_name_tags($hash);6648my$filename= basename($project) ."-$hash.patch";66496650print$cgi->header(6651-type =>'text/plain',6652-charset =>'utf-8',6653-expires =>$expires,6654-content_disposition =>'inline; filename="'."$filename".'"');6655my%ad= parse_date($co{'author_epoch'},$co{'author_tz'});6656print"From: ". to_utf8($co{'author'}) ."\n";6657print"Date:$ad{'rfc2822'} ($ad{'tz_local'})\n";6658print"Subject: ". to_utf8($co{'title'}) ."\n";66596660print"X-Git-Tag:$tagname\n"if$tagname;6661print"X-Git-Url: ".$cgi->self_url() ."\n\n";66626663foreachmy$line(@{$co{'comment'}}) {6664print to_utf8($line) ."\n";6665}6666print"---\n\n";6667}elsif($formateq'patch') {6668my$filename= basename($project) ."-$hash.patch";66696670print$cgi->header(6671-type =>'text/plain',6672-charset =>'utf-8',6673-expires =>$expires,6674-content_disposition =>'inline; filename="'."$filename".'"');6675}66766677# write patch6678if($formateq'html') {6679my$use_parents= !defined$hash_parent||6680$hash_parenteq'-c'||$hash_parenteq'--cc';6681 git_difftree_body(\@difftree,$hash,6682$use_parents? @{$co{'parents'}} :$hash_parent);6683print"<br/>\n";66846685 git_patchset_body($fd, \@difftree,$hash,6686$use_parents? @{$co{'parents'}} :$hash_parent);6687close$fd;6688print"</div>\n";# class="page_body"6689 git_footer_html();66906691}elsif($formateq'plain') {6692local$/=undef;6693print<$fd>;6694close$fd6695or print"Reading git-diff-tree failed\n";6696}elsif($formateq'patch') {6697local$/=undef;6698print<$fd>;6699close$fd6700or print"Reading git-format-patch failed\n";6701}6702}67036704sub git_commitdiff_plain {6705 git_commitdiff(-format =>'plain');6706}67076708# format-patch-style patches6709sub git_patch {6710 git_commitdiff(-format =>'patch', -single =>1);6711}67126713sub git_patches {6714 git_commitdiff(-format =>'patch');6715}67166717sub git_history {6718 git_log_generic('history', \&git_history_body,6719$hash_base,$hash_parent_base,6720$file_name,$hash);6721}67226723sub git_search {6724 gitweb_check_feature('search')or die_error(403,"Search is disabled");6725if(!defined$searchtext) {6726 die_error(400,"Text field is empty");6727}6728if(!defined$hash) {6729$hash= git_get_head_hash($project);6730}6731my%co= parse_commit($hash);6732if(!%co) {6733 die_error(404,"Unknown commit object");6734}6735if(!defined$page) {6736$page=0;6737}67386739$searchtype||='commit';6740if($searchtypeeq'pickaxe') {6741# pickaxe may take all resources of your box and run for several minutes6742# with every query - so decide by yourself how public you make this feature6743 gitweb_check_feature('pickaxe')6744or die_error(403,"Pickaxe is disabled");6745}6746if($searchtypeeq'grep') {6747 gitweb_check_feature('grep')6748or die_error(403,"Grep is disabled");6749}67506751 git_header_html();67526753if($searchtypeeq'commit'or$searchtypeeq'author'or$searchtypeeq'committer') {6754my$greptype;6755if($searchtypeeq'commit') {6756$greptype="--grep=";6757}elsif($searchtypeeq'author') {6758$greptype="--author=";6759}elsif($searchtypeeq'committer') {6760$greptype="--committer=";6761}6762$greptype.=$searchtext;6763my@commitlist= parse_commits($hash,101, (100*$page),undef,6764$greptype,'--regexp-ignore-case',6765$search_use_regexp?'--extended-regexp':'--fixed-strings');67666767my$paging_nav='';6768if($page>0) {6769$paging_nav.=6770$cgi->a({-href => href(action=>"search", hash=>$hash,6771 searchtext=>$searchtext,6772 searchtype=>$searchtype)},6773"first");6774$paging_nav.=" ⋅ ".6775$cgi->a({-href => href(-replay=>1, page=>$page-1),6776-accesskey =>"p", -title =>"Alt-p"},"prev");6777}else{6778$paging_nav.="first";6779$paging_nav.=" ⋅ prev";6780}6781my$next_link='';6782if($#commitlist>=100) {6783$next_link=6784$cgi->a({-href => href(-replay=>1, page=>$page+1),6785-accesskey =>"n", -title =>"Alt-n"},"next");6786$paging_nav.=" ⋅$next_link";6787}else{6788$paging_nav.=" ⋅ next";6789}67906791 git_print_page_nav('','',$hash,$co{'tree'},$hash,$paging_nav);6792 git_print_header_div('commit', esc_html($co{'title'}),$hash);6793if($page==0&& !@commitlist) {6794print"<p>No match.</p>\n";6795}else{6796 git_search_grep_body(\@commitlist,0,99,$next_link);6797}6798}67996800if($searchtypeeq'pickaxe') {6801 git_print_page_nav('','',$hash,$co{'tree'},$hash);6802 git_print_header_div('commit', esc_html($co{'title'}),$hash);68036804print"<table class=\"pickaxe search\">\n";6805my$alternate=1;6806local$/="\n";6807open my$fd,'-|', git_cmd(),'--no-pager','log',@diff_opts,6808'--pretty=format:%H','--no-abbrev','--raw',"-S$searchtext",6809($search_use_regexp?'--pickaxe-regex': ());6810undef%co;6811my@files;6812while(my$line= <$fd>) {6813chomp$line;6814next unless$line;68156816my%set= parse_difftree_raw_line($line);6817if(defined$set{'commit'}) {6818# finish previous commit6819if(%co) {6820print"</td>\n".6821"<td class=\"link\">".6822$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6823" | ".6824$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6825print"</td>\n".6826"</tr>\n";6827}68286829if($alternate) {6830print"<tr class=\"dark\">\n";6831}else{6832print"<tr class=\"light\">\n";6833}6834$alternate^=1;6835%co= parse_commit($set{'commit'});6836my$author= chop_and_escape_str($co{'author_name'},15,5);6837print"<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n".6838"<td><i>$author</i></td>\n".6839"<td>".6840$cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),6841-class=>"list subject"},6842 chop_and_escape_str($co{'title'},50) ."<br/>");6843}elsif(defined$set{'to_id'}) {6844next if($set{'to_id'} =~m/^0{40}$/);68456846print$cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},6847 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),6848-class=>"list"},6849"<span class=\"match\">". esc_path($set{'file'}) ."</span>") .6850"<br/>\n";6851}6852}6853close$fd;68546855# finish last commit (warning: repetition!)6856if(%co) {6857print"</td>\n".6858"<td class=\"link\">".6859$cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},"commit") .6860" | ".6861$cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})},"tree");6862print"</td>\n".6863"</tr>\n";6864}68656866print"</table>\n";6867}68686869if($searchtypeeq'grep') {6870 git_print_page_nav('','',$hash,$co{'tree'},$hash);6871 git_print_header_div('commit', esc_html($co{'title'}),$hash);68726873print"<table class=\"grep_search\">\n";6874my$alternate=1;6875my$matches=0;6876local$/="\n";6877open my$fd,"-|", git_cmd(),'grep','-n',6878$search_use_regexp? ('-E','-i') :'-F',6879$searchtext,$co{'tree'};6880my$lastfile='';6881while(my$line= <$fd>) {6882chomp$line;6883my($file,$lno,$ltext,$binary);6884last if($matches++>1000);6885if($line=~/^Binary file (.+) matches$/) {6886$file=$1;6887$binary=1;6888}else{6889(undef,$file,$lno,$ltext) =split(/:/,$line,4);6890}6891if($filene$lastfile) {6892$lastfileand print"</td></tr>\n";6893if($alternate++) {6894print"<tr class=\"dark\">\n";6895}else{6896print"<tr class=\"light\">\n";6897}6898print"<td class=\"list\">".6899$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6900 file_name=>"$file"),6901-class=>"list"}, esc_path($file));6902print"</td><td>\n";6903$lastfile=$file;6904}6905if($binary) {6906print"<div class=\"binary\">Binary file</div>\n";6907}else{6908$ltext= untabify($ltext);6909if($ltext=~m/^(.*)($search_regexp)(.*)$/i) {6910$ltext= esc_html($1, -nbsp=>1);6911$ltext.='<span class="match">';6912$ltext.= esc_html($2, -nbsp=>1);6913$ltext.='</span>';6914$ltext.= esc_html($3, -nbsp=>1);6915}else{6916$ltext= esc_html($ltext, -nbsp=>1);6917}6918print"<div class=\"pre\">".6919$cgi->a({-href => href(action=>"blob", hash=>$co{'hash'},6920 file_name=>"$file").'#l'.$lno,6921-class=>"linenr"},sprintf('%4i',$lno))6922.' '.$ltext."</div>\n";6923}6924}6925if($lastfile) {6926print"</td></tr>\n";6927if($matches>1000) {6928print"<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";6929}6930}else{6931print"<div class=\"diff nodifferences\">No matches found</div>\n";6932}6933close$fd;69346935print"</table>\n";6936}6937 git_footer_html();6938}69396940sub git_search_help {6941 git_header_html();6942 git_print_page_nav('','',$hash,$hash,$hash);6943print<<EOT;6944<p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without6945regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,6946the pattern entered is recognized as the POSIX extended6947<a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case6948insensitive).</p>6949<dl>6950<dt><b>commit</b></dt>6951<dd>The commit messages and authorship information will be scanned for the given pattern.</dd>6952EOT6953my$have_grep= gitweb_check_feature('grep');6954if($have_grep) {6955print<<EOT;6956<dt><b>grep</b></dt>6957<dd>All files in the currently selected tree (HEAD unless you are explicitly browsing6958 a different one) are searched for the given pattern. On large trees, this search can take6959a while and put some strain on the server, so please use it with some consideration. Note that6960due to git-grep peculiarity, currently if regexp mode is turned off, the matches are6961case-sensitive.</dd>6962EOT6963}6964print<<EOT;6965<dt><b>author</b></dt>6966<dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>6967<dt><b>committer</b></dt>6968<dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>6969EOT6970my$have_pickaxe= gitweb_check_feature('pickaxe');6971if($have_pickaxe) {6972print<<EOT;6973<dt><b>pickaxe</b></dt>6974<dd>All commits that caused the string to appear or disappear from any file (changes that6975added, removed or "modified" the string) will be listed. This search can take a while and6976takes a lot of strain on the server, so please use it wisely. Note that since you may be6977interested even in changes just changing the case as well, this search is case sensitive.</dd>6978EOT6979}6980print"</dl>\n";6981 git_footer_html();6982}69836984sub git_shortlog {6985 git_log_generic('shortlog', \&git_shortlog_body,6986$hash,$hash_parent);6987}69886989## ......................................................................6990## feeds (RSS, Atom; OPML)69916992sub git_feed {6993my$format=shift||'atom';6994my$have_blame= gitweb_check_feature('blame');69956996# Atom: http://www.atomenabled.org/developers/syndication/6997# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ6998if($formatne'rss'&&$formatne'atom') {6999 die_error(400,"Unknown web feed format");7000}70017002# log/feed of current (HEAD) branch, log of given branch, history of file/directory7003my$head=$hash||'HEAD';7004my@commitlist= parse_commits($head,150,0,$file_name);70057006my%latest_commit;7007my%latest_date;7008my$content_type="application/$format+xml";7009if(defined$cgi->http('HTTP_ACCEPT') &&7010$cgi->Accept('text/xml') >$cgi->Accept($content_type)) {7011# browser (feed reader) prefers text/xml7012$content_type='text/xml';7013}7014if(defined($commitlist[0])) {7015%latest_commit= %{$commitlist[0]};7016my$latest_epoch=$latest_commit{'committer_epoch'};7017%latest_date= parse_date($latest_epoch);7018my$if_modified=$cgi->http('IF_MODIFIED_SINCE');7019if(defined$if_modified) {7020my$since;7021if(eval{require HTTP::Date;1; }) {7022$since= HTTP::Date::str2time($if_modified);7023}elsif(eval{require Time::ParseDate;1; }) {7024$since= Time::ParseDate::parsedate($if_modified, GMT =>1);7025}7026if(defined$since&&$latest_epoch<=$since) {7027print$cgi->header(7028-type =>$content_type,7029-charset =>'utf-8',7030-last_modified =>$latest_date{'rfc2822'},7031-status =>'304 Not Modified');7032return;7033}7034}7035print$cgi->header(7036-type =>$content_type,7037-charset =>'utf-8',7038-last_modified =>$latest_date{'rfc2822'});7039}else{7040print$cgi->header(7041-type =>$content_type,7042-charset =>'utf-8');7043}70447045# Optimization: skip generating the body if client asks only7046# for Last-Modified date.7047return if($cgi->request_method()eq'HEAD');70487049# header variables7050my$title="$site_name-$project/$action";7051my$feed_type='log';7052if(defined$hash) {7053$title.=" - '$hash'";7054$feed_type='branch log';7055if(defined$file_name) {7056$title.=" ::$file_name";7057$feed_type='history';7058}7059}elsif(defined$file_name) {7060$title.=" -$file_name";7061$feed_type='history';7062}7063$title.="$feed_type";7064my$descr= git_get_project_description($project);7065if(defined$descr) {7066$descr= esc_html($descr);7067}else{7068$descr="$project".7069($formateq'rss'?'RSS':'Atom') .7070" feed";7071}7072my$owner= git_get_project_owner($project);7073$owner= esc_html($owner);70747075#header7076my$alt_url;7077if(defined$file_name) {7078$alt_url= href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);7079}elsif(defined$hash) {7080$alt_url= href(-full=>1, action=>"log", hash=>$hash);7081}else{7082$alt_url= href(-full=>1, action=>"summary");7083}7084print qq!<?xml version="1.0" encoding="utf-8"?>\n!;7085if($formateq'rss') {7086print<<XML;7087<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">7088<channel>7089XML7090print"<title>$title</title>\n".7091"<link>$alt_url</link>\n".7092"<description>$descr</description>\n".7093"<language>en</language>\n".7094# project owner is responsible for 'editorial' content7095"<managingEditor>$owner</managingEditor>\n";7096if(defined$logo||defined$favicon) {7097# prefer the logo to the favicon, since RSS7098# doesn't allow both7099my$img= esc_url($logo||$favicon);7100print"<image>\n".7101"<url>$img</url>\n".7102"<title>$title</title>\n".7103"<link>$alt_url</link>\n".7104"</image>\n";7105}7106if(%latest_date) {7107print"<pubDate>$latest_date{'rfc2822'}</pubDate>\n";7108print"<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";7109}7110print"<generator>gitweb v.$version/$git_version</generator>\n";7111}elsif($formateq'atom') {7112print<<XML;7113<feed xmlns="http://www.w3.org/2005/Atom">7114XML7115print"<title>$title</title>\n".7116"<subtitle>$descr</subtitle>\n".7117'<link rel="alternate" type="text/html" href="'.7118$alt_url.'" />'."\n".7119'<link rel="self" type="'.$content_type.'" href="'.7120$cgi->self_url() .'" />'."\n".7121"<id>". href(-full=>1) ."</id>\n".7122# use project owner for feed author7123"<author><name>$owner</name></author>\n";7124if(defined$favicon) {7125print"<icon>". esc_url($favicon) ."</icon>\n";7126}7127if(defined$logo_url) {7128# not twice as wide as tall: 72 x 27 pixels7129print"<logo>". esc_url($logo) ."</logo>\n";7130}7131if(!%latest_date) {7132# dummy date to keep the feed valid until commits trickle in:7133print"<updated>1970-01-01T00:00:00Z</updated>\n";7134}else{7135print"<updated>$latest_date{'iso-8601'}</updated>\n";7136}7137print"<generator version='$version/$git_version'>gitweb</generator>\n";7138}71397140# contents7141for(my$i=0;$i<=$#commitlist;$i++) {7142my%co= %{$commitlist[$i]};7143my$commit=$co{'id'};7144# we read 150, we always show 30 and the ones more recent than 48 hours7145if(($i>=20) && ((time-$co{'author_epoch'}) >48*60*60)) {7146last;7147}7148my%cd= parse_date($co{'author_epoch'});71497150# get list of changed files7151open my$fd,"-|", git_cmd(),"diff-tree",'-r',@diff_opts,7152$co{'parent'} ||"--root",7153$co{'id'},"--", (defined$file_name?$file_name: ())7154ornext;7155my@difftree=map{chomp;$_} <$fd>;7156close$fd7157ornext;71587159# print element (entry, item)7160my$co_url= href(-full=>1, action=>"commitdiff", hash=>$commit);7161if($formateq'rss') {7162print"<item>\n".7163"<title>". esc_html($co{'title'}) ."</title>\n".7164"<author>". esc_html($co{'author'}) ."</author>\n".7165"<pubDate>$cd{'rfc2822'}</pubDate>\n".7166"<guid isPermaLink=\"true\">$co_url</guid>\n".7167"<link>$co_url</link>\n".7168"<description>". esc_html($co{'title'}) ."</description>\n".7169"<content:encoded>".7170"<![CDATA[\n";7171}elsif($formateq'atom') {7172print"<entry>\n".7173"<title type=\"html\">". esc_html($co{'title'}) ."</title>\n".7174"<updated>$cd{'iso-8601'}</updated>\n".7175"<author>\n".7176" <name>". esc_html($co{'author_name'}) ."</name>\n";7177if($co{'author_email'}) {7178print" <email>". esc_html($co{'author_email'}) ."</email>\n";7179}7180print"</author>\n".7181# use committer for contributor7182"<contributor>\n".7183" <name>". esc_html($co{'committer_name'}) ."</name>\n";7184if($co{'committer_email'}) {7185print" <email>". esc_html($co{'committer_email'}) ."</email>\n";7186}7187print"</contributor>\n".7188"<published>$cd{'iso-8601'}</published>\n".7189"<link rel=\"alternate\"type=\"text/html\"href=\"$co_url\"/>\n".7190"<id>$co_url</id>\n".7191"<content type=\"xhtml\"xml:base=\"". esc_url($my_url) ."\">\n".7192"<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";7193}7194my$comment=$co{'comment'};7195print"<pre>\n";7196foreachmy$line(@$comment) {7197$line= esc_html($line);7198print"$line\n";7199}7200print"</pre><ul>\n";7201foreachmy$difftree_line(@difftree) {7202my%difftree= parse_difftree_raw_line($difftree_line);7203next if!$difftree{'from_id'};72047205my$file=$difftree{'file'} ||$difftree{'to_file'};72067207print"<li>".7208"[".7209$cgi->a({-href => href(-full=>1, action=>"blobdiff",7210 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},7211 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},7212 file_name=>$file, file_parent=>$difftree{'from_file'}),7213-title =>"diff"},'D');7214if($have_blame) {7215print$cgi->a({-href => href(-full=>1, action=>"blame",7216 file_name=>$file, hash_base=>$commit),7217-title =>"blame"},'B');7218}7219# if this is not a feed of a file history7220if(!defined$file_name||$file_namene$file) {7221print$cgi->a({-href => href(-full=>1, action=>"history",7222 file_name=>$file, hash=>$commit),7223-title =>"history"},'H');7224}7225$file= esc_path($file);7226print"] ".7227"$file</li>\n";7228}7229if($formateq'rss') {7230print"</ul>]]>\n".7231"</content:encoded>\n".7232"</item>\n";7233}elsif($formateq'atom') {7234print"</ul>\n</div>\n".7235"</content>\n".7236"</entry>\n";7237}7238}72397240# end of feed7241if($formateq'rss') {7242print"</channel>\n</rss>\n";7243}elsif($formateq'atom') {7244print"</feed>\n";7245}7246}72477248sub git_rss {7249 git_feed('rss');7250}72517252sub git_atom {7253 git_feed('atom');7254}72557256sub git_opml {7257my@list= git_get_projects_list();72587259print$cgi->header(7260-type =>'text/xml',7261-charset =>'utf-8',7262-content_disposition =>'inline; filename="opml.xml"');72637264print<<XML;7265<?xml version="1.0" encoding="utf-8"?>7266<opml version="1.0">7267<head>7268 <title>$site_nameOPML Export</title>7269</head>7270<body>7271<outline text="git RSS feeds">7272XML72737274foreachmy$pr(@list) {7275my%proj=%$pr;7276my$head= git_get_head_hash($proj{'path'});7277if(!defined$head) {7278next;7279}7280$git_dir="$projectroot/$proj{'path'}";7281my%co= parse_commit($head);7282if(!%co) {7283next;7284}72857286my$path= esc_html(chop_str($proj{'path'},25,5));7287my$rss= href('project'=>$proj{'path'},'action'=>'rss', -full =>1);7288my$html= href('project'=>$proj{'path'},'action'=>'summary', -full =>1);7289print"<outline type=\"rss\"text=\"$path\"title=\"$path\"xmlUrl=\"$rss\"htmlUrl=\"$html\"/>\n";7290}7291print<<XML;7292</outline>7293</body>7294</opml>7295XML7296}