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
|
{*
* 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 $action}/{$action}{/if}{/if}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
{if $project}
<link rel="alternate" title="{$project->GetProject()} log" href="{$SCRIPT_NAME}?p={$project->GetProject()|urlencode}&a=rss" type="application/rss+xml" />
{/if}
<link rel="stylesheet" href="css/{$stylesheet}" type="text/css" />
<link rel="stylesheet" href="css/ext/jquery.qtip.css" type="text/css" />
<style type="text/css">
<!--
{$extracss}
-->
</style>
<script language="javascript" src="js/ext/jquery-1.4.2.min.js"></script>
<script language="javascript" src="js/ext/jquery.qtip.min.js"></script>
<script language="javascript" src="js/tooltips.js"></script>
</head>
{$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>
<a href="index.php">projects</a> /
{if $project}
<a href="{$SCRIPT_NAME}?p={$project->GetProject()|urlencode}&a=summary">{$project->GetProject()}</a>
{if $action}
/ {$action}
{/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">commit</option>
<option {if $searchtype == 'author'}selected="selected"{/if} value="author">author</option>
<option {if $searchtype == 'committer'}selected="selected"{/if} value="committer">committer</option>
{if $filesearch}
<option {if $searchtype == 'file'}selected="selected"{/if} value="file">file</option>
{/if}
</select> search: <input type="text" name="s" {if $search}value="{$search}"{/if} />
</div>
</form>
{/if}
{/if}
</div>
|