##// END OF EJS Templates
packaging: Backport bower support utilities...
packaging: Backport bower support utilities To support nixos-16.03 the utilities to build bower components are backported inside of this PR. Once we switch to the new stable branch, we should be able to drop these pieces again.

File last commit:

r667:b9ef2c10 default
r725:57489056 default
Show More
list.html
155 lines | 5.2 KiB | text/html | HtmlLexer
dan
integrations: add integration support...
r411 ## -*- coding: utf-8 -*-
<%inherit file="base.html"/>
<%def name="breadcrumbs_links()">
%if c.repo:
${h.link_to('Settings',h.url('edit_repo', repo_name=c.repo.repo_name))}
%else:
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Settings'),h.url('admin_settings'))}
%endif
%if current_IntegrationType:
&raquo;
%if c.repo:
${h.link_to(_('Integrations'),
request.route_url(route_name='repo_integrations_home',
repo_name=c.repo.repo_name))}
%else:
${h.link_to(_('Integrations'),
request.route_url(route_name='global_integrations_home'))}
%endif
&raquo;
${current_IntegrationType.display_name}
%else:
&raquo;
${_('Integrations')}
%endif
</%def>
<div class="panel panel-default">
<div class="panel-heading">
ux: additional capitalisation and string translation in integration templates
r646 <h3 class="panel-title">${_('Create New Integration')}</h3>
dan
integrations: add integration support...
r411 </div>
<div class="panel-body">
%if not available_integrations:
ux: additional capitalisation and string translation in integration templates
r646 ${_('No integrations available.')}
dan
integrations: add integration support...
r411 %else:
%for integration in available_integrations:
<%
if c.repo:
dan
integrations: add repo group integrations, fixes #4175
r667 create_url = request.route_path('repo_integrations_create',
dan
integrations: add integration support...
r411 repo_name=c.repo.repo_name,
integration=integration)
dan
integrations: add repo group integrations, fixes #4175
r667 elif c.repo_group:
create_url = request.route_path('repo_group_integrations_create',
repo_group_name=c.repo_group.group_name,
integration=integration)
dan
integrations: add integration support...
r411 else:
dan
integrations: add repo group integrations, fixes #4175
r667 create_url = request.route_path('global_integrations_create',
dan
integrations: add integration support...
r411 integration=integration)
%>
<a href="${create_url}" class="btn">
${integration}
</a>
%endfor
%endif
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
ux: additional capitalisation and string translation in integration templates
r646 <h3 class="panel-title">${_('Current Integrations')}</h3>
dan
integrations: add integration support...
r411 </div>
<div class="panel-body">
<table class="rctable issuetracker">
<thead>
<tr>
<th>${_('Enabled')}</th>
<th>${_('Description')}</th>
<th>${_('Type')}</th>
<th>${_('Actions')}</th>
ux: additional capitalisation and string translation in integration templates
r646 <th></th>
dan
integrations: add integration support...
r411 </tr>
</thead>
<tbody>
%for integration_type, integrations in sorted(current_integrations.items()):
%for integration in sorted(integrations, key=lambda x: x.name):
<tr id="integration_${integration.integration_id}">
<td class="td-enabled">
%if integration.enabled:
<div class="flag_status approved pull-left"></div>
%else:
<div class="flag_status rejected pull-left"></div>
%endif
</td>
<td class="td-description">
${integration.name}
</td>
<td class="td-regex">
${integration.integration_type}
</td>
<td class="td-action">
%if integration_type not in available_integrations:
${_('unknown integration')}
%else:
<%
if c.repo:
dan
integrations: add repo group integrations, fixes #4175
r667 edit_url = request.route_path('repo_integrations_edit',
dan
integrations: add integration support...
r411 repo_name=c.repo.repo_name,
integration=integration.integration_type,
integration_id=integration.integration_id)
dan
integrations: add repo group integrations, fixes #4175
r667 elif c.repo_group:
edit_url = request.route_path('repo_group_integrations_edit',
repo_group_name=c.repo_group.group_name,
integration=integration.integration_type,
integration_id=integration.integration_id)
dan
integrations: add integration support...
r411 else:
dan
integrations: add repo group integrations, fixes #4175
r667 edit_url = request.route_path('global_integrations_edit',
dan
integrations: add integration support...
r411 integration=integration.integration_type,
integration_id=integration.integration_id)
%>
<div class="grid_edit">
<a href="${edit_url}">${_('Edit')}</a>
</div>
<div class="grid_delete">
<a href="${edit_url}"
class="btn btn-link btn-danger delete_integration_entry"
data-desc="${integration.name}"
data-uid="${integration.integration_id}">
${_('Delete')}
</a>
</div>
%endif
</td>
</tr>
%endfor
%endfor
<tr id="last-row"></tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
var delete_integration = function(entry) {
if (confirm("Confirm to remove this integration: "+$(entry).data('desc'))) {
var request = $.ajax({
type: "POST",
url: $(entry).attr('href'),
data: {
'delete': 'delete',
'csrf_token': CSRF_TOKEN
},
success: function(){
location.reload();
},
error: function(data, textStatus, errorThrown){
alert("Error while deleting entry.\nError code {0} ({1}). URL: {2}".format(data.status,data.statusText,$(entry)[0].url));
}
});
};
}
$('.delete_integration_entry').on('click', function(e){
e.preventDefault();
delete_integration(this);
});
</script>