3 # gitweb - simple web interface to track changes in git repositories
5 # (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
6 # (C) 2005, Christian Gierke
8 # This program is licensed under the GPLv2
13 use CGI
qw(:standard :escapeHTML -nosticky);
14 use CGI
::Util
qw(unescape);
15 use CGI
::Carp
qw(fatalsToBrowser set_message);
19 use File
::Basename
qw(basename);
21 use Time
::HiRes
qw(gettimeofday tv_interval);
23 use constant GITWEB_CACHE_FORMAT
=> "Gitweb Cache Format 3";
24 binmode STDOUT
, ':utf8';
26 if (!defined($CGI::VERSION
) || $CGI::VERSION
< 4.08) {
27 eval 'sub CGI::multi_param { CGI::param(@_) }'
30 our $t0 = [ gettimeofday
() ];
31 our $number_of_git_cmds = 0;
34 CGI
->compile() if $ENV{'MOD_PERL'};
37 our $version = "++GIT_VERSION++";
39 our ($my_url, $my_uri, $base_url, $path_info, $home_link);
43 our $my_url = $cgi->url();
44 our $my_uri = $cgi->url(-absolute
=> 1);
46 # Base URL for relative URLs in gitweb ($logo, $favicon, ...),
47 # needed and used only for URLs with nonempty PATH_INFO
48 our $base_url = $my_url;
50 # When the script is used as DirectoryIndex, the URL does not contain the name
51 # of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we
52 # have to do it ourselves. We make $path_info global because it's also used
55 # Another issue with the script being the DirectoryIndex is that the resulting
56 # $my_url data is not the full script URL: this is good, because we want
57 # generated links to keep implying the script name if it wasn't explicitly
58 # indicated in the URL we're handling, but it means that $my_url cannot be used
60 # Therefore, if we needed to strip PATH_INFO, then we know that we have
61 # to build the base URL ourselves:
62 our $path_info = decode_utf8
($ENV{"PATH_INFO"});
64 # $path_info has already been URL-decoded by the web server, but
65 # $my_url and $my_uri have not. URL-decode them so we can properly
67 $my_url = unescape
($my_url);
68 $my_uri = unescape
($my_uri);
69 if ($my_url =~ s
,\Q
$path_info\E
$,, &&
70 $my_uri =~ s
,\Q
$path_info\E
$,, &&
71 defined $ENV{'SCRIPT_NAME'}) {
72 $base_url = $cgi->url(-base
=> 1) . $ENV{'SCRIPT_NAME'};
76 # target of the home link on top of all pages
77 our $home_link = $my_uri || "/";
80 # core git executable to use
81 # this can just be "git" if your webserver has a sensible PATH
82 our $GIT = "++GIT_BINDIR++/git";
84 # absolute fs-path which will be prepended to the project path
85 #our $projectroot = "/pub/scm";
86 our $projectroot = "++GITWEB_PROJECTROOT++";
88 # fs traversing limit for getting project list
89 # the number is relative to the projectroot
90 our $project_maxdepth = "++GITWEB_PROJECT_MAXDEPTH++";
92 # string of the home link on top of all pages
93 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
95 # extra breadcrumbs preceding the home link
96 our @extra_breadcrumbs = ();
98 # name of your site or organization to appear in page titles
99 # replace this with something more descriptive for clearer bookmarks
100 our $site_name = "++GITWEB_SITENAME++"
101 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
103 # html snippet to include in the <head> section of each page
104 our $site_html_head_string = "++GITWEB_SITE_HTML_HEAD_STRING++";
105 # filename of html text to include at top of each page
106 our $site_header = "++GITWEB_SITE_HEADER++";
107 # html text to include at home page
108 our $home_text = "++GITWEB_HOMETEXT++";
109 # filename of html text to include at bottom of each page
110 our $site_footer = "++GITWEB_SITE_FOOTER++";
113 our @stylesheets = ("++GITWEB_CSS++");
114 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
115 our $stylesheet = undef;
116 # URI of GIT logo (72x27 size)
117 our $logo = "++GITWEB_LOGO++";
118 # URI of GIT favicon, assumed to be image/png type
119 our $favicon = "++GITWEB_FAVICON++";
120 # URI of gitweb.js (JavaScript code for gitweb)
121 our $javascript = "++GITWEB_JS++";
123 # URI and label (title) of GIT logo link
124 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
125 #our $logo_label = "git documentation";
126 our $logo_url = "http://git-scm.com/";
127 our $logo_label = "git homepage";
129 # source of projects list
130 our $projects_list = "++GITWEB_LIST++";
132 # the width (in characters) of the projects list "Description" column
133 our $projects_list_description_width = 25;
135 # group projects by category on the projects list
136 # (enabled if this variable evaluates to true)
137 our $projects_list_group_categories = 0;
139 # default category if none specified
140 # (leave the empty string for no category)
141 our $project_list_default_category = "";
143 # default order of projects list
144 # valid values are none, project, descr, owner, and age
145 our $default_projects_order = "project";
147 # show repository only if this file exists
148 # (only effective if this variable evaluates to true)
149 our $export_ok = "++GITWEB_EXPORT_OK++";
151 # don't generate age column on the projects list page
152 our $omit_age_column = 0;
154 # use contents of this file (in iso, iso-strict or raw format) as
155 # the last activity data if it exists and is a valid date
156 our $lastactivity_file = undef;
158 # don't generate information about owners of repositories
161 # show repository only if this subroutine returns true
162 # when given the path to the project, for example:
163 # sub { return -e "$_[0]/git-daemon-export-ok"; }
164 our $export_auth_hook = undef;
166 # only allow viewing of repositories also shown on the overview page
167 our $strict_export = "++GITWEB_STRICT_EXPORT++";
169 # list of git base URLs used for URL to where fetch project from,
170 # i.e. full URL is "$git_base_url/$project"
171 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
173 # default blob_plain mimetype and default charset for text/plain blob
174 our $default_blob_plain_mimetype = 'text/plain';
175 our $default_text_plain_charset = undef;
177 # file to use for guessing MIME types before trying /etc/mime.types
178 # (relative to the current git repository)
179 our $mimetypes_file = undef;
181 # assume this charset if line contains non-UTF-8 characters;
182 # it should be valid encoding (see Encoding::Supported(3pm) for list),
183 # for which encoding all byte sequences are valid, for example
184 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
185 # could be even 'utf-8' for the old behavior)
186 our $fallback_encoding = 'latin1';
188 # rename detection options for git-diff and git-diff-tree
189 # - default is '-M', with the cost proportional to
190 # (number of removed files) * (number of new files).
191 # - more costly is '-C' (which implies '-M'), with the cost proportional to
192 # (number of changed files + number of removed files) * (number of new files)
193 # - even more costly is '-C', '--find-copies-harder' with cost
194 # (number of files in the original tree) * (number of new files)
195 # - one might want to include '-B' option, e.g. '-B', '-M'
196 our @diff_opts = ('-M'); # taken from git_commit
198 # cache directory (relative to $GIT_DIR) for project-specific html page caches.
199 # the directory must exist and be writable by the process running gitweb.
200 # additionally some actions must be selected for caching in %html_cache_actions
201 # - default is 'htmlcache'
202 our $html_cache_dir = 'htmlcache';
204 # which actions to cache in $html_cache_dir
205 # if $html_cache_dir exists (relative to $GIT_DIR) and is writable by the
206 # process running gitweb, then any actions selected here will have their output
207 # cached and the cache file will be returned instead of regenerating the page
208 # if it exists. For this to be useful, an external process must create the
209 # 'changed' file (if it does not already exist) in the $html_cache_dir whenever
210 # the project information has been changed. Alternatively it may create a
211 # "$action.changed" file (if it does not exist) instead to limit the changes
212 # to just "$action" instead of any action. If 'changed' or "$action.changed"
213 # exist, then the cached version will never be used for "$action" and a new
214 # cache page will be regenerated (and the "changed" files removed as appropriate).
216 # Additionally if $projlist_cache_lifetime is > 0 AND the forks feature has been
217 # enabled ('$feature{'forks'}{'default'} = [1];') then additionally an external
218 # process must create the 'forkchange' file or update its timestamp if it already
219 # exists whenever a fork is added to or removed from the project (as well as
220 # create the 'changed' or "$action.changed" file). Otherwise the "forks"
221 # section on the summary page may remain out-of-date indefinately.
224 # currently only caching of the summary page is supported
225 # - to enable caching of the summary page use:
226 # $html_cache_actions{'summary'} = 1;
227 our %html_cache_actions = ();
229 # Disables features that would allow repository owners to inject script into
231 our $prevent_xss = 0;
233 # Path to a POSIX shell. Needed to run $highlight_bin and a snapshot compressor.
234 # Only used when highlight is enabled or snapshots with compressors are enabled.
235 our $posix_shell_bin = "++POSIX_SHELL_BIN++";
237 # Path to the highlight executable to use (must be the one from
238 # http://www.andre-simon.de due to assumptions about parameters and output).
239 # Useful if highlight is not installed on your webserver's PATH.
240 # [Default: highlight]
241 our $highlight_bin = "++HIGHLIGHT_BIN++";
243 # Whether to include project list on the gitweb front page; 0 means yes,
244 # 1 means no list but show tag cloud if enabled (all projects still need
245 # to be scanned, unless the info is cached), 2 means no list and no tag cloud
247 our $frontpage_no_project_list = 0;
249 # projects list cache for busy sites with many projects;
250 # if you set this to non-zero, it will be used as the cached
251 # index lifetime in minutes
253 # the cached list version is stored in $cache_dir/$cache_name and can
254 # be tweaked by other scripts running with the same uid as gitweb -
255 # use this ONLY at secure installations; only single gitweb project
256 # root per system is supported, unless you tweak configuration!
257 our $projlist_cache_lifetime = 0; # in minutes
258 # FHS compliant $cache_dir would be "/var/cache/gitweb"
260 (defined $ENV{'TMPDIR'} ?
$ENV{'TMPDIR'} : '/tmp').'/gitweb';
261 our $projlist_cache_name = 'gitweb.index.cache';
262 our $cache_grpshared = 0;
264 # information about snapshot formats that gitweb is capable of serving
265 our %known_snapshot_formats = (
267 # 'display' => display name,
268 # 'type' => mime type,
269 # 'suffix' => filename suffix,
270 # 'format' => --format for git-archive,
271 # 'compressor' => [compressor command and arguments]
272 # (array reference, optional)
273 # 'disabled' => boolean (optional)}
276 'display' => 'tar.gz',
277 'type' => 'application/x-gzip',
278 'suffix' => '.tar.gz',
280 'compressor' => ['gzip', '-n']},
283 'display' => 'tar.bz2',
284 'type' => 'application/x-bzip2',
285 'suffix' => '.tar.bz2',
287 'compressor' => ['bzip2']},
290 'display' => 'tar.xz',
291 'type' => 'application/x-xz',
292 'suffix' => '.tar.xz',
294 'compressor' => ['xz'],
299 'type' => 'application/x-zip',
304 # Aliases so we understand old gitweb.snapshot values in repository
306 our %known_snapshot_format_aliases = (
311 # backward compatibility: legacy gitweb config support
312 'x-gzip' => undef, 'gz' => undef,
313 'x-bzip2' => undef, 'bz2' => undef,
314 'x-zip' => undef, '' => undef,
317 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
318 # are changed, it may be appropriate to change these values too via
325 # Used to set the maximum load that we will still respond to gitweb queries.
326 # If server load exceed this value then return "503 server busy" error.
327 # If gitweb cannot determined server load, it is taken to be 0.
328 # Leave it undefined (or set to 'undef') to turn off load checking.
331 # configuration for 'highlight' (http://www.andre-simon.de/)
333 our %highlight_basename = (
336 'SConstruct' => 'py', # SCons equivalent of Makefile
337 'Makefile' => 'make',
338 'makefile' => 'make',
339 'GNUmakefile' => 'make',
340 'BSDmakefile' => 'make',
342 # match by shebang regex
343 our %highlight_shebang = (
344 # Each entry has a key which is the syntax to use and
345 # a value which is either a qr regex or an array of qr regexs to match
346 # against the first 128 (less if the blob is shorter) BYTES of the blob.
347 # We match /usr/bin/env items separately to require "/usr/bin/env" and
348 # allow a limited subset of NAME=value items to appear.
349 'awk' => [ qr
,^#!\s*/(?:\w+/)*(?:[gnm]?awk)(?:\s|$),mo,
350 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:[gnm]?awk)(?:\s|$),mo ],
351 'make' => [ qr
,^#!\s*/(?:\w+/)*(?:g?make)(?:\s|$),mo,
352 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:g?make)(?:\s|$),mo ],
353 'php' => [ qr
,^#!\s*/(?:\w+/)*(?:php)(?:\s|$),mo,
354 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:php)(?:\s|$),mo ],
355 'pl' => [ qr
,^#!\s*/(?:\w+/)*(?:perl)(?:\s|$),mo,
356 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:perl)(?:\s|$),mo ],
357 'py' => [ qr
,^#!\s*/(?:\w+/)*(?:python)(?:\s|$),mo,
358 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:python)(?:\s|$),mo ],
359 'sh' => [ qr
,^#!\s*/(?:\w+/)*(?:[bd]ash|t?csh|[akz]?sh)(?:\s|$),mo,
360 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:[bd]ash|t?csh|[akz]?sh)(?:\s|$),mo ],
361 'rb' => [ qr
,^#!\s*/(?:\w+/)*(?:perl)(?:\s|$),mo,
362 qr
,^#!\s*/usr/bin/env\s+(?:\w+=\w*\s+)*(?:perl)(?:\s|$),mo ],
365 our %highlight_ext = (
366 # main extensions, defining name of syntax;
367 # see files in /usr/share/highlight/langDefs/ directory
368 (map { $_ => $_ } qw(
369 4gl a4c abnf abp ada agda ahk ampl amtrix applescript arc
370 arm as asm asp aspect ats au3 avenue awk bat bb bbcode bib
371 bms bnf boo c cb cfc chl clipper clojure clp cob cs css d
372 diff dot dylan e ebnf erl euphoria exp f90 flx for frink fs
373 go haskell hcl html httpd hx icl icn idl idlang ili
374 inc_luatex ini inp io iss j java js jsp lbn ldif lgt lhs
375 lisp lotos ls lsl lua ly make mel mercury mib miranda ml mo
376 mod2 mod3 mpl ms mssql n nas nbc nice nrx nsi nut nxc oberon
377 objc octave oorexx os oz pas php pike pl pl1 pov pro
378 progress ps ps1 psl pure py pyx q qmake qu r rb rebol rexx
379 rnc s sas sc scala scilab sh sma smalltalk sml sno spec spn
380 sql sybase tcl tcsh tex ttcn3 vala vb verilog vhd xml xpp y
382 # alternate extensions, see /etc/highlight/filetypes.conf
383 (map { $_ => '4gl' } qw(informix)),
384 (map { $_ => 'a4c' } qw(ascend)),
385 (map { $_ => 'abp' } qw(abp4)),
386 (map { $_ => 'ada' } qw(a adb ads gnad)),
387 (map { $_ => 'ahk' } qw(autohotkey)),
388 (map { $_ => 'ampl' } qw(dat run)),
389 (map { $_ => 'amtrix' } qw(hnd s4 s4h s4t t4)),
390 (map { $_ => 'as' } qw(actionscript)),
391 (map { $_ => 'asm' } qw(29k 68s 68x a51 assembler x68 x86)),
392 (map { $_ => 'asp' } qw(asa)),
393 (map { $_ => 'aspect' } qw(was wud)),
394 (map { $_ => 'ats' } qw(dats)),
395 (map { $_ => 'au3' } qw(autoit)),
396 (map { $_ => 'bat' } qw(cmd)),
397 (map { $_ => 'bb' } qw(blitzbasic)),
398 (map { $_ => 'bib' } qw(bibtex)),
399 (map { $_ => 'c' } qw(c++ cc cpp cu cxx h hh hpp hxx)),
400 (map { $_ => 'cb' } qw(clearbasic)),
401 (map { $_ => 'cfc' } qw(cfm coldfusion)),
402 (map { $_ => 'chl' } qw(chill)),
403 (map { $_ => 'cob' } qw(cbl cobol)),
404 (map { $_ => 'cs' } qw(csharp)),
405 (map { $_ => 'diff' } qw(patch)),
406 (map { $_ => 'dot' } qw(graphviz)),
407 (map { $_ => 'e' } qw(eiffel se)),
408 (map { $_ => 'erl' } qw(erlang hrl)),
409 (map { $_ => 'euphoria' } qw(eu ew ex exu exw wxu)),
410 (map { $_ => 'exp' } qw(express)),
411 (map { $_ => 'f90' } qw(f95)),
412 (map { $_ => 'flx' } qw(felix)),
413 (map { $_ => 'for' } qw(f f77 ftn)),
414 (map { $_ => 'fs' } qw(fsharp fsx)),
415 (map { $_ => 'haskell' } qw(hs)),
416 (map { $_ => 'html' } qw(htm xhtml)),
417 (map { $_ => 'hx' } qw(haxe)),
418 (map { $_ => 'icl' } qw(clean)),
419 (map { $_ => 'icn' } qw(icon)),
420 (map { $_ => 'ili' } qw(interlis)),
421 (map { $_ => 'inp' } qw(fame)),
422 (map { $_ => 'iss' } qw(innosetup)),
423 (map { $_ => 'j' } qw(jasmin)),
424 (map { $_ => 'java' } qw(groovy grv)),
425 (map { $_ => 'lbn' } qw(luban)),
426 (map { $_ => 'lgt' } qw(logtalk)),
427 (map { $_ => 'lisp' } qw(cl clisp el lsp sbcl scom)),
428 (map { $_ => 'ls' } qw(lotus)),
429 (map { $_ => 'lsl' } qw(lindenscript)),
430 (map { $_ => 'ly' } qw(lilypond)),
431 (map { $_ => 'make' } qw(mak mk kmk)),
432 (map { $_ => 'mel' } qw(maya)),
433 (map { $_ => 'mib' } qw(smi snmp)),
434 (map { $_ => 'ml' } qw(mli ocaml)),
435 (map { $_ => 'mo' } qw(modelica)),
436 (map { $_ => 'mod2' } qw(def mod)),
437 (map { $_ => 'mod3' } qw(i3 m3)),
438 (map { $_ => 'mpl' } qw(maple)),
439 (map { $_ => 'n' } qw(nemerle)),
440 (map { $_ => 'nas' } qw(nasal)),
441 (map { $_ => 'nrx' } qw(netrexx)),
442 (map { $_ => 'nsi' } qw(nsis)),
443 (map { $_ => 'nut' } qw(squirrel)),
444 (map { $_ => 'oberon' } qw(ooc)),
445 (map { $_ => 'objc' } qw(M m mm)),
446 (map { $_ => 'php' } qw(php3 php4 php5 php6)),
447 (map { $_ => 'pike' } qw(pmod)),
448 (map { $_ => 'pl' } qw(perl plex plx pm)),
449 (map { $_ => 'pl1' } qw(bdy ff fp fpp rpp sf sp spb spe spp sps wf wp wpb wpp wps)),
450 (map { $_ => 'progress' } qw(i p w)),
451 (map { $_ => 'py' } qw(python)),
452 (map { $_ => 'pyx' } qw(pyrex)),
453 (map { $_ => 'rb' } qw(pp rjs ruby)),
454 (map { $_ => 'rexx' } qw(rex rx the)),
455 (map { $_ => 'sc' } qw(paradox)),
456 (map { $_ => 'scilab' } qw(sce sci)),
457 (map { $_ => 'sh' } qw(bash ebuild eclass ksh zsh)),
458 (map { $_ => 'sma' } qw(small)),
459 (map { $_ => 'smalltalk' } qw(gst sq st)),
460 (map { $_ => 'sno' } qw(snobal)),
461 (map { $_ => 'sybase' } qw(sp)),
462 (map { $_ => 'tcl' } qw(itcl wish)),
463 (map { $_ => 'tex' } qw(cls sty)),
464 (map { $_ => 'vb' } qw(bas basic bi vbs)),
465 (map { $_ => 'verilog' } qw(v)),
466 (map { $_ => 'xml' } qw(dtd ecf ent hdr hub jnlp nrm plist resx sgm sgml svg tld vxml wml xsd xsl)),
467 (map { $_ => 'y' } qw(bison)),
470 # You define site-wide feature defaults here; override them with
471 # $GITWEB_CONFIG as necessary.
474 # 'sub' => feature-sub (subroutine),
475 # 'override' => allow-override (boolean),
476 # 'default' => [ default options...] (array reference)}
478 # if feature is overridable (it means that allow-override has true value),
479 # then feature-sub will be called with default options as parameters;
480 # return value of feature-sub indicates if to enable specified feature
482 # if there is no 'sub' key (no feature-sub), then feature cannot be
485 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
486 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
489 # Enable the 'blame' blob view, showing the last commit that modified
490 # each line in the file. This can be very CPU-intensive.
492 # To enable system wide have in $GITWEB_CONFIG
493 # $feature{'blame'}{'default'} = [1];
494 # To have project specific config enable override in $GITWEB_CONFIG
495 # $feature{'blame'}{'override'} = 1;
496 # and in project config gitweb.blame = 0|1;
498 'sub' => sub { feature_bool
('blame', @_) },
502 # Enable the 'snapshot' link, providing a compressed archive of any
503 # tree. This can potentially generate high traffic if you have large
506 # Value is a list of formats defined in %known_snapshot_formats that
508 # To disable system wide have in $GITWEB_CONFIG
509 # $feature{'snapshot'}{'default'} = [];
510 # To have project specific config enable override in $GITWEB_CONFIG
511 # $feature{'snapshot'}{'override'} = 1;
512 # and in project config, a comma-separated list of formats or "none"
513 # to disable. Example: gitweb.snapshot = tbz2,zip;
515 'sub' => \
&feature_snapshot
,
517 'default' => ['tgz']},
519 # Enable text search, which will list the commits which match author,
520 # committer or commit text to a given string. Enabled by default.
521 # Project specific override is not supported.
523 # Note that this controls all search features, which means that if
524 # it is disabled, then 'grep' and 'pickaxe' search would also be
530 # Enable grep search, which will list the files in currently selected
531 # tree containing the given string. Enabled by default. This can be
532 # potentially CPU-intensive, of course.
533 # Note that you need to have 'search' feature enabled too.
535 # To enable system wide have in $GITWEB_CONFIG
536 # $feature{'grep'}{'default'} = [1];
537 # To have project specific config enable override in $GITWEB_CONFIG
538 # $feature{'grep'}{'override'} = 1;
539 # and in project config gitweb.grep = 0|1;
541 'sub' => sub { feature_bool
('grep', @_) },
545 # Enable the pickaxe search, which will list the commits that modified
546 # a given string in a file. This can be practical and quite faster
547 # alternative to 'blame', but still potentially CPU-intensive.
548 # Note that you need to have 'search' feature enabled too.
550 # To enable system wide have in $GITWEB_CONFIG
551 # $feature{'pickaxe'}{'default'} = [1];
552 # To have project specific config enable override in $GITWEB_CONFIG
553 # $feature{'pickaxe'}{'override'} = 1;
554 # and in project config gitweb.pickaxe = 0|1;
556 'sub' => sub { feature_bool
('pickaxe', @_) },
560 # Enable showing size of blobs in a 'tree' view, in a separate
561 # column, similar to what 'ls -l' does. This cost a bit of IO.
563 # To disable system wide have in $GITWEB_CONFIG
564 # $feature{'show-sizes'}{'default'} = [0];
565 # To have project specific config enable override in $GITWEB_CONFIG
566 # $feature{'show-sizes'}{'override'} = 1;
567 # and in project config gitweb.showsizes = 0|1;
569 'sub' => sub { feature_bool
('showsizes', @_) },
573 # Make gitweb use an alternative format of the URLs which can be
574 # more readable and natural-looking: project name is embedded
575 # directly in the path and the query string contains other
576 # auxiliary information. All gitweb installations recognize
577 # URL in either format; this configures in which formats gitweb
580 # To enable system wide have in $GITWEB_CONFIG
581 # $feature{'pathinfo'}{'default'} = [1];
582 # Project specific override is not supported.
584 # Note that you will need to change the default location of CSS,
585 # favicon, logo and possibly other files to an absolute URL. Also,
586 # if gitweb.cgi serves as your indexfile, you will need to force
587 # $my_uri to contain the script name in your $GITWEB_CONFIG (and you
588 # will also likely want to set $home_link if you're setting $my_uri).
593 # Make gitweb consider projects in project root subdirectories
594 # to be forks of existing projects. Given project $projname.git,
595 # projects matching $projname/*.git will not be shown in the main
596 # projects list, instead a '+' mark will be added to $projname
597 # there and a 'forks' view will be enabled for the project, listing
598 # all the forks. If project list is taken from a file, forks have
599 # to be listed after the main project.
601 # To enable system wide have in $GITWEB_CONFIG
602 # $feature{'forks'}{'default'} = [1];
603 # Project specific override is not supported.
608 # Insert custom links to the action bar of all project pages.
609 # This enables you mainly to link to third-party scripts integrating
610 # into gitweb; e.g. git-browser for graphical history representation
611 # or custom web-based repository administration interface.
613 # The 'default' value consists of a list of triplets in the form
614 # (label, link, position) where position is the label after which
615 # to insert the link and link is a format string where %n expands
616 # to the project name, %f to the project path within the filesystem,
617 # %h to the current hash (h gitweb parameter) and %b to the current
618 # hash base (hb gitweb parameter); %% expands to %.
620 # To enable system wide have in $GITWEB_CONFIG e.g.
621 # $feature{'actions'}{'default'} = [('graphiclog',
622 # '/git-browser/by-commit.html?r=%n', 'summary')];
623 # Project specific override is not supported.
628 # Allow gitweb scan project content tags of project repository,
629 # and display the popular Web 2.0-ish "tag cloud" near the projects
630 # list. Note that this is something COMPLETELY different from the
633 # gitweb by itself can show existing tags, but it does not handle
634 # tagging itself; you need to do it externally, outside gitweb.
635 # The format is described in git_get_project_ctags() subroutine.
636 # You may want to install the HTML::TagCloud Perl module to get
637 # a pretty tag cloud instead of just a list of tags.
639 # To enable system wide have in $GITWEB_CONFIG
640 # $feature{'ctags'}{'default'} = [1];
641 # Project specific override is not supported.
643 # A value of 0 means no ctags display or editing. A value of
644 # 1 enables ctags display but never editing. A non-empty value
645 # that is not a string of digits enables ctags display AND the
646 # ability to add tags using a form that uses method POST and
647 # an action value set to the configured 'ctags' value.
652 # The maximum number of patches in a patchset generated in patch
653 # view. Set this to 0 or undef to disable patch view, or to a
654 # negative number to remove any limit.
656 # To disable system wide have in $GITWEB_CONFIG
657 # $feature{'patches'}{'default'} = [0];
658 # To have project specific config enable override in $GITWEB_CONFIG
659 # $feature{'patches'}{'override'} = 1;
660 # and in project config gitweb.patches = 0|n;
661 # where n is the maximum number of patches allowed in a patchset.
663 'sub' => \
&feature_patches
,
667 # Avatar support. When this feature is enabled, views such as
668 # shortlog or commit will display an avatar associated with
669 # the email of the committer(s) and/or author(s).
671 # Currently available providers are gravatar and picon.
672 # If an unknown provider is specified, the feature is disabled.
674 # Gravatar depends on Digest::MD5.
675 # Picon currently relies on the indiana.edu database.
677 # To enable system wide have in $GITWEB_CONFIG
678 # $feature{'avatar'}{'default'} = ['<provider>'];
679 # where <provider> is either gravatar or picon.
680 # To have project specific config enable override in $GITWEB_CONFIG
681 # $feature{'avatar'}{'override'} = 1;
682 # and in project config gitweb.avatar = <provider>;
684 'sub' => \
&feature_avatar
,
688 # Enable displaying how much time and how many git commands
689 # it took to generate and display page. Disabled by default.
690 # Project specific override is not supported.
695 # Enable turning some links into links to actions which require
696 # JavaScript to run (like 'blame_incremental'). Not enabled by
697 # default. Project specific override is currently not supported.
698 'javascript-actions' => {
702 # Enable and configure ability to change common timezone for dates
703 # in gitweb output via JavaScript. Enabled by default.
704 # Project specific override is not supported.
705 'javascript-timezone' => {
708 'local', # default timezone: 'utc', 'local', or '(-|+)HHMM' format,
709 # or undef to turn off this feature
710 'gitweb_tz', # name of cookie where to store selected timezone
711 'datetime', # CSS class used to mark up dates for manipulation
714 # Syntax highlighting support. This is based on Daniel Svensson's
715 # and Sham Chukoury's work in gitweb-xmms2.git.
716 # It requires the 'highlight' program present in $PATH,
717 # and therefore is disabled by default.
719 # To enable system wide have in $GITWEB_CONFIG
720 # $feature{'highlight'}{'default'} = [1];
723 'sub' => sub { feature_bool
('highlight', @_) },
727 # Enable displaying of remote heads in the heads list
729 # To enable system wide have in $GITWEB_CONFIG
730 # $feature{'remote_heads'}{'default'} = [1];
731 # To have project specific config enable override in $GITWEB_CONFIG
732 # $feature{'remote_heads'}{'override'} = 1;
733 # and in project config gitweb.remoteheads = 0|1;
735 'sub' => sub { feature_bool
('remote_heads', @_) },
739 # Enable showing branches under other refs in addition to heads
741 # To set system wide extra branch refs have in $GITWEB_CONFIG
742 # $feature{'extra-branch-refs'}{'default'} = ['dirs', 'of', 'choice'];
743 # To have project specific config enable override in $GITWEB_CONFIG
744 # $feature{'extra-branch-refs'}{'override'} = 1;
745 # and in project config gitweb.extrabranchrefs = dirs of choice
746 # Every directory is separated with whitespace.
748 'extra-branch-refs' => {
749 'sub' => \
&feature_extra_branch_refs
,
754 sub gitweb_get_feature
{
756 return unless exists $feature{$name};
757 my ($sub, $override, @defaults) = (
758 $feature{$name}{'sub'},
759 $feature{$name}{'override'},
760 @
{$feature{$name}{'default'}});
761 # project specific override is possible only if we have project
762 our $git_dir; # global variable, declared later
763 if (!$override || !defined $git_dir) {
767 warn "feature $name is not overridable";
770 return $sub->(@defaults);
773 # A wrapper to check if a given feature is enabled.
774 # With this, you can say
776 # my $bool_feat = gitweb_check_feature('bool_feat');
777 # gitweb_check_feature('bool_feat') or somecode;
781 # my ($bool_feat) = gitweb_get_feature('bool_feat');
782 # (gitweb_get_feature('bool_feat'))[0] or somecode;
784 sub gitweb_check_feature
{
785 return (gitweb_get_feature
(@_))[0];
791 my ($val) = git_get_project_config
($key, '--bool');
795 } elsif ($val eq 'true') {
797 } elsif ($val eq 'false') {
802 sub feature_snapshot
{
805 my ($val) = git_get_project_config
('snapshot');
808 @fmts = ($val eq 'none' ?
() : split /\s*[,\s]\s*/, $val);
814 sub feature_patches
{
815 my @val = (git_get_project_config
('patches', '--int'));
825 my @val = (git_get_project_config
('avatar'));
827 return @val ?
@val : @_;
830 sub feature_extra_branch_refs
{
831 my (@branch_refs) = @_;
832 my $values = git_get_project_config
('extrabranchrefs');
835 $values = config_to_multi
($values);
837 foreach my $value (@
{$values}) {
838 push @branch_refs, split /\s+/, $value;
845 # checking HEAD file with -e is fragile if the repository was
846 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
848 sub check_head_link
{
850 my $headfile = "$dir/HEAD";
851 return ((-e
$headfile) ||
852 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
855 sub check_export_ok
{
857 return (check_head_link
($dir) &&
858 (!$export_ok || -e
"$dir/$export_ok") &&
859 (!$export_auth_hook || $export_auth_hook->($dir)));
862 # process alternate names for backward compatibility
863 # filter out unsupported (unknown) snapshot formats
864 sub filter_snapshot_fmts
{
868 exists $known_snapshot_format_aliases{$_} ?
869 $known_snapshot_format_aliases{$_} : $_} @fmts;
871 exists $known_snapshot_formats{$_} &&
872 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
875 sub filter_and_validate_refs
{
877 my %unique_refs = ();
879 foreach my $ref (@refs) {
880 die_error
(500, "Invalid ref '$ref' in 'extra-branch-refs' feature") unless (is_valid_ref_format
($ref));
881 # 'heads' are added implicitly in get_branch_refs().
882 $unique_refs{$ref} = 1 if ($ref ne 'heads');
884 return sort keys %unique_refs;
887 # If it is set to code reference, it is code that it is to be run once per
888 # request, allowing updating configurations that change with each request,
889 # while running other code in config file only once.
891 # Otherwise, if it is false then gitweb would process config file only once;
892 # if it is true then gitweb config would be run for each request.
893 our $per_request_config = 1;
895 # If true and fileno STDIN is 0 and getsockname succeeds and getpeername fails
896 # with ENOTCONN, then FCGI mode will be activated automatically in just the
897 # same way as though the --fcgi option had been given instead.
900 # read and parse gitweb config file given by its parameter.
901 # returns true on success, false on recoverable error, allowing
902 # to chain this subroutine, using first file that exists.
903 # dies on errors during parsing config file, as it is unrecoverable.
904 sub read_config_file
{
905 my $filename = shift;
906 return unless defined $filename;
907 # die if there are errors parsing config file
916 our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM, $GITWEB_CONFIG_COMMON);
917 sub evaluate_gitweb_config
{
918 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
919 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
920 our $GITWEB_CONFIG_COMMON = $ENV{'GITWEB_CONFIG_COMMON'} || "++GITWEB_CONFIG_COMMON++";
922 # Protect against duplications of file names, to not read config twice.
923 # Only one of $GITWEB_CONFIG and $GITWEB_CONFIG_SYSTEM is used, so
924 # there possibility of duplication of filename there doesn't matter.
925 $GITWEB_CONFIG = "" if ($GITWEB_CONFIG eq $GITWEB_CONFIG_COMMON);
926 $GITWEB_CONFIG_SYSTEM = "" if ($GITWEB_CONFIG_SYSTEM eq $GITWEB_CONFIG_COMMON);
928 # Common system-wide settings for convenience.
929 # Those settings can be ovverriden by GITWEB_CONFIG or GITWEB_CONFIG_SYSTEM.
930 read_config_file
($GITWEB_CONFIG_COMMON);
932 # Use first config file that exists. This means use the per-instance
933 # GITWEB_CONFIG if exists, otherwise use GITWEB_SYSTEM_CONFIG.
934 read_config_file
($GITWEB_CONFIG) and return;
935 read_config_file
($GITWEB_CONFIG_SYSTEM);
938 # Get loadavg of system, to compare against $maxload.
939 # Currently it requires '/proc/loadavg' present to get loadavg;
940 # if it is not present it returns 0, which means no load checking.
942 if( -e
'/proc/loadavg' ){
943 open my $fd, '<', '/proc/loadavg'
945 my @load = split(/\s+/, scalar <$fd>);
948 # The first three columns measure CPU and IO utilization of the last one,
949 # five, and 10 minute periods. The fourth column shows the number of
950 # currently running processes and the total number of processes in the m/n
951 # format. The last column displays the last process ID used.
952 return $load[0] || 0;
954 # additional checks for load average should go here for things that don't export
960 # version of the core git binary
962 sub evaluate_git_version
{
963 our $git_version = qx("$GIT" --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
964 $number_of_git_cmds++;
968 if (defined $maxload && get_loadavg
() > $maxload) {
969 die_error
(503, "The load average on the server is too high");
973 # ======================================================================
974 # input validation and dispatch
976 # input parameters can be collected from a variety of sources (presently, CGI
977 # and PATH_INFO), so we define an %input_params hash that collects them all
978 # together during validation: this allows subsequent uses (e.g. href()) to be
979 # agnostic of the parameter origin
981 our %input_params = ();
983 # input parameters are stored with the long parameter name as key. This will
984 # also be used in the href subroutine to convert parameters to their CGI
985 # equivalent, and since the href() usage is the most frequent one, we store
986 # the name -> CGI key mapping here, instead of the reverse.
988 # XXX: Warning: If you touch this, check the search form for updating,
991 our @cgi_param_mapping = (
999 hash_parent_base
=> "hpb",
1004 snapshot_format
=> "sf",
1006 extra_options
=> "opt",
1007 search_use_regexp
=> "sr",
1010 project_filter
=> "pf",
1011 # this must be last entry (for manipulation from JavaScript)
1014 our %cgi_param_mapping = @cgi_param_mapping;
1016 # we will also need to know the possible actions, for validation
1018 "blame" => \
&git_blame
,
1019 "blame_incremental" => \
&git_blame_incremental
,
1020 "blame_data" => \
&git_blame_data
,
1021 "blobdiff" => \
&git_blobdiff
,
1022 "blobdiff_plain" => \
&git_blobdiff_plain
,
1023 "blob" => \
&git_blob
,
1024 "blob_plain" => \
&git_blob_plain
,
1025 "commitdiff" => \
&git_commitdiff
,
1026 "commitdiff_plain" => \
&git_commitdiff_plain
,
1027 "commit" => \
&git_commit
,
1028 "forks" => \
&git_forks
,
1029 "heads" => \
&git_heads
,
1030 "history" => \
&git_history
,
1032 "patch" => \
&git_patch
,
1033 "patches" => \
&git_patches
,
1034 "remotes" => \
&git_remotes
,
1036 "atom" => \
&git_atom
,
1037 "search" => \
&git_search
,
1038 "search_help" => \
&git_search_help
,
1039 "shortlog" => \
&git_shortlog
,
1040 "summary" => \
&git_summary
,
1042 "tags" => \
&git_tags
,
1043 "tree" => \
&git_tree
,
1044 "snapshot" => \
&git_snapshot
,
1045 "object" => \
&git_object
,
1046 # those below don't need $project
1047 "opml" => \
&git_opml
,
1048 "frontpage" => \
&git_frontpage
,
1049 "project_list" => \
&git_project_list
,
1050 "project_index" => \
&git_project_index
,
1053 # the only actions we will allow to be cached
1054 my %supported_cache_actions;
1055 BEGIN {%supported_cache_actions = map {( $_ => 1 )} qw(summary)}
1057 # finally, we have the hash of allowed extra_options for the commands that
1059 our %allowed_options = (
1060 "--no-merges" => [ qw(rss atom log shortlog history) ],
1063 # fill %input_params with the CGI parameters. All values except for 'opt'
1064 # should be single values, but opt can be an array. We should probably
1065 # build an array of parameters that can be multi-valued, but since for the time
1066 # being it's only this one, we just single it out
1067 sub evaluate_query_params
{
1070 while (my ($name, $symbol) = each %cgi_param_mapping) {
1071 if ($symbol eq 'opt') {
1072 $input_params{$name} = [ map { decode_utf8
($_) } $cgi->multi_param($symbol) ];
1074 $input_params{$name} = decode_utf8
($cgi->param($symbol));
1078 # Backwards compatibility - by_tag= <=> t=
1079 if ($input_params{'ctag'}) {
1080 $input_params{'ctag_filter'} = $input_params{'ctag'};
1084 # now read PATH_INFO and update the parameter list for missing parameters
1085 sub evaluate_path_info
{
1086 return if defined $input_params{'project'};
1087 return if !$path_info;
1088 $path_info =~ s
,^/+,,;
1089 return if !$path_info;
1091 # find which part of PATH_INFO is project
1092 my $project = $path_info;
1093 $project =~ s
,/+$,,;
1094 while ($project && !check_head_link
("$projectroot/$project")) {
1095 $project =~ s
,/*[^/]*$,,;
1097 return unless $project;
1098 $input_params{'project'} = $project;
1100 # do not change any parameters if an action is given using the query string
1101 return if $input_params{'action'};
1102 $path_info =~ s
,^\Q
$project\E
/*,,;
1104 # next, check if we have an action
1105 my $action = $path_info;
1106 $action =~ s
,/.*$,,;
1107 if (exists $actions{$action}) {
1108 $path_info =~ s
,^$action/*,,;
1109 $input_params{'action'} = $action;
1112 # list of actions that want hash_base instead of hash, but can have no
1113 # pathname (f) parameter
1119 # we want to catch, among others
1120 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
1121 my ($parentrefname, $parentpathname, $refname, $pathname) =
1122 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
1124 # first, analyze the 'current' part
1125 if (defined $pathname) {
1126 # we got "branch:filename" or "branch:dir/"
1127 # we could use git_get_type(branch:pathname), but:
1128 # - it needs $git_dir
1129 # - it does a git() call
1130 # - the convention of terminating directories with a slash
1131 # makes it superfluous
1132 # - embedding the action in the PATH_INFO would make it even
1134 $pathname =~ s
,^/+,,;
1135 if (!$pathname || substr($pathname, -1) eq "/") {
1136 $input_params{'action'} ||= "tree";
1137 $pathname =~ s
,/$,,;
1139 # the default action depends on whether we had parent info
1141 if ($parentrefname) {
1142 $input_params{'action'} ||= "blobdiff_plain";
1144 $input_params{'action'} ||= "blob_plain";
1147 $input_params{'hash_base'} ||= $refname;
1148 $input_params{'file_name'} ||= $pathname;
1149 } elsif (defined $refname) {
1150 # we got "branch". In this case we have to choose if we have to
1151 # set hash or hash_base.
1153 # Most of the actions without a pathname only want hash to be
1154 # set, except for the ones specified in @wants_base that want
1155 # hash_base instead. It should also be noted that hand-crafted
1156 # links having 'history' as an action and no pathname or hash
1157 # set will fail, but that happens regardless of PATH_INFO.
1158 if (defined $parentrefname) {
1159 # if there is parent let the default be 'shortlog' action
1160 # (for http://git.example.com/repo.git/A..B links); if there
1161 # is no parent, dispatch will detect type of object and set
1162 # action appropriately if required (if action is not set)
1163 $input_params{'action'} ||= "shortlog";
1165 if ($input_params{'action'} &&
1166 grep { $_ eq $input_params{'action'} } @wants_base) {
1167 $input_params{'hash_base'} ||= $refname;
1169 $input_params{'hash'} ||= $refname;
1173 # next, handle the 'parent' part, if present
1174 if (defined $parentrefname) {
1175 # a missing pathspec defaults to the 'current' filename, allowing e.g.
1176 # someproject/blobdiff/oldrev..newrev:/filename
1177 if ($parentpathname) {
1178 $parentpathname =~ s
,^/+,,;
1179 $parentpathname =~ s
,/$,,;
1180 $input_params{'file_parent'} ||= $parentpathname;
1182 $input_params{'file_parent'} ||= $input_params{'file_name'};
1184 # we assume that hash_parent_base is wanted if a path was specified,
1185 # or if the action wants hash_base instead of hash
1186 if (defined $input_params{'file_parent'} ||
1187 grep { $_ eq $input_params{'action'} } @wants_base) {
1188 $input_params{'hash_parent_base'} ||= $parentrefname;
1190 $input_params{'hash_parent'} ||= $parentrefname;
1194 # for the snapshot action, we allow URLs in the form
1195 # $project/snapshot/$hash.ext
1196 # where .ext determines the snapshot and gets removed from the
1197 # passed $refname to provide the $hash.
1199 # To be able to tell that $refname includes the format extension, we
1200 # require the following two conditions to be satisfied:
1201 # - the hash input parameter MUST have been set from the $refname part
1202 # of the URL (i.e. they must be equal)
1203 # - the snapshot format MUST NOT have been defined already (e.g. from
1205 # It's also useless to try any matching unless $refname has a dot,
1206 # so we check for that too
1207 if (defined $input_params{'action'} &&
1208 $input_params{'action'} eq 'snapshot' &&
1209 defined $refname && index($refname, '.') != -1 &&
1210 $refname eq $input_params{'hash'} &&
1211 !defined $input_params{'snapshot_format'}) {
1212 # We loop over the known snapshot formats, checking for
1213 # extensions. Allowed extensions are both the defined suffix
1214 # (which includes the initial dot already) and the snapshot
1215 # format key itself, with a prepended dot
1216 while (my ($fmt, $opt) = each %known_snapshot_formats) {
1217 my $hash = $refname;
1218 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
1222 # a valid suffix was found, so set the snapshot format
1223 # and reset the hash parameter
1224 $input_params{'snapshot_format'} = $fmt;
1225 $input_params{'hash'} = $hash;
1226 # we also set the format suffix to the one requested
1227 # in the URL: this way a request for e.g. .tgz returns
1228 # a .tgz instead of a .tar.gz
1229 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
1235 our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
1236 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
1237 $searchtext, $search_regexp, $project_filter);
1238 sub evaluate_and_validate_params
{
1239 our $action = $input_params{'action'};
1240 if (defined $action) {
1241 if (!is_valid_action
($action)) {
1242 die_error
(400, "Invalid action parameter");
1246 # parameters which are pathnames
1247 our $project = $input_params{'project'};
1248 if (defined $project) {
1249 if (!is_valid_project
($project)) {
1251 die_error
(404, "No such project");
1255 our $project_filter = $input_params{'project_filter'};
1256 if (defined $project_filter) {
1257 if (!is_valid_pathname
($project_filter)) {
1258 die_error
(404, "Invalid project_filter parameter");
1262 our $file_name = $input_params{'file_name'};
1263 if (defined $file_name) {
1264 if (!is_valid_pathname
($file_name)) {
1265 die_error
(400, "Invalid file parameter");
1269 our $file_parent = $input_params{'file_parent'};
1270 if (defined $file_parent) {
1271 if (!is_valid_pathname
($file_parent)) {
1272 die_error
(400, "Invalid file parent parameter");
1276 # parameters which are refnames
1277 our $hash = $input_params{'hash'};
1278 if (defined $hash) {
1279 if (!is_valid_refname
($hash)) {
1280 die_error
(400, "Invalid hash parameter");
1284 our $hash_parent = $input_params{'hash_parent'};
1285 if (defined $hash_parent) {
1286 if (!is_valid_refname
($hash_parent)) {
1287 die_error
(400, "Invalid hash parent parameter");
1291 our $hash_base = $input_params{'hash_base'};
1292 if (defined $hash_base) {
1293 if (!is_valid_refname
($hash_base)) {
1294 die_error
(400, "Invalid hash base parameter");
1298 our @extra_options = @
{$input_params{'extra_options'}};
1299 # @extra_options is always defined, since it can only be (currently) set from
1300 # CGI, and $cgi->param() returns the empty array in array context if the param
1302 foreach my $opt (@extra_options) {
1303 if (not exists $allowed_options{$opt}) {
1304 die_error
(400, "Invalid option parameter");
1306 if (not grep(/^$action$/, @
{$allowed_options{$opt}})) {
1307 die_error
(400, "Invalid option parameter for this action");
1311 our $hash_parent_base = $input_params{'hash_parent_base'};
1312 if (defined $hash_parent_base) {
1313 if (!is_valid_refname
($hash_parent_base)) {
1314 die_error
(400, "Invalid hash parent base parameter");
1319 our $page = $input_params{'page'};
1320 if (defined $page) {
1321 if ($page =~ m/[^0-9]/) {
1322 die_error
(400, "Invalid page parameter");
1326 our $searchtype = $input_params{'searchtype'};
1327 if (defined $searchtype) {
1328 if ($searchtype =~ m/[^a-z]/) {
1329 die_error
(400, "Invalid searchtype parameter");
1333 our $search_use_regexp = $input_params{'search_use_regexp'};
1335 our $searchtext = $input_params{'searchtext'};
1336 our $search_regexp = undef;
1337 if (defined $searchtext) {
1338 if (length($searchtext) < 2) {
1339 die_error
(403, "At least two characters are required for search parameter");
1341 if ($search_use_regexp) {
1342 $search_regexp = $searchtext;
1343 if (!eval { qr/$search_regexp/; 1; }) {
1344 (my $error = $@
) =~ s/ at \S+ line \d+.*\n?//;
1345 die_error
(400, "Invalid search regexp '$search_regexp'",
1349 $search_regexp = quotemeta $searchtext;
1354 # path to the current git repository
1356 sub evaluate_git_dir
{
1357 our $git_dir = $project ?
"$projectroot/$project" : undef;
1360 our (@snapshot_fmts, $git_avatar, @extra_branch_refs);
1361 sub configure_gitweb_features
{
1362 # list of supported snapshot formats
1363 our @snapshot_fmts = gitweb_get_feature
('snapshot');
1364 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1366 # check that the avatar feature is set to a known provider name,
1367 # and for each provider check if the dependencies are satisfied.
1368 # if the provider name is invalid or the dependencies are not met,
1369 # reset $git_avatar to the empty string.
1370 our ($git_avatar) = gitweb_get_feature
('avatar');
1371 if ($git_avatar eq 'gravatar') {
1372 $git_avatar = '' unless (eval { require Digest
::MD5
; 1; });
1373 } elsif ($git_avatar eq 'picon') {
1379 our @extra_branch_refs = gitweb_get_feature
('extra-branch-refs');
1380 @extra_branch_refs = filter_and_validate_refs
(@extra_branch_refs);
1383 sub get_branch_refs
{
1384 return ('heads', @extra_branch_refs);
1387 # custom error handler: 'die <message>' is Internal Server Error
1388 sub handle_errors_html
{
1389 my $msg = shift; # it is already HTML escaped
1391 # to avoid infinite loop where error occurs in die_error,
1392 # change handler to default handler, disabling handle_errors_html
1393 set_message
("Error occurred when inside die_error:\n$msg");
1395 # you cannot jump out of die_error when called as error handler;
1396 # the subroutine set via CGI::Carp::set_message is called _after_
1397 # HTTP headers are already written, so it cannot write them itself
1398 die_error
(undef, undef, $msg, -error_handler
=> 1, -no_http_header
=> 1);
1400 set_message
(\
&handle_errors_html
);
1402 our $shown_stale_message = 0;
1403 our $cache_dump = undef;
1404 our $cache_dump_mtime = undef;
1407 my $cache_mode_active;
1409 $shown_stale_message = 0;
1410 if (!defined $action) {
1411 if (defined $hash) {
1412 $action = git_get_type
($hash);
1413 $action or die_error
(404, "Object does not exist");
1414 } elsif (defined $hash_base && defined $file_name) {
1415 $action = git_get_type
("$hash_base:$file_name");
1416 $action or die_error
(404, "File or directory does not exist");
1417 } elsif (defined $project) {
1418 $action = 'summary';
1420 $action = 'frontpage';
1423 if (!defined($actions{$action})) {
1424 die_error
(400, "Unknown action");
1426 if ($action !~ m/^(?:opml|frontpage|project_list|project_index)$/ &&
1428 die_error
(400, "Project needed");
1431 my $cached_page = $supported_cache_actions{$action}
1432 ? cached_action_page
($action)
1434 goto DUMPCACHE
if $cached_page;
1435 local *SAVEOUT
= *STDOUT
;
1436 $cache_mode_active = $supported_cache_actions{$action}
1437 ? cached_action_start
($action)
1440 configure_gitweb_features
();
1441 $actions{$action}->();
1443 return unless $cache_mode_active;
1445 $cached_page = cached_action_finish
($action);
1450 $cache_mode_active = 0;
1451 # Avoid any extra unwanted encoding steps as $cached_page is raw bytes
1452 binmode STDOUT
, ':raw';
1453 our $fcgi_raw_mode = 1;
1454 print expand_gitweb_pi
($cached_page, time);
1455 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
1460 our $t0 = [ gettimeofday
() ]
1462 our $number_of_git_cmds = 0;
1465 our $first_request = 1;
1466 our $evaluate_uri_force = undef;
1470 # do not reuse stale config or project list from prior FCGI request
1471 our $config_file = '';
1472 our $gitweb_project_owner = undef;
1474 # Only allow GET and HEAD methods
1475 if (!$ENV{'REQUEST_METHOD'} || ($ENV{'REQUEST_METHOD'} ne 'GET' && $ENV{'REQUEST_METHOD'} ne 'HEAD')) {
1477 Status: 405 Method Not Allowed
1478 Content-Type: text/plain
1481 405 Method Not Allowed
1487 &$evaluate_uri_force() if $evaluate_uri_force;
1488 if ($per_request_config) {
1489 if (ref($per_request_config) eq 'CODE') {
1490 $per_request_config->();
1491 } elsif (!$first_request) {
1492 evaluate_gitweb_config
();
1497 # $projectroot and $projects_list might be set in gitweb config file
1498 $projects_list ||= $projectroot;
1500 evaluate_query_params
();
1501 evaluate_path_info
();
1502 evaluate_and_validate_params
();
1508 our $is_last_request = sub { 1 };
1509 our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1513 our $fcgi_nproc_active = 0;
1514 our $fcgi_raw_mode = 0;
1517 my $stdinfno = fileno STDIN
;
1518 return 0 unless defined $stdinfno && $stdinfno == 0;
1519 return 0 unless getsockname STDIN
;
1520 return 0 if getpeername STDIN
;
1521 return $!{ENOTCONN
}?
1:0;
1523 sub configure_as_fcgi
{
1524 return if $fcgi_mode;
1529 # We have gone to great effort to make sure that all incoming data has
1530 # been converted from whatever format it was in into UTF-8. We have
1531 # even taken care to make sure the output handle is in ':utf8' mode.
1532 # Now along comes FCGI and blows it with:
1534 # Use of wide characters in FCGI::Stream::PRINT is deprecated
1535 # and will stop wprking[sic] in a future version of FCGI
1537 # To fix this we replace FCGI::Stream::PRINT with our own routine that
1538 # first encodes everything and then calls the original routine, but
1539 # not if $fcgi_raw_mode is true (then we just call the original routine).
1541 # Note that we could do this by using utf8::is_utf8 to check instead
1542 # of having a $fcgi_raw_mode global, but that would be slower to run
1543 # the test on each element and much slower than skipping the conversion
1544 # entirely when we know we're outputting raw bytes.
1545 my $orig = \
&FCGI
::Stream
::PRINT
;
1546 undef *FCGI
::Stream
::PRINT
;
1547 *FCGI
::Stream
::PRINT
= sub {
1548 @_ = (shift, map {my $x=$_; utf8
::encode
($x); $x} @_)
1549 unless $fcgi_raw_mode;
1553 our $CGI = 'CGI::Fast';
1557 my $request_number = 0;
1558 # let each child service 100 requests
1559 our $is_last_request = sub { ++$request_number > 100 };
1562 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__
;
1564 if $script_name =~ /\.fcgi$/ || ($auto_fcgi && is_fcgi
());
1566 my $nproc_sub = sub {
1567 my ($arg, $val) = @_;
1568 return unless eval { require FCGI
::ProcManager
; 1; };
1569 $fcgi_nproc_active = 1;
1570 my $proc_manager = FCGI
::ProcManager
->new({
1571 n_processes
=> $val,
1573 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1574 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1575 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1578 require Getopt
::Long
;
1579 Getopt
::Long
::GetOptions
(
1580 'fastcgi|fcgi|f' => \
&configure_as_fcgi
,
1581 'nproc|n=i' => $nproc_sub,
1584 if (!$fcgi_nproc_active && defined $ENV{'GITWEB_FCGI_NPROC'} && $ENV{'GITWEB_FCGI_NPROC'} =~ /^\d+$/) {
1585 &$nproc_sub('nproc', $ENV{'GITWEB_FCGI_NPROC'});
1590 evaluate_gitweb_config
();
1591 evaluate_git_version
();
1592 my ($mu, $hl, $subroutine) = ($my_uri, $home_link, '');
1593 $subroutine .= '$my_uri = $mu;' if defined $my_uri && $my_uri ne '';
1594 $subroutine .= '$home_link = $hl;' if defined $home_link && $home_link ne '';
1595 $evaluate_uri_force = eval "sub {$subroutine}" if $subroutine;
1599 $pre_listen_hook->()
1600 if $pre_listen_hook;
1603 while ($cgi = $CGI->new()) {
1604 $pre_dispatch_hook->()
1605 if $pre_dispatch_hook;
1609 $post_dispatch_hook->()
1610 if $post_dispatch_hook;
1613 last REQUEST
if ($is_last_request->());
1622 if (defined caller) {
1623 # wrapped in a subroutine processing requests,
1624 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1627 # pure CGI script, serving single request
1631 ## ======================================================================
1634 # possible values of extra options
1635 # -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1636 # -replay => 1 - start from a current view (replay with modifications)
1637 # -path_info => 0|1 - don't use/use path_info URL (if possible)
1638 # -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone
1641 # default is to use -absolute url() i.e. $my_uri
1642 my $href = $params{-full
} ?
$my_url : $my_uri;
1644 # implicit -replay, must be first of implicit params
1645 $params{-replay
} = 1 if (keys %params == 1 && $params{-anchor
});
1647 $params{'project'} = $project unless exists $params{'project'};
1649 if ($params{-replay
}) {
1650 while (my ($name, $symbol) = each %cgi_param_mapping) {
1651 if (!exists $params{$name}) {
1652 $params{$name} = $input_params{$name};
1657 my $use_pathinfo = gitweb_check_feature
('pathinfo');
1658 if (defined $params{'project'} &&
1659 (exists $params{-path_info
} ?
$params{-path_info
} : $use_pathinfo)) {
1660 # try to put as many parameters as possible in PATH_INFO:
1663 # - hash_parent or hash_parent_base:/file_parent
1664 # - hash or hash_base:/filename
1665 # - the snapshot_format as an appropriate suffix
1667 # When the script is the root DirectoryIndex for the domain,
1668 # $href here would be something like http://gitweb.example.com/
1669 # Thus, we strip any trailing / from $href, to spare us double
1670 # slashes in the final URL
1673 # Then add the project name, if present
1674 $href .= "/".esc_path_info
($params{'project'});
1675 delete $params{'project'};
1677 # since we destructively absorb parameters, we keep this
1678 # boolean that remembers if we're handling a snapshot
1679 my $is_snapshot = $params{'action'} eq 'snapshot';
1681 # Summary just uses the project path URL, any other action is
1683 if (defined $params{'action'}) {
1684 $href .= "/".esc_path_info
($params{'action'})
1685 unless $params{'action'} eq 'summary';
1686 delete $params{'action'};
1689 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1690 # stripping nonexistent or useless pieces
1691 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1692 || $params{'hash_parent'} || $params{'hash'});
1693 if (defined $params{'hash_base'}) {
1694 if (defined $params{'hash_parent_base'}) {
1695 $href .= esc_path_info
($params{'hash_parent_base'});
1696 # skip the file_parent if it's the same as the file_name
1697 if (defined $params{'file_parent'}) {
1698 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1699 delete $params{'file_parent'};
1700 } elsif ($params{'file_parent'} !~ /\.\./) {
1701 $href .= ":/".esc_path_info
($params{'file_parent'});
1702 delete $params{'file_parent'};
1706 delete $params{'hash_parent'};
1707 delete $params{'hash_parent_base'};
1708 } elsif (defined $params{'hash_parent'}) {
1709 $href .= esc_path_info
($params{'hash_parent'}). "..";
1710 delete $params{'hash_parent'};
1713 $href .= esc_path_info
($params{'hash_base'});
1714 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1715 $href .= ":/".esc_path_info
($params{'file_name'});
1716 delete $params{'file_name'};
1718 delete $params{'hash'};
1719 delete $params{'hash_base'};
1720 } elsif (defined $params{'hash'}) {
1721 $href .= esc_path_info
($params{'hash'});
1722 delete $params{'hash'};
1725 # If the action was a snapshot, we can absorb the
1726 # snapshot_format parameter too
1728 my $fmt = $params{'snapshot_format'};
1729 # snapshot_format should always be defined when href()
1730 # is called, but just in case some code forgets, we
1731 # fall back to the default
1732 $fmt ||= $snapshot_fmts[0];
1733 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1734 delete $params{'snapshot_format'};
1738 # now encode the parameters explicitly
1740 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1741 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1742 if (defined $params{$name}) {
1743 if (ref($params{$name}) eq "ARRAY") {
1744 foreach my $par (@
{$params{$name}}) {
1745 push @result, $symbol . "=" . esc_param
($par);
1748 push @result, $symbol . "=" . esc_param
($params{$name});
1752 $href .= "?" . join(';', @result) if scalar @result;
1754 # final transformation: trailing spaces must be escaped (URI-encoded)
1755 $href =~ s/(\s+)$/CGI::escape($1)/e;
1757 if ($params{-anchor
}) {
1758 $href .= "#".esc_param
($params{-anchor
});
1765 ## ======================================================================
1766 ## validation, quoting/unquoting and escaping
1768 sub is_valid_action
{
1770 return undef unless exists $actions{$input};
1774 sub is_valid_project
{
1777 return unless defined $input;
1778 if (!is_valid_pathname
($input) ||
1779 !(-d
"$projectroot/$input") ||
1780 !check_export_ok
("$projectroot/$input") ||
1781 ($strict_export && !project_in_list
($input))) {
1788 sub is_valid_pathname
{
1791 return undef unless defined $input;
1792 # no '.' or '..' as elements of path, i.e. no '.' or '..'
1793 # at the beginning, at the end, and between slashes.
1794 # also this catches doubled slashes
1795 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1798 # no null characters
1799 if ($input =~ m!\0!) {
1805 sub is_valid_ref_format
{
1808 return undef unless defined $input;
1809 # restrictions on ref name according to git-check-ref-format
1810 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1816 sub is_valid_refname
{
1819 return undef unless defined $input;
1820 # textual hashes are O.K.
1821 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
1824 # it must be correct pathname
1825 is_valid_pathname
($input) or return undef;
1826 # check git-check-ref-format restrictions
1827 is_valid_ref_format
($input) or return undef;
1831 # decode sequences of octets in utf8 into Perl's internal form,
1832 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1833 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1836 return undef unless defined $str;
1838 if (utf8
::is_utf8
($str) || utf8
::decode
($str)) {
1841 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
1845 # quote unsafe chars, but keep the slash, even when it's not
1846 # correct, but quoted slashes look too horrible in bookmarks
1849 return undef unless defined $str;
1850 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI
::escape
($1)/eg
;
1855 # the quoting rules for path_info fragment are slightly different
1858 return undef unless defined $str;
1860 # path_info doesn't treat '+' as space (specially), but '?' must be escaped
1861 $str =~ s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI
::escape
($1)/eg
;
1866 # quote unsafe chars in whole URL, so some characters cannot be quoted
1869 return undef unless defined $str;
1870 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI
::escape
($1)/eg
;
1875 # quote unsafe characters in HTML attributes
1878 # for XHTML conformance escaping '"' to '"' is not enough
1879 return esc_html
(@_);
1882 # replace invalid utf8 character with SUBSTITUTION sequence
1887 return undef unless defined $str;
1889 $str = to_utf8
($str);
1890 $str = $cgi->escapeHTML($str);
1891 if ($opts{'-nbsp'}) {
1892 $str =~ s/ / /g;
1894 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
1898 # quote control characters and escape filename to HTML
1903 return undef unless defined $str;
1905 $str = to_utf8
($str);
1906 $str = $cgi->escapeHTML($str);
1907 if ($opts{'-nbsp'}) {
1908 $str =~ s/ / /g;
1910 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
1914 # Sanitize for use in XHTML + application/xml+xhtm (valid XML 1.0)
1918 return undef unless defined $str;
1920 $str = to_utf8
($str);
1921 $str =~ s
|([[:cntrl
:]])|(index("\t\n\r", $1) != -1 ?
$1 : quot_cec
($1))|eg
;
1925 # Make control characters "printable", using character escape codes (CEC)
1929 my %es = ( # character escape codes, aka escape sequences
1930 "\t" => '\t', # tab (HT)
1931 "\n" => '\n', # line feed (LF)
1932 "\r" => '\r', # carrige return (CR)
1933 "\f" => '\f', # form feed (FF)
1934 "\b" => '\b', # backspace (BS)
1935 "\a" => '\a', # alarm (bell) (BEL)
1936 "\e" => '\e', # escape (ESC)
1937 "\013" => '\v', # vertical tab (VT)
1938 "\000" => '\0', # nul character (NUL)
1940 my $chr = ( (exists $es{$cntrl})
1942 : sprintf('\%2x', ord($cntrl)) );
1943 if ($opts{-nohtml
}) {
1946 return "<span class=\"cntrl\">$chr</span>";
1950 # Alternatively use unicode control pictures codepoints,
1951 # Unicode "printable representation" (PR)
1956 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1957 if ($opts{-nohtml
}) {
1960 return "<span class=\"cntrl\">$chr</span>";
1964 # git may return quoted and escaped filenames
1970 my %es = ( # character escape codes, aka escape sequences
1971 't' => "\t", # tab (HT, TAB)
1972 'n' => "\n", # newline (NL)
1973 'r' => "\r", # return (CR)
1974 'f' => "\f", # form feed (FF)
1975 'b' => "\b", # backspace (BS)
1976 'a' => "\a", # alarm (bell) (BEL)
1977 'e' => "\e", # escape (ESC)
1978 'v' => "\013", # vertical tab (VT)
1981 if ($seq =~ m/^[0-7]{1,3}$/) {
1982 # octal char sequence
1983 return chr(oct($seq));
1984 } elsif (exists $es{$seq}) {
1985 # C escape sequence, aka character escape code
1988 # quoted ordinary character
1992 if ($str =~ m/^"(.*)"$/) {
1995 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
2000 # escape tabs (convert tabs to spaces)
2004 while ((my $pos = index($line, "\t")) != -1) {
2005 if (my $count = (8 - ($pos % 8))) {
2006 my $spaces = ' ' x
$count;
2007 $line =~ s/\t/$spaces/;
2014 sub project_in_list
{
2015 my $project = shift;
2016 my @list = git_get_projects_list
();
2017 return @list && scalar(grep { $_->{'path'} eq $project } @list);
2020 sub cached_page_precondition_check
{
2023 $action eq 'summary' &&
2024 $projlist_cache_lifetime > 0 &&
2025 gitweb_check_feature
('forks');
2027 # Note that ALL the 'forkchange' logic is in this function.
2028 # It does NOT belong in cached_action_page NOR in cached_action_start
2029 # NOR in cached_action_finish. None of those functions should know anything
2030 # about nor do anything to any of the 'forkchange'/"$action.forkchange" files.
2032 # besides the basic 'changed' "$action.changed" check, we may only use
2033 # a summary cache if:
2035 # 1) we are not using a project list cache file
2037 # 2) we are not using the 'forks' feature
2039 # 3) there is no 'forkchange' nor "$action.forkchange" file in $html_cache_dir
2041 # 4) there is no cache file ("$cache_dir/$projlist_cache_name")
2043 # 5) the OLDER of 'forkchange'/"$action.forkchange" is NEWER than the cache file
2045 # Otherwise we must re-generate the cache because we've had a fork change
2046 # (either a fork was added or a fork was removed) AND the change has been
2047 # picked up in the cache file AND we've not got that in our cached copy
2049 # For (5) regenerating the cached page wouldn't get us anything if the project
2050 # cache file is older than the 'forkchange'/"$action.forkchange" because the
2051 # forks information comes from the project cache file and it's clearly not
2052 # picked up the changes yet so we may continue to use a cached page until it does.
2054 my $htmlcd = "$projectroot/$project/$html_cache_dir";
2055 my $fc_mt = (stat("$htmlcd/forkchange"))[9];
2056 my $afc_mt = (stat("$htmlcd/$action.forkchange"))[9];
2057 return 1 unless defined($fc_mt) || defined($afc_mt);
2058 my $prj_mt = (stat("$cache_dir/$projlist_cache_name"))[9];
2059 return 1 unless $prj_mt;
2060 my $old_mt = $fc_mt;
2061 $old_mt = $afc_mt if !defined($old_mt) || (defined($afc_mt) && $afc_mt < $old_mt);
2062 return 1 if $old_mt > $prj_mt;
2064 # We're going to regenerate the cached page because we know the project cache
2065 # has new fork information that we cannot possibly have in our cached copy.
2067 # However, if both 'forkchange' and "$action.forkchange" exist and one of
2068 # them is older than the project cache and one of them is newer, we still
2069 # need to regenerate the page cache, but we will also need to do it again
2070 # in the future because there's yet another fork update not yet in the cache.
2072 # So we make sure to touch "$action.changed" to force a cache regeneration
2073 # and then we remove either or both of 'forkchange'/"$action.forkchange" if
2074 # they're older than the project cache (they've served their purpose, we're
2075 # forcing a page regeneration by touching "$action.changed" but the project
2076 # cache was rebuilt since then so there are no more pending fork updates to
2077 # pick up in the future and they need to go).
2079 # For best results, the external code that touches 'forkchange' should always
2080 # touch 'forkchange' and additionally touch 'summary.forkchange' but only
2081 # if it does not already exist. That way the cached page will be regenerated
2082 # each time it's requested and ANY fork updates are available in the proj
2083 # cache rather than waiting until they all are before updating.
2085 # Note that we take a shortcut here and will zap 'forkchange' since we know
2086 # that it only affects the 'summary' cache. If, in the future, it affects
2087 # other cache types, it will first need to be propogated down to
2088 # "$action.forkchange" for those types before we zap it.
2091 open $fd, '>', "$htmlcd/$action.changed" and close $fd;
2092 $fc_mt=undef, unlink "$htmlcd/forkchange" if defined $fc_mt && $fc_mt < $prj_mt;
2093 $afc_mt=undef, unlink "$htmlcd/$action.forkchange" if defined $afc_mt && $afc_mt < $prj_mt;
2095 # Now we propagate 'forkchange' to "$action.forkchange" if we have the
2096 # one and not the other.
2098 if (defined $fc_mt && ! defined $afc_mt) {
2099 open $fd, '>', "$htmlcd/$action.forkchange" and close $fd;
2100 -e
"$htmlcd/$action.forkchange" and
2101 utime($fc_mt, $fc_mt, "$htmlcd/$action.forkchange") and
2102 unlink "$htmlcd/forkchange";
2108 sub cached_action_page
{
2111 return undef unless $action && $html_cache_actions{$action} && $html_cache_dir;
2112 my $htmlcd = "$projectroot/$project/$html_cache_dir";
2113 return undef if -e
"$htmlcd/changed" || -e
"$htmlcd/$action.changed";
2114 return undef unless cached_page_precondition_check
($action);
2115 open my $fd, '<', "$htmlcd/$action" or return undef;
2118 my $cached_page = <$fd>;
2119 close $fd or return undef;
2120 return $cached_page;
2123 package Git
::Gitweb
::CacheFile
;
2126 use POSIX
qw(:fcntl_h);
2128 my $cachefile = shift;
2130 sysopen(my $self, $cachefile, O_WRONLY
|O_CREAT
|O_EXCL
, 0664)
2132 $$self->{'cachefile'} = $cachefile;
2133 $$self->{'opened'} = 1;
2134 $$self->{'contents'} = '';
2135 return bless $self, $class;
2140 if ($$self->{'opened'}) {
2141 $$self->{'opened'} = 0;
2142 my $result = close $self;
2143 unlink $$self->{'cachefile'} unless $result;
2151 if ($$self->{'opened'}) {
2152 $self->CLOSE() and unlink $$self->{'cachefile'};
2158 @_ = (map {my $x=$_; utf8
::encode
($x); $x} @_) unless $fcgi_raw_mode;
2159 print $self @_ if $$self->{'opened'};
2160 $$self->{'contents'} .= join('', @_);
2166 my $template = shift;
2167 return $self->PRINT(sprintf $template, @_);
2172 return $$self->{'contents'};
2177 # Caller is responsible for preserving STDOUT beforehand if needed
2178 sub cached_action_start
{
2181 return undef unless $html_cache_actions{$action} && $html_cache_dir;
2182 my $htmlcd = "$projectroot/$project/$html_cache_dir";
2183 return undef unless -d
$htmlcd;
2184 if (-e
"$htmlcd/changed") {
2185 foreach my $cacheable (keys(%html_cache_actions)) {
2186 next unless $supported_cache_actions{$cacheable} &&
2187 $html_cache_actions{$cacheable};
2189 open $fd, '>', "$htmlcd/$cacheable.changed"
2192 unlink "$htmlcd/changed";
2195 tie
*CACHEFILE
, 'Git::Gitweb::CacheFile', "$htmlcd/$action.lock" or return undef;
2196 *STDOUT
= *CACHEFILE
;
2197 unlink "$htmlcd/$action", "$htmlcd/$action.changed";
2201 # Caller is responsible for restoring STDOUT afterward if needed
2202 sub cached_action_finish
{
2207 my $obj = tied *STDOUT
;
2208 return undef unless ref($obj) eq 'Git::Gitweb::CacheFile';
2209 my $cached_page = $obj->contents;
2210 (my $result = close(STDOUT
)) or warn "couldn't close cache file on STDOUT: $!";
2211 # Do not leave STDOUT file descriptor invalid!
2213 open(NULL
, '>', File
::Spec
->devnull) or die "couldn't open NULL to devnull: $!";
2215 return $cached_page unless $result;
2216 my $htmlcd = "$projectroot/$project/$html_cache_dir";
2217 return $cached_page unless -d
$htmlcd;
2218 unlink "$htmlcd/$action.lock" unless rename "$htmlcd/$action.lock", "$htmlcd/$action";
2219 return $cached_page;
2223 BEGIN {%expand_pi_subs = (
2224 'age_string' => \
&age_string
,
2225 'age_string_date' => \
&age_string_date
,
2226 'age_string_age' => \
&age_string_age
,
2227 'compute_timed_interval' => \
&compute_timed_interval
,
2228 'compute_commands_count' => \
&compute_commands_count
,
2229 'format_lastrefresh_row' => \
&format_lastrefresh_row
,
2232 # Expands any <?gitweb...> processing instructions and returns the result
2233 sub expand_gitweb_pi
{
2236 my @time_now = gettimeofday
();
2237 $page =~ s
{<\?gitweb
(?
:\s
+([^\s
>]+)([^>]*))?\s
*\?>}
2239 (ref($expand_pi_subs{$1}) eq 'CODE' ?
2240 $expand_pi_subs{$1}->(split(' ',$2), @time_now) :
2246 ## ----------------------------------------------------------------------
2247 ## HTML aware string manipulation
2249 # Try to chop given string on a word boundary between position
2250 # $len and $len+$add_len. If there is no word boundary there,
2251 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
2252 # (marking chopped part) would be longer than given string.
2256 my $add_len = shift || 10;
2257 my $where = shift || 'right'; # 'left' | 'center' | 'right'
2259 # Make sure perl knows it is utf8 encoded so we don't
2260 # cut in the middle of a utf8 multibyte char.
2261 $str = to_utf8
($str);
2263 # allow only $len chars, but don't cut a word if it would fit in $add_len
2264 # if it doesn't fit, cut it if it's still longer than the dots we would add
2265 # remove chopped character entities entirely
2267 # when chopping in the middle, distribute $len into left and right part
2268 # return early if chopping wouldn't make string shorter
2269 if ($where eq 'center') {
2270 return $str if ($len + 5 >= length($str)); # filler is length 5
2273 return $str if ($len + 4 >= length($str)); # filler is length 4
2276 # regexps: ending and beginning with word part up to $add_len
2277 my $endre = qr/.{$len}\w{0,$add_len}/;
2278 my $begre = qr/\w{0,$add_len}.{$len}/;
2280 if ($where eq 'left') {
2281 $str =~ m/^(.*?)($begre)$/;
2282 my ($lead, $body) = ($1, $2);
2283 if (length($lead) > 4) {
2286 return "$lead$body";
2288 } elsif ($where eq 'center') {
2289 $str =~ m/^($endre)(.*)$/;
2290 my ($left, $str) = ($1, $2);
2291 $str =~ m/^(.*?)($begre)$/;
2292 my ($mid, $right) = ($1, $2);
2293 if (length($mid) > 5) {
2296 return "$left$mid$right";
2299 $str =~ m/^($endre)(.*)$/;
2302 if (length($tail) > 4) {
2305 return "$body$tail";
2309 # takes the same arguments as chop_str, but also wraps a <span> around the
2310 # result with a title attribute if it does get chopped. Additionally, the
2311 # string is HTML-escaped.
2312 sub chop_and_escape_str
{
2315 my $chopped = chop_str
(@_);
2316 $str = to_utf8
($str);
2317 if ($chopped eq $str) {
2318 return esc_html
($chopped);
2320 $str =~ s/[[:cntrl:]]/?/g;
2321 return $cgi->span({-title
=>$str}, esc_html
($chopped));
2325 # Highlight selected fragments of string, using given CSS class,
2326 # and escape HTML. It is assumed that fragments do not overlap.
2327 # Regions are passed as list of pairs (array references).
2329 # Example: esc_html_hl_regions("foobar", "mark", [ 0, 3 ]) returns
2330 # '<span class="mark">foo</span>bar'
2331 sub esc_html_hl_regions
{
2332 my ($str, $css_class, @sel) = @_;
2333 my %opts = grep { ref($_) ne 'ARRAY' } @sel;
2334 @sel = grep { ref($_) eq 'ARRAY' } @sel;
2335 return esc_html
($str, %opts) unless @sel;
2341 my ($begin, $end) = @
$s;
2343 # Don't create empty <span> elements.
2344 next if $end <= $begin;
2346 my $escaped = esc_html
(substr($str, $begin, $end - $begin),
2349 $out .= esc_html
(substr($str, $pos, $begin - $pos), %opts)
2350 if ($begin - $pos > 0);
2351 $out .= $cgi->span({-class => $css_class}, $escaped);
2355 $out .= esc_html
(substr($str, $pos), %opts)
2356 if ($pos < length($str));
2361 # return positions of beginning and end of each match
2363 my ($str, $regexp) = @_;
2364 return unless (defined $str && defined $regexp);
2367 while ($str =~ /$regexp/g) {
2368 push @matches, [$-[0], $+[0]];
2373 # highlight match (if any), and escape HTML
2374 sub esc_html_match_hl
{
2375 my ($str, $regexp) = @_;
2376 return esc_html
($str) unless defined $regexp;
2378 my @matches = matchpos_list
($str, $regexp);
2379 return esc_html
($str) unless @matches;
2381 return esc_html_hl_regions
($str, 'match', @matches);
2385 # highlight match (if any) of shortened string, and escape HTML
2386 sub esc_html_match_hl_chopped
{
2387 my ($str, $chopped, $regexp) = @_;
2388 return esc_html_match_hl
($str, $regexp) unless defined $chopped;
2390 my @matches = matchpos_list
($str, $regexp);
2391 return esc_html
($chopped) unless @matches;
2393 # filter matches so that we mark chopped string
2394 my $tail = "... "; # see chop_str
2395 unless ($chopped =~ s/\Q$tail\E$//) {
2398 my $chop_len = length($chopped);
2399 my $tail_len = length($tail);
2402 for my $m (@matches) {
2403 if ($m->[0] > $chop_len) {
2404 push @filtered, [ $chop_len, $chop_len + $tail_len ] if ($tail_len > 0);
2406 } elsif ($m->[1] > $chop_len) {
2407 push @filtered, [ $m->[0], $chop_len + $tail_len ];
2413 return esc_html_hl_regions
($chopped . $tail, 'match', @filtered);
2416 ## ----------------------------------------------------------------------
2417 ## functions returning short strings
2419 # CSS class for given age epoch value (in seconds)
2420 # and reference time (optional, defaults to now) as second value
2422 my ($age_epoch, $time_now) = @_;
2423 return "noage" unless defined $age_epoch;
2424 defined $time_now or $time_now = time;
2425 my $age = $time_now - $age_epoch;
2427 if ($age < 60*60*2) {
2429 } elsif ($age < 60*60*24*2) {
2436 # convert age epoch in seconds to "nn units ago" string
2437 # reference time used is now unless second argument passed in
2438 # to get the old behavior, pass 0 as the first argument and
2439 # the time in seconds as the second
2441 my ($age_epoch, $time_now) = @_;
2442 return "unknown" unless defined $age_epoch;
2443 return "<?gitweb age_string $age_epoch?>" if $cache_mode_active;
2444 defined $time_now or $time_now = time;
2445 my $age = $time_now - $age_epoch;
2448 if ($age > 60*60*24*365*2) {
2449 $age_str = (int $age/60/60/24/365);
2450 $age_str .= " years ago";
2451 } elsif ($age > 60*60*24*(365/12)*2) {
2452 $age_str = int $age/60/60/24/(365/12);
2453 $age_str .= " months ago";
2454 } elsif ($age > 60*60*24*7*2) {
2455 $age_str = int $age/60/60/24/7;
2456 $age_str .= " weeks ago";
2457 } elsif ($age > 60*60*24*2) {
2458 $age_str = int $age/60/60/24;
2459 $age_str .= " days ago";
2460 } elsif ($age > 60*60*2) {
2461 $age_str = int $age/60/60;
2462 $age_str .= " hours ago";
2463 } elsif ($age > 60*2) {
2464 $age_str = int $age/60;
2465 $age_str .= " min ago";
2466 } elsif ($age > 2) {
2467 $age_str = int $age;
2468 $age_str .= " sec ago";
2470 $age_str .= " right now";
2475 # returns age_string if the age is <= 2 weeks otherwise an absolute date
2476 # this is typically shown to the user directly with the age_string_age as a title
2477 sub age_string_date
{
2478 my ($age_epoch, $time_now) = @_;
2479 return "unknown" unless defined $age_epoch;
2480 return "<?gitweb age_string_date $age_epoch?>" if $cache_mode_active;
2481 defined $time_now or $time_now = time;
2482 my $age = $time_now - $age_epoch;
2484 if ($age > 60*60*24*7*2) {
2485 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($age_epoch);
2486 return sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
2488 return age_string
($age_epoch, $time_now);
2492 # returns an absolute date if the age is <= 2 weeks otherwise age_string
2493 # this is typically used for the 'title' attribute so it will show as a tooltip
2494 sub age_string_age
{
2495 my ($age_epoch, $time_now) = @_;
2496 return "unknown" unless defined $age_epoch;
2497 return "<?gitweb age_string_age $age_epoch?>" if $cache_mode_active;
2498 defined $time_now or $time_now = time;
2499 my $age = $time_now - $age_epoch;
2501 if ($age > 60*60*24*7*2) {
2502 return age_string
($age_epoch, $time_now);
2504 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($age_epoch);
2505 return sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
2510 S_IFINVALID
=> 0030000,
2511 S_IFGITLINK
=> 0160000,
2514 # submodule/subproject, a commit object reference
2518 return (($mode & S_IFMT
) == S_IFGITLINK
)
2521 # convert file mode in octal to symbolic file mode string
2523 my $mode = oct shift;
2525 if (S_ISGITLINK
($mode)) {
2526 return 'm---------';
2527 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2528 return 'drwxr-xr-x';
2529 } elsif (S_ISLNK
($mode)) {
2530 return 'lrwxrwxrwx';
2531 } elsif (S_ISREG
($mode)) {
2532 # git cares only about the executable bit
2533 if ($mode & S_IXUSR
) {
2534 return '-rwxr-xr-x';
2536 return '-rw-r--r--';
2539 return '----------';
2543 # convert file mode in octal to file type string
2547 if ($mode !~ m/^[0-7]+$/) {
2553 if (S_ISGITLINK
($mode)) {
2555 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2557 } elsif (S_ISLNK
($mode)) {
2559 } elsif (S_ISREG
($mode)) {
2566 # convert file mode in octal to file type description string
2567 sub file_type_long
{
2570 if ($mode !~ m/^[0-7]+$/) {
2576 if (S_ISGITLINK
($mode)) {
2578 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2580 } elsif (S_ISLNK
($mode)) {
2582 } elsif (S_ISREG
($mode)) {
2583 if ($mode & S_IXUSR
) {
2584 return "executable";
2594 ## ----------------------------------------------------------------------
2595 ## functions returning short HTML fragments, or transforming HTML fragments
2596 ## which don't belong to other sections
2598 # format line of commit message.
2599 sub format_log_line_html
{
2602 $line = esc_html
($line, -nbsp
=>1);
2603 $line =~ s
{\b([0-9a
-fA
-F
]{8,40})\b}{
2604 $cgi->a({-href
=> href
(action
=>"object", hash
=>$1),
2605 -class => "text"}, $1);
2611 # format marker of refs pointing to given object
2613 # the destination action is chosen based on object type and current context:
2614 # - for annotated tags, we choose the tag view unless it's the current view
2615 # already, in which case we go to shortlog view
2616 # - for other refs, we keep the current view if we're in history, shortlog or
2617 # log view, and select shortlog otherwise
2618 sub format_ref_marker
{
2619 my ($refs, $id) = @_;
2622 if (defined $refs->{$id}) {
2623 foreach my $ref (@
{$refs->{$id}}) {
2624 # this code exploits the fact that non-lightweight tags are the
2625 # only indirect objects, and that they are the only objects for which
2626 # we want to use tag instead of shortlog as action
2627 my ($type, $name) = qw();
2628 my $indirect = ($ref =~ s/\^\{\}$//);
2629 # e.g. tags/v2.6.11 or heads/next
2630 if ($ref =~ m!^(.*?)s?/(.*)$!) {
2639 $class .= " indirect" if $indirect;
2641 my $dest_action = "shortlog";
2644 $dest_action = "tag" unless $action eq "tag";
2645 } elsif ($action =~ /^(history|(short)?log)$/) {
2646 $dest_action = $action;
2650 $dest .= "refs/" unless $ref =~ m
!^refs
/!;
2653 my $link = $cgi->a({
2655 action
=>$dest_action,
2659 $markers .= " <span class=\"".esc_attr
($class)."\" title=\"".esc_attr
($ref)."\">" .
2665 return ' <span class="refs">'. $markers . '</span>';
2671 # format, perhaps shortened and with markers, title line
2672 sub format_subject_html
{
2673 my ($long, $short, $href, $extra) = @_;
2674 $extra = '' unless defined($extra);
2676 if (length($short) < length($long)) {
2677 $long =~ s/[[:cntrl:]]/?/g;
2678 return $cgi->a({-href
=> $href, -class => "list subject",
2679 -title
=> to_utf8
($long)},
2680 esc_html
($short)) . $extra;
2682 return $cgi->a({-href
=> $href, -class => "list subject"},
2683 esc_html
($long)) . $extra;
2687 # Rather than recomputing the url for an email multiple times, we cache it
2688 # after the first hit. This gives a visible benefit in views where the avatar
2689 # for the same email is used repeatedly (e.g. shortlog).
2690 # The cache is shared by all avatar engines (currently gravatar only), which
2691 # are free to use it as preferred. Since only one avatar engine is used for any
2692 # given page, there's no risk for cache conflicts.
2693 our %avatar_cache = ();
2695 # Compute the picon url for a given email, by using the picon search service over at
2696 # http://www.cs.indiana.edu/picons/search.html
2698 my $email = lc shift;
2699 if (!$avatar_cache{$email}) {
2700 my ($user, $domain) = split('@', $email);
2701 $avatar_cache{$email} =
2702 "//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
2704 "users+domains+unknown/up/single";
2706 return $avatar_cache{$email};
2709 # Compute the gravatar url for a given email, if it's not in the cache already.
2710 # Gravatar stores only the part of the URL before the size, since that's the
2711 # one computationally more expensive. This also allows reuse of the cache for
2712 # different sizes (for this particular engine).
2714 my $email = lc shift;
2716 $avatar_cache{$email} ||=
2717 "//www.gravatar.com/avatar/" .
2718 Digest
::MD5
::md5_hex
($email) . "?s=";
2719 return $avatar_cache{$email} . $size;
2722 # Insert an avatar for the given $email at the given $size if the feature
2724 sub git_get_avatar
{
2725 my ($email, %opts) = @_;
2726 my $pre_white = ($opts{-pad_before
} ?
" " : "");
2727 my $post_white = ($opts{-pad_after
} ?
" " : "");
2728 $opts{-size
} ||= 'default';
2729 my $size = $avatar_size{$opts{-size
}} || $avatar_size{'default'};
2731 if ($git_avatar eq 'gravatar') {
2732 $url = gravatar_url
($email, $size);
2733 } elsif ($git_avatar eq 'picon') {
2734 $url = picon_url
($email);
2736 # Other providers can be added by extending the if chain, defining $url
2737 # as needed. If no variant puts something in $url, we assume avatars
2738 # are completely disabled/unavailable.
2741 "<img width=\"$size\" " .
2742 "class=\"avatar\" " .
2743 "src=\"".esc_url
($url)."\" " .
2751 sub format_search_author
{
2752 my ($author, $searchtype, $displaytext) = @_;
2753 my $have_search = gitweb_check_feature
('search');
2757 if ($searchtype eq 'author') {
2758 $performed = "authored";
2759 } elsif ($searchtype eq 'committer') {
2760 $performed = "committed";
2763 return $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
2764 searchtext
=>$author,
2765 searchtype
=>$searchtype), class=>"list",
2766 title
=>"Search for commits $performed by $author"},
2770 return $displaytext;
2774 # format the author name of the given commit with the given tag
2775 # the author name is chopped and escaped according to the other
2776 # optional parameters (see chop_str).
2777 sub format_author_html
{
2780 my $author = chop_and_escape_str
($co->{'author_name'}, @_);
2781 return "<$tag class=\"author\">" .
2782 format_search_author
($co->{'author_name'}, "author",
2783 git_get_avatar
($co->{'author_email'}, -pad_after
=> 1) .
2788 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
2789 sub format_git_diff_header_line
{
2791 my $diffinfo = shift;
2792 my ($from, $to) = @_;
2794 if ($diffinfo->{'nparents'}) {
2796 $line =~ s!^(diff (.*?) )"?.*$!$1!;
2797 if ($to->{'href'}) {
2798 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2799 esc_path
($to->{'file'}));
2800 } else { # file was deleted (no href)
2801 $line .= esc_path
($to->{'file'});
2805 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
2806 if ($from->{'href'}) {
2807 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
2808 'a/' . esc_path
($from->{'file'}));
2809 } else { # file was added (no href)
2810 $line .= 'a/' . esc_path
($from->{'file'});
2813 if ($to->{'href'}) {
2814 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2815 'b/' . esc_path
($to->{'file'}));
2816 } else { # file was deleted
2817 $line .= 'b/' . esc_path
($to->{'file'});
2821 return "<div class=\"diff header\">$line</div>\n";
2824 # format extended diff header line, before patch itself
2825 sub format_extended_diff_header_line
{
2827 my $diffinfo = shift;
2828 my ($from, $to) = @_;
2831 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
2832 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2833 esc_path
($from->{'file'}));
2835 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
2836 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2837 esc_path
($to->{'file'}));
2839 # match single <mode>
2840 if ($line =~ m/\s(\d{6})$/) {
2841 $line .= '<span class="info"> (' .
2842 file_type_long
($1) .
2846 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
2847 # can match only for combined diff
2849 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2850 if ($from->{'href'}[$i]) {
2851 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
2853 substr($diffinfo->{'from_id'}[$i],0,7));
2858 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
2861 if ($to->{'href'}) {
2862 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2863 substr($diffinfo->{'to_id'},0,7));
2868 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
2869 # can match only for ordinary diff
2870 my ($from_link, $to_link);
2871 if ($from->{'href'}) {
2872 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
2873 substr($diffinfo->{'from_id'},0,7));
2875 $from_link = '0' x
7;
2877 if ($to->{'href'}) {
2878 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2879 substr($diffinfo->{'to_id'},0,7));
2883 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2884 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2887 return $line . "<br/>\n";
2890 # format from-file/to-file diff header
2891 sub format_diff_from_to_header
{
2892 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
2897 #assert($line =~ m/^---/) if DEBUG;
2898 # no extra formatting for "^--- /dev/null"
2899 if (! $diffinfo->{'nparents'}) {
2900 # ordinary (single parent) diff
2901 if ($line =~ m!^--- "?a/!) {
2902 if ($from->{'href'}) {
2904 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2905 esc_path
($from->{'file'}));
2908 esc_path
($from->{'file'});
2911 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
2914 # combined diff (merge commit)
2915 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2916 if ($from->{'href'}[$i]) {
2918 $cgi->a({-href
=>href
(action
=>"blobdiff",
2919 hash_parent
=>$diffinfo->{'from_id'}[$i],
2920 hash_parent_base
=>$parents[$i],
2921 file_parent
=>$from->{'file'}[$i],
2922 hash
=>$diffinfo->{'to_id'},
2924 file_name
=>$to->{'file'}),
2926 -title
=>"diff" . ($i+1)},
2929 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
2930 esc_path
($from->{'file'}[$i]));
2932 $line = '--- /dev/null';
2934 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
2939 #assert($line =~ m/^\+\+\+/) if DEBUG;
2940 # no extra formatting for "^+++ /dev/null"
2941 if ($line =~ m!^\+\+\+ "?b/!) {
2942 if ($to->{'href'}) {
2944 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2945 esc_path
($to->{'file'}));
2948 esc_path
($to->{'file'});
2951 $result .= qq!<div
class="diff to_file">$line</div
>\n!;
2956 # create note for patch simplified by combined diff
2957 sub format_diff_cc_simplified
{
2958 my ($diffinfo, @parents) = @_;
2961 $result .= "<div class=\"diff header\">" .
2963 if (!is_deleted
($diffinfo)) {
2964 $result .= $cgi->a({-href
=> href
(action
=>"blob",
2966 hash
=>$diffinfo->{'to_id'},
2967 file_name
=>$diffinfo->{'to_file'}),
2969 esc_path
($diffinfo->{'to_file'}));
2971 $result .= esc_path
($diffinfo->{'to_file'});
2973 $result .= "</div>\n" . # class="diff header"
2974 "<div class=\"diff nodifferences\">" .
2976 "</div>\n"; # class="diff nodifferences"
2981 sub diff_line_class
{
2982 my ($line, $from, $to) = @_;
2987 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2988 $num_sign = scalar @
{$from->{'href'}};
2991 my @diff_line_classifier = (
2992 { regexp
=> qr/^\@\@{$num_sign} /, class => "chunk_header"},
2993 { regexp
=> qr/^\\/, class => "incomplete" },
2994 { regexp
=> qr/^ {$num_sign}/, class => "ctx" },
2995 # classifier for context must come before classifier add/rem,
2996 # or we would have to use more complicated regexp, for example
2997 # qr/(?= {0,$m}\+)[+ ]{$num_sign}/, where $m = $num_sign - 1;
2998 { regexp
=> qr/^[+ ]{$num_sign}/, class => "add" },
2999 { regexp
=> qr/^[- ]{$num_sign}/, class => "rem" },
3001 for my $clsfy (@diff_line_classifier) {
3002 return $clsfy->{'class'}
3003 if ($line =~ $clsfy->{'regexp'});
3010 # assumes that $from and $to are defined and correctly filled,
3011 # and that $line holds a line of chunk header for unified diff
3012 sub format_unidiff_chunk_header
{
3013 my ($line, $from, $to) = @_;
3015 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
3016 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
3018 $from_lines = 0 unless defined $from_lines;
3019 $to_lines = 0 unless defined $to_lines;
3021 if ($from->{'href'}) {
3022 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
3023 -class=>"list"}, $from_text);
3025 if ($to->{'href'}) {
3026 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
3027 -class=>"list"}, $to_text);
3029 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
3030 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
3034 # assumes that $from and $to are defined and correctly filled,
3035 # and that $line holds a line of chunk header for combined diff
3036 sub format_cc_diff_chunk_header
{
3037 my ($line, $from, $to) = @_;
3039 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
3040 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
3042 @from_text = split(' ', $ranges);
3043 for (my $i = 0; $i < @from_text; ++$i) {
3044 ($from_start[$i], $from_nlines[$i]) =
3045 (split(',', substr($from_text[$i], 1)), 0);
3048 $to_text = pop @from_text;
3049 $to_start = pop @from_start;
3050 $to_nlines = pop @from_nlines;
3052 $line = "<span class=\"chunk_info\">$prefix ";
3053 for (my $i = 0; $i < @from_text; ++$i) {
3054 if ($from->{'href'}[$i]) {
3055 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
3056 -class=>"list"}, $from_text[$i]);
3058 $line .= $from_text[$i];
3062 if ($to->{'href'}) {
3063 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
3064 -class=>"list"}, $to_text);
3068 $line .= " $prefix</span>" .
3069 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
3073 # process patch (diff) line (not to be used for diff headers),
3074 # returning HTML-formatted (but not wrapped) line.
3075 # If the line is passed as a reference, it is treated as HTML and not
3077 sub format_diff_line
{
3078 my ($line, $diff_class, $from, $to) = @_;
3084 $line = untabify
($line);
3086 if ($from && $to && $line =~ m/^\@{2} /) {
3087 $line = format_unidiff_chunk_header
($line, $from, $to);
3088 } elsif ($from && $to && $line =~ m/^\@{3}/) {
3089 $line = format_cc_diff_chunk_header
($line, $from, $to);
3091 $line = esc_html
($line, -nbsp
=>1);
3095 my $diff_classes = "diff";
3096 $diff_classes .= " $diff_class" if ($diff_class);
3097 $line = "<div class=\"$diff_classes\">$line</div>\n";
3102 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
3103 # linked. Pass the hash of the tree/commit to snapshot.
3104 sub format_snapshot_links
{
3106 my $num_fmts = @snapshot_fmts;
3107 if ($num_fmts > 1) {
3108 # A parenthesized list of links bearing format names.
3109 # e.g. "snapshot (_tar.gz_ _zip_)"
3110 return "snapshot (" . join(' ', map
3117 }, $known_snapshot_formats{$_}{'display'})
3118 , @snapshot_fmts) . ")";
3119 } elsif ($num_fmts == 1) {
3120 # A single "snapshot" link whose tooltip bears the format name.
3122 my ($fmt) = @snapshot_fmts;
3128 snapshot_format
=>$fmt
3130 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
3132 } else { # $num_fmts == 0
3137 ## ......................................................................
3138 ## functions returning values to be passed, perhaps after some
3139 ## transformation, to other functions; e.g. returning arguments to href()
3141 # returns hash to be passed to href to generate gitweb URL
3142 # in -title key it returns description of link
3144 my $format = shift || 'Atom';
3145 my %res = (action
=> lc($format));
3146 my $matched_ref = 0;
3148 # feed links are possible only for project views
3149 return unless (defined $project);
3150 # some views should link to OPML, or to generic project feed,
3151 # or don't have specific feed yet (so they should use generic)
3152 return if (!$action || $action =~ /^(?:tags|heads|forks|tag|search)$/x);
3155 # branches refs uses 'refs/' + $get_branch_refs()[x] + '/' prefix
3156 # (fullname) to differentiate from tag links; this also makes
3157 # possible to detect branch links
3158 for my $ref (get_branch_refs
()) {
3159 if ((defined $hash_base && $hash_base =~ m!^refs/\Q$ref\E/(.*)$!) ||
3160 (defined $hash && $hash =~ m!^refs/\Q$ref\E/(.*)$!)) {
3162 $matched_ref = $ref;
3166 # find log type for feed description (title)
3168 if (defined $file_name) {
3169 $type = "history of $file_name";
3170 $type .= "/" if ($action eq 'tree');
3171 $type .= " on '$branch'" if (defined $branch);
3173 $type = "log of $branch" if (defined $branch);
3176 $res{-title
} = $type;
3177 $res{'hash'} = (defined $branch ?
"refs/$matched_ref/$branch" : undef);
3178 $res{'file_name'} = $file_name;
3183 ## ----------------------------------------------------------------------
3184 ## git utility subroutines, invoking git commands
3186 # returns path to the core git executable and the --git-dir parameter as list
3188 $number_of_git_cmds++;
3189 return $GIT, '--git-dir='.$git_dir;
3192 # opens a "-|" cmd pipe handle with 2>/dev/null and returns it
3195 # In order to be compatible with FCGI mode we must use POSIX
3196 # and access the STDERR_FILENO file descriptor directly
3198 use POSIX
qw(STDERR_FILENO dup dup2);
3200 open(my $null, '>', File
::Spec
->devnull) or die "couldn't open devnull: $!";
3201 (my $saveerr = dup
(STDERR_FILENO
)) or die "couldn't dup STDERR: $!";
3202 my $dup2ok = dup2
(fileno($null), STDERR_FILENO
);
3203 close($null) or !$dup2ok or die "couldn't close NULL: $!";
3204 $dup2ok or POSIX
::close($saveerr), die "couldn't dup NULL to STDERR: $!";
3205 my $result = open(my $fd, "-|", @_);
3206 $dup2ok = dup2
($saveerr, STDERR_FILENO
);
3207 POSIX
::close($saveerr) or !$dup2ok or die "couldn't close SAVEERR: $!";
3208 $dup2ok or die "couldn't dup SAVERR to STDERR: $!";
3210 return $result ?
$fd : undef;
3213 # opens a "-|" git_cmd pipe handle with 2>/dev/null and returns it
3215 return cmd_pipe git_cmd
(), @_;
3218 # quote the given arguments for passing them to the shell
3219 # quote_command("command", "arg 1", "arg with ' and ! characters")
3220 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
3221 # Try to avoid using this function wherever possible.
3224 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
3227 # get HEAD ref of given project as hash
3228 sub git_get_head_hash
{
3229 return git_get_full_hash
(shift, 'HEAD');
3232 sub git_get_full_hash
{
3233 return git_get_hash
(@_);
3236 sub git_get_short_hash
{
3237 return git_get_hash
(@_, '--short=7');
3241 my ($project, $hash, @options) = @_;
3242 my $o_git_dir = $git_dir;
3244 $git_dir = "$projectroot/$project";
3245 if (defined(my $fd = git_cmd_pipe
'rev-parse',
3246 '--verify', '-q', @options, $hash)) {
3248 chomp $retval if defined $retval;
3251 if (defined $o_git_dir) {
3252 $git_dir = $o_git_dir;
3257 # get type of given object
3261 defined(my $fd = git_cmd_pipe
"cat-file", '-t', $hash) or return;
3263 close $fd or return;
3268 # repository configuration
3269 our $config_file = '';
3272 # store multiple values for single key as anonymous array reference
3273 # single values stored directly in the hash, not as [ <value> ]
3274 sub hash_set_multi
{
3275 my ($hash, $key, $value) = @_;
3277 if (!exists $hash->{$key}) {
3278 $hash->{$key} = $value;
3279 } elsif (!ref $hash->{$key}) {
3280 $hash->{$key} = [ $hash->{$key}, $value ];
3282 push @
{$hash->{$key}}, $value;
3286 # return hash of git project configuration
3287 # optionally limited to some section, e.g. 'gitweb'
3288 sub git_parse_project_config
{
3289 my $section_regexp = shift;
3294 defined(my $fh = git_cmd_pipe
"config", '-z', '-l')
3297 while (my $keyval = to_utf8
(scalar <$fh>)) {
3299 my ($key, $value) = split(/\n/, $keyval, 2);
3301 hash_set_multi
(\
%config, $key, $value)
3302 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
3309 # convert config value to boolean: 'true' or 'false'
3310 # no value, number > 0, 'true' and 'yes' values are true
3311 # rest of values are treated as false (never as error)
3312 sub config_to_bool
{
3315 return 1 if !defined $val; # section.key
3317 # strip leading and trailing whitespace
3321 return (($val =~ /^\d+$/ && $val) || # section.key = 1
3322 ($val =~ /^(?:true|yes)$/i)); # section.key = true
3325 # convert config value to simple decimal number
3326 # an optional value suffix of 'k', 'm', or 'g' will cause the value
3327 # to be multiplied by 1024, 1048576, or 1073741824
3331 # strip leading and trailing whitespace
3335 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
3337 # unknown unit is treated as 1
3338 return $num * ($unit eq 'g' ?
1073741824 :
3339 $unit eq 'm' ?
1048576 :
3340 $unit eq 'k' ?
1024 : 1);
3345 # convert config value to array reference, if needed
3346 sub config_to_multi
{
3349 return ref($val) ?
$val : (defined($val) ?
[ $val ] : []);
3352 sub git_get_project_config
{
3353 my ($key, $type) = @_;
3355 return unless defined $git_dir;
3358 return unless ($key);
3359 # only subsection, if exists, is case sensitive,
3360 # and not lowercased by 'git config -z -l'
3361 if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) {
3363 $key = join(".", lc($hi), $mi, lc($lo));
3364 return if ($lo =~ /\W/ || $hi =~ /\W/);
3368 return if ($key =~ /\W/);
3370 $key =~ s/^gitweb\.//;
3373 if (defined $type) {
3376 unless ($type eq 'bool' || $type eq 'int');
3380 if (!defined $config_file ||
3381 $config_file ne "$git_dir/config") {
3382 %config = git_parse_project_config
('gitweb');
3383 $config_file = "$git_dir/config";
3386 # check if config variable (key) exists
3387 return unless exists $config{"gitweb.$key"};
3390 if (!defined $type) {
3391 return $config{"gitweb.$key"};
3392 } elsif ($type eq 'bool') {
3393 # backward compatibility: 'git config --bool' returns true/false
3394 return config_to_bool
($config{"gitweb.$key"}) ?
'true' : 'false';
3395 } elsif ($type eq 'int') {
3396 return config_to_int
($config{"gitweb.$key"});
3398 return $config{"gitweb.$key"};
3401 # get hash of given path at given ref
3402 sub git_get_hash_by_path
{
3404 my $path = shift || return undef;
3409 defined(my $fd = git_cmd_pipe
"ls-tree", $base, "--", $path)
3410 or die_error
(500, "Open git-ls-tree failed");
3411 my $line = to_utf8
(scalar <$fd>);
3412 close $fd or return undef;
3414 if (!defined $line) {
3415 # there is no tree or hash given by $path at $base
3419 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3420 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
3421 if (defined $type && $type ne $2) {
3422 # type doesn't match
3428 # get path of entry with given hash at given tree-ish (ref)
3429 # used to get 'from' filename for combined diff (merge commit) for renames
3430 sub git_get_path_by_hash
{
3431 my $base = shift || return;
3432 my $hash = shift || return;
3436 defined(my $fd = git_cmd_pipe
"ls-tree", '-r', '-t', '-z', $base)
3438 while (my $line = to_utf8
(scalar <$fd>)) {
3441 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
3442 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
3443 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
3452 ## ......................................................................
3453 ## git utility functions, directly accessing git repository
3455 # get the value of config variable either from file named as the variable
3456 # itself in the repository ($GIT_DIR/$name file), or from gitweb.$name
3457 # configuration variable in the repository config file.
3458 sub git_get_file_or_project_config
{
3459 my ($path, $name) = @_;
3461 $git_dir = "$projectroot/$path";
3462 open my $fd, '<', "$git_dir/$name"
3463 or return git_get_project_config
($name);
3464 my $conf = to_utf8
(scalar <$fd>);
3466 if (defined $conf) {
3472 sub git_get_project_description
{
3474 return git_get_file_or_project_config
($path, 'description');
3477 sub git_get_project_category
{
3479 return git_get_file_or_project_config
($path, 'category');
3483 # supported formats:
3484 # * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)
3485 # - if its contents is a number, use it as tag weight,
3486 # - otherwise add a tag with weight 1
3487 # * $GIT_DIR/ctags file, each line is a tag (with weight 1)
3488 # the same value multiple times increases tag weight
3489 # * `gitweb.ctag' multi-valued repo config variable
3490 sub git_get_project_ctags
{
3491 my $project = shift;
3494 $git_dir = "$projectroot/$project";
3495 if (opendir my $dh, "$git_dir/ctags") {
3496 my @files = grep { -f
$_ } map { "$git_dir/ctags/$_" } readdir($dh);
3497 foreach my $tagfile (@files) {
3498 open my $ct, '<', $tagfile
3504 (my $ctag = $tagfile) =~ s
#.*/##;
3505 $ctag = to_utf8
($ctag);
3506 if ($val =~ /^\d+$/) {
3507 $ctags->{$ctag} = $val;
3509 $ctags->{$ctag} = 1;
3514 } elsif (open my $fh, '<', "$git_dir/ctags") {
3515 while (my $line = to_utf8
(scalar <$fh>)) {
3517 $ctags->{$line}++ if $line;
3522 my $taglist = config_to_multi
(git_get_project_config
('ctag'));
3523 foreach my $tag (@
$taglist) {
3531 # return hash, where keys are content tags ('ctags'),
3532 # and values are sum of weights of given tag in every project
3533 sub git_gather_all_ctags
{
3534 my $projects = shift;
3537 foreach my $p (@
$projects) {
3538 foreach my $ct (keys %{$p->{'ctags'}}) {
3539 $ctags->{$ct} += $p->{'ctags'}->{$ct};
3546 sub git_populate_project_tagcloud
{
3547 my ($ctags, $action) = @_;
3549 # First, merge different-cased tags; tags vote on casing
3551 foreach (keys %$ctags) {
3552 $ctags_lc{lc $_}->{count
} += $ctags->{$_};
3553 if (not $ctags_lc{lc $_}->{topcount
}
3554 or $ctags_lc{lc $_}->{topcount
} < $ctags->{$_}) {
3555 $ctags_lc{lc $_}->{topcount
} = $ctags->{$_};
3556 $ctags_lc{lc $_}->{topname
} = $_;
3561 my $matched = $input_params{'ctag_filter'};
3562 if (eval { require HTML
::TagCloud
; 1; }) {
3563 $cloud = HTML
::TagCloud
->new;
3564 foreach my $ctag (sort keys %ctags_lc) {
3565 # Pad the title with spaces so that the cloud looks
3567 my $title = esc_html
($ctags_lc{$ctag}->{topname
});
3568 $title =~ s/ / /g;
3569 $title =~ s/^/ /g;
3570 $title =~ s/$/ /g;
3571 if (defined $matched && $matched eq $ctag) {
3572 $title = qq(<span
class="match">$title</span
>);
3574 $cloud->add($title, href
(-replay
=>1, action
=>$action, ctag_filter
=>$ctag),
3575 $ctags_lc{$ctag}->{count
});
3579 foreach my $ctag (keys %ctags_lc) {
3580 my $title = esc_html
($ctags_lc{$ctag}->{topname
}, -nbsp
=>1);
3581 if (defined $matched && $matched eq $ctag) {
3582 $title = qq(<span
class="match">$title</span
>);
3584 $cloud->{$ctag}{count
} = $ctags_lc{$ctag}->{count
};
3585 $cloud->{$ctag}{ctag
} =
3586 $cgi->a({-href
=>href
(-replay
=>1, action
=>$action, ctag_filter
=>$ctag)}, $title);
3592 sub git_show_project_tagcloud
{
3593 my ($cloud, $count) = @_;
3594 if (ref $cloud eq 'HTML::TagCloud') {
3595 return $cloud->html_and_css($count);
3597 my @tags = sort { $cloud->{$a}->{'count'} <=> $cloud->{$b}->{'count'} } keys %$cloud;
3599 '<div id="htmltagcloud"'.($project ?
'' : ' align="center"').'>' .
3601 $cloud->{$_}->{'ctag'}
3602 } splice(@tags, 0, $count)) .
3607 sub git_get_project_url_list
{
3610 $git_dir = "$projectroot/$path";
3611 open my $fd, '<', "$git_dir/cloneurl"
3612 or return wantarray ?
3613 @
{ config_to_multi
(git_get_project_config
('url')) } :
3614 config_to_multi
(git_get_project_config
('url'));
3615 my @git_project_url_list = map { chomp; to_utf8
($_) } <$fd>;
3618 return wantarray ?
@git_project_url_list : \
@git_project_url_list;
3621 sub git_get_projects_list
{
3622 my $filter = shift || '';
3623 my $paranoid = shift;
3626 if (-d
$projects_list) {
3627 # search in directory
3628 my $dir = $projects_list;
3629 # remove the trailing "/"
3631 my $pfxlen = length("$dir");
3632 my $pfxdepth = ($dir =~ tr!/!!);
3633 # when filtering, search only given subdirectory
3634 if ($filter && !$paranoid) {
3640 follow_fast
=> 1, # follow symbolic links
3641 follow_skip
=> 2, # ignore duplicates
3642 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
3645 our $project_maxdepth;
3647 # skip project-list toplevel, if we get it.
3648 return if (m!^[/.]$!);
3649 # only directories can be git repositories
3650 return unless (-d
$_);
3651 # don't traverse too deep (Find is super slow on os x)
3652 # $project_maxdepth excludes depth of $projectroot
3653 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
3654 $File::Find
::prune
= 1;
3658 my $path = substr($File::Find
::name
, $pfxlen + 1);
3659 # paranoidly only filter here
3660 if ($paranoid && $filter && $path !~ m!^\Q$filter\E/!) {
3663 # we check related file in $projectroot
3664 if (check_export_ok
("$projectroot/$path")) {
3665 push @list, { path
=> $path };
3666 $File::Find
::prune
= 1;
3671 } elsif (-f
$projects_list) {
3672 # read from file(url-encoded):
3673 # 'git%2Fgit.git Linus+Torvalds'
3674 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3675 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3676 open my $fd, '<', $projects_list or return;
3678 while (my $line = <$fd>) {
3680 my ($path, $owner) = split ' ', $line;
3681 $path = unescape
($path);
3682 $owner = unescape
($owner);
3683 if (!defined $path) {
3686 # if $filter is rpovided, check if $path begins with $filter
3687 if ($filter && $path !~ m!^\Q$filter\E/!) {
3690 if (check_export_ok
("$projectroot/$path")) {
3695 $pr->{'owner'} = to_utf8
($owner);
3705 # written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)
3706 # as side effects it sets 'forks' field to list of forks for forked projects
3707 sub filter_forks_from_projects_list
{
3708 my $projects = shift;
3710 my %trie; # prefix tree of directories (path components)
3711 # generate trie out of those directories that might contain forks
3712 foreach my $pr (@
$projects) {
3713 my $path = $pr->{'path'};
3714 $path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
3715 next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
3716 next unless ($path); # skip '.git' repository: tests, git-instaweb
3717 next unless (-d
"$projectroot/$path"); # containing directory exists
3718 $pr->{'forks'} = []; # there can be 0 or more forks of project
3721 my @dirs = split('/', $path);
3722 # walk the trie, until either runs out of components or out of trie
3724 while (scalar @dirs &&
3725 exists($ref->{$dirs[0]})) {
3726 $ref = $ref->{shift @dirs};
3728 # create rest of trie structure from rest of components
3729 foreach my $dir (@dirs) {
3730 $ref = $ref->{$dir} = {};
3732 # create end marker, store $pr as a data
3733 $ref->{''} = $pr if (!exists $ref->{''});
3736 # filter out forks, by finding shortest prefix match for paths
3739 foreach my $pr (@
$projects) {
3743 foreach my $dir (split('/', $pr->{'path'})) {
3744 if (exists $ref->{''}) {
3745 # found [shortest] prefix, is a fork - skip it
3746 push @
{$ref->{''}{'forks'}}, $pr;
3749 if (!exists $ref->{$dir}) {
3750 # not in trie, cannot have prefix, not a fork
3751 push @filtered, $pr;
3754 # If the dir is there, we just walk one step down the trie.
3755 $ref = $ref->{$dir};
3757 # we ran out of trie
3758 # (shouldn't happen: it's either no match, or end marker)
3759 push @filtered, $pr;
3765 # note: fill_project_list_info must be run first,
3766 # for 'descr_long' and 'ctags' to be filled
3767 sub search_projects_list
{
3768 my ($projlist, %opts) = @_;
3769 my $tagfilter = $opts{'tagfilter'};
3770 my $search_re = $opts{'search_regexp'};
3773 unless ($tagfilter || $search_re);
3775 # searching projects require filling to be run before it;
3776 fill_project_list_info
($projlist,
3777 $tagfilter ?
'ctags' : (),
3778 $search_re ?
('path', 'descr') : ());
3781 foreach my $pr (@
$projlist) {
3784 next unless ref($pr->{'ctags'}) eq 'HASH';
3786 grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
3791 $pr->{'path'} =~ /$search_re/ ||
3792 $pr->{'descr_long'} =~ /$search_re/;
3795 push @projects, $pr;
3801 our $gitweb_project_owner = undef;
3802 sub git_get_project_list_from_file
{
3804 return if (defined $gitweb_project_owner);
3806 $gitweb_project_owner = {};
3807 # read from file (url-encoded):
3808 # 'git%2Fgit.git Linus+Torvalds'
3809 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3810 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3811 if (-f
$projects_list) {
3812 open(my $fd, '<', $projects_list);
3813 while (my $line = <$fd>) {
3815 my ($pr, $ow) = split ' ', $line;
3816 $pr = unescape
($pr);
3817 $ow = unescape
($ow);
3818 $gitweb_project_owner->{$pr} = to_utf8
($ow);
3824 sub git_get_project_owner
{
3825 my $project = shift;
3828 return undef unless $project;
3829 $git_dir = "$projectroot/$project";
3831 if (!defined $gitweb_project_owner) {
3832 git_get_project_list_from_file
();
3835 if (exists $gitweb_project_owner->{$project}) {
3836 $owner = $gitweb_project_owner->{$project};
3838 if (!defined $owner){
3839 $owner = git_get_project_config
('owner');
3841 if (!defined $owner) {
3842 $owner = get_file_owner
("$git_dir");
3848 sub parse_activity_date
{
3851 if ($dstr =~ /^\s*([-+]?\d+)(?:\s+([-+]\d{4}))?\s*$/) {
3855 if ($dstr =~ /^\s*(\d{4})-(\d{2})-(\d{2})[Tt _](\d{1,2}):(\d{2}):(\d{2})(?:[ _]?([Zz]|(?:[-+]\d{1,2}:?\d{2})))?\s*$/) {
3856 my ($Y,$m,$d,$H,$M,$S,$z) = ($1,$2,$3,$4,$5,$6,$7||'');
3857 my $seconds = timegm
(0+$S, 0+$M, 0+$H, 0+$d, $m-1, $Y-1900);
3858 defined($z) && $z ne '' or $z = 'Z';
3860 substr($z,1,0) = '0' if length($z) == 4;
3862 if (uc($z) ne 'Z') {
3863 $off = 60 * (60 * (0+substr($z,1,2)) + (0+substr($z,3,2)));
3864 $off = -$off if substr($z,0,1) eq '-';
3866 return $seconds - $off;
3871 # If $quick is true only look at $lastactivity_file
3872 sub git_get_last_activity
{
3873 my ($path, $quick) = @_;
3876 $git_dir = "$projectroot/$path";
3877 if ($lastactivity_file && open($fd, "<", "$git_dir/$lastactivity_file")) {
3878 my $activity = <$fd>;
3880 return (undef) unless defined $activity;
3882 return (undef) if $activity eq '';
3883 if (my $timestamp = parse_activity_date
($activity)) {
3884 return ($timestamp);
3887 return (undef) if $quick;
3888 defined($fd = git_cmd_pipe
'for-each-ref',
3889 '--format=%(committer)',
3890 '--sort=-committerdate',
3892 map { "refs/$_" } get_branch_refs
()) or return;
3893 my $most_recent = <$fd>;
3894 close $fd or return (undef);
3895 if (defined $most_recent &&
3896 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
3898 return ($timestamp);
3903 # Implementation note: when a single remote is wanted, we cannot use 'git
3904 # remote show -n' because that command always work (assuming it's a remote URL
3905 # if it's not defined), and we cannot use 'git remote show' because that would
3906 # try to make a network roundtrip. So the only way to find if that particular
3907 # remote is defined is to walk the list provided by 'git remote -v' and stop if
3908 # and when we find what we want.
3909 sub git_get_remotes_list
{
3913 my $fd = git_cmd_pipe
'remote', '-v';
3915 while (my $remote = to_utf8
(scalar <$fd>)) {
3917 $remote =~ s!\t(.*?)\s+\((\w+)\)$!!;
3918 next if $wanted and not $remote eq $wanted;
3919 my ($url, $key) = ($1, $2);
3921 $remotes{$remote} ||= { 'heads' => () };
3922 $remotes{$remote}{$key} = $url;
3924 close $fd or return;
3925 return wantarray ?
%remotes : \
%remotes;
3928 # Takes a hash of remotes as first parameter and fills it by adding the
3929 # available remote heads for each of the indicated remotes.
3930 sub fill_remote_heads
{
3931 my $remotes = shift;
3932 my @heads = map { "remotes/$_" } keys %$remotes;
3933 my @remoteheads = git_get_heads_list
(undef, @heads);
3934 foreach my $remote (keys %$remotes) {
3935 $remotes->{$remote}{'heads'} = [ grep {
3936 $_->{'name'} =~ s!^$remote/!!
3941 sub git_get_references
{
3942 my $type = shift || "";
3944 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
3945 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
3946 defined(my $fd = git_cmd_pipe
"show-ref", "--dereference",
3947 ($type ?
("--", "refs/$type") : ())) # use -- <pattern> if $type
3950 while (my $line = to_utf8
(scalar <$fd>)) {
3952 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
3953 if (defined $refs{$1}) {
3954 push @
{$refs{$1}}, $2;
3960 close $fd or return;
3964 sub git_get_rev_name_tags
{
3965 my $hash = shift || return undef;
3967 defined(my $fd = git_cmd_pipe
"name-rev", "--tags", $hash)
3969 my $name_rev = to_utf8
(scalar <$fd>);
3972 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
3975 # catches also '$hash undefined' output
3980 ## ----------------------------------------------------------------------
3981 ## parse to hash functions
3985 my $tz = shift || "-0000";
3988 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
3989 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
3990 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
3991 $date{'hour'} = $hour;
3992 $date{'minute'} = $min;
3993 $date{'mday'} = $mday;
3994 $date{'day'} = $days[$wday];
3995 $date{'month'} = $months[$mon];
3996 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
3997 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
3998 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
3999 $mday, $months[$mon], $hour ,$min;
4000 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
4001 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
4003 my ($tz_sign, $tz_hour, $tz_min) =
4004 ($tz =~ m/^([-+])(\d\d)(\d\d)$/);
4005 $tz_sign = ($tz_sign eq '-' ?
-1 : +1);
4006 my $local = $epoch + $tz_sign*((($tz_hour*60) + $tz_min)*60);
4007 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
4008 $date{'hour_local'} = $hour;
4009 $date{'minute_local'} = $min;
4010 $date{'tz_local'} = $tz;
4011 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
4012 1900+$year, $mon+1, $mday,
4013 $hour, $min, $sec, $tz);
4017 sub parse_file_date
{
4019 my $mtime = (stat("$projectroot/$project/$file"))[9];
4020 return () unless defined $mtime;
4021 my $tzoffset = timegm
((localtime($mtime))[0..5]) - $mtime;
4023 if ($tzoffset <= 0) {
4027 $tzoffset = int($tzoffset/60);
4028 $tzstring .= sprintf("%02d%02d", int($tzoffset/60), $tzoffset%60);
4029 return parse_date
($mtime, $tzstring);
4037 defined(my $fd = git_cmd_pipe
"cat-file", "tag", $tag_id) or return;
4038 $tag{'id'} = $tag_id;
4039 while (my $line = to_utf8
(scalar <$fd>)) {
4041 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
4042 $tag{'object'} = $1;
4043 } elsif ($line =~ m/^type (.+)$/) {
4045 } elsif ($line =~ m/^tag (.+)$/) {
4047 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
4048 $tag{'author'} = $1;
4049 $tag{'author_epoch'} = $2;
4050 $tag{'author_tz'} = $3;
4051 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
4052 $tag{'author_name'} = $1;
4053 $tag{'author_email'} = $2;
4055 $tag{'author_name'} = $tag{'author'};
4057 } elsif ($line =~ m/--BEGIN/) {
4058 push @comment, $line;
4060 } elsif ($line eq "") {
4064 push @comment, map(to_utf8
($_), <$fd>);
4065 $tag{'comment'} = \
@comment;
4066 close $fd or return;
4067 if (!defined $tag{'name'}) {
4073 sub parse_commit_text
{
4074 my ($commit_text, $withparents) = @_;
4075 my @commit_lines = split '\n', $commit_text;
4078 pop @commit_lines; # Remove '\0'
4080 if (! @commit_lines) {
4084 my $header = shift @commit_lines;
4085 if ($header !~ m/^[0-9a-fA-F]{40}/) {
4088 ($co{'id'}, my @parents) = split ' ', $header;
4089 while (my $line = shift @commit_lines) {
4090 last if $line eq "\n";
4091 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
4093 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
4095 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
4096 $co{'author'} = to_utf8
($1);
4097 $co{'author_epoch'} = $2;
4098 $co{'author_tz'} = $3;
4099 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
4100 $co{'author_name'} = $1;
4101 $co{'author_email'} = $2;
4103 $co{'author_name'} = $co{'author'};
4105 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
4106 $co{'committer'} = to_utf8
($1);
4107 $co{'committer_epoch'} = $2;
4108 $co{'committer_tz'} = $3;
4109 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
4110 $co{'committer_name'} = $1;
4111 $co{'committer_email'} = $2;
4113 $co{'committer_name'} = $co{'committer'};
4117 if (!defined $co{'tree'}) {
4120 $co{'parents'} = \
@parents;
4121 $co{'parent'} = $parents[0];
4123 @commit_lines = map to_utf8
($_), @commit_lines;
4124 foreach my $title (@commit_lines) {
4127 $co{'title'} = chop_str
($title, 80, 5);
4128 # remove leading stuff of merges to make the interesting part visible
4129 if (length($title) > 50) {
4130 $title =~ s/^Automatic //;
4131 $title =~ s/^merge (of|with) /Merge ... /i;
4132 if (length($title) > 50) {
4133 $title =~ s/(http|rsync):\/\///;
4135 if (length($title) > 50) {
4136 $title =~ s/(master|www|rsync)\.//;
4138 if (length($title) > 50) {
4139 $title =~ s/kernel.org:?//;
4141 if (length($title) > 50) {
4142 $title =~ s/\/pub\/scm//;
4145 $co{'title_short'} = chop_str
($title, 50, 5);
4149 if (! defined $co{'title'} || $co{'title'} eq "") {
4150 $co{'title'} = $co{'title_short'} = '(no commit message)';
4152 # remove added spaces
4153 foreach my $line (@commit_lines) {
4156 $co{'comment'} = \
@commit_lines;
4158 my $age_epoch = $co{'committer_epoch'};
4159 $co{'age_epoch'} = $age_epoch;
4160 my $time_now = time;
4161 $co{'age_string'} = age_string
($age_epoch, $time_now);
4162 $co{'age_string_date'} = age_string_date
($age_epoch, $time_now);
4163 $co{'age_string_age'} = age_string_age
($age_epoch, $time_now);
4168 my ($commit_id) = @_;
4173 defined(my $fd = git_cmd_pipe
"rev-list",
4179 or die_error
(500, "Open git-rev-list failed");
4180 %co = parse_commit_text
(<$fd>, 1);
4187 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
4195 defined(my $fd = git_cmd_pipe
"rev-list",
4198 ("--max-count=" . $maxcount),
4199 ("--skip=" . $skip),
4203 ($filename ?
($filename) : ()))
4204 or die_error
(500, "Open git-rev-list failed");
4205 while (my $line = <$fd>) {
4206 my %co = parse_commit_text
($line);
4211 return wantarray ?
@cos : \
@cos;
4214 # parse line of git-diff-tree "raw" output
4215 sub parse_difftree_raw_line
{
4219 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
4220 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
4221 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
4222 $res{'from_mode'} = $1;
4223 $res{'to_mode'} = $2;
4224 $res{'from_id'} = $3;
4226 $res{'status'} = $5;
4227 $res{'similarity'} = $6;
4228 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
4229 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
4231 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote
($7);
4234 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
4235 # combined diff (for merge commit)
4236 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
4237 $res{'nparents'} = length($1);
4238 $res{'from_mode'} = [ split(' ', $2) ];
4239 $res{'to_mode'} = pop @
{$res{'from_mode'}};
4240 $res{'from_id'} = [ split(' ', $3) ];
4241 $res{'to_id'} = pop @
{$res{'from_id'}};
4242 $res{'status'} = [ split('', $4) ];
4243 $res{'to_file'} = unquote
($5);
4245 # 'c512b523472485aef4fff9e57b229d9d243c967f'
4246 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
4247 $res{'commit'} = $1;
4250 return wantarray ?
%res : \
%res;
4253 # wrapper: return parsed line of git-diff-tree "raw" output
4254 # (the argument might be raw line, or parsed info)
4255 sub parsed_difftree_line
{
4256 my $line_or_ref = shift;
4258 if (ref($line_or_ref) eq "HASH") {
4259 # pre-parsed (or generated by hand)
4260 return $line_or_ref;
4262 return parse_difftree_raw_line
($line_or_ref);
4266 # parse line of git-ls-tree output
4267 sub parse_ls_tree_line
{
4273 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
4274 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;
4283 $res{'name'} = unquote
($5);
4286 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
4287 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
4295 $res{'name'} = unquote
($4);
4299 return wantarray ?
%res : \
%res;
4302 # generates _two_ hashes, references to which are passed as 2 and 3 argument
4303 sub parse_from_to_diffinfo
{
4304 my ($diffinfo, $from, $to, @parents) = @_;
4306 if ($diffinfo->{'nparents'}) {
4308 $from->{'file'} = [];
4309 $from->{'href'} = [];
4310 fill_from_file_info
($diffinfo, @parents)
4311 unless exists $diffinfo->{'from_file'};
4312 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
4313 $from->{'file'}[$i] =
4314 defined $diffinfo->{'from_file'}[$i] ?
4315 $diffinfo->{'from_file'}[$i] :
4316 $diffinfo->{'to_file'};
4317 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
4318 $from->{'href'}[$i] = href
(action
=>"blob",
4319 hash_base
=>$parents[$i],
4320 hash
=>$diffinfo->{'from_id'}[$i],
4321 file_name
=>$from->{'file'}[$i]);
4323 $from->{'href'}[$i] = undef;
4327 # ordinary (not combined) diff
4328 $from->{'file'} = $diffinfo->{'from_file'};
4329 if ($diffinfo->{'status'} ne "A") { # not new (added) file
4330 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
4331 hash
=>$diffinfo->{'from_id'},
4332 file_name
=>$from->{'file'});
4334 delete $from->{'href'};
4338 $to->{'file'} = $diffinfo->{'to_file'};
4339 if (!is_deleted
($diffinfo)) { # file exists in result
4340 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
4341 hash
=>$diffinfo->{'to_id'},
4342 file_name
=>$to->{'file'});
4344 delete $to->{'href'};
4348 ## ......................................................................
4349 ## parse to array of hashes functions
4351 sub git_get_heads_list
{
4352 my ($limit, @classes) = @_;
4353 @classes = get_branch_refs
() unless @classes;
4354 my @patterns = map { "refs/$_" } @classes;
4357 defined(my $fd = git_cmd_pipe
'for-each-ref',
4358 ($limit ?
'--count='.($limit+1) : ()), '--sort=-committerdate',
4359 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
4362 while (my $line = to_utf8
(scalar <$fd>)) {
4366 my ($refinfo, $committerinfo) = split(/\0/, $line);
4367 my ($hash, $name, $title) = split(' ', $refinfo, 3);
4368 my ($committer, $epoch, $tz) =
4369 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
4370 $ref_item{'fullname'} = $name;
4371 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
4372 $name =~ s!^refs/($strip_refs|remotes)/!!;
4373 $ref_item{'name'} = $name;
4374 # for refs neither in 'heads' nor 'remotes' we want to
4375 # show their ref dir
4376 my $ref_dir = (defined $1) ?
$1 : '';
4377 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
4378 $ref_item{'name'} .= ' (' . $ref_dir . ')';
4381 $ref_item{'id'} = $hash;
4382 $ref_item{'title'} = $title || '(no commit message)';
4383 $ref_item{'epoch'} = $epoch;
4385 $ref_item{'age'} = age_string
($ref_item{'epoch'});
4387 $ref_item{'age'} = "unknown";
4390 push @headslist, \
%ref_item;
4394 return wantarray ?
@headslist : \
@headslist;
4397 sub git_get_tags_list
{
4401 defined(my $fd = git_cmd_pipe
'for-each-ref',
4402 ($limit ?
'--count='.($limit+1) : ()), '--sort=-creatordate',
4403 '--format=%(objectname) %(objecttype) %(refname) '.
4404 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
4407 while (my $line = to_utf8
(scalar <$fd>)) {
4411 my ($refinfo, $creatorinfo) = split(/\0/, $line);
4412 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
4413 my ($creator, $epoch, $tz) =
4414 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
4415 $ref_item{'fullname'} = $name;
4416 $name =~ s!^refs/tags/!!;
4418 $ref_item{'type'} = $type;
4419 $ref_item{'id'} = $id;
4420 $ref_item{'name'} = $name;
4421 if ($type eq "tag") {
4422 $ref_item{'subject'} = $title;
4423 $ref_item{'reftype'} = $reftype;
4424 $ref_item{'refid'} = $refid;
4426 $ref_item{'reftype'} = $type;
4427 $ref_item{'refid'} = $id;
4430 if ($type eq "tag" || $type eq "commit") {
4431 $ref_item{'epoch'} = $epoch;
4433 $ref_item{'age'} = age_string
($ref_item{'epoch'});
4435 $ref_item{'age'} = "unknown";
4439 push @tagslist, \
%ref_item;
4443 return wantarray ?
@tagslist : \
@tagslist;
4446 ## ----------------------------------------------------------------------
4447 ## filesystem-related functions
4449 sub get_file_owner
{
4452 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
4453 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
4454 if (!defined $gcos) {
4458 $owner =~ s/[,;].*$//;
4459 return to_utf8
($owner);
4462 # assume that file exists
4464 my $filename = shift;
4466 open my $fd, '<', $filename;
4473 ## ......................................................................
4474 ## mimetype related functions
4476 sub mimetype_guess_file
{
4477 my $filename = shift;
4478 my $mimemap = shift;
4479 -r
$mimemap or return undef;
4482 open(my $mh, '<', $mimemap) or return undef;
4484 next if m/^#/; # skip comments
4485 my ($mimetype, @exts) = split(/\s+/);
4486 foreach my $ext (@exts) {
4487 $mimemap{$ext} = $mimetype;
4492 $filename =~ /\.([^.]*)$/;
4493 return $mimemap{$1};
4496 sub mimetype_guess
{
4497 my $filename = shift;
4499 $filename =~ /\./ or return undef;
4501 if ($mimetypes_file) {
4502 my $file = $mimetypes_file;
4503 if ($file !~ m!^/!) { # if it is relative path
4504 # it is relative to project
4505 $file = "$projectroot/$project/$file";
4507 $mime = mimetype_guess_file
($filename, $file);
4509 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
4515 my $filename = shift;
4518 my $mime = mimetype_guess
($filename);
4519 $mime and return $mime;
4523 return $default_blob_plain_mimetype unless $fd;
4526 return 'text/plain';
4527 } elsif (! $filename) {
4528 return 'application/octet-stream';
4529 } elsif ($filename =~ m/\.png$/i) {
4531 } elsif ($filename =~ m/\.gif$/i) {
4533 } elsif ($filename =~ m/\.jpe?g$/i) {
4534 return 'image/jpeg';
4536 return 'application/octet-stream';
4540 sub blob_contenttype
{
4541 my ($fd, $file_name, $type) = @_;
4543 $type ||= blob_mimetype
($fd, $file_name);
4544 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
4545 $type .= "; charset=$default_text_plain_charset";
4551 # peek the first upto 128 bytes off a file handle
4559 return '' unless $fd && read($fd, $prefix128, 128);
4561 # In the general case, we're guaranteed only to be able to ungetc one
4562 # character (provided, of course, we actually got a character first).
4566 # 1) we are dealing with a :perlio layer since blob_mimetype will have
4567 # already been called at least once on the file handle before us
4569 # 2) we have an $fd positioned at the start of the input stream and
4570 # therefore know we were positioned at a buffer boundary before
4571 # reading the initial upto 128 bytes
4573 # 3) the buffer size is at least 512 bytes
4575 # 4) we are careful to only unget raw bytes
4577 # 5) we are attempting to unget exactly the same number of bytes we got
4579 # Given the above conditions we will ALWAYS be able to safely unget
4580 # the $prefix128 value we just got.
4582 # In fact, we could read up to 511 bytes and still be sure.
4583 # (Reading 512 might pop us into the next internal buffer, but probably
4584 # not since that could break the always able to unget at least the one
4585 # you just got guarantee.)
4587 map {$fd->ungetc(ord($_))} reverse(split //, $prefix128);
4592 # guess file syntax for syntax highlighting; return undef if no highlighting
4593 # the name of syntax can (in the future) depend on syntax highlighter used
4594 sub guess_file_syntax
{
4595 my ($fd, $mimetype, $file_name) = @_;
4596 return undef unless $fd && defined $file_name &&
4597 defined $mimetype && $mimetype =~ m!^text/.+!i;
4598 my $basename = basename
($file_name, '.in');
4599 return $highlight_basename{$basename}
4600 if exists $highlight_basename{$basename};
4602 # Peek to see if there's a shebang or xml line.
4603 # We always operate on bytes when testing this.
4606 my $shebang = peek128bytes
($fd);
4607 if (length($shebang) >= 4 && $shebang =~ /^#!/) { # 4 would be '#!/x'
4608 foreach my $key (keys %highlight_shebang) {
4609 my $ar = ref($highlight_shebang{$key}) ?
4610 $highlight_shebang{$key} :
4611 [$highlight_shebang{key
}];
4612 map {return $key if $shebang =~ /$_/} @
$ar;
4615 return 'xml' if $shebang =~ m!^\s*<\?xml\s!; # "xml" must be lowercase
4618 $basename =~ /\.([^.]*)$/;
4619 my $ext = $1 or return undef;
4620 return $highlight_ext{$ext}
4621 if exists $highlight_ext{$ext};
4626 # run highlighter and return FD of its output,
4627 # or return original FD if no highlighting
4628 sub run_highlighter
{
4629 my ($fd, $syntax) = @_;
4630 return $fd unless $fd && !eof($fd) && defined $highlight_bin && defined $syntax;
4632 defined(my $hifd = cmd_pipe
$posix_shell_bin, '-c',
4633 quote_command
(git_cmd
(), "cat-file", "blob", $hash)." | ".
4634 quote_command
($highlight_bin).
4635 " --replace-tabs=8 --fragment --syntax $syntax")
4636 or die_error
(500, "Couldn't open file or run syntax highlighter");
4638 # just in case, should not happen as we tested !eof($fd) above
4639 return $fd if close($hifd);
4642 !$! or die_error
(500, "Couldn't close syntax highighter pipe");
4644 # leaving us with the only possibility a non-zero exit status (possibly a signal);
4645 # instead of dying horribly on this, just skip the highlighting
4646 # but do output a message about it to STDERR that will end up in the log
4647 print STDERR
"warning: skipping failed highlight for --syntax $syntax: ".
4648 sprintf("child exit status 0x%x\n", $?
);
4655 ## ======================================================================
4656 ## functions printing HTML: header, footer, error page
4658 sub get_page_title
{
4659 my $title = to_utf8
($site_name);
4661 unless (defined $project) {
4662 if (defined $project_filter) {
4663 $title .= " - projects in '" . esc_path
($project_filter) . "'";
4667 $title .= " - " . to_utf8
($project);
4669 return $title unless (defined $action);
4670 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
4672 return $title unless (defined $file_name);
4673 $title .= " - " . esc_path
($file_name);
4674 if ($action eq "tree" && $file_name !~ m
|/$|) {
4681 sub get_content_type_html
{
4682 # require explicit support from the UA if we are to send the page as
4683 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
4684 # we have to do this because MSIE sometimes globs '*/*', pretending to
4685 # support xhtml+xml but choking when it gets what it asked for.
4686 if (defined $cgi->http('HTTP_ACCEPT') &&
4687 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
4688 $cgi->Accept('application/xhtml+xml') != 0) {
4689 return 'application/xhtml+xml';
4695 sub print_feed_meta
{
4696 if (defined $project) {
4697 my %href_params = get_feed_info
();
4698 if (!exists $href_params{'-title'}) {
4699 $href_params{'-title'} = 'log';
4702 foreach my $format (qw(RSS Atom)) {
4703 my $type = lc($format);
4705 '-rel' => 'alternate',
4706 '-title' => esc_attr
("$project - $href_params{'-title'} - $format feed"),
4707 '-type' => "application/$type+xml"
4710 $href_params{'extra_options'} = undef;
4711 $href_params{'action'} = $type;
4712 $link_attr{'-href'} = href
(%href_params);
4714 "rel=\"$link_attr{'-rel'}\" ".
4715 "title=\"$link_attr{'-title'}\" ".
4716 "href=\"$link_attr{'-href'}\" ".
4717 "type=\"$link_attr{'-type'}\" ".
4720 $href_params{'extra_options'} = '--no-merges';
4721 $link_attr{'-href'} = href
(%href_params);
4722 $link_attr{'-title'} .= ' (no merges)';
4724 "rel=\"$link_attr{'-rel'}\" ".
4725 "title=\"$link_attr{'-title'}\" ".
4726 "href=\"$link_attr{'-href'}\" ".
4727 "type=\"$link_attr{'-type'}\" ".
4732 printf('<link rel="alternate" title="%s projects list" '.
4733 'href="%s" type="text/plain; charset=utf-8" />'."\n",
4734 esc_attr
($site_name), href
(project
=>undef, action
=>"project_index"));
4735 printf('<link rel="alternate" title="%s projects feeds" '.
4736 'href="%s" type="text/x-opml" />'."\n",
4737 esc_attr
($site_name), href
(project
=>undef, action
=>"opml"));
4741 sub print_header_links
{
4744 # print out each stylesheet that exist, providing backwards capability
4745 # for those people who defined $stylesheet in a config file
4746 if (defined $stylesheet) {
4747 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4749 foreach my $stylesheet (@stylesheets) {
4750 next unless $stylesheet;
4751 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4755 if ($status eq '200 OK');
4756 if (defined $favicon) {
4757 print qq(<link rel
="shortcut icon" href
=").esc_url($favicon).qq(" type
="image/png" />\n);
4761 sub print_nav_breadcrumbs_path
{
4762 my $dirprefix = undef;
4763 while (my $part = shift) {
4764 $dirprefix .= "/" if defined $dirprefix;
4765 $dirprefix .= $part;
4766 print $cgi->a({-href
=> href
(project
=> undef,
4767 project_filter
=> $dirprefix,
4768 action
=> "project_list")},
4769 esc_html
($part)) . " / ";
4773 sub print_nav_breadcrumbs
{
4776 for my $crumb (@extra_breadcrumbs, [ $home_link_str => $home_link ]) {
4777 print $cgi->a({-href
=> esc_url
($crumb->[1])}, $crumb->[0]) . " / ";
4779 if (defined $project) {
4780 my @dirname = split '/', $project;
4781 my $projectbasename = pop @dirname;
4782 print_nav_breadcrumbs_path
(@dirname);
4783 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($projectbasename));
4784 if (defined $action) {
4785 my $action_print = $action ;
4786 if (defined $opts{-action_extra
}) {
4787 $action_print = $cgi->a({-href
=> href
(action
=>$action)},
4790 print " / $action_print";
4792 if (defined $opts{-action_extra
}) {
4793 print " / $opts{-action_extra}";
4796 } elsif (defined $project_filter) {
4797 print_nav_breadcrumbs_path
(split '/', $project_filter);
4801 sub print_search_form
{
4802 if (!defined $searchtext) {
4806 if (defined $hash_base) {
4807 $search_hash = $hash_base;
4808 } elsif (defined $hash) {
4809 $search_hash = $hash;
4811 $search_hash = "HEAD";
4813 my $action = $my_uri;
4814 my $use_pathinfo = gitweb_check_feature
('pathinfo');
4815 if ($use_pathinfo) {
4816 $action .= "/".esc_url
($project);
4818 print $cgi->start_form(-method
=> "get", -action
=> $action) .
4819 "<div class=\"search\">\n" .
4821 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
4822 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
4823 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
4824 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
4825 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
4826 " " . $cgi->a({-href
=> href
(action
=>"search_help"),
4827 -title
=> "search help" }, "?") . " search:\n",
4828 $cgi->textfield(-name
=> "s", -value
=> $searchtext, -override
=> 1) . "\n" .
4829 "<span title=\"Extended regular expression\">" .
4830 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
4831 -checked
=> $search_use_regexp) .
4834 $cgi->end_form() . "\n";
4837 sub git_header_html
{
4838 my $status = shift || "200 OK";
4839 my $expires = shift;
4842 my $title = get_page_title
();
4843 my $content_type = get_content_type_html
();
4844 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
4845 -status
=> $status, -expires
=> $expires)
4846 unless ($opts{'-no_http_header'});
4847 my $mod_perl_version = $ENV{'MOD_PERL'} ?
" $ENV{'MOD_PERL'}" : '';
4849 <?xml version="1.0" encoding="utf-8"?>
4850 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4851 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4852 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
4853 <!-- git core binaries version $git_version -->
4855 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
4856 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
4857 <meta name="robots" content="index, nofollow"/>
4858 <title>$title</title>
4860 # the stylesheet, favicon etc urls won't work correctly with path_info
4861 # unless we set the appropriate base URL
4862 if ($ENV{'PATH_INFO'}) {
4863 print "<base href=\"".esc_url
($base_url)."\" />\n";
4865 print_header_links
($status);
4867 if (defined $site_html_head_string) {
4868 print to_utf8
($site_html_head_string);
4874 if (defined $site_header && -f
$site_header) {
4875 insert_file
($site_header);
4878 print "<div class=\"page_header\">\n";
4879 if (defined $logo) {
4880 print $cgi->a({-href
=> esc_url
($logo_url),
4881 -title
=> $logo_label},
4882 $cgi->img({-src
=> esc_url
($logo),
4883 -width
=> 72, -height
=> 27,
4885 -class => "logo"}));
4887 print_nav_breadcrumbs
(%opts);
4890 my $have_search = gitweb_check_feature
('search');
4891 if (defined $project && $have_search) {
4892 print_search_form
();
4896 sub compute_timed_interval
{
4897 return "<?gitweb compute_timed_interval?>" if $cache_mode_active;
4898 return tv_interval
($t0, [ gettimeofday
() ]);
4901 sub compute_commands_count
{
4902 return "<?gitweb compute_commands_count?>" if $cache_mode_active;
4903 my $s = $number_of_git_cmds == 1 ?
'' : 's';
4904 return '<span id="generating_cmd">'.
4905 $number_of_git_cmds.
4906 "</span> git command$s";
4909 sub git_footer_html
{
4910 my $feed_class = 'rss_logo';
4912 print "<div class=\"page_footer\">\n";
4913 if (defined $project) {
4914 my $descr = git_get_project_description
($project);
4915 if (defined $descr) {
4916 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
4919 my %href_params = get_feed_info
();
4920 if (!%href_params) {
4921 $feed_class .= ' generic';
4923 $href_params{'-title'} ||= 'log';
4925 foreach my $format (qw(RSS Atom)) {
4926 $href_params{'action'} = lc($format);
4927 print $cgi->a({-href
=> href
(%href_params),
4928 -title
=> "$href_params{'-title'} $format feed",
4929 -class => $feed_class}, $format)."\n";
4933 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml",
4934 project_filter
=> $project_filter),
4935 -class => $feed_class}, "OPML") . " ";
4936 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index",
4937 project_filter
=> $project_filter),
4938 -class => $feed_class}, "TXT") . "\n";
4940 print "</div>\n"; # class="page_footer"
4942 if (defined $t0 && gitweb_check_feature
('timed')) {
4943 print "<div id=\"generating_info\">\n";
4944 print 'This page took '.
4945 '<span id="generating_time" class="time_span">'.
4946 compute_timed_interval
().
4949 compute_commands_count
().
4951 print "</div>\n"; # class="page_footer"
4954 if (defined $site_footer && -f
$site_footer) {
4955 insert_file
($site_footer);
4958 print qq!<script type
="text/javascript" src
="!.esc_url($javascript).qq!"></script
>\n!;
4959 if (defined $action &&
4960 $action eq 'blame_incremental') {
4961 print qq!<script type
="text/javascript">\n!.
4962 qq!startBlame
("!. href(action=>"blame_data
", -replay=>1) .qq!",\n!.
4963 qq! "!. href() .qq!");\n!.
4966 my ($jstimezone, $tz_cookie, $datetime_class) =
4967 gitweb_get_feature
('javascript-timezone');
4969 print qq!<script type
="text/javascript">\n!.
4970 qq!window
.onload
= function
() {\n!;
4971 if (gitweb_check_feature
('javascript-actions')) {
4972 print qq! fixLinks
();\n!;
4974 if ($jstimezone && $tz_cookie && $datetime_class) {
4975 print qq! var tz_cookie
= { name
: '$tz_cookie', expires
: 14, path
: '/' };\n!. # in days
4976 qq! onloadTZSetup
('$jstimezone', tz_cookie
, '$datetime_class');\n!;
4986 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
4987 # Example: die_error(404, 'Hash not found')
4988 # By convention, use the following status codes (as defined in RFC 2616):
4989 # 400: Invalid or missing CGI parameters, or
4990 # requested object exists but has wrong type.
4991 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
4992 # this server or project.
4993 # 404: Requested object/revision/project doesn't exist.
4994 # 500: The server isn't configured properly, or
4995 # an internal error occurred (e.g. failed assertions caused by bugs), or
4996 # an unknown error occurred (e.g. the git binary died unexpectedly).
4997 # 503: The server is currently unavailable (because it is overloaded,
4998 # or down for maintenance). Generally, this is a temporary state.
5000 my $status = shift || 500;
5001 my $error = esc_html
(shift) || "Internal Server Error";
5005 my %http_responses = (
5006 400 => '400 Bad Request',
5007 403 => '403 Forbidden',
5008 404 => '404 Not Found',
5009 500 => '500 Internal Server Error',
5010 503 => '503 Service Unavailable',
5012 git_header_html
($http_responses{$status}, undef, %opts);
5014 <div class="page_body">
5019 if (defined $extra) {
5027 unless ($opts{'-error_handler'});
5030 ## ----------------------------------------------------------------------
5031 ## functions printing or outputting HTML: navigation
5033 sub git_print_page_nav
{
5034 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
5035 $extra = '' if !defined $extra; # pager or formats
5037 my @navs = qw(summary shortlog log commit commitdiff tree);
5039 @navs = grep { $_ ne $suppress } @navs;
5042 my %arg = map { $_ => {action
=>$_} } @navs;
5043 if (defined $head) {
5044 for (qw(commit commitdiff)) {
5045 $arg{$_}{'hash'} = $head;
5047 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
5048 for (qw(shortlog log)) {
5049 $arg{$_}{'hash'} = $head;
5054 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
5055 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
5057 my @actions = gitweb_get_feature
('actions');
5060 'n' => $project, # project name
5061 'f' => $git_dir, # project path within filesystem
5062 'h' => $treehead || '', # current hash ('h' parameter)
5063 'b' => $treebase || '', # hash base ('hb' parameter)
5066 my ($label, $link, $pos) = splice(@actions,0,3);
5068 @navs = map { $_ eq $pos ?
($_, $label) : $_ } @navs;
5070 $link =~ s/%([%nfhb])/$repl{$1}/g;
5071 $arg{$label}{'_href'} = $link;
5074 print "<div class=\"page_nav\">\n" .
5076 map { $_ eq $current ?
5077 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ?
$arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
5079 print "<br/>\n$extra<br/>\n" .
5083 # returns a submenu for the nagivation of the refs views (tags, heads,
5084 # remotes) with the current view disabled and the remotes view only
5085 # available if the feature is enabled
5086 sub format_ref_views
{
5088 my @ref_views = qw{tags heads
};
5089 push @ref_views, 'remotes' if gitweb_check_feature
('remote_heads');
5090 return join " | ", map {
5091 $_ eq $current ?
$_ :
5092 $cgi->a({-href
=> href
(action
=>$_)}, $_)
5096 sub format_paging_nav
{
5097 my ($action, $page, $has_next_link) = @_;
5103 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
5105 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
5106 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5108 $paging_nav .= "first ⋅ prev";
5111 if ($has_next_link) {
5112 $paging_nav .= " ⋅ " .
5113 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
5114 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5116 $paging_nav .= " ⋅ next";
5122 ## ......................................................................
5123 ## functions printing or outputting HTML: div
5125 sub git_print_header_div
{
5126 my ($action, $title, $hash, $hash_base) = @_;
5129 $args{'action'} = $action;
5130 $args{'hash'} = $hash if $hash;
5131 $args{'hash_base'} = $hash_base if $hash_base;
5133 print "<div class=\"header\">\n" .
5134 $cgi->a({-href
=> href
(%args), -class => "title"},
5135 $title ?
$title : $action) .
5139 sub format_repo_url
{
5140 my ($name, $url) = @_;
5141 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
5144 # Group output by placing it in a DIV element and adding a header.
5145 # Options for start_div() can be provided by passing a hash reference as the
5146 # first parameter to the function.
5147 # Options to git_print_header_div() can be provided by passing an array
5148 # reference. This must follow the options to start_div if they are present.
5149 # The content can be a scalar, which is output as-is, a scalar reference, which
5150 # is output after html escaping, an IO handle passed either as *handle or
5151 # *handle{IO}, or a function reference. In the latter case all following
5152 # parameters will be taken as argument to the content function call.
5153 sub git_print_section
{
5154 my ($div_args, $header_args, $content);
5156 if (ref($arg) eq 'HASH') {
5160 if (ref($arg) eq 'ARRAY') {
5161 $header_args = $arg;
5166 print $cgi->start_div($div_args);
5167 git_print_header_div
(@
$header_args);
5169 if (ref($content) eq 'CODE') {
5171 } elsif (ref($content) eq 'SCALAR') {
5172 print esc_html
($$content);
5173 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
5174 while (<$content>) {
5177 } elsif (!ref($content) && defined($content)) {
5181 print $cgi->end_div;
5184 sub format_timestamp_html
{
5186 my $useatnight = shift;
5187 defined($useatnight) or $useatnight = 1;
5188 my $strtime = $date->{'rfc2822'};
5190 my (undef, undef, $datetime_class) =
5191 gitweb_get_feature
('javascript-timezone');
5192 if ($datetime_class) {
5193 $strtime = qq!<span
class="$datetime_class">$strtime</span
>!;
5196 my $localtime_format = '(%02d:%02d %s)';
5197 if ($useatnight && $date->{'hour_local'} < 6) {
5198 $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)';
5201 sprintf($localtime_format,
5202 $date->{'hour_local'}, $date->{'minute_local'}, $date->{'tz_local'});
5207 sub format_lastrefresh_row
{
5208 return "<?gitweb format_lastrefresh_row?>" if $cache_mode_active;
5209 my %rd = parse_file_date
('.last_refresh');
5210 if (defined $rd{'rfc2822'}) {
5211 return "<tr id=\"metadata_lrefresh\"><td>last refresh</td>" .
5212 "<td>".format_timestamp_html
(\
%rd,0)."</td></tr>";
5217 # Outputs the author name and date in long form
5218 sub git_print_authorship
{
5221 my $tag = $opts{-tag
} || 'div';
5222 my $author = $co->{'author_name'};
5224 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
5225 print "<$tag class=\"author_date\">" .
5226 format_search_author
($author, "author", esc_html
($author)) .
5227 " [".format_timestamp_html
(\
%ad)."]".
5228 git_get_avatar
($co->{'author_email'}, -pad_before
=> 1) .
5232 # Outputs table rows containing the full author or committer information,
5233 # in the format expected for 'commit' view (& similar).
5234 # Parameters are a commit hash reference, followed by the list of people
5235 # to output information for. If the list is empty it defaults to both
5236 # author and committer.
5237 sub git_print_authorship_rows
{
5239 # too bad we can't use @people = @_ || ('author', 'committer')
5241 @people = ('author', 'committer') unless @people;
5242 foreach my $who (@people) {
5243 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
5244 print "<tr><td>$who</td><td>" .
5245 format_search_author
($co->{"${who}_name"}, $who,
5246 esc_html
($co->{"${who}_name"})) . " " .
5247 format_search_author
($co->{"${who}_email"}, $who,
5248 esc_html
("<" . $co->{"${who}_email"} . ">")) .
5249 "</td><td rowspan=\"2\">" .
5250 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
5254 format_timestamp_html
(\
%wd) .
5260 sub git_print_page_path
{
5266 print "<div class=\"page_path\">";
5267 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
5268 -title
=> 'tree root'}, to_utf8
("[$project]"));
5270 if (defined $name) {
5271 my @dirname = split '/', $name;
5272 my $basename = pop @dirname;
5275 foreach my $dir (@dirname) {
5276 $fullname .= ($fullname ?
'/' : '') . $dir;
5277 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
5279 -title
=> $fullname}, esc_path
($dir));
5282 if (defined $type && $type eq 'blob') {
5283 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
5285 -title
=> $name}, esc_path
($basename));
5286 } elsif (defined $type && $type eq 'tree') {
5287 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
5289 -title
=> $name}, esc_path
($basename));
5292 print esc_path
($basename);
5295 print "<br/></div>\n";
5302 if ($opts{'-remove_title'}) {
5303 # remove title, i.e. first line of log
5306 # remove leading empty lines
5307 while (defined $log->[0] && $log->[0] eq "") {
5312 my $skip_blank_line = 0;
5313 foreach my $line (@
$log) {
5314 if ($line =~ m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) {
5315 if (! $opts{'-remove_signoff'}) {
5316 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
5317 $skip_blank_line = 1;
5322 if ($line =~ m
,\s
*([a
-z
]*link): (https?
://\S
+),i
) {
5323 if (! $opts{'-remove_signoff'}) {
5324 print "<span class=\"signoff\">" . esc_html
($1) . ": " .
5325 "<a href=\"" . esc_html
($2) . "\">" . esc_html
($2) . "</a>" .
5327 $skip_blank_line = 1;
5332 # print only one empty line
5333 # do not print empty line after signoff
5335 next if ($skip_blank_line);
5336 $skip_blank_line = 1;
5338 $skip_blank_line = 0;
5341 print format_log_line_html
($line) . "<br/>\n";
5344 if ($opts{'-final_empty_line'}) {
5345 # end with single empty line
5346 print "<br/>\n" unless $skip_blank_line;
5350 # return link target (what link points to)
5351 sub git_get_link_target
{
5356 defined(my $fd = git_cmd_pipe
"cat-file", "blob", $hash)
5360 $link_target = to_utf8
(scalar <$fd>);
5365 return $link_target;
5368 # given link target, and the directory (basedir) the link is in,
5369 # return target of link relative to top directory (top tree);
5370 # return undef if it is not possible (including absolute links).
5371 sub normalize_link_target
{
5372 my ($link_target, $basedir) = @_;
5374 # absolute symlinks (beginning with '/') cannot be normalized
5375 return if (substr($link_target, 0, 1) eq '/');
5377 # normalize link target to path from top (root) tree (dir)
5380 $path = $basedir . '/' . $link_target;
5382 # we are in top (root) tree (dir)
5383 $path = $link_target;
5386 # remove //, /./, and /../
5388 foreach my $part (split('/', $path)) {
5389 # discard '.' and ''
5390 next if (!$part || $part eq '.');
5392 if ($part eq '..') {
5396 # link leads outside repository (outside top dir)
5400 push @path_parts, $part;
5403 $path = join('/', @path_parts);
5408 # print tree entry (row of git_tree), but without encompassing <tr> element
5409 sub git_print_tree_entry
{
5410 my ($t, $basedir, $hash_base, $have_blame) = @_;
5413 $base_key{'hash_base'} = $hash_base if defined $hash_base;
5415 # The format of a table row is: mode list link. Where mode is
5416 # the mode of the entry, list is the name of the entry, an href,
5417 # and link is the action links of the entry.
5419 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
5420 if (exists $t->{'size'}) {
5421 print "<td class=\"size\">$t->{'size'}</td>\n";
5423 if ($t->{'type'} eq "blob") {
5424 print "<td class=\"list\">" .
5425 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
5426 file_name
=>"$basedir$t->{'name'}", %base_key),
5427 -class => "list"}, esc_path
($t->{'name'}));
5428 if (S_ISLNK
(oct $t->{'mode'})) {
5429 my $link_target = git_get_link_target
($t->{'hash'});
5431 my $norm_target = normalize_link_target
($link_target, $basedir);
5432 if (defined $norm_target) {
5434 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
5435 file_name
=>$norm_target),
5436 -title
=> $norm_target}, esc_path
($link_target));
5438 print " -> " . esc_path
($link_target);
5443 print "<td class=\"link\">";
5444 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
5445 file_name
=>"$basedir$t->{'name'}", %base_key)},
5449 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
5450 file_name
=>"$basedir$t->{'name'}", %base_key)},
5453 if (defined $hash_base) {
5455 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
5456 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
5460 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
5461 file_name
=>"$basedir$t->{'name'}")},
5465 } elsif ($t->{'type'} eq "tree") {
5466 print "<td class=\"list\">";
5467 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
5468 file_name
=>"$basedir$t->{'name'}",
5470 esc_path
($t->{'name'}));
5472 print "<td class=\"link\">";
5473 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
5474 file_name
=>"$basedir$t->{'name'}",
5477 if (defined $hash_base) {
5479 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
5480 file_name
=>"$basedir$t->{'name'}")},
5485 # unknown object: we can only present history for it
5486 # (this includes 'commit' object, i.e. submodule support)
5487 print "<td class=\"list\">" .
5488 esc_path
($t->{'name'}) .
5490 print "<td class=\"link\">";
5491 if (defined $hash_base) {
5492 print $cgi->a({-href
=> href
(action
=>"history",
5493 hash_base
=>$hash_base,
5494 file_name
=>"$basedir$t->{'name'}")},
5501 ## ......................................................................
5502 ## functions printing large fragments of HTML
5504 # get pre-image filenames for merge (combined) diff
5505 sub fill_from_file_info
{
5506 my ($diff, @parents) = @_;
5508 $diff->{'from_file'} = [ ];
5509 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
5510 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
5511 if ($diff->{'status'}[$i] eq 'R' ||
5512 $diff->{'status'}[$i] eq 'C') {
5513 $diff->{'from_file'}[$i] =
5514 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
5521 # is current raw difftree line of file deletion
5523 my $diffinfo = shift;
5525 return $diffinfo->{'to_id'} eq ('0' x
40);
5528 # does patch correspond to [previous] difftree raw line
5529 # $diffinfo - hashref of parsed raw diff format
5530 # $patchinfo - hashref of parsed patch diff format
5531 # (the same keys as in $diffinfo)
5532 sub is_patch_split
{
5533 my ($diffinfo, $patchinfo) = @_;
5535 return defined $diffinfo && defined $patchinfo
5536 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
5540 sub git_difftree_body
{
5541 my ($difftree, $hash, @parents) = @_;
5542 my ($parent) = $parents[0];
5543 my $have_blame = gitweb_check_feature
('blame');
5544 print "<div class=\"list_head\">\n";
5545 if ($#{$difftree} > 10) {
5546 print(($#{$difftree} + 1) . " files changed:\n");
5550 print "<table class=\"" .
5551 (@parents > 1 ?
"combined " : "") .
5554 # header only for combined diff in 'commitdiff' view
5555 my $has_header = @
$difftree && @parents > 1 && $action eq 'commitdiff';
5558 print "<thead><tr>\n" .
5559 "<th></th><th></th>\n"; # filename, patchN link
5560 for (my $i = 0; $i < @parents; $i++) {
5561 my $par = $parents[$i];
5563 $cgi->a({-href
=> href
(action
=>"commitdiff",
5564 hash
=>$hash, hash_parent
=>$par),
5565 -title
=> 'commitdiff to parent number ' .
5566 ($i+1) . ': ' . substr($par,0,7)},
5570 print "</tr></thead>\n<tbody>\n";
5575 foreach my $line (@
{$difftree}) {
5576 my $diff = parsed_difftree_line
($line);
5579 print "<tr class=\"dark\">\n";
5581 print "<tr class=\"light\">\n";
5585 if (exists $diff->{'nparents'}) { # combined diff
5587 fill_from_file_info
($diff, @parents)
5588 unless exists $diff->{'from_file'};
5590 if (!is_deleted
($diff)) {
5591 # file exists in the result (child) commit
5593 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5594 file_name
=>$diff->{'to_file'},
5596 -class => "list"}, esc_path
($diff->{'to_file'})) .
5600 esc_path
($diff->{'to_file'}) .
5604 if ($action eq 'commitdiff') {
5607 print "<td class=\"link\">" .
5608 $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5614 my $has_history = 0;
5615 my $not_deleted = 0;
5616 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
5617 my $hash_parent = $parents[$i];
5618 my $from_hash = $diff->{'from_id'}[$i];
5619 my $from_path = $diff->{'from_file'}[$i];
5620 my $status = $diff->{'status'}[$i];
5622 $has_history ||= ($status ne 'A');
5623 $not_deleted ||= ($status ne 'D');
5625 if ($status eq 'A') {
5626 print "<td class=\"link\" align=\"right\"> | </td>\n";
5627 } elsif ($status eq 'D') {
5628 print "<td class=\"link\">" .
5629 $cgi->a({-href
=> href
(action
=>"blob",
5632 file_name
=>$from_path)},
5636 if ($diff->{'to_id'} eq $from_hash) {
5637 print "<td class=\"link nochange\">";
5639 print "<td class=\"link\">";
5641 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5642 hash
=>$diff->{'to_id'},
5643 hash_parent
=>$from_hash,
5645 hash_parent_base
=>$hash_parent,
5646 file_name
=>$diff->{'to_file'},
5647 file_parent
=>$from_path)},
5653 print "<td class=\"link\">";
5655 print $cgi->a({-href
=> href
(action
=>"blob",
5656 hash
=>$diff->{'to_id'},
5657 file_name
=>$diff->{'to_file'},
5660 print " | " if ($has_history);
5663 print $cgi->a({-href
=> href
(action
=>"history",
5664 file_name
=>$diff->{'to_file'},
5671 next; # instead of 'else' clause, to avoid extra indent
5673 # else ordinary diff
5675 my ($to_mode_oct, $to_mode_str, $to_file_type);
5676 my ($from_mode_oct, $from_mode_str, $from_file_type);
5677 if ($diff->{'to_mode'} ne ('0' x
6)) {
5678 $to_mode_oct = oct $diff->{'to_mode'};
5679 if (S_ISREG
($to_mode_oct)) { # only for regular file
5680 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
5682 $to_file_type = file_type
($diff->{'to_mode'});
5684 if ($diff->{'from_mode'} ne ('0' x
6)) {
5685 $from_mode_oct = oct $diff->{'from_mode'};
5686 if (S_ISREG
($from_mode_oct)) { # only for regular file
5687 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
5689 $from_file_type = file_type
($diff->{'from_mode'});
5692 if ($diff->{'status'} eq "A") { # created
5693 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
5694 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
5695 $mode_chng .= "]</span>";
5697 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5698 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5699 -class => "list"}, esc_path
($diff->{'file'}));
5701 print "<td>$mode_chng</td>\n";
5702 print "<td class=\"link\">";
5703 if ($action eq 'commitdiff') {
5706 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5710 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5711 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5715 } elsif ($diff->{'status'} eq "D") { # deleted
5716 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
5718 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5719 hash_base
=>$parent, file_name
=>$diff->{'file'}),
5720 -class => "list"}, esc_path
($diff->{'file'}));
5722 print "<td>$mode_chng</td>\n";
5723 print "<td class=\"link\">";
5724 if ($action eq 'commitdiff') {
5727 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5731 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5732 hash_base
=>$parent, file_name
=>$diff->{'file'})},
5735 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
5736 file_name
=>$diff->{'file'})},
5739 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
5740 file_name
=>$diff->{'file'})},
5744 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
5745 my $mode_chnge = "";
5746 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5747 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
5748 if ($from_file_type ne $to_file_type) {
5749 $mode_chnge .= " from $from_file_type to $to_file_type";
5751 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
5752 if ($from_mode_str && $to_mode_str) {
5753 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
5754 } elsif ($to_mode_str) {
5755 $mode_chnge .= " mode: $to_mode_str";
5758 $mode_chnge .= "]</span>\n";
5761 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5762 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5763 -class => "list"}, esc_path
($diff->{'file'}));
5765 print "<td>$mode_chnge</td>\n";
5766 print "<td class=\"link\">";
5767 if ($action eq 'commitdiff') {
5770 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5773 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5774 # "commit" view and modified file (not onlu mode changed)
5775 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5776 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5777 hash_base
=>$hash, hash_parent_base
=>$parent,
5778 file_name
=>$diff->{'file'})},
5782 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5783 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5786 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5787 file_name
=>$diff->{'file'})},
5790 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5791 file_name
=>$diff->{'file'})},
5795 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
5796 my %status_name = ('R' => 'moved', 'C' => 'copied');
5797 my $nstatus = $status_name{$diff->{'status'}};
5799 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5800 # mode also for directories, so we cannot use $to_mode_str
5801 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
5804 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
5805 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
5806 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
5807 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
5808 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
5809 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
5810 -class => "list"}, esc_path
($diff->{'from_file'})) .
5811 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
5812 "<td class=\"link\">";
5813 if ($action eq 'commitdiff') {
5816 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5819 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5820 # "commit" view and modified file (not only pure rename or copy)
5821 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5822 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5823 hash_base
=>$hash, hash_parent_base
=>$parent,
5824 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
5828 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5829 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
5832 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5833 file_name
=>$diff->{'to_file'})},
5836 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5837 file_name
=>$diff->{'to_file'})},
5841 } # we should not encounter Unmerged (U) or Unknown (X) status
5844 print "</tbody>" if $has_header;
5848 # Print context lines and then rem/add lines in a side-by-side manner.
5849 sub print_sidebyside_diff_lines
{
5850 my ($ctx, $rem, $add) = @_;
5852 # print context block before add/rem block
5855 '<div class="chunk_block ctx">',
5856 '<div class="old">',
5859 '<div class="new">',
5868 '<div class="chunk_block rem">',
5869 '<div class="old">',
5876 '<div class="chunk_block add">',
5877 '<div class="new">',
5883 '<div class="chunk_block chg">',
5884 '<div class="old">',
5887 '<div class="new">',
5894 # Print context lines and then rem/add lines in inline manner.
5895 sub print_inline_diff_lines
{
5896 my ($ctx, $rem, $add) = @_;
5898 print @
$ctx, @
$rem, @
$add;
5901 # Format removed and added line, mark changed part and HTML-format them.
5902 # Implementation is based on contrib/diff-highlight
5903 sub format_rem_add_lines_pair
{
5904 my ($rem, $add, $num_parents) = @_;
5906 # We need to untabify lines before split()'ing them;
5907 # otherwise offsets would be invalid.
5910 $rem = untabify
($rem);
5911 $add = untabify
($add);
5913 my @rem = split(//, $rem);
5914 my @add = split(//, $add);
5915 my ($esc_rem, $esc_add);
5916 # Ignore leading +/- characters for each parent.
5917 my ($prefix_len, $suffix_len) = ($num_parents, 0);
5918 my ($prefix_has_nonspace, $suffix_has_nonspace);
5920 my $shorter = (@rem < @add) ?
@rem : @add;
5921 while ($prefix_len < $shorter) {
5922 last if ($rem[$prefix_len] ne $add[$prefix_len]);
5924 $prefix_has_nonspace = 1 if ($rem[$prefix_len] !~ /\s/);
5928 while ($prefix_len + $suffix_len < $shorter) {
5929 last if ($rem[-1 - $suffix_len] ne $add[-1 - $suffix_len]);
5931 $suffix_has_nonspace = 1 if ($rem[-1 - $suffix_len] !~ /\s/);
5935 # Mark lines that are different from each other, but have some common
5936 # part that isn't whitespace. If lines are completely different, don't
5937 # mark them because that would make output unreadable, especially if
5938 # diff consists of multiple lines.
5939 if ($prefix_has_nonspace || $suffix_has_nonspace) {
5940 $esc_rem = esc_html_hl_regions
($rem, 'marked',
5941 [$prefix_len, @rem - $suffix_len], -nbsp
=>1);
5942 $esc_add = esc_html_hl_regions
($add, 'marked',
5943 [$prefix_len, @add - $suffix_len], -nbsp
=>1);
5945 $esc_rem = esc_html
($rem, -nbsp
=>1);
5946 $esc_add = esc_html
($add, -nbsp
=>1);
5949 return format_diff_line
(\
$esc_rem, 'rem'),
5950 format_diff_line
(\
$esc_add, 'add');
5953 # HTML-format diff context, removed and added lines.
5954 sub format_ctx_rem_add_lines
{
5955 my ($ctx, $rem, $add, $num_parents) = @_;
5956 my (@new_ctx, @new_rem, @new_add);
5957 my $can_highlight = 0;
5958 my $is_combined = ($num_parents > 1);
5960 # Highlight if every removed line has a corresponding added line.
5961 if (@
$add > 0 && @
$add == @
$rem) {
5964 # Highlight lines in combined diff only if the chunk contains
5965 # diff between the same version, e.g.
5972 # Otherwise the highlightling would be confusing.
5974 for (my $i = 0; $i < @
$add; $i++) {
5975 my $prefix_rem = substr($rem->[$i], 0, $num_parents);
5976 my $prefix_add = substr($add->[$i], 0, $num_parents);
5978 $prefix_rem =~ s/-/+/g;
5980 if ($prefix_rem ne $prefix_add) {
5988 if ($can_highlight) {
5989 for (my $i = 0; $i < @
$add; $i++) {
5990 my ($line_rem, $line_add) = format_rem_add_lines_pair
(
5991 $rem->[$i], $add->[$i], $num_parents);
5992 push @new_rem, $line_rem;
5993 push @new_add, $line_add;
5996 @new_rem = map { format_diff_line
($_, 'rem') } @
$rem;
5997 @new_add = map { format_diff_line
($_, 'add') } @
$add;
6000 @new_ctx = map { format_diff_line
($_, 'ctx') } @
$ctx;
6002 return (\
@new_ctx, \
@new_rem, \
@new_add);
6005 # Print context lines and then rem/add lines.
6006 sub print_diff_lines
{
6007 my ($ctx, $rem, $add, $diff_style, $num_parents) = @_;
6008 my $is_combined = $num_parents > 1;
6010 ($ctx, $rem, $add) = format_ctx_rem_add_lines
($ctx, $rem, $add,
6013 if ($diff_style eq 'sidebyside' && !$is_combined) {
6014 print_sidebyside_diff_lines
($ctx, $rem, $add);
6016 # default 'inline' style and unknown styles
6017 print_inline_diff_lines
($ctx, $rem, $add);
6021 sub print_diff_chunk
{
6022 my ($diff_style, $num_parents, $from, $to, @chunk) = @_;
6023 my (@ctx, @rem, @add);
6025 # The class of the previous line.
6026 my $prev_class = '';
6028 return unless @chunk;
6030 # incomplete last line might be among removed or added lines,
6031 # or both, or among context lines: find which
6032 for (my $i = 1; $i < @chunk; $i++) {
6033 if ($chunk[$i][0] eq 'incomplete') {
6034 $chunk[$i][0] = $chunk[$i-1][0];
6039 push @chunk, ["", ""];
6041 foreach my $line_info (@chunk) {
6042 my ($class, $line) = @
$line_info;
6044 # print chunk headers
6045 if ($class && $class eq 'chunk_header') {
6046 print format_diff_line
($line, $class, $from, $to);
6050 ## print from accumulator when have some add/rem lines or end
6051 # of chunk (flush context lines), or when have add and rem
6052 # lines and new block is reached (otherwise add/rem lines could
6054 if (!$class || ((@rem || @add) && $class eq 'ctx') ||
6055 (@rem && @add && $class ne $prev_class)) {
6056 print_diff_lines
(\
@ctx, \
@rem, \
@add,
6057 $diff_style, $num_parents);
6058 @ctx = @rem = @add = ();
6061 ## adding lines to accumulator
6064 # rem, add or change
6065 if ($class eq 'rem') {
6067 } elsif ($class eq 'add') {
6071 if ($class eq 'ctx') {
6075 $prev_class = $class;
6079 sub git_patchset_body
{
6080 my ($fd, $diff_style, $difftree, $hash, @hash_parents) = @_;
6081 my ($hash_parent) = $hash_parents[0];
6083 my $is_combined = (@hash_parents > 1);
6085 my $patch_number = 0;
6090 my @chunk; # for side-by-side diff
6092 print "<div class=\"patchset\">\n";
6094 # skip to first patch
6095 while ($patch_line = to_utf8
(scalar <$fd>)) {
6098 last if ($patch_line =~ m/^diff /);
6102 while ($patch_line) {
6104 # parse "git diff" header line
6105 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
6106 # $1 is from_name, which we do not use
6107 $to_name = unquote
($2);
6108 $to_name =~ s!^b/!!;
6109 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
6110 # $1 is 'cc' or 'combined', which we do not use
6111 $to_name = unquote
($2);
6116 # check if current patch belong to current raw line
6117 # and parse raw git-diff line if needed
6118 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
6119 # this is continuation of a split patch
6120 print "<div class=\"patch cont\">\n";
6122 # advance raw git-diff output if needed
6123 $patch_idx++ if defined $diffinfo;
6125 # read and prepare patch information
6126 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
6128 # compact combined diff output can have some patches skipped
6129 # find which patch (using pathname of result) we are at now;
6131 while ($to_name ne $diffinfo->{'to_file'}) {
6132 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
6133 format_diff_cc_simplified
($diffinfo, @hash_parents) .
6134 "</div>\n"; # class="patch"
6139 last if $patch_idx > $#$difftree;
6140 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
6144 # modifies %from, %to hashes
6145 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
6147 # this is first patch for raw difftree line with $patch_idx index
6148 # we index @$difftree array from 0, but number patches from 1
6149 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
6153 #assert($patch_line =~ m/^diff /) if DEBUG;
6154 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
6156 # print "git diff" header
6157 print format_git_diff_header_line
($patch_line, $diffinfo,
6160 # print extended diff header
6161 print "<div class=\"diff extended_header\">\n";
6163 while ($patch_line = to_utf8
(scalar<$fd>)) {
6166 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
6168 print format_extended_diff_header_line
($patch_line, $diffinfo,
6171 print "</div>\n"; # class="diff extended_header"
6173 # from-file/to-file diff header
6174 if (! $patch_line) {
6175 print "</div>\n"; # class="patch"
6178 next PATCH
if ($patch_line =~ m/^diff /);
6179 #assert($patch_line =~ m/^---/) if DEBUG;
6181 my $last_patch_line = $patch_line;
6182 $patch_line = to_utf8
(scalar <$fd>);
6184 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
6186 print format_diff_from_to_header
($last_patch_line, $patch_line,
6187 $diffinfo, \
%from, \
%to,
6192 while ($patch_line = to_utf8
(scalar <$fd>)) {
6195 next PATCH
if ($patch_line =~ m/^diff /);
6197 my $class = diff_line_class
($patch_line, \
%from, \
%to);
6199 if ($class eq 'chunk_header') {
6200 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
6204 push @chunk, [ $class, $patch_line ];
6209 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
6212 print "</div>\n"; # class="patch"
6215 # for compact combined (--cc) format, with chunk and patch simplification
6216 # the patchset might be empty, but there might be unprocessed raw lines
6217 for (++$patch_idx if $patch_number > 0;
6218 $patch_idx < @
$difftree;
6220 # read and prepare patch information
6221 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
6223 # generate anchor for "patch" links in difftree / whatchanged part
6224 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
6225 format_diff_cc_simplified
($diffinfo, @hash_parents) .
6226 "</div>\n"; # class="patch"
6231 if ($patch_number == 0) {
6232 if (@hash_parents > 1) {
6233 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
6235 print "<div class=\"diff nodifferences\">No differences found</div>\n";
6239 print "</div>\n"; # class="patchset"
6242 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
6244 sub git_project_search_form
{
6245 my ($searchtext, $search_use_regexp) = @_;
6248 if ($project_filter) {
6249 $limit = " in '$project_filter'";
6252 print "<div class=\"projsearch\">\n";
6253 print $cgi->start_form(-method
=> 'get', -action
=> $my_uri) .
6254 $cgi->hidden(-name
=> 'a', -value
=> 'project_list') . "\n";
6255 print $cgi->hidden(-name
=> 'pf', -value
=> $project_filter). "\n"
6256 if (defined $project_filter);
6257 print $cgi->textfield(-name
=> 's', -value
=> $searchtext,
6258 -title
=> "Search project by name and description$limit",
6259 -size
=> 60) . "\n" .
6260 "<span title=\"Extended regular expression\">" .
6261 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
6262 -checked
=> $search_use_regexp) .
6264 $cgi->submit(-name
=> 'btnS', -value
=> 'Search') .
6265 $cgi->end_form() . "\n" .
6266 "<span class=\"projectlist_link\">" .
6267 $cgi->a({-href
=> href
(project
=> undef, searchtext
=> undef,
6268 action
=> 'project_list',
6269 project_filter
=> $project_filter)},
6270 esc_html
("List all projects$limit")) . "</span><br />\n";
6271 print "<span class=\"projectlist_link\">" .
6272 $cgi->a({-href
=> href
(project
=> undef, searchtext
=> undef,
6273 action
=> 'project_list',
6274 project_filter
=> undef)},
6275 esc_html
("List all projects")) . "</span>\n" if $project_filter;
6279 # entry for given @keys needs filling if at least one of keys in list
6280 # is not present in %$project_info
6281 sub project_info_needs_filling
{
6282 my ($project_info, @keys) = @_;
6284 # return List::MoreUtils::any { !exists $project_info->{$_} } @keys;
6285 foreach my $key (@keys) {
6286 if (!exists $project_info->{$key}) {
6293 sub git_cache_file_format
{
6294 return GITWEB_CACHE_FORMAT
.
6295 (gitweb_check_feature
('forks') ?
" (forks)" : "");
6298 sub git_retrieve_cache_file
{
6299 my $cache_file = shift;
6301 use Storable
qw(retrieve);
6303 if ((my $dump = eval { retrieve
($cache_file) })) {
6305 ref($dump) eq 'ARRAY' &&
6307 ref($$dump[1]) eq 'ARRAY' &&
6308 @
{$$dump[1]} == 2 &&
6309 ref(${$$dump[1]}[0]) eq 'ARRAY' &&
6310 ref(${$$dump[1]}[1]) eq 'HASH' &&
6311 $$dump[0] eq git_cache_file_format
();
6317 sub git_store_cache_file
{
6318 my ($cache_file, $cachedata) = @_;
6320 use File
::Basename
qw(dirname);
6322 use POSIX
qw(:fcntl_h);
6323 use Storable
qw(store_fd);
6326 my $cache_d = dirname
($cache_file);
6328 umask($mask & ~0070) if $cache_grpshared;
6329 if ((-d
$cache_d || mkdir($cache_d, $cache_grpshared ?
0770 : 0700)) &&
6330 sysopen(my $fd, "$cache_file.lock", O_WRONLY
|O_CREAT
|O_EXCL
, $cache_grpshared ?
0660 : 0600)) {
6331 store_fd
([git_cache_file_format
(), $cachedata], $fd);
6333 rename "$cache_file.lock", $cache_file;
6334 $result = stat($cache_file)->mtime;
6336 umask($mask) if $cache_grpshared;
6340 sub verify_cached_project
{
6341 my ($hashref, $path) = @_;
6342 return undef unless $path;
6343 delete $$hashref{$path}, return undef unless is_valid_project
($path);
6344 return $$hashref{$path} if exists $$hashref{$path};
6346 # A valid project was requested but it's not yet in the cache
6347 # Manufacture a minimal project entry (path, name, description)
6348 # Also provide age, but only if it's available via $lastactivity_file
6350 my %proj = ('path' => $path);
6351 my $val = git_get_project_description
($path);
6352 defined $val or $val = '';
6353 $proj{'descr_long'} = $val;
6354 $proj{'descr'} = chop_str
($val, $projects_list_description_width, 5);
6355 unless ($omit_owner) {
6356 $val = git_get_project_owner
($path);
6357 defined $val or $val = '';
6358 $proj{'owner'} = $val;
6360 unless ($omit_age_column) {
6361 ($val) = git_get_last_activity
($path, 1);
6362 $proj{'age_epoch'} = $val if defined $val;
6364 $$hashref{$path} = \
%proj;
6368 sub git_filter_cached_projects
{
6369 my ($cache, $projlist, $verify) = @_;
6370 my $hashref = $$cache[1];
6372 sub {verify_cached_project
($hashref, $_[0])} :
6373 sub {$$hashref{$_[0]}};
6375 my $c = &$sub($_->{'path'});
6376 defined $c ?
($_ = $c) : ()
6380 # fills project list info (age, description, owner, category, forks, etc.)
6381 # for each project in the list, removing invalid projects from
6382 # returned list, or fill only specified info.
6384 # Invalid projects are removed from the returned list if and only if you
6385 # ask 'age_epoch' to be filled, because they are the only fields
6386 # that run unconditionally git command that requires repository, and
6387 # therefore do always check if project repository is invalid.
6390 # * fill_project_list_info(\@project_list, 'descr_long', 'ctags')
6391 # ensures that 'descr_long' and 'ctags' fields are filled
6392 # * @project_list = fill_project_list_info(\@project_list)
6393 # ensures that all fields are filled (and invalid projects removed)
6395 # NOTE: modifies $projlist, but does not remove entries from it
6396 sub fill_project_list_info
{
6397 my ($projlist, @wanted_keys) = @_;
6399 my $rebuild = @wanted_keys && $wanted_keys[0] eq 'rebuild-cache' && shift @wanted_keys;
6400 return fill_project_list_info_uncached
($projlist, @wanted_keys)
6401 unless $projlist_cache_lifetime && $projlist_cache_lifetime > 0;
6405 my $cache_lifetime = $rebuild ?
0 : $projlist_cache_lifetime;
6406 my $cache_file = "$cache_dir/$projlist_cache_name";
6412 if ($cache_lifetime && -f
$cache_file) {
6413 $cache_mtime = stat($cache_file)->mtime;
6414 $cache_dump = undef if $cache_mtime &&
6415 (!$cache_dump_mtime || $cache_dump_mtime != $cache_mtime);
6417 if (defined $cache_mtime && # caching is on and $cache_file exists
6418 $cache_mtime + $cache_lifetime*60 > $now &&
6419 ($cache_dump || ($cache_dump = git_retrieve_cache_file
($cache_file)))) {
6421 $cache_dump_mtime = $cache_mtime;
6422 $stale = $now - $cache_mtime;
6423 my $verify = ($action eq 'summary' || $action eq 'forks') &&
6424 gitweb_check_feature
('forks');
6425 @projects = git_filter_cached_projects
($cache_dump, $projlist, $verify);
6427 } else { # Cache miss.
6428 if (defined $cache_mtime) {
6429 # Postpone timeout by two minutes so that we get
6430 # enough time to do our job, or to be more exact
6431 # make cache expire after two minutes from now.
6432 my $time = $now - $cache_lifetime*60 + 120;
6433 utime $time, $time, $cache_file;
6435 my @all_projects = git_get_projects_list
();
6436 my %all_projects_filled = map { ( $_->{'path'} => $_ ) }
6437 fill_project_list_info_uncached
(\
@all_projects);
6438 map { $all_projects_filled{$_->{'path'}} = $_ }
6439 filter_forks_from_projects_list
([values(%all_projects_filled)])
6440 if gitweb_check_feature
('forks');
6441 $cache_dump = [[sort {$a->{'path'} cmp $b->{'path'}} values(%all_projects_filled)],
6442 \
%all_projects_filled];
6443 $cache_dump_mtime = git_store_cache_file
($cache_file, $cache_dump);
6444 @projects = git_filter_cached_projects
($cache_dump, $projlist);
6447 if ($cache_lifetime && $stale > 0) {
6448 print "<div class=\"stale_info\">Cached version (${stale}s old)</div>\n"
6449 unless $shown_stale_message;
6450 $shown_stale_message = 1;
6456 sub fill_project_list_info_uncached
{
6457 my ($projlist, @wanted_keys) = @_;
6459 my $filter_set = sub { return @_; };
6461 my %wanted_keys = map { $_ => 1 } @wanted_keys;
6462 $filter_set = sub { return grep { $wanted_keys{$_} } @_; };
6465 my $show_ctags = gitweb_check_feature
('ctags');
6467 foreach my $pr (@
$projlist) {
6468 if (project_info_needs_filling
($pr, $filter_set->('age_epoch'))) {
6469 my (@activity) = git_get_last_activity
($pr->{'path'});
6470 unless (@activity) {
6473 ($pr->{'age_epoch'}) = @activity;
6475 if (project_info_needs_filling
($pr, $filter_set->('descr', 'descr_long'))) {
6476 my $descr = git_get_project_description
($pr->{'path'}) || "";
6477 $descr = to_utf8
($descr);
6478 $pr->{'descr_long'} = $descr;
6479 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
6481 if (project_info_needs_filling
($pr, $filter_set->('owner'))) {
6482 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
6485 project_info_needs_filling
($pr, $filter_set->('ctags'))) {
6486 $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
6488 if ($projects_list_group_categories &&
6489 project_info_needs_filling
($pr, $filter_set->('category'))) {
6490 my $cat = git_get_project_category
($pr->{'path'}) ||
6491 $project_list_default_category;
6492 $pr->{'category'} = to_utf8
($cat);
6495 push @projects, $pr;
6501 sub sort_projects_list
{
6502 my ($projlist, $order) = @_;
6506 return sub { $a->{$key} cmp $b->{$key} };
6509 sub order_reverse_num_then_undef
{
6512 defined $a->{$key} ?
6513 (defined $b->{$key} ?
$b->{$key} <=> $a->{$key} : -1) :
6514 (defined $b->{$key} ?
1 : 0)
6519 project
=> order_str
('path'),
6520 descr
=> order_str
('descr_long'),
6521 owner
=> order_str
('owner'),
6522 age
=> order_reverse_num_then_undef
('age_epoch'),
6525 my $ordering = $orderings{$order};
6526 return defined $ordering ?
sort $ordering @
$projlist : @
$projlist;
6529 # returns a hash of categories, containing the list of project
6530 # belonging to each category
6531 sub build_projlist_by_category
{
6532 my ($projlist, $from, $to) = @_;
6535 $from = 0 unless defined $from;
6536 $to = $#$projlist if (!defined $to || $#$projlist < $to);
6538 for (my $i = $from; $i <= $to; $i++) {
6539 my $pr = $projlist->[$i];
6540 push @
{$categories{ $pr->{'category'} }}, $pr;
6543 return wantarray ?
%categories : \
%categories;
6546 # print 'sort by' <th> element, generating 'sort by $name' replay link
6547 # if that order is not selected
6549 print format_sort_th
(@_);
6552 sub format_sort_th
{
6553 my ($name, $order, $header) = @_;
6555 $header ||= ucfirst($name);
6557 if ($order eq $name) {
6558 $sort_th .= "<th>$header</th>\n";
6560 $sort_th .= "<th>" .
6561 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
6562 -class => "header"}, $header) .
6569 sub git_project_list_rows
{
6570 my ($projlist, $from, $to, $check_forks) = @_;
6572 $from = 0 unless defined $from;
6573 $to = $#$projlist if (!defined $to || $#$projlist < $to);
6577 for (my $i = $from; $i <= $to; $i++) {
6578 my $pr = $projlist->[$i];
6581 print "<tr class=\"dark\">\n";
6583 print "<tr class=\"light\">\n";
6589 if ($pr->{'forks'}) {
6590 my $nforks = scalar @
{$pr->{'forks'}};
6592 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks"),
6593 -title
=> "$nforks forks"}, "+");
6595 print $cgi->span({-title
=> "$nforks forks"}, "+");
6600 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
6602 esc_html_match_hl
($pr->{'path'}, $search_regexp)) .
6604 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
6606 -title
=> $pr->{'descr_long'}},
6608 ? esc_html_match_hl_chopped
($pr->{'descr_long'},
6609 $pr->{'descr'}, $search_regexp)
6610 : esc_html
($pr->{'descr'})) .
6612 unless ($omit_owner) {
6613 print "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
6615 unless ($omit_age_column) {
6616 my ($age_epoch, $age_string) = ($pr->{'age_epoch'});
6617 $age_string = defined $age_epoch ? age_string
($age_epoch, $now) : "No commits";
6618 print "<td class=\"". age_class
($age_epoch, $now) . "\">" . $age_string . "</td>\n";
6620 print"<td class=\"link\">" .
6621 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
6622 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
6623 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
6624 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
6625 ($pr->{'forks'} ?
" | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
6631 sub git_project_list_body
{
6632 # actually uses global variable $project
6633 my ($projlist, $order, $from, $to, $extra, $no_header, $ctags_action) = @_;
6634 my @projects = @
$projlist;
6636 my $check_forks = gitweb_check_feature
('forks');
6637 my $show_ctags = gitweb_check_feature
('ctags');
6638 my $tagfilter = $show_ctags ?
$input_params{'ctag_filter'} : undef;
6639 $check_forks = undef
6640 if ($tagfilter || $search_regexp);
6642 # filtering out forks before filling info allows to do less work
6643 @projects = filter_forks_from_projects_list
(\
@projects)
6645 # search_projects_list pre-fills required info
6646 @projects = search_projects_list
(\
@projects,
6647 'search_regexp' => $search_regexp,
6648 'tagfilter' => $tagfilter)
6649 if ($tagfilter || $search_regexp);
6651 my @all_fields = ('descr', 'descr_long', 'ctags', 'category');
6652 push @all_fields, 'age_epoch' unless($omit_age_column);
6653 push @all_fields, 'owner' unless($omit_owner);
6654 @projects = fill_project_list_info
(\
@projects, @all_fields);
6656 $order ||= $default_projects_order;
6657 $from = 0 unless defined $from;
6658 $to = $#projects if (!defined $to || $#projects < $to);
6663 "<b>No such projects found</b><br />\n".
6664 "Click ".$cgi->a({-href
=>href
(project
=>undef,action
=>'project_list')},"here")." to view all projects<br />\n".
6665 "</center>\n<br />\n";
6669 @projects = sort_projects_list
(\
@projects, $order);
6672 my $ctags = git_gather_all_ctags
(\
@projects);
6673 my $cloud = git_populate_project_tagcloud
($ctags, $ctags_action||'project_list');
6674 print git_show_project_tagcloud
($cloud, 64);
6677 print "<table class=\"project_list\">\n";
6678 unless ($no_header) {
6681 print "<th></th>\n";
6683 print_sort_th
('project', $order, 'Project');
6684 print_sort_th
('descr', $order, 'Description');
6685 print_sort_th
('owner', $order, 'Owner') unless $omit_owner;
6686 print_sort_th
('age', $order, 'Last Change') unless $omit_age_column;
6687 print "<th></th>\n" . # for links
6691 if ($projects_list_group_categories) {
6692 # only display categories with projects in the $from-$to window
6693 @projects = sort {$a->{'category'} cmp $b->{'category'}} @projects[$from..$to];
6694 my %categories = build_projlist_by_category
(\
@projects, $from, $to);
6695 foreach my $cat (sort keys %categories) {
6696 unless ($cat eq "") {
6699 print "<td></td>\n";
6701 print "<td class=\"category\" colspan=\"5\">".esc_html
($cat)."</td>\n";
6705 git_project_list_rows
($categories{$cat}, undef, undef, $check_forks);
6708 git_project_list_rows
(\
@projects, $from, $to, $check_forks);
6711 if (defined $extra) {
6714 print "<td></td>\n";
6716 print "<td colspan=\"5\">$extra</td>\n" .
6723 # uses global variable $project
6724 my ($commitlist, $from, $to, $refs, $extra) = @_;
6726 $from = 0 unless defined $from;
6727 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6729 for (my $i = 0; $i <= $to; $i++) {
6730 my %co = %{$commitlist->[$i]};
6732 my $commit = $co{'id'};
6733 my $ref = format_ref_marker
($refs, $commit);
6734 git_print_header_div
('commit',
6735 "<span class=\"age\">$co{'age_string'}</span>" .
6736 esc_html
($co{'title'}) . $ref,
6738 print "<div class=\"title_text\">\n" .
6739 "<div class=\"log_link\">\n" .
6740 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
6742 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
6744 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
6747 git_print_authorship
(\
%co, -tag
=> 'span');
6748 print "<br/>\n</div>\n";
6750 print "<div class=\"log_body\">\n";
6751 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
6755 print "<div class=\"page_nav\">\n";
6761 sub git_shortlog_body
{
6762 # uses global variable $project
6763 my ($commitlist, $from, $to, $refs, $extra) = @_;
6765 $from = 0 unless defined $from;
6766 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6768 print "<table class=\"shortlog\">\n";
6770 for (my $i = $from; $i <= $to; $i++) {
6771 my %co = %{$commitlist->[$i]};
6772 my $commit = $co{'id'};
6773 my $ref = format_ref_marker
($refs, $commit);
6775 print "<tr class=\"dark\">\n";
6777 print "<tr class=\"light\">\n";
6780 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
6781 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6782 format_author_html
('td', \
%co, 10) . "<td>";
6783 print format_subject_html
($co{'title'}, $co{'title_short'},
6784 href
(action
=>"commit", hash
=>$commit), $ref);
6786 "<td class=\"link\">" .
6787 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
6788 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
6789 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
6790 my $snapshot_links = format_snapshot_links
($commit);
6791 if (defined $snapshot_links) {
6792 print " | " . $snapshot_links;
6797 if (defined $extra) {
6799 "<td colspan=\"4\">$extra</td>\n" .
6805 sub git_history_body
{
6806 # Warning: assumes constant type (blob or tree) during history
6807 my ($commitlist, $from, $to, $refs, $extra,
6808 $file_name, $file_hash, $ftype) = @_;
6810 $from = 0 unless defined $from;
6811 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
6813 print "<table class=\"history\">\n";
6815 for (my $i = $from; $i <= $to; $i++) {
6816 my %co = %{$commitlist->[$i]};
6820 my $commit = $co{'id'};
6822 my $ref = format_ref_marker
($refs, $commit);
6825 print "<tr class=\"dark\">\n";
6827 print "<tr class=\"light\">\n";
6830 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6831 # shortlog: format_author_html('td', \%co, 10)
6832 format_author_html
('td', \
%co, 15, 3) . "<td>";
6833 # originally git_history used chop_str($co{'title'}, 50)
6834 print format_subject_html
($co{'title'}, $co{'title_short'},
6835 href
(action
=>"commit", hash
=>$commit), $ref);
6837 "<td class=\"link\">" .
6838 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
6839 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
6841 if ($ftype eq 'blob') {
6842 my $blob_current = $file_hash;
6843 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
6844 if (defined $blob_current && defined $blob_parent &&
6845 $blob_current ne $blob_parent) {
6847 $cgi->a({-href
=> href
(action
=>"blobdiff",
6848 hash
=>$blob_current, hash_parent
=>$blob_parent,
6849 hash_base
=>$hash_base, hash_parent_base
=>$commit,
6850 file_name
=>$file_name)},
6857 if (defined $extra) {
6859 "<td colspan=\"4\">$extra</td>\n" .
6866 # uses global variable $project
6867 my ($taglist, $from, $to, $extra) = @_;
6868 $from = 0 unless defined $from;
6869 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
6871 print "<table class=\"tags\">\n";
6873 for (my $i = $from; $i <= $to; $i++) {
6874 my $entry = $taglist->[$i];
6876 my $comment = $tag{'subject'};
6878 if (defined $comment) {
6879 $comment_short = chop_str
($comment, 30, 5);
6882 print "<tr class=\"dark\">\n";
6884 print "<tr class=\"light\">\n";
6887 if (defined $tag{'age'}) {
6888 print "<td><i>$tag{'age'}</i></td>\n";
6890 print "<td></td>\n";
6893 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
6894 -class => "list name"}, esc_html
($tag{'name'})) .
6897 if (defined $comment) {
6898 print format_subject_html
($comment, $comment_short,
6899 href
(action
=>"tag", hash
=>$tag{'id'}));
6902 "<td class=\"selflink\">";
6903 if ($tag{'type'} eq "tag") {
6904 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
6909 "<td class=\"link\">" . " | " .
6910 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
6911 if ($tag{'reftype'} eq "commit") {
6912 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
6913 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
6914 } elsif ($tag{'reftype'} eq "blob") {
6915 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
6920 if (defined $extra) {
6922 "<td colspan=\"5\">$extra</td>\n" .
6928 sub git_heads_body
{
6929 # uses global variable $project
6930 my ($headlist, $head_at, $from, $to, $extra) = @_;
6931 $from = 0 unless defined $from;
6932 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
6934 print "<table class=\"heads\">\n";
6936 for (my $i = $from; $i <= $to; $i++) {
6937 my $entry = $headlist->[$i];
6939 my $curr = defined $head_at && $ref{'id'} eq $head_at;
6941 print "<tr class=\"dark\">\n";
6943 print "<tr class=\"light\">\n";
6946 print "<td><i>$ref{'age'}</i></td>\n" .
6947 ($curr ?
"<td class=\"current_head\">" : "<td>") .
6948 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
6949 -class => "list name"},esc_html
($ref{'name'})) .
6951 "<td class=\"link\">" .
6952 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
6953 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
6954 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'fullname'})}, "tree") .
6958 if (defined $extra) {
6960 "<td colspan=\"3\">$extra</td>\n" .
6966 # Display a single remote block
6967 sub git_remote_block
{
6968 my ($remote, $rdata, $limit, $head) = @_;
6970 my $heads = $rdata->{'heads'};
6971 my $fetch = $rdata->{'fetch'};
6972 my $push = $rdata->{'push'};
6974 my $urls_table = "<table class=\"projects_list\">\n" ;
6976 if (defined $fetch) {
6977 if ($fetch eq $push) {
6978 $urls_table .= format_repo_url
("URL", $fetch);
6980 $urls_table .= format_repo_url
("Fetch URL", $fetch);
6981 $urls_table .= format_repo_url
("Push URL", $push) if defined $push;
6983 } elsif (defined $push) {
6984 $urls_table .= format_repo_url
("Push URL", $push);
6986 $urls_table .= format_repo_url
("", "No remote URL");
6989 $urls_table .= "</table>\n";
6992 if (defined $limit && $limit < @
$heads) {
6993 $dots = $cgi->a({-href
=> href
(action
=>"remotes", hash
=>$remote)}, "...");
6997 git_heads_body
($heads, $head, 0, $limit, $dots);
7000 # Display a list of remote names with the respective fetch and push URLs
7001 sub git_remotes_list
{
7002 my ($remotedata, $limit) = @_;
7003 print "<table class=\"heads\">\n";
7005 my @remotes = sort keys %$remotedata;
7007 my $limited = $limit && $limit < @remotes;
7009 $#remotes = $limit - 1 if $limited;
7011 while (my $remote = shift @remotes) {
7012 my $rdata = $remotedata->{$remote};
7013 my $fetch = $rdata->{'fetch'};
7014 my $push = $rdata->{'push'};
7016 print "<tr class=\"dark\">\n";
7018 print "<tr class=\"light\">\n";
7022 $cgi->a({-href
=> href
(action
=>'remotes', hash
=>$remote),
7023 -class=> "list name"},esc_html
($remote)) .
7025 print "<td class=\"link\">" .
7026 (defined $fetch ?
$cgi->a({-href
=> $fetch}, "fetch") : "fetch") .
7028 (defined $push ?
$cgi->a({-href
=> $push}, "push") : "push") .
7036 "<td colspan=\"3\">" .
7037 $cgi->a({-href
=> href
(action
=>"remotes")}, "...") .
7038 "</td>\n" . "</tr>\n";
7044 # Display remote heads grouped by remote, unless there are too many
7045 # remotes, in which case we only display the remote names
7046 sub git_remotes_body
{
7047 my ($remotedata, $limit, $head) = @_;
7048 if ($limit and $limit < keys %$remotedata) {
7049 git_remotes_list
($remotedata, $limit);
7051 fill_remote_heads
($remotedata);
7052 while (my ($remote, $rdata) = each %$remotedata) {
7053 git_print_section
({-class=>"remote", -id
=>$remote},
7054 ["remotes", $remote, $remote], sub {
7055 git_remote_block
($remote, $rdata, $limit, $head);
7061 sub git_search_message
{
7065 if ($searchtype eq 'commit') {
7066 $greptype = "--grep=";
7067 } elsif ($searchtype eq 'author') {
7068 $greptype = "--author=";
7069 } elsif ($searchtype eq 'committer') {
7070 $greptype = "--committer=";
7072 $greptype .= $searchtext;
7073 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
7074 $greptype, '--regexp-ignore-case',
7075 $search_use_regexp ?
'--extended-regexp' : '--fixed-strings');
7077 my $paging_nav = '';
7080 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)},
7083 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
7084 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
7086 $paging_nav .= "first ⋅ prev";
7089 if ($#commitlist >= 100) {
7091 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
7092 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
7093 $paging_nav .= " ⋅ $next_link";
7095 $paging_nav .= " ⋅ next";
7100 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
7101 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
7102 if ($page == 0 && !@commitlist) {
7103 print "<p>No match.</p>\n";
7105 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
7111 sub git_search_changes
{
7115 defined(my $fd = git_cmd_pipe
'--no-pager', 'log', @diff_opts,
7116 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
7117 ($search_use_regexp ?
'--pickaxe-regex' : ()))
7118 or die_error
(500, "Open git-log failed");
7122 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
7123 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
7125 print "<table class=\"pickaxe search\">\n";
7129 while (my $line = to_utf8
(scalar <$fd>)) {
7133 my %set = parse_difftree_raw_line
($line);
7134 if (defined $set{'commit'}) {
7135 # finish previous commit
7138 "<td class=\"link\">" .
7139 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
7142 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
7143 hash_base
=>$co{'id'})},
7150 print "<tr class=\"dark\">\n";
7152 print "<tr class=\"light\">\n";
7155 %co = parse_commit
($set{'commit'});
7156 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
7157 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
7158 "<td><i>$author</i></td>\n" .
7160 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
7161 -class => "list subject"},
7162 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
7163 } elsif (defined $set{'to_id'}) {
7164 next if ($set{'to_id'} =~ m/^0{40}$/);
7166 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
7167 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
7169 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
7175 # finish last commit (warning: repetition!)
7178 "<td class=\"link\">" .
7179 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
7182 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
7183 hash_base
=>$co{'id'})},
7194 sub git_search_files
{
7198 defined(my $fd = git_cmd_pipe
'grep', '-n', '-z',
7199 $search_use_regexp ?
('-E', '-i') : '-F',
7200 $searchtext, $co{'tree'})
7201 or die_error
(500, "Open git-grep failed");
7205 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
7206 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
7208 print "<table class=\"grep_search\">\n";
7213 while (my $line = to_utf8
(scalar <$fd>)) {
7215 my ($file, $lno, $ltext, $binary);
7216 last if ($matches++ > 1000);
7217 if ($line =~ /^Binary file (.+) matches$/) {
7221 ($file, $lno, $ltext) = split(/\0/, $line, 3);
7222 $file =~ s/^$co{'tree'}://;
7224 if ($file ne $lastfile) {
7225 $lastfile and print "</td></tr>\n";
7227 print "<tr class=\"dark\">\n";
7229 print "<tr class=\"light\">\n";
7231 $file_href = href
(action
=>"blob", hash_base
=>$co{'id'},
7233 print "<td class=\"list\">".
7234 $cgi->a({-href
=> $file_href, -class => "list"}, esc_path
($file));
7235 print "</td><td>\n";
7239 print "<div class=\"binary\">Binary file</div>\n";
7241 $ltext = untabify
($ltext);
7242 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
7243 $ltext = esc_html
($1, -nbsp
=>1);
7244 $ltext .= '<span class="match">';
7245 $ltext .= esc_html
($2, -nbsp
=>1);
7246 $ltext .= '</span>';
7247 $ltext .= esc_html
($3, -nbsp
=>1);
7249 $ltext = esc_html
($ltext, -nbsp
=>1);
7251 print "<div class=\"pre\">" .
7252 $cgi->a({-href
=> $file_href.'#l'.$lno,
7253 -class => "linenr"}, sprintf('%4i', $lno)) .
7254 ' ' . $ltext . "</div>\n";
7258 print "</td></tr>\n";
7259 if ($matches > 1000) {
7260 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
7263 print "<div class=\"diff nodifferences\">No matches found</div>\n";
7272 sub git_search_grep_body
{
7273 my ($commitlist, $from, $to, $extra) = @_;
7274 $from = 0 unless defined $from;
7275 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
7277 print "<table class=\"commit_search\">\n";
7279 for (my $i = $from; $i <= $to; $i++) {
7280 my %co = %{$commitlist->[$i]};
7284 my $commit = $co{'id'};
7286 print "<tr class=\"dark\">\n";
7288 print "<tr class=\"light\">\n";
7291 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
7292 format_author_html
('td', \
%co, 15, 5) .
7294 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
7295 -class => "list subject"},
7296 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
7297 my $comment = $co{'comment'};
7298 foreach my $line (@
$comment) {
7299 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
7300 my ($lead, $match, $trail) = ($1, $2, $3);
7301 $match = chop_str
($match, 70, 5, 'center');
7302 my $contextlen = int((80 - length($match))/2);
7303 $contextlen = 30 if ($contextlen > 30);
7304 $lead = chop_str
($lead, $contextlen, 10, 'left');
7305 $trail = chop_str
($trail, $contextlen, 10, 'right');
7307 $lead = esc_html
($lead);
7308 $match = esc_html
($match);
7309 $trail = esc_html
($trail);
7311 print "$lead<span class=\"match\">$match</span>$trail<br />";
7315 "<td class=\"link\">" .
7316 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
7318 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
7320 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
7324 if (defined $extra) {
7326 "<td colspan=\"3\">$extra</td>\n" .
7332 ## ======================================================================
7333 ## ======================================================================
7336 sub git_project_list_load
{
7337 my $empty_list_ok = shift;
7338 my $order = $input_params{'order'};
7339 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
7340 die_error
(400, "Unknown order parameter");
7343 my @list = git_get_projects_list
($project_filter, $strict_export);
7345 die_error
(404, "No projects found") unless $empty_list_ok;
7348 return (\
@list, $order);
7352 my ($projlist, $order);
7354 if ($frontpage_no_project_list) {
7356 $project_filter = undef;
7358 ($projlist, $order) = git_project_list_load
(1);
7361 if (defined $home_text && -f
$home_text) {
7362 print "<div class=\"index_include\">\n";
7363 insert_file
($home_text);
7366 git_project_search_form
($searchtext, $search_use_regexp);
7367 if ($frontpage_no_project_list) {
7368 my $show_ctags = gitweb_check_feature
('ctags');
7369 if ($frontpage_no_project_list == 1 and $show_ctags) {
7370 my @projects = git_get_projects_list
($project_filter, $strict_export);
7371 @projects = filter_forks_from_projects_list
(\
@projects) if gitweb_check_feature
('forks');
7372 @projects = fill_project_list_info
(\
@projects, 'ctags');
7373 my $ctags = git_gather_all_ctags
(\
@projects);
7374 my $cloud = git_populate_project_tagcloud
($ctags, 'project_list');
7375 print git_show_project_tagcloud
($cloud, 64);
7378 git_project_list_body
($projlist, $order);
7383 sub git_project_list
{
7384 my ($projlist, $order) = git_project_list_load
();
7386 if (!$frontpage_no_project_list && defined $home_text && -f
$home_text) {
7387 print "<div class=\"index_include\">\n";
7388 insert_file
($home_text);
7391 git_project_search_form
();
7392 git_project_list_body
($projlist, $order);
7397 my $order = $input_params{'order'};
7398 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
7399 die_error
(400, "Unknown order parameter");
7402 my $filter = $project;
7403 $filter =~ s/\.git$//;
7404 my @list = git_get_projects_list
($filter);
7406 die_error
(404, "No forks found");
7410 git_print_page_nav
('','');
7411 git_print_header_div
('summary', "$project forks");
7412 git_project_list_body
(\
@list, $order, undef, undef, undef, undef, 'forks');
7416 sub git_project_index
{
7417 my @projects = git_get_projects_list
($project_filter, $strict_export);
7419 die_error
(404, "No projects found");
7423 -type
=> 'text/plain',
7424 -charset
=> 'utf-8',
7425 -content_disposition
=> 'inline; filename="index.aux"');
7427 foreach my $pr (@projects) {
7428 if (!exists $pr->{'owner'}) {
7429 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
7432 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
7433 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
7434 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
7435 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
7439 print "$path $owner\n";
7444 my $descr = git_get_project_description
($project) || "none";
7445 my %co = parse_commit
("HEAD");
7446 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
7447 my $head = $co{'id'};
7448 my $remote_heads = gitweb_check_feature
('remote_heads');
7450 my $owner = git_get_project_owner
($project);
7451 my $homepage = git_get_project_config
('homepage');
7452 my $base_url = git_get_project_config
('baseurl');
7454 my $refs = git_get_references
();
7455 # These get_*_list functions return one more to allow us to see if
7456 # there are more ...
7457 my @taglist = git_get_tags_list
(16);
7458 my @headlist = git_get_heads_list
(16);
7459 my %remotedata = $remote_heads ? git_get_remotes_list
() : ();
7461 my $check_forks = gitweb_check_feature
('forks');
7464 # find forks of a project
7465 my $filter = $project;
7466 $filter =~ s/\.git$//;
7467 @forklist = git_get_projects_list
($filter);
7468 # filter out forks of forks
7469 @forklist = filter_forks_from_projects_list
(\
@forklist)
7474 git_print_page_nav
('summary','', $head);
7476 print "<div class=\"title\"> </div>\n";
7477 print "<table class=\"projects_list\">\n" .
7478 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n";
7480 print "<tr id=\"metadata_homepage\"><td>homepage URL</td><td>" . $cgi->a({-href
=> $homepage}, $homepage) . "</td></tr>\n";
7483 print "<tr id=\"metadata_baseurl\"><td>repository URL</td><td>" . esc_html
($base_url) . "</td></tr>\n";
7485 if ($owner and not $omit_owner) {
7486 print "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
7488 if (defined $cd{'rfc2822'}) {
7489 print "<tr id=\"metadata_lchange\"><td>last change</td>" .
7490 "<td>".format_timestamp_html
(\
%cd)."</td></tr>\n";
7492 print format_lastrefresh_row
(), "\n";
7494 # use per project git URL list in $projectroot/$project/cloneurl
7495 # or make project git URL from git base URL and project name
7496 my $url_tag = $base_url ?
"mirror URL" : "URL";
7497 my @url_list = git_get_project_url_list
($project);
7498 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
7499 foreach my $git_url (@url_list) {
7500 next unless $git_url;
7501 print format_repo_url
($url_tag, $git_url);
7506 my $show_ctags = gitweb_check_feature
('ctags');
7508 my $ctags = git_get_project_ctags
($project);
7509 if (%$ctags || $show_ctags !~ /^\d+$/) {
7510 # without ability to add tags, don't show if there are none
7511 my $cloud = git_populate_project_tagcloud
($ctags, 'project_list');
7512 print "<tr id=\"metadata_ctags\">" .
7513 "<td style=\"vertical-align:middle\">content tags<br />";
7514 print "</td>\n<td>" unless %$ctags;
7515 print "<form action=\"$show_ctags\" method=\"post\" style=\"white-space:nowrap\">" .
7516 "<input type=\"hidden\" name=\"p\" value=\"$project\"/>" .
7517 "add: <input type=\"text\" name=\"t\" size=\"8\" /></form>"
7518 unless $show_ctags =~ /^\d+$/;
7519 print "</td>\n<td>" if %$ctags;
7520 print git_show_project_tagcloud
($cloud, 48)."</td>" .
7527 # If XSS prevention is on, we don't include README.html.
7528 # TODO: Allow a readme in some safe format.
7529 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
7530 print "<div class=\"title\">readme</div>\n" .
7531 "<div class=\"readme\">\n";
7532 insert_file
("$projectroot/$project/README.html");
7533 print "\n</div>\n"; # class="readme"
7536 # we need to request one more than 16 (0..15) to check if
7538 my @commitlist = $head ? parse_commits
($head, 17) : ();
7540 git_print_header_div
('shortlog');
7541 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
7542 $#commitlist <= 15 ?
undef :
7543 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
7547 git_print_header_div
('tags');
7548 git_tags_body
(\
@taglist, 0, 15,
7549 $#taglist <= 15 ?
undef :
7550 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
7554 git_print_header_div
('heads');
7555 git_heads_body
(\
@headlist, $head, 0, 15,
7556 $#headlist <= 15 ?
undef :
7557 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
7561 git_print_header_div
('remotes');
7562 git_remotes_body
(\
%remotedata, 15, $head);
7566 git_print_header_div
('forks');
7567 git_project_list_body
(\
@forklist, 'age', 0, 15,
7568 $#forklist <= 15 ?
undef :
7569 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
7570 'no_header', 'forks');
7577 my %tag = parse_tag
($hash);
7580 die_error
(404, "Unknown tag object");
7583 my $head = git_get_head_hash
($project);
7585 git_print_page_nav
('','', $head,undef,$head);
7586 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
7587 print "<div class=\"title_text\">\n" .
7588 "<table class=\"object_header\">\n" .
7590 "<td>object</td>\n" .
7591 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
7592 $tag{'object'}) . "</td>\n" .
7593 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
7594 $tag{'type'}) . "</td>\n" .
7596 if (defined($tag{'author'})) {
7597 git_print_authorship_rows
(\
%tag, 'author');
7599 print "</table>\n\n" .
7601 print "<div class=\"page_body\">";
7602 my $comment = $tag{'comment'};
7603 foreach my $line (@
$comment) {
7605 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
7611 sub git_blame_common
{
7612 my $format = shift || 'porcelain';
7613 if ($format eq 'porcelain' && $input_params{'javascript'}) {
7614 $format = 'incremental';
7615 $action = 'blame_incremental'; # for page title etc
7619 gitweb_check_feature
('blame')
7620 or die_error
(403, "Blame view not allowed");
7623 die_error
(400, "No file name given") unless $file_name;
7624 $hash_base ||= git_get_head_hash
($project);
7625 die_error
(404, "Couldn't find base commit") unless $hash_base;
7626 my %co = parse_commit
($hash_base)
7627 or die_error
(404, "Commit not found");
7629 if (!defined $hash) {
7630 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
7631 or die_error
(404, "Error looking up file");
7633 $ftype = git_get_type
($hash);
7634 if ($ftype !~ "blob") {
7635 die_error
(400, "Object is not a blob");
7640 if ($format eq 'incremental') {
7641 # get file contents (as base)
7642 defined($fd = git_cmd_pipe
'cat-file', 'blob', $hash)
7643 or die_error
(500, "Open git-cat-file failed");
7644 } elsif ($format eq 'data') {
7645 # run git-blame --incremental
7646 defined($fd = git_cmd_pipe
"blame", "--incremental",
7647 $hash_base, "--", $file_name)
7648 or die_error
(500, "Open git-blame --incremental failed");
7650 # run git-blame --porcelain
7651 defined($fd = git_cmd_pipe
"blame", '-p',
7652 $hash_base, '--', $file_name)
7653 or die_error
(500, "Open git-blame --porcelain failed");
7656 # incremental blame data returns early
7657 if ($format eq 'data') {
7659 -type
=>"text/plain", -charset
=> "utf-8",
7660 -status
=> "200 OK");
7661 local $| = 1; # output autoflush
7666 or print "ERROR $!\n";
7669 if (defined $t0 && gitweb_check_feature
('timed')) {
7671 tv_interval
($t0, [ gettimeofday
() ]).
7672 ' '.$number_of_git_cmds;
7682 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
7685 if ($format eq 'incremental') {
7687 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
7688 "blame") . " (non-incremental)";
7691 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
7692 "blame") . " (incremental)";
7696 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7699 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
7701 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7702 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7703 git_print_page_path
($file_name, $ftype, $hash_base);
7706 if ($format eq 'incremental') {
7707 print "<noscript>\n<div class=\"error\"><center><b>\n".
7708 "This page requires JavaScript to run.\n Use ".
7709 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
7712 "</b></center></div>\n</noscript>\n";
7714 print qq!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
7717 print qq!<div
class="page_body">\n!;
7718 print qq!<div id
="progress_info">... / ...</div
>\n!
7719 if ($format eq 'incremental');
7720 print qq!<table id
="blame_table" class="blame" width
="100%">\n!.
7721 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
7723 qq!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
7727 my @rev_color = qw(light dark);
7728 my $num_colors = scalar(@rev_color);
7729 my $current_color = 0;
7731 if ($format eq 'incremental') {
7732 my $color_class = $rev_color[$current_color];
7737 while (my $line = to_utf8
(scalar <$fd>)) {
7741 print qq!<tr id
="l$linenr" class="$color_class">!.
7742 qq!<td
class="sha1"><a href
=""> </a></td
>!.
7743 qq!<td
class="linenr">!.
7744 qq!<a
class="linenr" href
="">$linenr</a></td
>!;
7745 print qq!<td
class="pre">! . esc_html
($line) . "</td>\n";
7749 } else { # porcelain, i.e. ordinary blame
7750 my %metainfo = (); # saves information about commits
7754 while (my $line = to_utf8
(scalar <$fd>)) {
7756 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
7757 # no <lines in group> for subsequent lines in group of lines
7758 my ($full_rev, $orig_lineno, $lineno, $group_size) =
7759 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
7760 if (!exists $metainfo{$full_rev}) {
7761 $metainfo{$full_rev} = { 'nprevious' => 0 };
7763 my $meta = $metainfo{$full_rev};
7765 while ($data = to_utf8
(scalar <$fd>)) {
7767 last if ($data =~ s/^\t//); # contents of line
7768 if ($data =~ /^(\S+)(?: (.*))?$/) {
7769 $meta->{$1} = $2 unless exists $meta->{$1};
7771 if ($data =~ /^previous /) {
7772 $meta->{'nprevious'}++;
7775 my $short_rev = substr($full_rev, 0, 8);
7776 my $author = $meta->{'author'};
7778 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
7779 my $date = $date{'iso-tz'};
7781 $current_color = ($current_color + 1) % $num_colors;
7783 my $tr_class = $rev_color[$current_color];
7784 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
7785 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
7786 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
7787 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
7789 print "<td class=\"sha1\"";
7790 print " title=\"". esc_html
($author) . ", $date\"";
7791 print " rowspan=\"$group_size\"" if ($group_size > 1);
7793 print $cgi->a({-href
=> href
(action
=>"commit",
7795 file_name
=>$file_name)},
7796 esc_html
($short_rev));
7797 if ($group_size >= 2) {
7798 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
7799 if (@author_initials) {
7801 esc_html
(join('', @author_initials));
7807 # 'previous' <sha1 of parent commit> <filename at commit>
7808 if (exists $meta->{'previous'} &&
7809 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
7810 $meta->{'parent'} = $1;
7811 $meta->{'file_parent'} = unquote
($2);
7814 exists($meta->{'parent'}) ?
7815 $meta->{'parent'} : $full_rev;
7816 my $linenr_filename =
7817 exists($meta->{'file_parent'}) ?
7818 $meta->{'file_parent'} : unquote
($meta->{'filename'});
7819 my $blamed = href
(action
=> 'blame',
7820 file_name
=> $linenr_filename,
7821 hash_base
=> $linenr_commit);
7822 print "<td class=\"linenr\">";
7823 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
7824 -class => "linenr" },
7827 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
7835 "</table>\n"; # class="blame"
7836 print "</div>\n"; # class="blame_body"
7838 or print "Reading blob failed\n";
7847 sub git_blame_incremental
{
7848 git_blame_common
('incremental');
7851 sub git_blame_data
{
7852 git_blame_common
('data');
7856 my $head = git_get_head_hash
($project);
7858 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('tags'));
7859 git_print_header_div
('summary', $project);
7861 my @tagslist = git_get_tags_list
();
7863 git_tags_body
(\
@tagslist);
7869 my $head = git_get_head_hash
($project);
7871 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('heads'));
7872 git_print_header_div
('summary', $project);
7874 my @headslist = git_get_heads_list
();
7876 git_heads_body
(\
@headslist, $head);
7881 # used both for single remote view and for list of all the remotes
7883 gitweb_check_feature
('remote_heads')
7884 or die_error
(403, "Remote heads view is disabled");
7886 my $head = git_get_head_hash
($project);
7887 my $remote = $input_params{'hash'};
7889 my $remotedata = git_get_remotes_list
($remote);
7890 die_error
(500, "Unable to get remote information") unless defined $remotedata;
7892 unless (%$remotedata) {
7893 die_error
(404, defined $remote ?
7894 "Remote $remote not found" :
7895 "No remotes found");
7898 git_header_html
(undef, undef, -action_extra
=> $remote);
7899 git_print_page_nav
('', '', $head, undef, $head,
7900 format_ref_views
($remote ?
'' : 'remotes'));
7902 fill_remote_heads
($remotedata);
7903 if (defined $remote) {
7904 git_print_header_div
('remotes', "$remote remote for $project");
7905 git_remote_block
($remote, $remotedata->{$remote}, undef, $head);
7907 git_print_header_div
('summary', "$project remotes");
7908 git_remotes_body
($remotedata, undef, $head);
7914 sub git_blob_plain
{
7918 if (!defined $hash) {
7919 if (defined $file_name) {
7920 my $base = $hash_base || git_get_head_hash
($project);
7921 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7922 or die_error
(404, "Cannot find file");
7924 die_error
(400, "No file name defined");
7926 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7927 # blobs defined by non-textual hash id's can be cached
7931 defined(my $fd = git_cmd_pipe
"cat-file", "blob", $hash)
7932 or die_error
(500, "Open git-cat-file blob '$hash' failed");
7935 # content-type (can include charset)
7936 $type = blob_contenttype
($fd, $file_name, $type);
7938 # "save as" filename, even when no $file_name is given
7939 my $save_as = "$hash";
7940 if (defined $file_name) {
7941 $save_as = $file_name;
7942 } elsif ($type =~ m/^text\//) {
7946 # With XSS prevention on, blobs of all types except a few known safe
7947 # ones are served with "Content-Disposition: attachment" to make sure
7948 # they don't run in our security domain. For certain image types,
7949 # blob view writes an <img> tag referring to blob_plain view, and we
7950 # want to be sure not to break that by serving the image as an
7951 # attachment (though Firefox 3 doesn't seem to care).
7952 my $sandbox = $prevent_xss &&
7953 $type !~ m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;
7955 # serve text/* as text/plain
7957 ($type =~ m!^text/[a-z]+\b(.*)$! ||
7958 ($type =~ m!^[a-z]+/[a-z]\+xml\b(.*)$! && -T
$fd))) {
7960 $rest = defined $rest ?
$rest : '';
7961 $type = "text/plain$rest";
7966 -expires
=> $expires,
7967 -content_disposition
=>
7968 ($sandbox ?
'attachment' : 'inline')
7969 . '; filename="' . $save_as . '"');
7970 binmode STDOUT
, ':raw';
7973 while (read($fd, $buf, 32768)) {
7976 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7984 if (!defined $hash) {
7985 if (defined $file_name) {
7986 my $base = $hash_base || git_get_head_hash
($project);
7987 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7988 or die_error
(404, "Cannot find file");
7990 die_error
(400, "No file name defined");
7992 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7993 # blobs defined by non-textual hash id's can be cached
7997 my $have_blame = gitweb_check_feature
('blame');
7998 defined(my $fd = git_cmd_pipe
"cat-file", "blob", $hash)
7999 or die_error
(500, "Couldn't cat $file_name, $hash");
8000 my $mimetype = blob_mimetype
($fd, $file_name);
8001 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
8002 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
8004 return git_blob_plain
($mimetype);
8006 # we can have blame only for text/* mimetype
8007 $have_blame &&= ($mimetype =~ m!^text/!);
8009 my $highlight = gitweb_check_feature
('highlight') && defined $highlight_bin;
8010 my $syntax = guess_file_syntax
($fd, $mimetype, $file_name) if $highlight;
8011 my $highlight_mode_active;
8012 ($fd, $highlight_mode_active) = run_highlighter
($fd, $syntax) if $syntax;
8014 git_header_html
(undef, $expires);
8015 my $formats_nav = '';
8016 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
8017 if (defined $file_name) {
8020 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
8025 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
8028 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
8031 $cgi->a({-href
=> href
(action
=>"blob",
8032 hash_base
=>"HEAD", file_name
=>$file_name)},
8036 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
8039 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
8040 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
8042 print "<div class=\"page_nav\">\n" .
8043 "<br/><br/></div>\n" .
8044 "<div class=\"title\">".esc_html
($hash)."</div>\n";
8046 git_print_page_path
($file_name, "blob", $hash_base);
8047 print "<div class=\"page_body\">\n";
8048 if ($mimetype =~ m!^image/!) {
8049 print qq!<img
class="blob" type
="!.esc_attr($mimetype).qq!"!;
8051 print qq! alt
="!.esc_attr($file_name).qq!" title
="!.esc_attr($file_name).qq!"!;
8054 href(action=>"blob_plain
", hash=>$hash,
8055 hash_base=>$hash_base, file_name=>$file_name) .
8059 while (my $line = to_utf8
(scalar <$fd>)) {
8062 $line = untabify
($line);
8063 printf qq!<div
class="pre"><a id
="l%i" href
="%s#l%i" class="linenr">%4i</a> %s</div
>\n!,
8064 $nr, esc_attr
(href
(-replay
=> 1)), $nr, $nr,
8065 $highlight_mode_active ? sanitize
($line) : esc_html
($line, -nbsp
=>1);
8069 or print "Reading blob failed.\n";
8075 if (!defined $hash_base) {
8076 $hash_base = "HEAD";
8078 if (!defined $hash) {
8079 if (defined $file_name) {
8080 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
8085 die_error
(404, "No such tree") unless defined($hash);
8087 my $show_sizes = gitweb_check_feature
('show-sizes');
8088 my $have_blame = gitweb_check_feature
('blame');
8093 defined(my $fd = git_cmd_pipe
"ls-tree", '-z',
8094 ($show_sizes ?
'-l' : ()), @extra_options, $hash)
8095 or die_error
(500, "Open git-ls-tree failed");
8096 @entries = map { chomp; to_utf8
($_) } <$fd>;
8098 or die_error
(404, "Reading tree failed");
8101 my $refs = git_get_references
();
8102 my $ref = format_ref_marker
($refs, $hash_base);
8105 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
8107 if (defined $file_name) {
8109 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
8111 $cgi->a({-href
=> href
(action
=>"tree",
8112 hash_base
=>"HEAD", file_name
=>$file_name)},
8115 my $snapshot_links = format_snapshot_links
($hash);
8116 if (defined $snapshot_links) {
8117 # FIXME: Should be available when we have no hash base as well.
8118 push @views_nav, $snapshot_links;
8120 git_print_page_nav
('tree','', $hash_base, undef, undef,
8121 join(' | ', @views_nav));
8122 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
8125 print "<div class=\"page_nav\">\n";
8126 print "<br/><br/></div>\n";
8127 print "<div class=\"title\">".esc_html
($hash)."</div>\n";
8129 if (defined $file_name) {
8130 $basedir = $file_name;
8131 if ($basedir ne '' && substr($basedir, -1) ne '/') {
8134 git_print_page_path
($file_name, 'tree', $hash_base);
8136 print "<div class=\"page_body\">\n";
8137 print "<table class=\"tree\">\n";
8139 # '..' (top directory) link if possible
8140 if (defined $hash_base &&
8141 defined $file_name && $file_name =~ m![^/]+$!) {
8143 print "<tr class=\"dark\">\n";
8145 print "<tr class=\"light\">\n";
8149 my $up = $file_name;
8150 $up =~ s!/?[^/]+$!!;
8151 undef $up unless $up;
8152 # based on git_print_tree_entry
8153 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
8154 print '<td class="size"> </td>'."\n" if $show_sizes;
8155 print '<td class="list">';
8156 print $cgi->a({-href
=> href
(action
=>"tree",
8157 hash_base
=>$hash_base,
8161 print "<td class=\"link\"></td>\n";
8165 foreach my $line (@entries) {
8166 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
8169 print "<tr class=\"dark\">\n";
8171 print "<tr class=\"light\">\n";
8175 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
8179 print "</table>\n" .
8184 sub sanitize_for_filename
{
8188 $name =~ s/[^[:alnum:]_.-]//g;
8194 my ($project, $hash) = @_;
8196 # path/to/project.git -> project
8197 # path/to/project/.git -> project
8198 my $name = to_utf8
($project);
8199 $name =~ s
,([^/])/*\
.git
$,$1,;
8200 $name = sanitize_for_filename
(basename
($name));
8203 if ($hash =~ /^[0-9a-fA-F]+$/) {
8204 # shorten SHA-1 hash
8205 my $full_hash = git_get_full_hash
($project, $hash);
8206 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
8207 $ver = git_get_short_hash
($project, $hash);
8209 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
8210 # tags don't need shortened SHA-1 hash
8213 # branches and other need shortened SHA-1 hash
8214 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
8215 if ($hash =~ m!^refs/($strip_refs|remotes)/(.*)$!) {
8216 my $ref_dir = (defined $1) ?
$1 : '';
8219 $ref_dir = sanitize_for_filename
($ref_dir);
8220 # for refs neither in heads nor remotes we want to
8221 # add a ref dir to archive name
8222 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
8223 $ver = $ref_dir . '-' . $ver;
8226 $ver .= '-' . git_get_short_hash
($project, $hash);
8228 # special case of sanitization for filename - we change
8229 # slashes to dots instead of dashes
8230 # in case of hierarchical branch names
8232 $ver =~ s/[^[:alnum:]_.-]//g;
8234 # name = project-version_string
8235 $name = "$name-$ver";
8237 return wantarray ?
($name, $name) : $name;
8240 sub exit_if_unmodified_since
{
8241 my ($latest_epoch) = @_;
8244 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
8245 if (defined $if_modified) {
8247 if (eval { require HTTP
::Date
; 1; }) {
8248 $since = HTTP
::Date
::str2time
($if_modified);
8249 } elsif (eval { require Time
::ParseDate
; 1; }) {
8250 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
8252 if (defined $since && $latest_epoch <= $since) {
8253 my %latest_date = parse_date
($latest_epoch);
8255 -last_modified
=> $latest_date{'rfc2822'},
8256 -status
=> '304 Not Modified');
8263 my $format = $input_params{'snapshot_format'};
8264 if (!@snapshot_fmts) {
8265 die_error
(403, "Snapshots not allowed");
8267 # default to first supported snapshot format
8268 $format ||= $snapshot_fmts[0];
8269 if ($format !~ m/^[a-z0-9]+$/) {
8270 die_error
(400, "Invalid snapshot format parameter");
8271 } elsif (!exists($known_snapshot_formats{$format})) {
8272 die_error
(400, "Unknown snapshot format");
8273 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
8274 die_error
(403, "Snapshot format not allowed");
8275 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
8276 die_error
(403, "Unsupported snapshot format");
8279 my $type = git_get_type
("$hash^{}");
8281 die_error
(404, 'Object does not exist');
8282 } elsif ($type eq 'blob') {
8283 die_error
(400, 'Object is not a tree-ish');
8286 my ($name, $prefix) = snapshot_name
($project, $hash);
8287 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
8289 my %co = parse_commit
($hash);
8290 exit_if_unmodified_since
($co{'committer_epoch'}) if %co;
8293 git_cmd
(), 'archive',
8294 "--format=$known_snapshot_formats{$format}{'format'}",
8295 "--prefix=$prefix/", $hash);
8296 if (exists $known_snapshot_formats{$format}{'compressor'}) {
8297 @cmd = ($posix_shell_bin, '-c', quote_command
(@cmd) .
8298 ' | ' . quote_command
(@
{$known_snapshot_formats{$format}{'compressor'}}));
8301 $filename =~ s/(["\\])/\\$1/g;
8304 %latest_date = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
8308 -type
=> $known_snapshot_formats{$format}{'type'},
8309 -content_disposition
=> 'inline; filename="' . $filename . '"',
8310 %co ?
(-last_modified
=> $latest_date{'rfc2822'}) : (),
8311 -status
=> '200 OK');
8313 defined(my $fd = cmd_pipe
@cmd)
8314 or die_error
(500, "Execute git-archive failed");
8316 binmode STDOUT
, ':raw';
8319 while (read($fd, $buf, 32768)) {
8322 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
8327 sub git_log_generic
{
8328 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
8330 my $head = git_get_head_hash
($project);
8331 if (!defined $base) {
8334 if (!defined $page) {
8337 my $refs = git_get_references
();
8339 my $commit_hash = $base;
8340 if (defined $parent) {
8341 $commit_hash = "$parent..$base";
8344 parse_commits
($commit_hash, 101, (100 * $page),
8345 defined $file_name ?
($file_name, "--full-history") : ());
8348 if (!defined $file_hash && defined $file_name) {
8349 # some commits could have deleted file in question,
8350 # and not have it in tree, but one of them has to have it
8351 for (my $i = 0; $i < @commitlist; $i++) {
8352 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
8353 last if defined $file_hash;
8356 if (defined $file_hash) {
8357 $ftype = git_get_type
($file_hash);
8359 if (defined $file_name && !defined $ftype) {
8360 die_error
(500, "Unknown type of object");
8363 if (defined $file_name) {
8364 %co = parse_commit
($base)
8365 or die_error
(404, "Unknown commit object");
8369 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
8371 if ($#commitlist >= 100) {
8373 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
8374 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
8376 my $patch_max = gitweb_get_feature
('patches');
8377 if ($patch_max && !defined $file_name) {
8378 if ($patch_max < 0 || @commitlist <= $patch_max) {
8379 $paging_nav .= " ⋅ " .
8380 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
8386 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
8387 if (defined $file_name) {
8388 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
8390 git_print_header_div
('summary', $project)
8392 git_print_page_path
($file_name, $ftype, $hash_base)
8393 if (defined $file_name);
8395 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
8396 $file_name, $file_hash, $ftype);
8402 git_log_generic
('log', \
&git_log_body
,
8403 $hash, $hash_parent);
8407 $hash ||= $hash_base || "HEAD";
8408 my %co = parse_commit
($hash)
8409 or die_error
(404, "Unknown commit object");
8411 my $parent = $co{'parent'};
8412 my $parents = $co{'parents'}; # listref
8414 # we need to prepare $formats_nav before any parameter munging
8416 if (!defined $parent) {
8418 $formats_nav .= '(initial)';
8419 } elsif (@
$parents == 1) {
8420 # single parent commit
8423 $cgi->a({-href
=> href
(action
=>"commit",
8425 esc_html
(substr($parent, 0, 7))) .
8432 $cgi->a({-href
=> href
(action
=>"commit",
8434 esc_html
(substr($_, 0, 7)));
8438 if (gitweb_check_feature
('patches') && @
$parents <= 1) {
8439 $formats_nav .= " | " .
8440 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
8444 if (!defined $parent) {
8448 defined(my $fd = git_cmd_pipe
"diff-tree", '-r', "--no-commit-id",
8450 (@
$parents <= 1 ?
$parent : '-c'),
8452 or die_error
(500, "Open git-diff-tree failed");
8453 @difftree = map { chomp; to_utf8
($_) } <$fd>;
8454 close $fd or die_error
(404, "Reading git-diff-tree failed");
8456 # non-textual hash id's can be cached
8458 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
8461 my $refs = git_get_references
();
8462 my $ref = format_ref_marker
($refs, $co{'id'});
8464 git_header_html
(undef, $expires);
8465 git_print_page_nav
('commit', '',
8466 $hash, $co{'tree'}, $hash,
8469 if (defined $co{'parent'}) {
8470 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
8472 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
8474 print "<div class=\"title_text\">\n" .
8475 "<table class=\"object_header\">\n";
8476 git_print_authorship_rows
(\
%co);
8477 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
8480 "<td class=\"sha1\">" .
8481 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
8482 class => "list"}, $co{'tree'}) .
8484 "<td class=\"link\">" .
8485 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
8487 my $snapshot_links = format_snapshot_links
($hash);
8488 if (defined $snapshot_links) {
8489 print " | " . $snapshot_links;
8494 foreach my $par (@
$parents) {
8497 "<td class=\"sha1\">" .
8498 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
8499 class => "list"}, $par) .
8501 "<td class=\"link\">" .
8502 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
8504 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
8511 print "<div class=\"page_body\">\n";
8512 git_print_log
($co{'comment'});
8515 git_difftree_body
(\
@difftree, $hash, @
$parents);
8521 # object is defined by:
8522 # - hash or hash_base alone
8523 # - hash_base and file_name
8526 # - hash or hash_base alone
8527 if ($hash || ($hash_base && !defined $file_name)) {
8528 my $object_id = $hash || $hash_base;
8530 defined(my $fd = git_cmd_pipe
'cat-file', '-t', $object_id)
8531 or die_error
(404, "Object does not exist");
8535 or die_error
(404, "Object does not exist");
8537 # - hash_base and file_name
8538 } elsif ($hash_base && defined $file_name) {
8539 $file_name =~ s
,/+$,,;
8541 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
8542 or die_error
(404, "Base object does not exist");
8544 # here errors should not happen
8545 defined(my $fd = git_cmd_pipe
"ls-tree", $hash_base, "--", $file_name)
8546 or die_error
(500, "Open git-ls-tree failed");
8547 my $line = to_utf8
(scalar <$fd>);
8550 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
8551 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
8552 die_error
(404, "File or directory for given base does not exist");
8557 die_error
(400, "Not enough information to find object");
8560 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
8561 hash
=>$hash, hash_base
=>$hash_base,
8562 file_name
=>$file_name),
8563 -status
=> '302 Found');
8567 my $format = shift || 'html';
8568 my $diff_style = $input_params{'diff_style'} || 'inline';
8575 # preparing $fd and %diffinfo for git_patchset_body
8577 if (defined $hash_base && defined $hash_parent_base) {
8578 if (defined $file_name) {
8580 defined($fd = git_cmd_pipe
"diff-tree", '-r', @diff_opts,
8581 $hash_parent_base, $hash_base,
8582 "--", (defined $file_parent ?
$file_parent : ()), $file_name)
8583 or die_error
(500, "Open git-diff-tree failed");
8584 @difftree = map { chomp; to_utf8
($_) } <$fd>;
8586 or die_error
(404, "Reading git-diff-tree failed");
8588 or die_error
(404, "Blob diff not found");
8590 } elsif (defined $hash &&
8591 $hash =~ /[0-9a-fA-F]{40}/) {
8592 # try to find filename from $hash
8594 # read filtered raw output
8595 defined($fd = git_cmd_pipe
"diff-tree", '-r', @diff_opts,
8596 $hash_parent_base, $hash_base, "--")
8597 or die_error
(500, "Open git-diff-tree failed");
8599 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
8601 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
8602 map { chomp; to_utf8
($_) } <$fd>;
8604 or die_error
(404, "Reading git-diff-tree failed");
8606 or die_error
(404, "Blob diff not found");
8609 die_error
(400, "Missing one of the blob diff parameters");
8612 if (@difftree > 1) {
8613 die_error
(400, "Ambiguous blob diff specification");
8616 %diffinfo = parse_difftree_raw_line
($difftree[0]);
8617 $file_parent ||= $diffinfo{'from_file'} || $file_name;
8618 $file_name ||= $diffinfo{'to_file'};
8620 $hash_parent ||= $diffinfo{'from_id'};
8621 $hash ||= $diffinfo{'to_id'};
8623 # non-textual hash id's can be cached
8624 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
8625 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
8630 defined($fd = git_cmd_pipe
"diff-tree", '-r', @diff_opts,
8631 '-p', ($format eq 'html' ?
"--full-index" : ()),
8632 $hash_parent_base, $hash_base,
8633 "--", (defined $file_parent ?
$file_parent : ()), $file_name)
8634 or die_error
(500, "Open git-diff-tree failed");
8637 # old/legacy style URI -- not generated anymore since 1.4.3.
8639 die_error
('404 Not Found', "Missing one of the blob diff parameters")
8643 if ($format eq 'html') {
8645 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
8647 $formats_nav .= diff_style_nav
($diff_style);
8648 git_header_html
(undef, $expires);
8649 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
8650 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
8651 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
8653 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
8654 print "<div class=\"title\">".esc_html
("$hash vs $hash_parent")."</div>\n";
8656 if (defined $file_name) {
8657 git_print_page_path
($file_name, "blob", $hash_base);
8659 print "<div class=\"page_path\"></div>\n";
8662 } elsif ($format eq 'plain') {
8664 -type
=> 'text/plain',
8665 -charset
=> 'utf-8',
8666 -expires
=> $expires,
8667 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
8669 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
8672 die_error
(400, "Unknown blobdiff format");
8676 if ($format eq 'html') {
8677 print "<div class=\"page_body\">\n";
8679 git_patchset_body
($fd, $diff_style,
8680 [ \
%diffinfo ], $hash_base, $hash_parent_base);
8683 print "</div>\n"; # class="page_body"
8687 while (my $line = to_utf8
(scalar <$fd>)) {
8688 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
8689 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
8693 last if $line =~ m!^\+\+\+!;
8702 sub git_blobdiff_plain
{
8703 git_blobdiff
('plain');
8706 # assumes that it is added as later part of already existing navigation,
8707 # so it returns "| foo | bar" rather than just "foo | bar"
8708 sub diff_style_nav
{
8709 my ($diff_style, $is_combined) = @_;
8710 $diff_style ||= 'inline';
8712 return "" if ($is_combined);
8714 my @styles = (inline
=> 'inline', 'sidebyside' => 'side by side');
8715 my %styles = @styles;
8717 @styles[ map { $_ * 2 } 0..$#styles/2 ];
8722 $_ eq $diff_style ?
$styles{$_} :
8723 $cgi->a({-href
=> href
(-replay
=>1, diff_style
=> $_)}, $styles{$_})
8727 sub git_commitdiff
{
8729 my $format = $params{-format
} || 'html';
8730 my $diff_style = $input_params{'diff_style'} || 'inline';
8732 my ($patch_max) = gitweb_get_feature
('patches');
8733 if ($format eq 'patch') {
8734 die_error
(403, "Patch view not allowed") unless $patch_max;
8737 $hash ||= $hash_base || "HEAD";
8738 my %co = parse_commit
($hash)
8739 or die_error
(404, "Unknown commit object");
8741 # choose format for commitdiff for merge
8742 if (! defined $hash_parent && @
{$co{'parents'}} > 1) {
8743 $hash_parent = '--cc';
8745 # we need to prepare $formats_nav before almost any parameter munging
8747 if ($format eq 'html') {
8749 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
8751 if ($patch_max && @
{$co{'parents'}} <= 1) {
8752 $formats_nav .= " | " .
8753 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
8756 $formats_nav .= diff_style_nav
($diff_style, @
{$co{'parents'}} > 1);
8758 if (defined $hash_parent &&
8759 $hash_parent ne '-c' && $hash_parent ne '--cc') {
8760 # commitdiff with two commits given
8761 my $hash_parent_short = $hash_parent;
8762 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
8763 $hash_parent_short = substr($hash_parent, 0, 7);
8767 for (my $i = 0; $i < @
{$co{'parents'}}; $i++) {
8768 if ($co{'parents'}[$i] eq $hash_parent) {
8769 $formats_nav .= ' parent ' . ($i+1);
8773 $formats_nav .= ': ' .
8774 $cgi->a({-href
=> href
(-replay
=>1,
8775 hash
=>$hash_parent, hash_base
=>undef)},
8776 esc_html
($hash_parent_short)) .
8778 } elsif (!$co{'parent'}) {
8780 $formats_nav .= ' (initial)';
8781 } elsif (scalar @
{$co{'parents'}} == 1) {
8782 # single parent commit
8785 $cgi->a({-href
=> href
(-replay
=>1,
8786 hash
=>$co{'parent'}, hash_base
=>undef)},
8787 esc_html
(substr($co{'parent'}, 0, 7))) .
8791 if ($hash_parent eq '--cc') {
8792 $formats_nav .= ' | ' .
8793 $cgi->a({-href
=> href
(-replay
=>1,
8794 hash
=>$hash, hash_parent
=>'-c')},
8796 } else { # $hash_parent eq '-c'
8797 $formats_nav .= ' | ' .
8798 $cgi->a({-href
=> href
(-replay
=>1,
8799 hash
=>$hash, hash_parent
=>'--cc')},
8805 $cgi->a({-href
=> href
(-replay
=>1,
8806 hash
=>$_, hash_base
=>undef)},
8807 esc_html
(substr($_, 0, 7)));
8808 } @
{$co{'parents'}} ) .
8813 my $hash_parent_param = $hash_parent;
8814 if (!defined $hash_parent_param) {
8815 # --cc for multiple parents, --root for parentless
8816 $hash_parent_param =
8817 @
{$co{'parents'}} > 1 ?
'--cc' : $co{'parent'} || '--root';
8823 if ($format eq 'html') {
8824 defined($fd = git_cmd_pipe
"diff-tree", '-r', @diff_opts,
8825 "--no-commit-id", "--patch-with-raw", "--full-index",
8826 $hash_parent_param, $hash, "--")
8827 or die_error
(500, "Open git-diff-tree failed");
8829 while (my $line = to_utf8
(scalar <$fd>)) {
8831 # empty line ends raw part of diff-tree output
8833 push @difftree, scalar parse_difftree_raw_line
($line);
8836 } elsif ($format eq 'plain') {
8837 defined($fd = git_cmd_pipe
"diff-tree", '-r', @diff_opts,
8838 '-p', $hash_parent_param, $hash, "--")
8839 or die_error
(500, "Open git-diff-tree failed");
8840 } elsif ($format eq 'patch') {
8841 # For commit ranges, we limit the output to the number of
8842 # patches specified in the 'patches' feature.
8843 # For single commits, we limit the output to a single patch,
8844 # diverging from the git-format-patch default.
8845 my @commit_spec = ();
8847 if ($patch_max > 0) {
8848 push @commit_spec, "-$patch_max";
8850 push @commit_spec, '-n', "$hash_parent..$hash";
8852 if ($params{-single
}) {
8853 push @commit_spec, '-1';
8855 if ($patch_max > 0) {
8856 push @commit_spec, "-$patch_max";
8858 push @commit_spec, "-n";
8860 push @commit_spec, '--root', $hash;
8862 defined($fd = git_cmd_pipe
"format-patch", @diff_opts,
8863 '--encoding=utf8', '--stdout', @commit_spec)
8864 or die_error
(500, "Open git-format-patch failed");
8866 die_error
(400, "Unknown commitdiff format");
8869 # non-textual hash id's can be cached
8871 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
8875 # write commit message
8876 if ($format eq 'html') {
8877 my $refs = git_get_references
();
8878 my $ref = format_ref_marker
($refs, $co{'id'});
8880 git_header_html
(undef, $expires);
8881 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
8882 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
8883 print "<div class=\"title_text\">\n" .
8884 "<table class=\"object_header\">\n";
8885 git_print_authorship_rows
(\
%co);
8888 print "<div class=\"page_body\">\n";
8889 if (@
{$co{'comment'}} > 1) {
8890 print "<div class=\"log\">\n";
8891 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
8892 print "</div>\n"; # class="log"
8895 } elsif ($format eq 'plain') {
8896 my $refs = git_get_references
("tags");
8897 my $tagname = git_get_rev_name_tags
($hash);
8898 my $filename = basename
($project) . "-$hash.patch";
8901 -type
=> 'text/plain',
8902 -charset
=> 'utf-8',
8903 -expires
=> $expires,
8904 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
8905 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
8906 print "From: " . to_utf8
($co{'author'}) . "\n";
8907 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
8908 print "Subject: " . to_utf8
($co{'title'}) . "\n";
8910 print "X-Git-Tag: $tagname\n" if $tagname;
8911 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
8913 foreach my $line (@
{$co{'comment'}}) {
8914 print to_utf8
($line) . "\n";
8917 } elsif ($format eq 'patch') {
8918 my $filename = basename
($project) . "-$hash.patch";
8921 -type
=> 'text/plain',
8922 -charset
=> 'utf-8',
8923 -expires
=> $expires,
8924 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
8928 if ($format eq 'html') {
8929 my $use_parents = !defined $hash_parent ||
8930 $hash_parent eq '-c' || $hash_parent eq '--cc';
8931 git_difftree_body
(\
@difftree, $hash,
8932 $use_parents ? @
{$co{'parents'}} : $hash_parent);
8935 git_patchset_body
($fd, $diff_style,
8937 $use_parents ? @
{$co{'parents'}} : $hash_parent);
8939 print "</div>\n"; # class="page_body"
8942 } elsif ($format eq 'plain') {
8947 or print "Reading git-diff-tree failed\n";
8948 } elsif ($format eq 'patch') {
8953 or print "Reading git-format-patch failed\n";
8957 sub git_commitdiff_plain
{
8958 git_commitdiff
(-format
=> 'plain');
8961 # format-patch-style patches
8963 git_commitdiff
(-format
=> 'patch', -single
=> 1);
8967 git_commitdiff
(-format
=> 'patch');
8971 git_log_generic
('history', \
&git_history_body
,
8972 $hash_base, $hash_parent_base,
8977 $searchtype ||= 'commit';
8979 # check if appropriate features are enabled
8980 gitweb_check_feature
('search')
8981 or die_error
(403, "Search is disabled");
8982 if ($searchtype eq 'pickaxe') {
8983 # pickaxe may take all resources of your box and run for several minutes
8984 # with every query - so decide by yourself how public you make this feature
8985 gitweb_check_feature
('pickaxe')
8986 or die_error
(403, "Pickaxe search is disabled");
8988 if ($searchtype eq 'grep') {
8989 # grep search might be potentially CPU-intensive, too
8990 gitweb_check_feature
('grep')
8991 or die_error
(403, "Grep search is disabled");
8994 if (!defined $searchtext) {
8995 die_error
(400, "Text field is empty");
8997 if (!defined $hash) {
8998 $hash = git_get_head_hash
($project);
9000 my %co = parse_commit
($hash);
9002 die_error
(404, "Unknown commit object");
9004 if (!defined $page) {
9008 if ($searchtype eq 'commit' ||
9009 $searchtype eq 'author' ||
9010 $searchtype eq 'committer') {
9011 git_search_message
(%co);
9012 } elsif ($searchtype eq 'pickaxe') {
9013 git_search_changes
(%co);
9014 } elsif ($searchtype eq 'grep') {
9015 git_search_files
(%co);
9017 die_error
(400, "Unknown search type");
9021 sub git_search_help
{
9023 git_print_page_nav
('','', $hash,$hash,$hash);
9025 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
9026 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
9027 the pattern entered is recognized as the POSIX extended
9028 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
9031 <dt><b>commit</b></dt>
9032 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
9034 my $have_grep = gitweb_check_feature
('grep');
9037 <dt><b>grep</b></dt>
9038 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
9039 a different one) are searched for the given pattern. On large trees, this search can take
9040 a while and put some strain on the server, so please use it with some consideration. Note that
9041 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
9042 case-sensitive.</dd>
9046 <dt><b>author</b></dt>
9047 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
9048 <dt><b>committer</b></dt>
9049 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
9051 my $have_pickaxe = gitweb_check_feature
('pickaxe');
9052 if ($have_pickaxe) {
9054 <dt><b>pickaxe</b></dt>
9055 <dd>All commits that caused the string to appear or disappear from any file (changes that
9056 added, removed or "modified" the string) will be listed. This search can take a while and
9057 takes a lot of strain on the server, so please use it wisely. Note that since you may be
9058 interested even in changes just changing the case as well, this search is case sensitive.</dd>
9066 git_log_generic
('shortlog', \
&git_shortlog_body
,
9067 $hash, $hash_parent);
9070 ## ......................................................................
9071 ## feeds (RSS, Atom; OPML)
9074 my $format = shift || 'atom';
9075 my $have_blame = gitweb_check_feature
('blame');
9077 # Atom: http://www.atomenabled.org/developers/syndication/
9078 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
9079 if ($format ne 'rss' && $format ne 'atom') {
9080 die_error
(400, "Unknown web feed format");
9083 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
9084 my $head = $hash || 'HEAD';
9085 my @commitlist = parse_commits
($head, 150, 0, $file_name);
9089 my $content_type = "application/$format+xml";
9090 if (defined $cgi->http('HTTP_ACCEPT') &&
9091 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
9092 # browser (feed reader) prefers text/xml
9093 $content_type = 'text/xml';
9095 if (defined($commitlist[0])) {
9096 %latest_commit = %{$commitlist[0]};
9097 my $latest_epoch = $latest_commit{'committer_epoch'};
9098 exit_if_unmodified_since
($latest_epoch);
9099 %latest_date = parse_date
($latest_epoch, $latest_commit{'committer_tz'});
9102 -type
=> $content_type,
9103 -charset
=> 'utf-8',
9104 %latest_date ?
(-last_modified
=> $latest_date{'rfc2822'}) : (),
9105 -status
=> '200 OK');
9107 # Optimization: skip generating the body if client asks only
9108 # for Last-Modified date.
9109 return if ($cgi->request_method() eq 'HEAD');
9112 my $title = "$site_name - $project/$action";
9113 my $feed_type = 'log';
9114 if (defined $hash) {
9115 $title .= " - '$hash'";
9116 $feed_type = 'branch log';
9117 if (defined $file_name) {
9118 $title .= " :: $file_name";
9119 $feed_type = 'history';
9121 } elsif (defined $file_name) {
9122 $title .= " - $file_name";
9123 $feed_type = 'history';
9125 $title .= " $feed_type";
9126 $title = esc_html
($title);
9127 my $descr = git_get_project_description
($project);
9128 if (defined $descr) {
9129 $descr = esc_html
($descr);
9131 $descr = "$project " .
9132 ($format eq 'rss' ?
'RSS' : 'Atom') .
9135 my $owner = git_get_project_owner
($project);
9136 $owner = esc_html
($owner);
9140 if (defined $file_name) {
9141 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
9142 } elsif (defined $hash) {
9143 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
9145 $alt_url = href
(-full
=>1, action
=>"summary");
9147 print qq!<?xml version
="1.0" encoding
="utf-8"?
>\n!;
9148 if ($format eq 'rss') {
9150 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
9153 print "<title>$title</title>\n" .
9154 "<link>$alt_url</link>\n" .
9155 "<description>$descr</description>\n" .
9156 "<language>en</language>\n" .
9157 # project owner is responsible for 'editorial' content
9158 "<managingEditor>$owner</managingEditor>\n";
9159 if (defined $logo || defined $favicon) {
9160 # prefer the logo to the favicon, since RSS
9161 # doesn't allow both
9162 my $img = esc_url
($logo || $favicon);
9164 "<url>$img</url>\n" .
9165 "<title>$title</title>\n" .
9166 "<link>$alt_url</link>\n" .
9170 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
9171 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
9173 print "<generator>gitweb v.$version/$git_version</generator>\n";
9174 } elsif ($format eq 'atom') {
9176 <feed xmlns="http://www.w3.org/2005/Atom">
9178 print "<title>$title</title>\n" .
9179 "<subtitle>$descr</subtitle>\n" .
9180 '<link rel="alternate" type="text/html" href="' .
9181 $alt_url . '" />' . "\n" .
9182 '<link rel="self" type="' . $content_type . '" href="' .
9183 $cgi->self_url() . '" />' . "\n" .
9184 "<id>" . href
(-full
=>1) . "</id>\n" .
9185 # use project owner for feed author
9186 "<author><name>$owner</name></author>\n";
9187 if (defined $favicon) {
9188 print "<icon>" . esc_url
($favicon) . "</icon>\n";
9190 if (defined $logo) {
9191 # not twice as wide as tall: 72 x 27 pixels
9192 print "<logo>" . esc_url
($logo) . "</logo>\n";
9194 if (! %latest_date) {
9195 # dummy date to keep the feed valid until commits trickle in:
9196 print "<updated>1970-01-01T00:00:00Z</updated>\n";
9198 print "<updated>$latest_date{'iso-8601'}</updated>\n";
9200 print "<generator version='$version/$git_version'>gitweb</generator>\n";
9204 for (my $i = 0; $i <= $#commitlist; $i++) {
9205 my %co = %{$commitlist[$i]};
9206 my $commit = $co{'id'};
9207 # we read 150, we always show 30 and the ones more recent than 48 hours
9208 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
9211 my %cd = parse_date
($co{'author_epoch'}, $co{'author_tz'});
9213 # get list of changed files
9214 defined(my $fd = git_cmd_pipe
"diff-tree", '-r', @diff_opts,
9215 $co{'parent'} || "--root",
9216 $co{'id'}, "--", (defined $file_name ?
$file_name : ()))
9218 my @difftree = map { chomp; to_utf8
($_) } <$fd>;
9222 # print element (entry, item)
9223 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
9224 if ($format eq 'rss') {
9226 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
9227 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
9228 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
9229 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
9230 "<link>$co_url</link>\n" .
9231 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
9232 "<content:encoded>" .
9234 } elsif ($format eq 'atom') {
9236 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
9237 "<updated>$cd{'iso-8601'}</updated>\n" .
9239 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
9240 if ($co{'author_email'}) {
9241 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
9243 print "</author>\n" .
9244 # use committer for contributor
9246 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
9247 if ($co{'committer_email'}) {
9248 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
9250 print "</contributor>\n" .
9251 "<published>$cd{'iso-8601'}</published>\n" .
9252 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
9253 "<id>$co_url</id>\n" .
9254 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
9255 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
9257 my $comment = $co{'comment'};
9259 foreach my $line (@
$comment) {
9260 $line = esc_html
($line);
9263 print "</pre><ul>\n";
9264 foreach my $difftree_line (@difftree) {
9265 my %difftree = parse_difftree_raw_line
($difftree_line);
9266 next if !$difftree{'from_id'};
9268 my $file = $difftree{'file'} || $difftree{'to_file'};
9272 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
9273 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
9274 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
9275 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
9276 -title
=> "diff"}, 'D');
9278 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
9279 file_name
=>$file, hash_base
=>$commit),
9280 -title
=> "blame"}, 'B');
9282 # if this is not a feed of a file history
9283 if (!defined $file_name || $file_name ne $file) {
9284 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
9285 file_name
=>$file, hash
=>$commit),
9286 -title
=> "history"}, 'H');
9288 $file = esc_path
($file);
9292 if ($format eq 'rss') {
9293 print "</ul>]]>\n" .
9294 "</content:encoded>\n" .
9296 } elsif ($format eq 'atom') {
9297 print "</ul>\n</div>\n" .
9304 if ($format eq 'rss') {
9305 print "</channel>\n</rss>\n";
9306 } elsif ($format eq 'atom') {
9320 my @list = git_get_projects_list
($project_filter, $strict_export);
9322 die_error
(404, "No projects found");
9326 -type
=> 'text/xml',
9327 -charset
=> 'utf-8',
9328 -content_disposition
=> 'inline; filename="opml.xml"');
9330 my $title = esc_html
($site_name);
9331 my $filter = " within subdirectory ";
9332 if (defined $project_filter) {
9333 $filter .= esc_html
($project_filter);
9338 <?xml version="1.0" encoding="utf-8"?>
9339 <opml version="1.0">
9341 <title>$title OPML Export$filter</title>
9344 <outline text="git RSS feeds">
9347 foreach my $pr (@list) {
9349 my $head = git_get_head_hash
($proj{'path'});
9350 if (!defined $head) {
9353 $git_dir = "$projectroot/$proj{'path'}";
9354 my %co = parse_commit
($head);
9359 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
9360 my $rss = href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1);
9361 my $html = href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1);
9362 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";