##// END OF EJS Templates
Fixed issue with inproper handling of diff parsing that could lead to infinit loops....
Fixed issue with inproper handling of diff parsing that could lead to infinit loops. This was an edge case when diff contained diff data inside. Regresion test was added

File last commit:

r2815:acc05c33 beta
r3022:0ed42ca7 beta
Show More
repos_groups.html
22 lines | 651 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Repository group')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs()">
<span class="groups_breadcrumbs">
${h.link_to(_(u'Home'),h.url('/'))}
%if c.group.parent_group:
&raquo; ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
%endif
&raquo; "${c.group.name}" ${_('with')}
</span>
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<%include file="/index_base.html" args="parent=self,short_repo_names=True"/>
</%def>