annotate rhodecode/templates/base/base.html @ 3211:c77a846a24d5 beta

autofocus when quick repo switcher is on
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 23 Jan 2013 22:48:04 +0100
parents 5d0ad07d889a
children 81bbb8086f03
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
2 <%inherit file="root.html"/>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
3
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
4 <!-- HEADER -->
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
5 <div id="header">
2001
93d4e3eb7d84 made upper menu always hover, looks nicer and produces less troubles
Marcin Kuzminski <marcin@python-works.com>
parents: 1975
diff changeset
6 <div id="header-inner" class="title hover">
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
7 <div id="logo">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
8 <h1><a href="${h.url('home')}">${c.rhodecode_name}</a></h1>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
9 </div>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
10 <!-- MENU -->
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
11 ${self.page_nav()}
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
12 <!-- END MENU -->
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
13 ${self.body()}
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
14 </div>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
15 </div>
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
16 <!-- END HEADER -->
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
17
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
18 <!-- CONTENT -->
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
19 <div id="content">
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
20 <div class="flash_msg">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
21 <% messages = h.flash.pop_messages() %>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
22 % if messages:
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
23 <ul id="flash-messages">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
24 % for message in messages:
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
25 <li class="${message.category}_msg">${message}</li>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
26 % endfor
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 346
diff changeset
27 </ul>
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
28 % endif
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
29 </div>
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
30 <div id="main">
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
31 ${next.main()}
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
32 </div>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
33 </div>
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
34 <!-- END CONTENT -->
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
35
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
36 <!-- FOOTER -->
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
37 <div id="footer">
1470
ea41c494cc3f beatify !
Marcin Kuzminski <marcin@python-works.com>
parents: 1468
diff changeset
38 <div id="footer-inner" class="title">
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
39 <div>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
40 <p class="footer-link">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
41 <a href="${h.url('bugtracker')}">${_('Submit a bug')}</a>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
42 </p>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
43 <p class="footer-link-right">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
44 <a href="${h.url('rhodecode_official')}">RhodeCode${'-%s' % c.rhodecode_instanceid if c.rhodecode_instanceid else ''}</a>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
45 ${c.rhodecode_version} &copy; 2010-${h.datetime.today().year} by Marcin Kuzminski
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
46 </p>
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
47 </div>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
48 </div>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
49 </div>
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
50 <!-- END FOOTER -->
0
564e40829f80 initial commit.
Marcin Kuzminski
parents:
diff changeset
51
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
52 ### MAKO DEFS ###
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
53 <%def name="page_nav()">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
54 ${self.menu()}
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
55 </%def>
79
9fe23fdab9e9 Implemented AJAH paging
Marcin Kuzminski <marcin@python-blog.com>
parents: 74
diff changeset
56
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
57 <%def name="breadcrumbs()">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
58 <div class="breadcrumbs">
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
59 ${self.breadcrumbs_links()}
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
60 </div>
91
25e01cb65282 Added menu generation as function
Marcin Kuzminski <marcin@python-works.com>
parents: 83
diff changeset
61 </%def>
25e01cb65282 Added menu generation as function
Marcin Kuzminski <marcin@python-works.com>
parents: 83
diff changeset
62
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
63 <%def name="usermenu()">
3206
d4bb8de7382f top menu: show user menu when hovering instead of using js - like other menus
Mads Kiilerich <madski@unity3d.com>
parents: 3205
diff changeset
64 ## USER MENU
3205
f01540c62f8a top menu: show user menu as a menu option like others, now also with login name
Mads Kiilerich <madski@unity3d.com>
parents: 3204
diff changeset
65 <li>
3207
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
66 <a class="menu_link" id="quick_login_link">
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
67 <span class="icon" style="padding:5px 5px 0px 5px">
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
68 <img src="${h.gravatar_url(c.rhodecode_user.email,20)}" alt="avatar">
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
69 </span>
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
70 %if c.rhodecode_user.username != 'default':
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
71 <span class="menu_link_user">${c.rhodecode_user.username}</span>
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
72 %if c.unread_notifications != 0:
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
73 <span class="menu_link_notifications">${c.unread_notifications}</span>
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
74 %endif
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
75 %else:
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
76 <span>${_('Not logged in')}</span>
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
77 %endif
b9de46161c96 make gravatar icon little bit bigger, re-use same img src like on other menu items,
Marcin Kuzminski <marcin@python-works.com>
parents: 3206
diff changeset
78 </a>
3205
f01540c62f8a top menu: show user menu as a menu option like others, now also with login name
Mads Kiilerich <madski@unity3d.com>
parents: 3204
diff changeset
79
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
80 <div class="user-menu">
3206
d4bb8de7382f top menu: show user menu when hovering instead of using js - like other menus
Mads Kiilerich <madski@unity3d.com>
parents: 3205
diff changeset
81 <div id="quick_login">
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
82 %if c.rhodecode_user.username == 'default':
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
83 <h4>${_('Login to your account')}</h4>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
84 ${h.form(h.url('login_home',came_from=h.url.current()))}
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
85 <div class="form">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
86 <div class="fields">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
87 <div class="field">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
88 <div class="label">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
89 <label for="username">${_('Username')}:</label>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
90 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
91 <div class="input">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
92 ${h.text('username',class_='focus',size=40)}
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
93 </div>
1944
5fc9c92025c1 white space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1935
diff changeset
94
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
95 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
96 <div class="field">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
97 <div class="label">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
98 <label for="password">${_('Password')}:</label>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
99 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
100 <div class="input">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
101 ${h.password('password',class_='focus',size=40)}
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
102 </div>
1944
5fc9c92025c1 white space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1935
diff changeset
103
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
104 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
105 <div class="buttons">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
106 <div class="password_forgoten">${h.link_to(_('Forgot password ?'),h.url('reset_password'))}</div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
107 <div class="register">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
108 %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')():
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
109 ${h.link_to(_("Don't have an account ?"),h.url('register'))}
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
110 %endif
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
111 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
112 <div class="submit">
1935
ff167a938ce0 user menu fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1931
diff changeset
113 ${h.submit('sign_in',_('Log In'),class_="ui-btn xsmall")}
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
114 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
115 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
116 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
117 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
118 ${h.end_form()}
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
119 %else:
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
120 <div class="links_left">
1950
4ae17f819ee8 #344 optional firstname lastname on user creation
Marcin Kuzminski <marcin@python-works.com>
parents: 1944
diff changeset
121 <div class="full_name">${c.rhodecode_user.full_name_or_username}</div>
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
122 <div class="email">${c.rhodecode_user.email}</div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
123 <div class="big_gravatar"><img alt="gravatar" src="${h.gravatar_url(c.rhodecode_user.email,48)}" /></div>
2001
93d4e3eb7d84 made upper menu always hover, looks nicer and produces less troubles
Marcin Kuzminski <marcin@python-works.com>
parents: 1975
diff changeset
124 <div class="inbox"><a href="${h.url('notifications')}">${_('Inbox')}: ${c.unread_notifications}</a></div>
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
125 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
126 <div class="links_right">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
127 <ol class="links">
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
128 <li>${h.link_to(_(u'Home'),h.url('home'))}</li>
1975
9c5b33c4de4d quick login: add link to Journal to popup menu
Aras Pranckevicius <aras@unity3d.com>
parents: 1950
diff changeset
129 <li>${h.link_to(_(u'Journal'),h.url('journal'))}</li>
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
130 <li>${h.link_to(_(u'My account'),h.url('admin_settings_my_account'))}</li>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
131 <li class="logout">${h.link_to(_(u'Log Out'),h.url('logout_home'))}</li>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
132 </ol>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
133 </div>
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
134 %endif
1944
5fc9c92025c1 white space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1935
diff changeset
135 </div>
3206
d4bb8de7382f top menu: show user menu when hovering instead of using js - like other menus
Mads Kiilerich <madski@unity3d.com>
parents: 3205
diff changeset
136 </div>
d4bb8de7382f top menu: show user menu when hovering instead of using js - like other menus
Mads Kiilerich <madski@unity3d.com>
parents: 3205
diff changeset
137
d4bb8de7382f top menu: show user menu when hovering instead of using js - like other menus
Mads Kiilerich <madski@unity3d.com>
parents: 3205
diff changeset
138 </li>
1926
049bc911b04f removed upper menu to save space and did little rip off menu similar to G+
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
139 </%def>
1157
41241617a7a3 rewrote templates, all small pages will inherit from root for easier changes and controll
Marcin Kuzminski <marcin@python-works.com>
parents: 1156
diff changeset
140
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 346
diff changeset
141 <%def name="menu(current=None)">
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
142 <%
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
143 def is_current(selected):
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
144 if selected == current:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
145 return h.literal('class="current"')
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
146 %>
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
147 <ul id="quick">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
148 <!-- repo switcher -->
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
149 <li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
150 <a class="menu_link" id="repo_switcher" title="${_('Switch repository')}" href="#">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
151 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
152 <img src="${h.url('/images/icons/database.png')}" alt="${_('Products')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
153 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
154 <span>${_('Repositories')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
155 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
156 <ul id="repo_switcher_list" class="repo_switcher">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
157 <li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
158 <a href="#">${_('loading...')}</a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
159 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
160 </ul>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
161 </li>
3208
1ac47c961f70 Set current pages indication for search and journal
Marcin Kuzminski <marcin@python-works.com>
parents: 3207
diff changeset
162 ## we render this menu only not for those pages
1ac47c961f70 Set current pages indication for search and journal
Marcin Kuzminski <marcin@python-works.com>
parents: 3207
diff changeset
163 %if current not in ['home','admin', 'search', 'journal']:
3198
c20adbaf16af html: random indentation fixes
Mads Kiilerich <madski@unity3d.com>
parents: 3197
diff changeset
164 ##REGULAR MENU
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
165 <li ${is_current('summary')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
166 <a class="menu_link" title="${_('Summary')}" href="${h.url('summary_home',repo_name=c.repo_name)}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
167 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
168 <img src="${h.url('/images/icons/clipboard_16.png')}" alt="${_('Summary')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
169 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
170 <span>${_('Summary')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
171 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
172 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
173 <li ${is_current('changelog')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
174 <a class="menu_link" title="${_('Changelog')}" href="${h.url('changelog_home',repo_name=c.repo_name)}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
175 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
176 <img src="${h.url('/images/icons/time.png')}" alt="${_('Changelog')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
177 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
178 <span>${_('Changelog')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
179 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
180 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
181 <li ${is_current('switch_to')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
182 <a class="menu_link" id="branch_tag_switcher" title="${_('Switch to')}" href="#">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
183 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
184 <img src="${h.url('/images/icons/arrow_switch.png')}" alt="${_('Switch to')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
185 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
186 <span>${_('Switch to')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
187 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
188 <ul id="switch_to_list" class="switch_to">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
189 <li><a href="#">${_('loading...')}</a></li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
190 </ul>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
191 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
192 <li ${is_current('files')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
193 <a class="menu_link" title="${_('Files')}" href="${h.url('files_home',repo_name=c.repo_name)}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
194 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
195 <img src="${h.url('/images/icons/file.png')}" alt="${_('Files')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
196 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
197 <span>${_('Files')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
198 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
199 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
200 <li ${is_current('options')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
201 <a class="menu_link" title="${_('Options')}" href="#">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
202 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
203 <img src="${h.url('/images/icons/table_gear.png')}" alt="${_('Admin')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
204 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
205 <span>${_('Options')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
206 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
207 <ul>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
208 %if h.HasRepoPermissionAll('repository.admin')(c.repo_name):
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
209 %if h.HasPermissionAll('hg.admin')('access settings on repository'):
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
210 <li>${h.link_to(_('repository settings'),h.url('edit_repo',repo_name=c.repo_name),class_='settings')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
211 %else:
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
212 <li>${h.link_to(_('repository settings'),h.url('repo_settings_home',repo_name=c.repo_name),class_='settings')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
213 %endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
214 %endif
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
215
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
216 <li>${h.link_to(_('fork'),h.url('repo_fork_home',repo_name=c.repo_name),class_='fork')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
217 %if h.is_hg(c.rhodecode_repo):
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
218 <li>${h.link_to(_('open new pull request'),h.url('pullrequest_home',repo_name=c.repo_name),class_='pull_request')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
219 %endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
220 %if c.rhodecode_db_repo.fork:
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
221 <li>${h.link_to(_('compare fork'),h.url('compare_url',repo_name=c.repo_name,org_ref_type='branch',org_ref=request.GET.get('branch') or 'default',other_ref_type='branch',other_ref='default',repo=c.rhodecode_db_repo.fork.repo_name),class_='compare_request')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
222 %endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
223 <li>${h.link_to(_('search'),h.url('search_repo',search_repo=c.repo_name),class_='search')}</li>
2833
2f3cba7b6d16 Add quick toggle link for locking for users with write or admin permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2773
diff changeset
224
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
225 %if h.HasRepoPermissionAny('repository.write','repository.admin')(c.repo_name) and c.rhodecode_db_repo.enable_locking:
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
226 %if c.rhodecode_db_repo.locked[0]:
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
227 <li>${h.link_to(_('unlock'), h.url('toggle_locking',repo_name=c.repo_name),class_='locking_del')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
228 %else:
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
229 <li>${h.link_to(_('lock'), h.url('toggle_locking',repo_name=c.repo_name),class_='locking_add')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
230 %endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
231 %endif
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
232
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
233 % if h.HasPermissionAll('hg.admin')('access admin main page'):
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
234 <li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
235 ${h.link_to(_('admin'),h.url('admin_home'),class_='admin')}
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
236 <%def name="admin_menu()">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
237 <ul>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
238 <li>${h.link_to(_('journal'),h.url('admin_home'),class_='journal')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
239 <li>${h.link_to(_('repositories'),h.url('repos'),class_='repos')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
240 <li>${h.link_to(_('repositories groups'),h.url('repos_groups'),class_='repos_groups')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
241 <li>${h.link_to(_('users'),h.url('users'),class_='users')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
242 <li>${h.link_to(_('users groups'),h.url('users_groups'),class_='groups')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
243 <li>${h.link_to(_('permissions'),h.url('edit_permission',id='default'),class_='permissions')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
244 <li>${h.link_to(_('ldap'),h.url('ldap_home'),class_='ldap')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
245 <li>${h.link_to(_('defaults'),h.url('defaults'),class_='defaults')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
246 <li class="last">${h.link_to(_('settings'),h.url('admin_settings'),class_='settings')}</li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
247 </ul>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
248 </%def>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
249 ## ADMIN MENU
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
250 ${admin_menu()}
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
251 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
252 % endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
253 </ul>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
254 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
255 <li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
256 <a class="menu_link" title="${_('Followers')}" href="${h.url('repo_followers_home',repo_name=c.repo_name)}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
257 <span class="icon_short">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
258 <img src="${h.url('/images/icons/heart.png')}" alt="${_('Followers')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
259 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
260 <span id="current_followers_count" class="short">${c.repository_followers}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
261 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
262 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
263 <li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
264 <a class="menu_link" title="${_('Forks')}" href="${h.url('repo_forks_home',repo_name=c.repo_name)}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
265 <span class="icon_short">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
266 <img src="${h.url('/images/icons/arrow_divide.png')}" alt="${_('Forks')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
267 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
268 <span class="short">${c.repository_forks}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
269 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
270 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
271 <li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
272 <a class="menu_link" title="${_('Pull requests')}" href="${h.url('pullrequest_show_all',repo_name=c.repo_name)}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
273 <span class="icon_short">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
274 <img src="${h.url('/images/icons/arrow_join.png')}" alt="${_('Pull requests')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
275 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
276 <span class="short">${c.repository_pull_requests}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
277 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
278 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
279 ${usermenu()}
1608
0069657aaf42 lazy load of branches and tags menu
Marcin Kuzminski <marcin@python-works.com>
parents: 1474
diff changeset
280 <script type="text/javascript">
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
281 YUE.on('branch_tag_switcher','mouseover',function(){
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
282 var loaded = YUD.hasClass('branch_tag_switcher','loaded');
1608
0069657aaf42 lazy load of branches and tags menu
Marcin Kuzminski <marcin@python-works.com>
parents: 1474
diff changeset
283 if(!loaded){
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
284 YUD.addClass('branch_tag_switcher','loaded');
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
285 ypjax("${h.url('branch_tag_switcher',repo_name=c.repo_name)}",'switch_to_list',
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
286 function(o){},
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
287 function(o){YUD.removeClass('branch_tag_switcher','loaded');}
1608
0069657aaf42 lazy load of branches and tags menu
Marcin Kuzminski <marcin@python-works.com>
parents: 1474
diff changeset
288 ,null);
0069657aaf42 lazy load of branches and tags menu
Marcin Kuzminski <marcin@python-works.com>
parents: 1474
diff changeset
289 }
0069657aaf42 lazy load of branches and tags menu
Marcin Kuzminski <marcin@python-works.com>
parents: 1474
diff changeset
290 return false;
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
291 });
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1791
diff changeset
292 </script>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
293 %else:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
294 ##ROOT MENU
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
295 %if c.rhodecode_user.username != 'default':
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
296 <li ${is_current('journal')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
297 <a class="menu_link" title="${_('Journal')}" href="${h.url('journal')}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
298 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
299 <img src="${h.url('/images/icons/book.png')}" alt="${_('Journal')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
300 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
301 <span>${_('Journal')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
302 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
303 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
304 %else:
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
305 <li ${is_current('journal')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
306 <a class="menu_link" title="${_('Public journal')}" href="${h.url('public_journal')}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
307 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
308 <img src="${h.url('/images/icons/book.png')}" alt="${_('Public journal')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
309 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
310 <span>${_('Public journal')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
311 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
312 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
313 %endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
314 <li ${is_current('search')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
315 <a class="menu_link" title="${_('Search')}" href="${h.url('search')}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
316 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
317 <img src="${h.url('/images/icons/search_16.png')}" alt="${_('Search')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
318 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
319 <span>${_('Search')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
320 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
321 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
322 %if h.HasPermissionAll('hg.admin')('access admin main page'):
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
323 <li ${is_current('admin')}>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
324 <a class="menu_link" title="${_('Admin')}" href="${h.url('admin_home')}">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
325 <span class="icon">
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
326 <img src="${h.url('/images/icons/cog_edit.png')}" alt="${_('Admin')}" />
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
327 </span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
328 <span>${_('Admin')}</span>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
329 </a>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
330 ${admin_menu()}
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
331 </li>
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
332 %endif
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
333 ${usermenu()}
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 3188
diff changeset
334 %endif
3211
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
335 <script type="text/javascript">
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
336 YUE.on('repo_switcher','mouseover',function(){
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
337 var target = 'q_filter_rs';
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
338 var qfilter_activate = function(){
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
339 var nodes = YUQ('ul#repo_switcher_list li a.repo_name');
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
340 var func = function(node){
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
341 return node.parentNode;
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
342 }
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
343 q_filter(target,nodes,func);
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
344 }
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
345
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
346 var loaded = YUD.hasClass('repo_switcher','loaded');
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
347 if(!loaded){
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
348 YUD.addClass('repo_switcher','loaded');
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
349 ypjax("${h.url('repo_switcher')}",'repo_switcher_list',
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
350 function(o){qfilter_activate();YUD.get(target).focus()},
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
351 function(o){YUD.removeClass('repo_switcher','loaded');}
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
352 ,null);
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
353 }else{
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
354 YUD.get(target).focus();
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
355 }
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
356 return false;
3209
e7600fe19943 Implements #734 repo switcher should be available in all views
Marcin Kuzminski <marcin@python-works.com>
parents: 3208
diff changeset
357 });
3211
c77a846a24d5 autofocus when quick repo switcher is on
Marcin Kuzminski <marcin@python-works.com>
parents: 3210
diff changeset
358 </script>
1472
aaec08ad9daf Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
Augusto Herrmann <augusto.herrmann@planejamento.gov.br>
parents: 1453
diff changeset
359 </%def>