1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
{*
* header.tpl
* gitphp: A PHP git repository browser
* Component: Page header template
*
* Copyright (C) 2006 Christopher Han <xiphux@gmail.com>
*}
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<!-- gitphp web interface {$version}, (C) 2006-2010 Christopher Han <xiphux@gmail.com> -->
<head>
<title>{$pagetitle}{if $project} :: {$project->GetProject()}{if $actionlocal}/{$actionlocal}{/if}{/if}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
{if $project}
<link rel="alternate" title="{$project->GetProject()} log (Atom)" href="{$SCRIPT_NAME}?p={$project->GetProject()|urlencode}&a=atom" type="application/atom+xml" />
<link rel="alternate" title="{$project->GetProject()} log (RSS)" href="{$SCRIPT_NAME}?p={$project->GetProject()|urlencode}&a=rss" type="application/rss+xml" />
{/if}
<link rel="stylesheet" href="css/{$stylesheet}" type="text/css" />
{if $extracss}
<style type="text/css">
<!--
{$extracss}
-->
</style>
{/if}
{if $javascript}
<script type="text/javascript">
var GITPHP_RES_LOADING="{t escape='js'}Loading…{/t}";
var GITPHP_RES_LOADING_BLAME_DATA="{t escape='js'}Loading blame data…{/t}";
var GITPHP_RES_SNAPSHOT="{t escape='js'}snapshot{/t}";
var GITPHP_RES_NO_MATCHES_FOUND='{t escape=no}No matches found for "%1"{/t}';
var GITPHP_SNAPSHOT_FORMATS = {ldelim}
{foreach from=$snapshotformats key=format item=extension name=formats}
"{$format}": "{$extension}"{if !$smarty.foreach.formats.last},{/if}
{/foreach}
{rdelim}
</script>
<link rel="stylesheet" href="css/ext/jquery.qtip.css" type="text/css" />
<script type="text/javascript" src="js/ext/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/ext/jquery.qtip.min.js"></script>
<script type="text/javascript" src="js/tooltips.js"></script>
<script type="text/javascript" src="js/lang.js"></script>
{foreach from=$extrascripts item=script}
<script type="text/javascript" src="{$script}"></script>
{/foreach}
{/if}
{$smarty.capture.header}
</head>
<body>
<div class="page_header">
<a href="http://git-scm.com" title="git homepage">
<img src="images/git-logo.png" width="72" height="27" alt="git" class="logo" />
</a>
{if $supportedlocales}
<div class="lang_select">
<form action="{$SCRIPT_NAME}" method="get" id="frmLangSelect">
<div>
{foreach from=$requestvars key=var item=val}
{if $var != "l"}
<input type="hidden" name="{$var}" value="{$val}" />
{/if}
{/foreach}
<label for="selLang">{t}language:{/t}</label>
<select name="l" id="selLang">
{foreach from=$supportedlocales key=locale item=language}
<option {if $locale == $currentlocale}selected="selected"{/if} value="{$locale}">{if $language}{$language} ({$locale}){else}{$locale}{/if}</option>
{/foreach}
</select>
<input type="submit" value="{t}set{/t}" id="btnLangSet" />
</div>
</form>
</div>
{/if}
<a href="index.php">{if $homelink}{$homelink}{else}{t}projects{/t}{/if}</a> /
{if $project}
<a href="{$SCRIPT_NAME}?p={$project->GetProject()|urlencode}&a=summary">{$project->GetProject()}</a>
{if $actionlocal}
/ {$actionlocal}
{/if}
{if $enablesearch}
<form method="get" action="index.php" enctype="application/x-www-form-urlencoded">
<div class="search">
<input type="hidden" name="p" value="{$project->GetProject()}" />
<input type="hidden" name="a" value="search" />
<input type ="hidden" name="h" value="{if $commit}{$commit->GetHash()}{else}HEAD{/if}" />
<select name="st">
<option {if $searchtype == 'commit'}selected="selected"{/if} value="commit">{t}commit{/t}</option>
<option {if $searchtype == 'author'}selected="selected"{/if} value="author">{t}author{/t}</option>
<option {if $searchtype == 'committer'}selected="selected"{/if} value="committer">{t}committer{/t}</option>
{if $filesearch}
<option {if $searchtype == 'file'}selected="selected"{/if} value="file">{t}file{/t}</option>
{/if}
</select> {t}search{/t}: <input type="text" name="s" {if $search}value="{$search}"{/if} />
</div>
</form>
{/if}
{/if}
</div>
|