Fixed summary and changed a few links.
[catagits/Gitalist.git] / root / wrapper.tt2
CommitLineData
c8a42dd5 1[%- IF no_wrapper || template.name.match('\.(css|js|txt)'); content; ELSE; -%]
9aeab0df 2<!DOCTYPE html>
3<html>
d3feefcf 4<head>
f71a83ab 5 <!-- git core binaries version [% git_version %] -->
82f94bce 6 <meta charset="utf-8" />
7 <meta name="generator" content="gitweb/[% version %] git/[% git_version %]" />
8 <meta name="robots" content="index, nofollow" />
a349e797 9 <title>[%# FIXME - MING %][%-
da8f4f82 10 title = BLOCK;
11 c.config.sitename;
87581f05 12 IF Repository; ' - ' _ Repository.name | html; END;
906a2dd2 13 IF c.action; ' / ' _ c.action; END;
14 IF filename; ' - ' _ filename | html; END;
a349e797 15 IF c.action && c.action == 'tree'; '/'; END;
da8f4f82 16 END;
17 title;
18 -%] (Gitalist)</title>
19 [% INCLUDE '_header_feeds.tt2' %]
82f94bce 20
2b686219 21 <link rel="stylesheet" type="text/css" href="[% c.uri_for('/core.css') %]" />
628d42fd 22 <link rel="shortcut icon" href="[% c.uri_for('/static/favicon.ico') %]" />
9aeab0df 23 <script src="[% c.uri_for('/static/js/jquery.min.js') %]"></script>
37412bb3 24 <script src="[% c.uri_for('/static/js/site.js') %]"></script>
24701964 25</head>
26
27<body>
28
08d8bb08 29<div id="header_holder">
82f94bce 30 <div class="sub_holder">
08d8bb08 31 <div id="header">
32 <a href="[% c.uri_for('/') %]" id="logo"><img src="[% c.uri_for('/static/i/logo.png') %]" alt="Gitalist" /></a>
9143f8d4 33
08d8bb08 34 <div class="search">
ef0ad44d 35 [% IF Repository; INCLUDE 'nav/search.tt2'; ELSE; %]
36
37 <!--
38 [%# FIXME - Search submits to blank(ish) page %]
39 <form method="get" action="[% c.uri_for_action('/search') %]" enctype="application/x-www-form-urlencoded">
40 <p class="projsearch">Search:
41 <input type="text" name="s" value="[% search_text %]" />
42 </p>
43 </form>
44 -->
08d8bb08 45 [% END %]
46 </div>
82f94bce 47 </div>
48
49
50 <div id="nav_logs" [% 'style="visibility:hidden"' IF c.action.name == "index" %]>
9143f8d4 51
52 [% IF c.req.captures.size == 1; SET path = 'repository'; ELSE; SET path = 'ref'; END %]
53
82f94bce 54 <ul>
03686cdc 55 <li[% ' class="selected"' IF c.action.name.match('tree') %]><a href="[% c.uri_for_action('/ref/tree', c.req.captures) || c.uri_for_action('/repository/tree', c.req.captures) %]" id="tree">Tree</a></li>
9143f8d4 56
80d7575a 57 <li[% ' class="selected"' IF c.action.name.match('longlog') %]><a href="[% c.uri_for_action('/' _ path _ '/longlog', c.req.captures) %]" id="log_full">Long log</a></li>
9143f8d4 58
80d7575a 59 <li[% ' class="selected"' IF c.action.name.match('shortlog') %]><a href="[% c.uri_for_action('/' _ path _ '/shortlog', c.req.captures) %]" id="log_short">Short log</a></li>
9143f8d4 60
61
62 <li id="branch_selector">
9143f8d4 63 Branches
37412bb3 64 <select id='branch-list'>
9143f8d4 65 <option value="">HEAD</option>
37412bb3 66 [% FOREACH branch IN Repository.heads %]
67 <option value="[% branch.name %]">[% branch.name %]</option>
9143f8d4 68 [% END %]
69
70 </select>
71 </li>
72
82f94bce 73 </ul>
74 </div>
75
76 <h1>
77 <a href="[% c.uri_for('/') %]">Home</a>
78
79 [%- IF Repository %]
9aeab0df 80 / <a href="[% c.uri_for_action('/repository/summary', [Repository.name]) %]">[% Repository.name %]</a>
82f94bce 81 [%- END %]
82 /
9143f8d4 83 [%- IF Repository %]
84 [%# FIXME: output branch name in a nicer way!!! #%]
85 [% FOREACH branch_head IN Repository.heads %]
86 [% IF c.req.path.search(branch_head.name) %]
87 <a href="[% c.uri_for_action('/repository/summary', [Repository.name]) %]/[% branch_head.name %]/shortlog">[% branch_head.name %]</a> /
88 [% END %]
89 [% END %]
90 [%- END %]
82f94bce 91
066e05d3 92
9143f8d4 93 [%-
97bdf7bc 94
95 #FIXME on a history view of a folder, don't show extra actions in dropdown
96 SET on_file_page = 1;
97
0aa355fb 98 SET actions_list = {
99 "blob" => 1,
100 "raw" => 1,
101 "blame" => 1,
102 "history" => 1,
103 };
104
066e05d3 105 SET action_name = c.action.name
106 .replace("_"," ")
107 .replace("log", " log")
108 .replace("fancy","")
109 .replace("index","Repositories");
110 action_name_ucfirst = action_name FILTER ucfirst;
97bdf7bc 111 IF actions_list.$action_name && on_file_page;
0aa355fb 112 '<a href="#" id="actions_nav_link"><span>' _ action_name_ucfirst _ '</span></a>';
113 ELSE;
114 action_name_ucfirst;
115 END;
066e05d3 116
9143f8d4 117 -%]
066e05d3 118
82f94bce 119 </h1>
120
066e05d3 121 [%-
066e05d3 122 IF actions_list.$action_name;
123 '<ul id="actions_nav_list">';
124 FOREACH action IN actions_list;
125 action_output = action.key FILTER ucfirst;
126 NEXT IF action_output == action_name_ucfirst;
127 action = action.key;
7a2c74c3 128 '<li><a href="' _ c.uri_for("/") _ c.req.path.replace(action_name, action) _ '">' _ action_output _ '</a></li>';
066e05d3 129 END;
130 '</ul>';
131 END;
132 -%]
133
82f94bce 134 </div>
135</div>
136
066e05d3 137
82f94bce 138<div id="content_holder">
139 <div id="content" class="sub_holder">
140 <div id="content_inner">
1fd8159c 141
82f94bce 142
d3feefcf 143
10938267 144 [% content %]
10938267 145
82f94bce 146
82f94bce 147 </div>
148 </div>
149</div>
69421cb7 150
eab82ed1 151<div id="footer_holder">
152 <div id="footer" class="sub_holder">
153
8d491fb3 154 <p>[% IF Repository; Repository.description | html IF Repository.description != "Unnamed repository; edit this file to name it for gitweb." ; END; %]</p>
eab82ed1 155
156 <a title="git homepage" href="http://git-scm.org"><img src="[% c.uri_for('/logo.png') %]" id="git_logo" alt="git" /></a>
157
158 <div id="feeds">
159 [% INCLUDE 'inc/footer_feeds.tt2' %]
160 </div>
82f94bce 161 </div>
eab82ed1 162
2cf1e781 163</div>
164
82f94bce 165
9143f8d4 166
eab82ed1 167<div id="debug_holder">
168 <div id="debug" class="sub_holder">
82f94bce 169
eab82ed1 170 <p>Debug:</p>
171
172 [% USE Dumper %]
173 <pre>
174 [% Repository.path %]
37412bb3 175 [% Dumper.dump(c.req.args) %]
eab82ed1 176 </pre>
177
178 </div>
179</div>
ed30bf20 180
5e39ab18 181<span id="current-uri" class="js-data">[%
37412bb3 182 # A bit of smoke and mirrors to get the /repository/shortlog URIs working
183 cur_act = '' _ c.action;
184 cur_uri = cur_act.match("log") || cur_act.match("^ref")
185 ? '/ref/' _ cur_act.replace("^(repository|ref)/", '')
186 : cur_act;
5e39ab18 187 # XXX I just want lists!
37412bb3 188 IF c.req.args.size > 0;
5e39ab18 189 c.uri_for_action(cur_uri, [Repository.name, 'HEAD'], c.req.args.0);
37412bb3 190 ELSE;
191 c.uri_for_action(cur_uri, [Repository.name, 'HEAD']);
192 END;
193%]</span>
194
d3feefcf 195</body>
196</html>
c8a42dd5 197[%- END -%]