##// END OF EJS Templates
rewrote templates, all small pages will inherit from root for easier changes and controll
marcink -
r1157:41241617 beta
parent child Browse files
Show More
@@ -0,0 +1,126 b''
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>${self.title()}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <meta name="robots" content="index, nofollow"/>
8 <link rel="icon" href="${h.url("/images/icons/database_gear.png")}" type="image/png" />
9
10 <!-- stylesheets -->
11 ${self.css()}
12
13 %if c.ga_code:
14 <!-- Analytics -->
15 <script type="text/javascript">
16 var _gaq = _gaq || [];
17 _gaq.push(['_setAccount', '${c.ga_code}']);
18 _gaq.push(['_trackPageview']);
19
20 (function() {
21 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
22 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
23 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
24 })();
25 </script>
26 %endif
27
28 <!-- scripts -->
29 ${self.js()}
30
31 </head>
32
33 <body id="body">
34 ${next.body()}
35 </body>
36
37 </html>
38
39 <%def name="css()">
40 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
41 <link rel="stylesheet" type="text/css" href="${h.url('/css/pygments.css')}" />
42 <link rel="stylesheet" type="text/css" href="${h.url('/css/diff.css')}" />
43 </%def>
44
45 <%def name="js()">
46 <script type="text/javascript">
47 if (typeof console == "undefined" || typeof console.log == "undefined")
48 console = { log: function() {} }
49 </script>
50
51 % if False:
52 <script type="text/javascript" src="${h.url('/js/yui/utilities/utilities.js')}"></script>
53 <script type="text/javascript" src="${h.url('/js/yui/container/container.js')}"></script>
54 <script type="text/javascript" src="${h.url('/js/yui/datasource/datasource.js')}"></script>
55 <script type="text/javascript" src="${h.url('/js/yui/autocomplete/autocomplete.js')}"></script>
56 <script type="text/javascript" src="${h.url('/js/yui/selector/selector-min.js')}"></script>
57 % else:
58 <script type="text/javascript" src="${h.url('/js/yui2a.js')}"></script>
59 <!--[if IE]>
60 <script language="javascript" type="text/javascript" src="${h.url('/js/excanvas.min.js')}"></script>
61 <![endif]-->
62 <script type="text/javascript" src="${h.url('/js/yui.flot.js')}"></script>
63 % endif
64
65 <script type="text/javascript">
66 var YUC = YAHOO.util.Connect;
67 var YUD = YAHOO.util.Dom;
68 var YUE = YAHOO.util.Event;
69 </script>
70
71 <script type="text/javascript">
72 var base_url = "${h.url('toggle_following')}";
73 function onSuccess(target){
74
75 var f = YUD.get(target.id);
76 var f_cnt = YUD.get('current_followers_count');
77
78 if(f.getAttribute('class')=='follow'){
79 f.setAttribute('class','following');
80 f.setAttribute('title',"${_('Stop following this repository')}");
81
82 if(f_cnt){
83 var cnt = Number(f_cnt.innerHTML)+1;
84 f_cnt.innerHTML = cnt;
85 }
86
87 }
88 else{
89 f.setAttribute('class','follow');
90 f.setAttribute('title',"${_('Start following this repository')}");
91 if(f_cnt){
92 var cnt = Number(f_cnt.innerHTML)+1;
93 f_cnt.innerHTML = cnt;
94 }
95 }
96 }
97
98 function toggleFollowingUser(target,fallows_user_id,token,user_id){
99 args = 'follows_user_id='+fallows_user_id;
100 args+= '&amp;auth_token='+token;
101 if(user_id != undefined){
102 args+="&amp;user_id="+user_id;
103 }
104 YUC.asyncRequest('POST',base_url,{
105 success:function(o){
106 onSuccess(target);
107 }
108 },args); return false;
109 }
110
111 function toggleFollowingRepo(target,fallows_repo_id,token,user_id){
112
113 args = 'follows_repo_id='+fallows_repo_id;
114 args+= '&amp;auth_token='+token;
115 if(user_id != undefined){
116 args+="&amp;user_id="+user_id;
117 }
118 YUC.asyncRequest('POST',base_url,{
119 success:function(o){
120 onSuccess(target);
121 }
122 },args); return false;
123 }
124 </script>
125
126 </%def> No newline at end of file
@@ -1,402 +1,303 b''
1 1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>${next.title()}</title>
6 <link rel="icon" href="${h.url('/images/icons/database_gear.png')}" type="image/png" />
7 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 <meta name="robots" content="index, nofollow"/>
9 <!-- stylesheets -->
10 ${self.css()}
11 <!-- scripts -->
12 ${self.js()}
13 %if c.ga_code:
14 <script type="text/javascript">
15 var _gaq = _gaq || [];
16 _gaq.push(['_setAccount', '${c.ga_code}']);
17 _gaq.push(['_trackPageview']);
18
19 (function() {
20 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
21 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
22 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
23 })();
24 </script>
25 %endif
26 </head>
27 <body>
28 <!-- header -->
29 <div id="header">
30 <!-- user -->
31 <ul id="logged-user">
32 <li class="first">
33 <div class="gravatar">
34 <img alt="gravatar" src="${h.gravatar_url(c.rhodecode_user.email,20)}" />
35 </div>
36 <div class="account">
37 %if c.rhodecode_user.username == 'default':
38 <a href="${h.url('public_journal')}">${_('Public journal')}</a>
39 %else:
40 ${h.link_to(c.rhodecode_user.username,h.url('admin_settings_my_account'),title='%s %s'%(c.rhodecode_user.name,c.rhodecode_user.lastname))}
41 %endif
42 </div>
43 </li>
44 <li>
45 <a href="${h.url('home')}">${_('Home')}</a>
46 </li>
47 %if c.rhodecode_user.username != 'default':
48 <li>
49 <a href="${h.url('journal')}">${_('Journal')}</a>
50 ##(${c.unread_journal})</a>
51 </li>
52 %endif
53 %if c.rhodecode_user.username == 'default':
54 <li class="last highlight">${h.link_to(u'Login',h.url('login_home'))}</li>
55 %else:
56 <li class="last highlight">${h.link_to(u'Log Out',h.url('logout_home'))}</li>
57 %endif
2 <%inherit file="root.html"/>
3
4 <!-- HEADER -->
5 <div id="header">
6 <!-- user -->
7 <ul id="logged-user">
8 <li class="first">
9 <div class="gravatar">
10 <img alt="gravatar" src="${h.gravatar_url(c.rhodecode_user.email,20)}" />
11 </div>
12 <div class="account">
13 %if c.rhodecode_user.username == 'default':
14 <a href="${h.url('public_journal')}">${_('Public journal')}</a>
15 %else:
16 ${h.link_to(c.rhodecode_user.username,h.url('admin_settings_my_account'),title='%s %s'%(c.rhodecode_user.name,c.rhodecode_user.lastname))}
17 %endif
18 </div>
19 </li>
20 <li>
21 <a href="${h.url('home')}">${_('Home')}</a>
22 </li>
23 %if c.rhodecode_user.username != 'default':
24 <li>
25 <a href="${h.url('journal')}">${_('Journal')}</a>
26 ##(${c.unread_journal}
27 </li>
28 %endif
29 %if c.rhodecode_user.username == 'default':
30 <li class="last highlight">${h.link_to(u'Login',h.url('login_home'))}</li>
31 %else:
32 <li class="last highlight">${h.link_to(u'Log Out',h.url('logout_home'))}</li>
33 %endif
34 </ul>
35 <!-- end user -->
36 <div id="header-inner" class="title top-left-rounded-corner top-right-rounded-corner">
37 <div id="logo">
38 <h1><a href="${h.url('home')}">${c.rhodecode_name}</a></h1>
39 </div>
40 <!-- MENU -->
41 ${self.page_nav()}
42 <!-- END MENU -->
43 ${self.body()}
44 </div>
45 </div>
46 <!-- END HEADER -->
47
48 <!-- CONTENT -->
49 <div id="content">
50 <div class="flash_msg">
51 <% messages = h.flash.pop_messages() %>
52 % if messages:
53 <ul id="flash-messages">
54 % for message in messages:
55 <li class="${message.category}_msg">${message}</li>
56 % endfor
58 57 </ul>
59 <!-- end user -->
60 <div id="header-inner" class="title top-left-rounded-corner top-right-rounded-corner">
61 <!-- logo -->
62 <div id="logo">
63 <h1><a href="${h.url('home')}">${c.rhodecode_name}</a></h1>
64 </div>
65 <!-- end logo -->
66 <!-- menu -->
67 ${self.page_nav()}
68 <!-- quick -->
69 </div>
70 </div>
71 <!-- end header -->
72
73 <!-- CONTENT -->
74 <div id="content">
75 <div class="flash_msg">
76 <% messages = h.flash.pop_messages() %>
77 % if messages:
78 <ul id="flash-messages">
79 % for message in messages:
80 <li class="${message.category}_msg">${message}</li>
81 % endfor
82 </ul>
83 % endif
84 </div>
85 <div id="main">
86 ${next.main()}
87 </div>
88 </div>
89 <!-- END CONTENT -->
58 % endif
59 </div>
60 <div id="main">
61 ${next.main()}
62 </div>
63 </div>
64 <!-- END CONTENT -->
90 65
91 <!-- footer -->
92 <div id="footer">
93 <div id="footer-inner" class="title bottom-left-rounded-corner bottom-right-rounded-corner">
94 <div>
95 <p class="footer-link">${h.link_to(_('Submit a bug'),h.url('bugtracker'))}</p>
96 <p class="footer-link">${h.link_to(_('GPL license'),h.url('gpl_license'))}</p>
97 <p class="footer-link-right"><a href="${h.url('rhodecode_official')}">RhodeCode</a> ${c.rhodecode_version} &copy; 2010-2011 by Marcin Kuzminski</p>
98 </div>
99 </div>
100 <script type="text/javascript">
101 function tooltip_activate(){
102 ${h.tooltip.activate()}
103 }
104 tooltip_activate();
105 </script>
106 </div>
107 <!-- end footer -->
108 </body>
66 <!-- FOOTER -->
67 <div id="footer">
68 <div id="footer-inner" class="title bottom-left-rounded-corner bottom-right-rounded-corner">
69 <div>
70 <p class="footer-link">
71 <a href="${h.url('bugtracker')}">${_('Submit a bug')}</a>
72 </p>
73 <p class="footer-link">
74 <a href="${h.url('gpl_license')}">${_('GPL license')}</a>
75 </p>
76 <p class="footer-link-right">
77 <a href="${h.url('rhodecode_official')}">RhodeCode</a>
78 ${c.rhodecode_version} &copy; 2010-${h.datetime.today().year} by Marcin Kuzminski
79 </p>
80 </div>
81 </div>
82 <script type="text/javascript">
83 function tooltip_activate(){
84 ${h.tooltip.activate()}
85 }
86 tooltip_activate();
87 </script>
88 </div>
89 <!-- END FOOTER -->
109 90
110 </html>
91 ### MAKO DEFS ###
92 <%def name="page_nav()">
93 ${self.menu()}
94 </%def>
111 95
112 ### MAKO DEFS ###
113 <%def name="page_nav()">
114 ${self.menu()}
96 <%def name="breadcrumbs()">
97 <div class="breadcrumbs">
98 ${self.breadcrumbs_links()}
99 </div>
115 100 </%def>
116 101
102
117 103 <%def name="menu(current=None)">
118 104 <%
119 105 def is_current(selected):
120 106 if selected == current:
121 107 return h.literal('class="current"')
122 108 %>
123 109 %if current not in ['home','admin']:
124 110 ##REGULAR MENU
125 111 <ul id="quick">
126 112 <!-- repo switcher -->
127 113 <li>
128 114 <a id="repo_switcher" title="${_('Switch repository')}" href="#">
129 115 <span class="icon">
130 116 <img src="${h.url("/images/icons/database.png")}" alt="${_('Products')}" />
131 117 </span>
132 118 <span>&darr;</span>
133 119 </a>
134 120 <ul class="repo_switcher">
135 121 %for repo in c.cached_repo_list:
136 122
137 123 %if repo['dbrepo']['private']:
138 124 <li><img src="${h.url("/images/icons/lock.png")}" alt="${_('Private repository')}" class="repo_switcher_type"/>${h.link_to(repo['repo'].name,h.url('summary_home',repo_name=repo['repo'].name),class_="%s" % repo['dbrepo']['repo_type'])}</li>
139 125 %else:
140 126 <li><img src="${h.url("/images/icons/lock_open.png")}" alt="${_('Public repository')}" class="repo_switcher_type" />${h.link_to(repo['repo'].name,h.url('summary_home',repo_name=repo['repo'].name),class_="%s" % repo['dbrepo']['repo_type'])}</li>
141 127 %endif
142 128 %endfor
143 129 </ul>
144 130 </li>
145 131
146 132 <li ${is_current('summary')}>
147 133 <a title="${_('Summary')}" href="${h.url('summary_home',repo_name=c.repo_name)}">
148 134 <span class="icon">
149 135 <img src="${h.url("/images/icons/clipboard_16.png")}" alt="${_('Summary')}" />
150 136 </span>
151 137 <span>${_('Summary')}</span>
152 138 </a>
153 139 </li>
154 140 ##<li ${is_current('shortlog')}>
155 141 ## <a title="${_('Shortlog')}" href="${h.url('shortlog_home',repo_name=c.repo_name)}">
156 142 ## <span class="icon">
157 143 ## <img src="${h.url("/images/icons/application_view_list.png")}" alt="${_('Shortlog')}" />
158 144 ## </span>
159 145 ## <span>${_('Shortlog')}</span>
160 146 ## </a>
161 147 ##</li>
162 148 <li ${is_current('changelog')}>
163 149 <a title="${_('Changelog')}" href="${h.url('changelog_home',repo_name=c.repo_name)}">
164 150 <span class="icon">
165 151 <img src="${h.url("/images/icons/time.png")}" alt="${_('Changelog')}" />
166 152 </span>
167 153 <span>${_('Changelog')}</span>
168 154 </a>
169 155 </li>
170 156
171 157 <li ${is_current('switch_to')}>
172 158 <a title="${_('Switch to')}" href="#">
173 159 <span class="icon">
174 160 <img src="${h.url("/images/icons/arrow_switch.png")}" alt="${_('Switch to')}" />
175 161 </span>
176 162 <span>${_('Switch to')}</span>
177 163 </a>
178 164 <ul>
179 165 <li>
180 166 ${h.link_to('%s (%s)' % (_('branches'),len(c.rhodecode_repo.branches.values()),),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
181 167 <ul>
182 168 %if c.rhodecode_repo.branches.values():
183 169 %for cnt,branch in enumerate(c.rhodecode_repo.branches.items()):
184 170 <li>${h.link_to('%s - %s' % (branch[0],h.short_id(branch[1])),h.url('files_home',repo_name=c.repo_name,revision=branch[1]))}</li>
185 171 %endfor
186 172 %else:
187 173 <li>${h.link_to(_('There are no branches yet'),'#')}</li>
188 174 %endif
189 175 </ul>
190 176 </li>
191 177 <li>
192 178 ${h.link_to('%s (%s)' % (_('tags'),len(c.rhodecode_repo.tags.values()),),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')}
193 179 <ul>
194 180 %if c.rhodecode_repo.tags.values():
195 181 %for cnt,tag in enumerate(c.rhodecode_repo.tags.items()):
196 182 <li>${h.link_to('%s - %s' % (tag[0],h.short_id(tag[1])),h.url('files_home',repo_name=c.repo_name,revision=tag[1]))}</li>
197 183 %endfor
198 184 %else:
199 185 <li>${h.link_to(_('There are no tags yet'),'#')}</li>
200 186 %endif
201 187 </ul>
202 188 </li>
203 189 </ul>
204 190 </li>
205 191 <li ${is_current('files')}>
206 192 <a title="${_('Files')}" href="${h.url('files_home',repo_name=c.repo_name)}">
207 193 <span class="icon">
208 194 <img src="${h.url("/images/icons/file.png")}" alt="${_('Files')}" />
209 195 </span>
210 196 <span>${_('Files')}</span>
211 197 </a>
212 198 </li>
213 199
214 200 <li ${is_current('options')}>
215 201 <a title="${_('Options')}" href="#">
216 202 <span class="icon">
217 203 <img src="${h.url("/images/icons/table_gear.png")}" alt="${_('Admin')}" />
218 204 </span>
219 205 <span>${_('Options')}</span>
220 206 </a>
221 207 <ul>
222 208 %if h.HasRepoPermissionAll('repository.admin')(c.repo_name):
223 209 %if h.HasPermissionAll('hg.admin')('access settings on repository'):
224 210 <li>${h.link_to(_('settings'),h.url('edit_repo',repo_name=c.repo_name),class_='settings')}</li>
225 211 %else:
226 212 <li>${h.link_to(_('settings'),h.url('repo_settings_home',repo_name=c.repo_name),class_='settings')}</li>
227 213 %endif
228 214 %endif
229 215 <li>${h.link_to(_('fork'),h.url('repo_fork_home',repo_name=c.repo_name),class_='fork')}</li>
230 216 <li>${h.link_to(_('search'),h.url('search_repo',search_repo=c.repo_name),class_='search')}</li>
231 217
232 218 %if h.HasPermissionAll('hg.admin')('access admin main page'):
233 219 <li>
234 220 ${h.link_to(_('admin'),h.url('admin_home'),class_='admin')}
235 221 <%def name="admin_menu()">
236 222 <ul>
237 223 <li>${h.link_to(_('journal'),h.url('admin_home'),class_='journal')}</li>
238 224 <li>${h.link_to(_('repositories'),h.url('repos'),class_='repos')}</li>
239 225 <li>${h.link_to(_('users'),h.url('users'),class_='users')}</li>
240 226 <li>${h.link_to(_('users groups'),h.url('users_groups'),class_='groups')}</li>
241 227 <li>${h.link_to(_('permissions'),h.url('edit_permission',id='default'),class_='permissions')}</li>
242 228 <li>${h.link_to(_('ldap'),h.url('ldap_home'),class_='ldap')}</li>
243 229 <li class="last">${h.link_to(_('settings'),h.url('admin_settings'),class_='settings')}</li>
244 230 </ul>
245 231 </%def>
246 232
247 233 ${admin_menu()}
248 234 </li>
249 235 %endif
250 236
251 237 </ul>
252 238 </li>
253 239
254 240 <li>
255 241 <a title="${_('Followers')}" href="#">
256 242 <span class="icon_short">
257 243 <img src="${h.url("/images/icons/heart.png")}" alt="${_('Followers')}" />
258 244 </span>
259 245 <span id="current_followers_count" class="short">${c.repository_followers}</span>
260 246 </a>
261 247 </li>
262 248 <li>
263 249 <a title="${_('Forks')}" href="#">
264 250 <span class="icon_short">
265 251 <img src="${h.url("/images/icons/arrow_divide.png")}" alt="${_('Forks')}" />
266 252 </span>
267 253 <span class="short">${c.repository_forks}</span>
268 254 </a>
269 255 </li>
270 256
271 257
272 258
273 259 </ul>
274 260 %else:
275 261 ##ROOT MENU
276 262 <ul id="quick">
277 263 <li>
278 264 <a title="${_('Home')}" href="${h.url('home')}">
279 265 <span class="icon">
280 266 <img src="${h.url("/images/icons/home_16.png")}" alt="${_('Home')}" />
281 267 </span>
282 268 <span>${_('Home')}</span>
283 269 </a>
284 270 </li>
285 271 %if c.rhodecode_user.username != 'default':
286 272 <li>
287 273 <a title="${_('Journal')}" href="${h.url('journal')}">
288 274 <span class="icon">
289 275 <img src="${h.url("/images/icons/book.png")}" alt="${_('Journal')}" />
290 276 </span>
291 277 <span>${_('Journal')}</span>
292 278 </a>
293 279 </li>
294 280 %endif
295 281 <li>
296 282 <a title="${_('Search')}" href="${h.url('search')}">
297 283 <span class="icon">
298 284 <img src="${h.url("/images/icons/search_16.png")}" alt="${_('Search')}" />
299 285 </span>
300 286 <span>${_('Search')}</span>
301 287 </a>
302 288 </li>
303 289
304 290 %if h.HasPermissionAll('hg.admin')('access admin main page'):
305 291 <li ${is_current('admin')}>
306 292 <a title="${_('Admin')}" href="${h.url('admin_home')}">
307 293 <span class="icon">
308 294 <img src="${h.url("/images/icons/cog_edit.png")}" alt="${_('Admin')}" />
309 295 </span>
310 296 <span>${_('Admin')}</span>
311 297 </a>
312 298 ${admin_menu()}
313 299 </li>
314 300 %endif
315 301 </ul>
316 302 %endif
317 </%def>
318
319
320 <%def name="css()">
321 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
322 <link rel="stylesheet" type="text/css" href="${h.url('/css/pygments.css')}" />
323 <link rel="stylesheet" type="text/css" href="${h.url('/css/diff.css')}" />
324 </%def>
325
326 <%def name="js()">
327 ##<script type="text/javascript" src="${h.url('/js/yui/utilities/utilities.js')}"></script>
328 ##<script type="text/javascript" src="${h.url('/js/yui/container/container.js')}"></script>
329 ##<script type="text/javascript" src="${h.url('/js/yui/datasource/datasource.js')}"></script>
330 ##<script type="text/javascript" src="${h.url('/js/yui/autocomplete/autocomplete.js')}"></script>
331 ##<script type="text/javascript" src="${h.url('/js/yui/selector/selector-min.js')}"></script>
332
333 <script type="text/javascript" src="${h.url('/js/yui2a.js')}"></script>
334 <!--[if IE]><script language="javascript" type="text/javascript" src="${h.url('/js/excanvas.min.js')}"></script><![endif]-->
335 <script type="text/javascript" src="${h.url('/js/yui.flot.js')}"></script>
336
337 <script type="text/javascript">
338 var base_url = "${h.url('toggle_following')}";
339 var YUC = YAHOO.util.Connect;
340 var YUD = YAHOO.util.Dom;
341 var YUE = YAHOO.util.Event;
342
343 function onSuccess(target){
344
345 var f = YUD.get(target.id);
346 var f_cnt = YUD.get('current_followers_count');
347
348 if(f.getAttribute('class')=='follow'){
349 f.setAttribute('class','following');
350 f.setAttribute('title',"${_('Stop following this repository')}");
351
352 if(f_cnt){
353 var cnt = Number(f_cnt.innerHTML)+1;
354 f_cnt.innerHTML = cnt;
355 }
356
357 }
358 else{
359 f.setAttribute('class','follow');
360 f.setAttribute('title',"${_('Start following this repository')}");
361 if(f_cnt){
362 var cnt = Number(f_cnt.innerHTML)+1;
363 f_cnt.innerHTML = cnt;
364 }
365 }
366 }
367
368 function toggleFollowingUser(target,fallows_user_id,token,user_id){
369 args = 'follows_user_id='+fallows_user_id;
370 args+= '&amp;auth_token='+token;
371 if(user_id != undefined){
372 args+="&amp;user_id="+user_id;
373 }
374 YUC.asyncRequest('POST',base_url,{
375 success:function(o){
376 onSuccess(target);
377 }
378 },args); return false;
379 }
380
381 function toggleFollowingRepo(target,fallows_repo_id,token,user_id){
382
383 args = 'follows_repo_id='+fallows_repo_id;
384 args+= '&amp;auth_token='+token;
385 if(user_id != undefined){
386 args+="&amp;user_id="+user_id;
387 }
388 YUC.asyncRequest('POST',base_url,{
389 success:function(o){
390 onSuccess(target);
391 }
392 },args); return false;
393 }
394 </script>
395
396 </%def>
397
398 <%def name="breadcrumbs()">
399 <div class="breadcrumbs">
400 ${self.breadcrumbs_links()}
401 </div>
402 303 </%def> No newline at end of file
@@ -1,82 +1,72 b''
1 1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>${_('Sign In')} - ${c.rhodecode_name}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <link rel="icon" href="${h.url("/images/icons/database_gear.png")}" type="image/png" />
8 <meta name="robots" content="index, nofollow"/>
9
10 <!-- stylesheets -->
11 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
2 <%inherit file="base/root.html"/>
3
4 <%def name="title()">
5 ${_('Sign In')} - ${c.rhodecode_name}
6 </%def>
12 7
13 </head>
14 <body>
15 <div id="login">
16 <div class="flash_msg">
17 <% messages = h.flash.pop_messages() %>
18 % if messages:
19 <ul id="flash-messages">
20 % for message in messages:
21 <li class="${message.category}_msg">${message}</li>
22 % endfor
23 </ul>
24 % endif
25 </div>
26 <!-- login -->
27 <div class="title top-left-rounded-corner top-right-rounded-corner">
28 <h5>${_('Sign In to')} ${c.rhodecode_name}</h5>
29 </div>
30 <div class="inner">
31 ${h.form(h.url.current(came_from=c.came_from))}
32 <div class="form">
33 <!-- fields -->
8 <div id="login">
9 <div class="flash_msg">
10 <% messages = h.flash.pop_messages() %>
11 % if messages:
12 <ul id="flash-messages">
13 % for message in messages:
14 <li class="${message.category}_msg">${message}</li>
15 % endfor
16 </ul>
17 % endif
18 </div>
19 <!-- login -->
20 <div class="title top-left-rounded-corner top-right-rounded-corner">
21 <h5>${_('Sign In to')} ${c.rhodecode_name}</h5>
22 </div>
23 <div class="inner">
24 ${h.form(h.url.current(came_from=c.came_from))}
25 <div class="form">
26 <!-- fields -->
34 27
35 <div class="fields">
36 <div class="field">
37 <div class="label">
38 <label for="username">${_('Username')}:</label>
39 </div>
40 <div class="input">
41 ${h.text('username',class_='focus',size=40)}
42 </div>
43
44 </div>
45 <div class="field">
46 <div class="label">
47 <label for="password">${_('Password')}:</label>
48 </div>
49 <div class="input">
50 ${h.password('password',class_='focus',size=40)}
51 </div>
52
53 </div>
54 ##<div class="field">
55 ## <div class="checkbox">
56 ## <input type="checkbox" id="remember" name="remember" />
57 ## <label for="remember">Remember me</label>
58 ## </div>
59 ##</div>
60 <div class="buttons">
61 ${h.submit('sign_in','Sign In',class_="ui-button")}
62 </div>
28 <div class="fields">
29 <div class="field">
30 <div class="label">
31 <label for="username">${_('Username')}:</label>
32 </div>
33 <div class="input">
34 ${h.text('username',class_='focus',size=40)}
35 </div>
36
37 </div>
38 <div class="field">
39 <div class="label">
40 <label for="password">${_('Password')}:</label>
41 </div>
42 <div class="input">
43 ${h.password('password',class_='focus',size=40)}
63 44 </div>
64 <!-- end fields -->
65 <!-- links -->
66 <div class="links">
67 ${h.link_to(_('Forgot your password ?'),h.url('reset_password'))}
68 %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')():
69 /
70 ${h.link_to(_("Don't have an account ?"),h.url('register'))}
71 %endif
72 </div>
45
46 </div>
47 ##<div class="field">
48 ## <div class="checkbox">
49 ## <input type="checkbox" id="remember" name="remember" />
50 ## <label for="remember">Remember me</label>
51 ## </div>
52 ##</div>
53 <div class="buttons">
54 ${h.submit('sign_in','Sign In',class_="ui-button")}
55 </div>
56 </div>
57 <!-- end fields -->
58 <!-- links -->
59 <div class="links">
60 ${h.link_to(_('Forgot your password ?'),h.url('reset_password'))}
61 %if h.HasPermissionAny('hg.admin', 'hg.register.auto_activate', 'hg.register.manual_activate')():
62 /
63 ${h.link_to(_("Don't have an account ?"),h.url('register'))}
64 %endif
65 </div>
73 66
74 <!-- end links -->
75 </div>
76 ${h.end_form()}
77 </div>
78 <!-- end login -->
67 <!-- end links -->
79 68 </div>
80 </body>
81 </html>
82
69 ${h.end_form()}
70 </div>
71 <!-- end login -->
72 </div> No newline at end of file
@@ -1,48 +1,39 b''
1 1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>${_('Reset You password')} - ${c.rhodecode_name}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <link rel="icon" href="${h.url("/images/hgicon.png")}" type="image/png" />
8 <meta name="robots" content="index, nofollow"/>
9
10 <!-- stylesheets -->
11 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
2 <%inherit file="base/root.html"/>
3
4 <%def name="title()">
5 ${_('Reset You password')} - ${c.rhodecode_name}
6 </%def>
12 7
13 </head>
14 <body>
15 <div id="register">
16
17 <div class="title top-left-rounded-corner top-right-rounded-corner">
18 <h5>${_('Reset You password to')} ${c.rhodecode_name}</h5>
19 </div>
20 <div class="inner">
21 ${h.form(url('password_reset'))}
22 <div class="form">
23 <!-- fields -->
24 <div class="fields">
25
26 <div class="field">
27 <div class="label">
28 <label for="email">${_('Email address')}:</label>
29 </div>
30 <div class="input">
31 ${h.text('email')}
32 </div>
33 </div>
34
35 <div class="buttons">
36 <div class="nohighlight">
37 ${h.submit('send','Reset my password',class_="ui-button")}
38 <div class="activation_msg">${_('Your new password will be send to matching email address')}</div>
39 </div>
40 </div>
41 </div>
42 </div>
43 ${h.end_form()}
44 </div>
8 <div id="register">
9
10 <div class="title top-left-rounded-corner top-right-rounded-corner">
11 <h5>${_('Reset You password to')} ${c.rhodecode_name}</h5>
12 </div>
13 <div class="inner">
14 ${h.form(url('password_reset'))}
15 <div class="form">
16 <!-- fields -->
17 <div class="fields">
18
19 <div class="field">
20 <div class="label">
21 <label for="email">${_('Email address')}:</label>
22 </div>
23 <div class="input">
24 ${h.text('email')}
25 </div>
26 </div>
27
28 <div class="buttons">
29 <div class="nohighlight">
30 ${h.submit('send','Reset my password',class_="ui-button")}
31 <div class="activation_msg">${_('Your new password will be send to matching email address')}</div>
32 </div>
33 </div>
34 </div>
45 35 </div>
46 </body>
47 </html>
36 ${h.end_form()}
37 </div>
38 </div>
48 39
@@ -1,96 +1,87 b''
1 1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>${_('Sign Up')} - ${c.rhodecode_name}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 <link rel="icon" href="${h.url("/images/hgicon.png")}" type="image/png" />
8 <meta name="robots" content="index, nofollow"/>
9
10 <!-- stylesheets -->
11 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
2 <%inherit file="base/root.html"/>
12 3
13 </head>
14 <body>
15 <div id="register">
16
17 <div class="title top-left-rounded-corner top-right-rounded-corner">
18 <h5>${_('Sign Up to')} ${c.rhodecode_name}</h5>
19 </div>
20 <div class="inner">
21 ${h.form(url('register'))}
22 <div class="form">
23 <!-- fields -->
24 <div class="fields">
25 <div class="field">
26 <div class="label">
27 <label for="username">${_('Username')}:</label>
28 </div>
29 <div class="input">
30 ${h.text('username',class_="medium")}
31 </div>
32 </div>
33
34 <div class="field">
35 <div class="label">
36 <label for="password">${_('Password')}:</label>
37 </div>
38 <div class="input">
39 ${h.password('password',class_="medium")}
40 </div>
41 </div>
42
43 <div class="field">
44 <div class="label">
45 <label for="password">${_('Re-enter password')}:</label>
46 </div>
47 <div class="input">
48 ${h.password('password_confirmation',class_="medium")}
49 </div>
50 </div>
51
52 <div class="field">
53 <div class="label">
54 <label for="name">${_('First Name')}:</label>
55 </div>
56 <div class="input">
57 ${h.text('name',class_="medium")}
58 </div>
59 </div>
60
61 <div class="field">
62 <div class="label">
63 <label for="lastname">${_('Last Name')}:</label>
64 </div>
65 <div class="input">
66 ${h.text('lastname',class_="medium")}
67 </div>
68 </div>
69
70 <div class="field">
71 <div class="label">
72 <label for="email">${_('Email')}:</label>
73 </div>
74 <div class="input">
75 ${h.text('email',class_="medium")}
76 </div>
77 </div>
78
79 <div class="buttons">
80 <div class="nohighlight">
81 ${h.submit('sign_up','Sign Up',class_="ui-button")}
82 %if c.auto_active:
83 <div class="activation_msg">${_('Your account will be activated right after registration')}</div>
84 %else:
85 <div class="activation_msg">${_('Your account must wait for activation by administrator')}</div>
86 %endif
87 </div>
88 </div>
89 </div>
90 </div>
91 ${h.end_form()}
92 </div>
4 <%def name="title()">
5 ${_('Sign Up')} - ${c.rhodecode_name}
6 </%def>
7
8 <div id="register">
9
10 <div class="title top-left-rounded-corner top-right-rounded-corner">
11 <h5>${_('Sign Up to')} ${c.rhodecode_name}</h5>
12 </div>
13 <div class="inner">
14 ${h.form(url('register'))}
15 <div class="form">
16 <!-- fields -->
17 <div class="fields">
18 <div class="field">
19 <div class="label">
20 <label for="username">${_('Username')}:</label>
21 </div>
22 <div class="input">
23 ${h.text('username',class_="medium")}
24 </div>
25 </div>
26
27 <div class="field">
28 <div class="label">
29 <label for="password">${_('Password')}:</label>
30 </div>
31 <div class="input">
32 ${h.password('password',class_="medium")}
33 </div>
34 </div>
35
36 <div class="field">
37 <div class="label">
38 <label for="password">${_('Re-enter password')}:</label>
39 </div>
40 <div class="input">
41 ${h.password('password_confirmation',class_="medium")}
42 </div>
43 </div>
44
45 <div class="field">
46 <div class="label">
47 <label for="name">${_('First Name')}:</label>
48 </div>
49 <div class="input">
50 ${h.text('name',class_="medium")}
51 </div>
52 </div>
53
54 <div class="field">
55 <div class="label">
56 <label for="lastname">${_('Last Name')}:</label>
57 </div>
58 <div class="input">
59 ${h.text('lastname',class_="medium")}
60 </div>
61 </div>
62
63 <div class="field">
64 <div class="label">
65 <label for="email">${_('Email')}:</label>
66 </div>
67 <div class="input">
68 ${h.text('email',class_="medium")}
69 </div>
70 </div>
71
72 <div class="buttons">
73 <div class="nohighlight">
74 ${h.submit('sign_up','Sign Up',class_="ui-button")}
75 %if c.auto_active:
76 <div class="activation_msg">${_('Your account will be activated right after registration')}</div>
77 %else:
78 <div class="activation_msg">${_('Your account must wait for activation by administrator')}</div>
79 %endif
80 </div>
81 </div>
82 </div>
93 83 </div>
94 </body>
95 </html>
84 ${h.end_form()}
85 </div>
86 </div>
96 87
General Comments 0
You need to be logged in to leave comments. Login now