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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" metal:define-macro="main">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title metal:define-slot="title"></title>
<link rel="stylesheet"
tal:attributes="href python:branch.static_url('/static/css/global.css')" />
<script type="text/javascript"
tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-core.js')"></script>
<script type="text/javascript"
tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-more.js')"></script>
<script type="text/javascript"
tal:attributes="src python:branch.static_url('/static/javascript/custom.js')"></script>
<script language="javascript">
var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
</script>
<metal:block metal:define-slot="header_extras" />
</head>
<body>
<!-- Loggerhead Content Area -->
<ul id="menuTabs">
<form tal:attributes="action python:branch.url('/changes', start_revid=getattr(navigation, 'start_revid', None),
file_id=getattr(navigation, 'file_id', None))">
<div id="finderBox">
<label>search:</label> <input type="search" name="q" id="q" autocomplete="off" onblur="hide_search();" />
<div><a tal:attributes="href python:url(['/atom']);
title string:RSS feed for ${branch/friendly_name}">
<img tal:attributes="src python:branch.static_url('/static/images/ico_rss.gif')" alt="RSS" class="rssfeed"/></a>
</div>
</div>
</form>
<tal:block tal:condition="not:fileview_active">
<li><a tal:attributes="href python:url('/changes', clear=1);
title string:Changes;
id string:on">Changes</a></li>
<li><a tal:attributes="href python:url('/files', clear=1);
title string:Files">Files</a></li>
</tal:block>
<tal:block tal:condition="fileview_active">
<li><a tal:attributes="href python:url('/changes', clear=1);
title string:Changes">Changes</a></li>
<li><a tal:attributes="href python:url('/files', clear=1);
title string:Files;
id string:on">Files</a></li>
</tal:block>
</ul>
<div id="loggerheadCont">
<div id="search_terms"></div>
<h1 metal:define-slot="heading"></h1>
<div metal:define-slot="content"></div>
<p class="fl">Loggerhead runs on <a href="http://bazaar-vcs.org/" class="link">Bazaar</a> branches</p>
</div>
</body>
</html>
|