Show More
@@ -305,14 +305,13 b' HasRepoPermissionAny, HasRepoPermissionA' | |||
|
305 | 305 | #=============================================================================== |
|
306 | 306 | import hashlib |
|
307 | 307 | import urllib |
|
308 | from pylons import request | |
|
308 | 309 | |
|
309 | def gravatar_url(email): | |
|
310 | def gravatar_url(email, size=30): | |
|
310 | 311 | ssl_enabled = 'https' == request.environ.get('HTTP_X_URL_SCHEME') |
|
311 | 312 | default = 'identicon' |
|
312 | size = 32 | |
|
313 | 313 | baseurl_nossl = "http://www.gravatar.com/avatar/" |
|
314 | 314 | baseurl_ssl = "https://secure.gravatar.com/avatar/" |
|
315 | ||
|
316 | 315 | baseurl = baseurl_ssl if ssl_enabled else baseurl_nossl |
|
317 | 316 | |
|
318 | 317 |
@@ -3446,12 +3446,13 b' table#permissions_manage tr#add_perm_inp' | |||
|
3446 | 3446 | /* ----------------------------------------------------------- |
|
3447 | 3447 | GRAVATARS |
|
3448 | 3448 | ----------------------------------------------------------- */ |
|
3449 |
.gravatar |
|
|
3450 | float:left; | |
|
3451 | padding-right: 5px; | |
|
3452 | padding-top:3px; | |
|
3453 | } | |
|
3454 | ||
|
3449 | div.gravatar{ | |
|
3450 | background-color:white; | |
|
3451 | border:1px solid #D0D0D0; | |
|
3452 | float:left; | |
|
3453 | margin-right:0.7em; | |
|
3454 | padding: 2px 2px 0px; | |
|
3455 | } | |
|
3455 | 3456 | |
|
3456 | 3457 | /* ----------------------------------------------------------- |
|
3457 | 3458 | jquery ui |
@@ -30,7 +30,7 b'' | |||
|
30 | 30 | <div class="fields"> |
|
31 | 31 | <div class="field"> |
|
32 | 32 | <div class="gravatar_box"> |
|
33 | <img alt="gravatar" src="${h.gravatar_url(c.user.email)}"/> | |
|
33 | <div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(c.user.email)}"/></div> | |
|
34 | 34 | <p> |
|
35 | 35 | <strong>Change your avatar at <a href="http://gravatar.com">gravatar.com</a></strong><br/> |
|
36 | 36 | ${_('Using')} ${c.user.email} |
@@ -40,7 +40,7 b'' | |||
|
40 | 40 | %for cnt,user in enumerate(c.users_list): |
|
41 | 41 | %if user.name !='default': |
|
42 | 42 | <tr class="parity${cnt%2}"> |
|
43 | <td> <img alt="gravatar" src="${h.gravatar_url(user.email)}"> </td> | |
|
43 | <td><div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(user.email)}"> </div></td> | |
|
44 | 44 | <td>${h.link_to(user.username,h.url('edit_user', id=user.user_id))}</td> |
|
45 | 45 | <td>${user.name}</td> |
|
46 | 46 | <td>${user.lastname}</td> |
@@ -4,8 +4,6 b'' | |||
|
4 | 4 | ${_('Mercurial Repository Overview')} |
|
5 | 5 | </%def> |
|
6 | 6 | |
|
7 | ||
|
8 | ||
|
9 | 7 | <%def name="breadcrumbs_links()"> |
|
10 | 8 | ${h.link_to(u'Home',h.url('/'))} |
|
11 | 9 | » |
@@ -64,7 +62,12 b' E.onDOMReady(function(e){' | |||
|
64 | 62 | <label>${_('Contact')}:</label> |
|
65 | 63 | </div> |
|
66 | 64 | <div class="input-short"> |
|
67 | ${c.repo_info.contact} | |
|
65 | <div class="gravatar"> | |
|
66 | <img alt="gravatar" src="${h.gravatar_url(c.repo_info.dbrepo.user.email)}"/> | |
|
67 | </div> | |
|
68 | ${_('Username')}: ${c.repo_info.dbrepo.user.username}<br/> | |
|
69 | ${_('Name')}: ${c.repo_info.dbrepo.user.name} ${c.repo_info.dbrepo.user.lastname}<br/> | |
|
70 | ${_('Email')}: <a href="mailto:${c.repo_info.dbrepo.user.email}">${c.repo_info.dbrepo.user.email}</a> | |
|
68 | 71 | </div> |
|
69 | 72 | </div> |
|
70 | 73 |
General Comments 0
You need to be logged in to leave comments.
Login now