@@ -11,24 +11,25 @@ Changelog
:status: in-progress
:branch: beta
news
++++
- always put a comment about code-review status change even if user send
empty data
- modified_on column saves repository update and it's going to be used
later for light version of main page ref #500
- pull request notifications send much nicer emails with details about pull
request
- #551 show breadcrumbs in summary view for repositories inside a group
fixes
+++++
- fixed migrations of permissions that can lead to inconsistency.
Some users sent feedback that after upgrading from older versions issues
with updating default permissions occurred. RhodeCode detects that now and
resets default user permission to initial state if there is a need for that.
Also forces users to set the default value for new forking permission.
- #535 improved apache wsgi example configuration in docs
- fixes #550 mercurial repositories comparision failed when origin repo had
additional not-common changesets
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Repository group')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs()">
<span class="groups_breadcrumbs"> ${_('Groups')}
<span class="groups_breadcrumbs">
${h.link_to(_(u'Home'),h.url('/'))}
%if c.group.parent_group:
» ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
%endif
» "${c.group.name}" ${_('with')}
</span>
<%def name="page_nav()">
${self.menu('admin')}
<%def name="main()">
<%include file="/index_base.html" args="parent=self,short_repo_names=True"/>
${_('%s Summary') % c.repo_name} - ${c.rhodecode_name}
<%def name="breadcrumbs_links()">
»
${h.link_to(c.dbrepo.just_name,h.url('summary_home',repo_name=c.repo_name))}
${h.repo_link(c.dbrepo.groups_and_repo)}
${_('summary')}
${self.menu('summary')}
<%def name="head_extra()">
<link href="${h.url('atom_feed_home',repo_name=c.dbrepo.repo_name,api_key=c.rhodecode_user.api_key)}" rel="alternate" title="${_('repo %s ATOM feed') % c.repo_name}" type="application/atom+xml" />
<link href="${h.url('rss_feed_home',repo_name=c.dbrepo.repo_name,api_key=c.rhodecode_user.api_key)}" rel="alternate" title="${_('repo %s RSS feed') % c.repo_name}" type="application/rss+xml" />
Status change: