##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r4313:4bf03e9f default
r5365:ae8a165b default
Show More
repo_edit_remote.mako
73 lines | 3.4 KiB | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <div class="panel panel-default">
<div class="panel-heading">
repositories: allow properly updating repository push url.
r2562 <h3 class="panel-title">${_('Remote Sync')}</h3>
templating: use .mako as extensions for template files.
r1282 </div>
<div class="panel-body">
repositories: allow properly updating repository push url.
r2562 <h4>${_('Manually pull/push changes from/to external URLs.')}</h4>
settings-pages: replaced hardcoded api calls examples with introduced...
r1741
repo-remote: updated remote template to indicate pull/push remote sync differences.
r2564 <table>
repositories: allow properly updating repository push url.
r2562 <tr>
<td><div style="min-width: 80px"><strong>${_('Pull url')}</strong></div></td>
repo-remote: updated remote template to indicate pull/push remote sync differences.
r2564 <td>
% if c.rhodecode_db_repo.clone_uri:
<a href="${c.rhodecode_db_repo.clone_uri}">${c.rhodecode_db_repo.clone_uri_hidden}</a>
% else:
${_('This repository does not have any pull url set.')}
<a href="${h.route_path('edit_repo', repo_name=c.rhodecode_db_repo.repo_name)}">${_('Set remote url.')}</a>
% endif
</td>
repositories: allow properly updating repository push url.
r2562 </tr>
repo-remote: updated remote template to indicate pull/push remote sync differences.
r2564 % if c.rhodecode_db_repo.clone_uri:
repositories: allow properly updating repository push url.
r2562 <tr>
<td></td>
<td>
<p>
${_('Pull can be automated by such api call. Can be called periodically in crontab etc.')}
<br/>
<code>
${h.api_call_example(method='pull', args={"repoid": c.rhodecode_db_repo.repo_name})}
</code>
</p>
</td>
</tr>
<tr>
<td></td>
<td>
${h.secure_form(h.route_path('edit_repo_remote_pull', repo_name=c.repo_name), request=request)}
<div class="form">
<div class="fields">
templates: switched most of confirm dialogs to sweetalert2
r4313 <input class="btn btn-small"
id="remote_pull_${c.rhodecode_db_repo.repo_id}"
name="remote_pull_${c.rhodecode_db_repo.repo_id}"
onclick="submitConfirm(event, this, _gettext('Confirm pull changes from remote side'), _gettext('Pull changes'), '${c.rhodecode_db_repo.clone_uri_hidden}')"
type="submit" value="${_('Pull changes from remote location')}"
>
repositories: allow properly updating repository push url.
r2562 </div>
</div>
${h.end_form()}
</td>
</tr>
repo-remote: updated remote template to indicate pull/push remote sync differences.
r2564 % endif
templating: use .mako as extensions for template files.
r1282
repositories: allow properly updating repository push url.
r2562 <tr>
<td><div style="min-width: 80px"><strong>${_('Push url')}</strong></div></td>
repo-remote: updated remote template to indicate pull/push remote sync differences.
r2564 <td>
% if c.rhodecode_db_repo.push_uri:
<a href="${c.rhodecode_db_repo.push_uri_hidden}">${c.rhodecode_db_repo.push_uri_hidden}</a>
% else:
${_('This repository does not have any push url set.')}
<a href="${h.route_path('edit_repo', repo_name=c.rhodecode_db_repo.repo_name)}">${_('Set remote url.')}</a>
% endif
</td>
repositories: allow properly updating repository push url.
r2562 </tr>
<tr>
<td></td>
<td>
${_('This feature is available in RhodeCode EE edition only. Contact {sales_email} to obtain a trial license.').format(sales_email='<a href="mailto:sales@rhodecode.com">sales@rhodecode.com</a>')|n}
</td>
</tr>
</table>
templating: use .mako as extensions for template files.
r1282 </div>
</div>