@@ -22,12 +22,14 @@ news
- implemented #377 Users view for his own permissions on account page
- #399 added inheritance of permissions for users group on repos groups
- #401 repository group is automatically pre-selected when adding repos
inside a repository group
- added alternative HTTP 403 response when client failed to authenticate. Helps
solving issues with Mercurial and LDAP
- #402 removed group prefix from repository name when listing repositories
inside a group
fixes
+++++
- fixed #390 cache invalidation problems on repos inside group
- fixed #385 clone by ID url was loosing proxy prefix in URL
@@ -37,13 +37,20 @@
<span>${_('Fork')}</span>
</a>
</li>
</ul>
</%def>
<%def name="repo_name(name,rtype,private,fork_of)">
<%def name="repo_name(name,rtype,private,fork_of,short_name=False)">
<%
def get_name(name,short_name=short_name):
if short_name:
return name.split('/')[-1]
else:
return name
%>
<div style="white-space: nowrap">
##TYPE OF REPO
%if h.is_hg(rtype):
<img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/>
%elif h.is_git(rtype):
<img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/>
@@ -54,13 +61,13 @@
<img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url('/images/icons/lock.png')}"/>
%else:
<img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url('/images/icons/lock_open.png')}"/>
%endif
##NAME
${h.link_to(name,h.url('summary_home',repo_name=name),class_="repo_name")}
${h.link_to(get_name(name),h.url('summary_home',repo_name=name),class_="repo_name")}
%if fork_of:
<a href="${h.url('summary_home',repo_name=fork_of)}">
<img class="icon" alt="${_('fork')}" title="${_('Fork of')} ${fork_of}" src="${h.url('/images/icons/arrow_divide.png')}"/></a>
</div>
@@ -14,8 +14,8 @@
<%def name="page_nav()">
${self.menu('admin')}
<%def name="main()">
<%include file="/index_base.html" args="parent=self"/>
<%include file="/index_base.html" args="parent=self,short_repo_names=True"/>
## -*- coding: utf-8 -*-
<%inherit file="base/base.html"/>
<%def name="title()">${_('Dashboard')} - ${c.rhodecode_name}</%def>
<%def name="breadcrumbs()"></%def>
<%def name="page_nav()">${self.menu('home')}</%def>
<%include file="index_base.html" args="parent=self"/>
@@ -78,13 +78,13 @@
##QUICK MENU
<td class="quick_repo_menu">
${dt.quick_menu(repo['name'])}
</td>
##REPO NAME AND ICONS
<td class="reponame">
${dt.repo_name(repo['name'],repo['dbrepo']['repo_type'],repo['dbrepo']['private'],repo['dbrepo_fork'].get('repo_name'))}
${dt.repo_name(repo['name'],repo['dbrepo']['repo_type'],repo['dbrepo']['private'],repo['dbrepo_fork'].get('repo_name'),pageargs.get('short_repo_names'))}
##DESCRIPTION
<td><span class="tooltip" title="${h.tooltip(repo['description'])}">
${h.truncate(repo['description'],60)}</span>
##LAST CHANGE DATE
Status change: