matrix-dimension/web/app/configs/complex-bot/travisci/travisci.complex-bot.component.html
Ahmad 9dc4e99aca translation
- the traslation feature without the changes from other branches
2020-10-23 13:30:20 +02:00

97 lines
5.8 KiB
HTML

<my-complex-bot-config [botComponent]="this">
<ng-template #botParamsTemplate>
<my-ibox [isCollapsible]="true">
<h5 class="my-ibox-title">
{{'.travis.yml configuration and template information' | translate}}
</h5>
<div class="my-ibox-content">
<p>
{{'The following section needs to be added to your' | translate}} <code>.travis.yml</code> {{'file in your repositories:' | translate}}
</p>
<pre>{{ travisYaml }}</pre>
<p>
{{'The following variables can be used in your template. This template is used to post a message to theroom when your webhook is activated.' | translate}}
</p>
<ul>
<li><code>{{ '%{repository_slug}' }}</code> - {{'The repository identifier' | translate}} (eg: "matrix-org/synapse")</li>
<li><code>{{ '%{repository_name}' }}</code> - {{'The repository name' | translate}} (eg: "synapse")</li>
<li><code>{{ '%{build_number}' }}</code> - {{'The build number' | translate}}</li>
<li><code>{{ '%{build_id}' }}</code> - {{'The build ID' | translate}}</li>
<li><code>{{ '%{branch}' }}</code> - {{'The branch name' | translate}}</li>
<li><code>{{ '%{commit}' }}</code> - {{'A short version of the commit SHA' | translate}}</li>
<li><code>{{ '%{commit_subject}' }}</code> - {{'The first line of the commit message' | translate}}</li>
<li><code>{{ '%{commit_message}' }}</code> - {{'The full commit message' | translate}}</li>
<li><code>{{ '%{author}' }}</code> - {{'The author of the commit' | translate}}</li>
<li><code>{{ '%{result}' }}</code> - {{'The result of the build' | translate}}</li>
<li><code>{{ '%{message}' }}</code> - {{'The message from Travis CI about the build' | translate}}</li>
<li><code>{{ '%{duration}' }}</code> - {{'The total duration of all builds in the matrix' | translate}}</li>
<li><code>{{ '%{elapsed_timed}' }}</code> - {{'The time it took to run the build' | translate}}</li>
<li><code>{{ '%{compare_url}' }}</code> - {{'A URL to see the changes which triggered the build' | translate}}</li>
<li><code>{{ '%{build_url}' }}</code> - {{'A URL to see the build information' | translate}}</li>
</ul>
</div>
</my-ibox>
<my-ibox>
<h5 class="my-ibox-title">
{{'Repositories' | translate}}
</h5>
<div class="my-ibox-content">
<form (submit)="interceptSave()" novalidate name="saveForm">
<table class="table table-striped table-condensed table-bordered">
<thead>
<tr>
<th>{{'Repository' | translate}}</th>
<th>{{'Template' | translate}}</th>
<th>{{'Added by' | translate}}</th>
<th class="actions-col">{{'Actions' | translate}}</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let repo of getRepos()">
<td>{{ repo.repoKey }}</td>
<td>
<textarea title="Repository Template" class="repo-template form-control" rows="3"
(change)="repo.template = $event.target.value"
[disabled]="isUpdating || !repo.isSelf">{{ repo.template }}</textarea>
</td>
<td>{{ repo.addedByUserId }}</td>
<td class="actions-col">
<button type="button" class="btn btn-sm btn-outline-danger"
[disabled]="isUpdating || !repo.isSelf"
(click)="removeRepo(repo)">
<i class="far fa-trash-alt"></i> {{'Remove' | translate}}
</button>
</td>
</tr>
<tr>
<td colspan="4">
<div class="input-group input-group-sm">
<input type="text" class="form-control"
[(ngModel)]="newRepoKey"
placeholder="matrix-org/synapse"
name="newRepoKey"
title="New repository name"/>
<span class="input-group-btn">
<button type="button" class="btn btn-outline-success"
[disabled]="isUpdating"
(click)="addRepo()">
<i class="fa fa-plus"></i> {{'Add' | translate}}
</button>
</span>
</div>
</td>
</tr>
</tbody>
</table>
<div style="margin-top: 25px">
<button type="submit" class="btn btn-sm btn-primary" [disabled]="isUpdating">
<i class="far fa-save"></i> {{'Save' | translate}}
</button>
</div>
</form>
</div>
</my-ibox>
</ng-template>
</my-complex-bot-config>