##// END OF EJS Templates
repositories: allow updating repository settings for users without store-in-root permissions...
repositories: allow updating repository settings for users without store-in-root permissions in case repository name didn't change. - when an user owns repository in root location, and isn't allow to create repositories in root before we failed to allow this user to update such repository settings due to this validation. We'll now check if name didn't change and in this case allow to update since this doesn't store any new data in root location.

File last commit:

r2618:940ad8b4 default
r4415:fc1f6c1b default
Show More
atom_feed_entry.mako
38 lines | 999 B | application/x-mako | MakoHtmlLexer
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
${_('%(user)s commited on %(date)s UTC') % {
'user': h.person(commit.author),
'date': h.format_date(commit.date)
}}
<br/>
% if commit.branch:
branch: ${commit.branch} <br/>
% endif
% for bookmark in getattr(commit, 'bookmarks', []):
bookmark: ${bookmark} <br/>
% endfor
% for tag in commit.tags:
tag: ${tag} <br/>
% endfor
path-permissions: Initial support for path-based permissions
r2618 % if has_hidden_changes:
Has hidden changes<br/>
% endif
repo-commits: ported changeset code into pyramid views....
r1951 commit: <a href="${h.route_url('repo_commit', repo_name=c.rhodecode_db_repo.repo_name, commit_id=commit.raw_id)}">${h.show_id(commit)}</a>
project: added all source files and assets
r1 <pre>
${h.urlify_commit_message(commit.message)}
% for change in parsed_diff:
% if limited_diff:
${_('Commit was too big and was cut off...')}
% endif
${change['operation']} ${change['filename']} ${'(%(added)s lines added, %(removed)s lines removed)' % {'added': change['stats']['added'], 'removed': change['stats']['deleted']}}
% endfor
% if feed_include_diff:
path-permissions: Initial support for path-based permissions
r2618 ${c.path_filter.get_raw_patch(diff_processor)}
project: added all source files and assets
r1 % endif
</pre>