##// END OF EJS Templates
fix(permissions): added a common way to update private flag via repo model...
fix(permissions): added a common way to update private flag via repo model - this allows to have a one and only one way to control the flag with the business logic shared - added test for that - changed view to use this method instead of DB update and custom permissions flush - fixed a case when update of repo settings didn't flush permissions actually while it should when private flag changed

File last commit:

r3643:bd138857 new-ui
r5551:5b9b5ed2 default
Show More
missing_requirements.mako
30 lines | 931 B | application/x-mako | MakoHtmlLexer
/ rhodecode / templates / summary / missing_requirements.mako
templates: rename base.mako into summary_base.mako. The previous naming...
r2178 <%inherit file="/summary/summary_base.mako"/>
templating: use .mako as extensions for template files.
r1282
<%namespace name="components" file="/summary/components.mako"/>
<%def name="main()">
<div id="repo-summary" class="summary">
${components.summary_detail(breadcrumbs_links=self.breadcrumbs_links(), show_downloads=False)}
</div><!--end repo-summary-->
<div class="alert alert-dismissable alert-warning">
<strong>Missing requirements</strong>
repo-summary: re-implemented summary view as pyramid....
r1785 Commits cannot be displayed, because this repository uses one or more extensions, which was not enabled. <br/>
repositories: rewrote whole admin section to pyramid....
r2014 Please <a href="${h.route_path('edit_repo_vcs', repo_name=c.repo_name)}">enable extension in settings</a>, or contact the repository owner for help.
repo-summary: re-implemented summary view as pyramid....
r1785 Missing extensions could be:
<pre>
- Mercurial largefiles
- Git LFS
</pre>
missing requirements: better handling of missing requirements for repositories....
r2625 <br/>
Requirement error: ${c.repository_requirements_missing.get('error')}
templating: use .mako as extensions for template files.
r1282 </div>
</%def>
<%def name="menu_bar_subnav()">
${self.repo_menu(active='summary')}
</%def>