e0ad97ff97
- fixed position in stdout window for easy clicking on fast scroll output
60 lines
2.5 KiB
HTML
60 lines
2.5 KiB
HTML
<aside id="sidebar">
|
|
<div class="result" data-result="{{ commit.status }}">
|
|
<dl>
|
|
<dd><span class="status">{{ commit.status }}</span></dd>
|
|
<dd><strong>{{ commit.message }}</strong></dd>
|
|
</dl>
|
|
</div>
|
|
|
|
<dl ng-if="commit.duration != 0">
|
|
<dd><h1>{{ commit.duration | toDuration}}</h1></dd>
|
|
</dl>
|
|
|
|
<dl>
|
|
<dd class="large" ng-if="repo.remote == 'gitlab.com' || repo.remote == 'github.com' || repo.remote == 'enterprise.github.com' ">
|
|
<strong>
|
|
commit
|
|
<a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/commit/{{ commit.sha }}" >{{ commit.sha | shortHash}}</a>
|
|
to <a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/tree/{{ commit.branch }}">{{ commit.branch }}</a> branch
|
|
</strong>
|
|
</dd>
|
|
<dd class="large" ng-if="repo.remote == 'bitbucket.org' ">
|
|
<strong>
|
|
commit
|
|
<a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/commits/{{ commit.sha }}" >{{ commit.sha | shortHash}}</a>
|
|
to <a href="http://{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}/src/?at={{ commit.branch }}">{{ commit.branch }}</a> branch
|
|
</strong>
|
|
</dd>
|
|
<dd class="large" ng-if="repo.remote != 'gitlab.com' && repo.remote != 'github.com' && repo.remote != 'enterprise.github.com' && repo.remote != 'bitbucket.org' ">
|
|
<strong>commit <u>{{ commit.sha | shortHash}}</u> to <u>{{ commit.branch }}</u> branch</strong>
|
|
</dd>
|
|
<dd ng-if="commit.finished_at != 0">{{ commit.finished_at | fromNow }}</dd>
|
|
<dd ng-if="commit.finished_at == 0 && commit.started_at != 0">Started {{ commit.started_at | fromNow }}</dd>
|
|
<dd ng-if="commit.finished_at == 0 && commit.started_at == 0">Created {{ commit.created_at}}</dd>
|
|
</dl>
|
|
</aside>
|
|
|
|
<div id="main" class="output">
|
|
<div id="main" class="output" data-result="{{ commit.status }}">
|
|
<nav>
|
|
<div class="options ng-scope" ng-if="repo.role.admin || repo.role.write">
|
|
<a class="pure-button pure-button-primary" ng-click="rebuildCommit()" href="#">
|
|
<i class="fa fa-refresh"></i>
|
|
<span>Rebuild</span>
|
|
</a>
|
|
</div>
|
|
|
|
<a href="/"><span class="fa fa-th"></span></a>
|
|
<span>{{ repo.owner }}</span>
|
|
<span>/</span>
|
|
<a href="/{{ repo.host }}/{{ repo.owner }}/{{ repo.name }}">{{ repo.name }}</a>
|
|
<span>/</span>
|
|
<a href="#">{{ commit.sha | shortHash}}</a>
|
|
</nav>
|
|
<div id="follow">
|
|
<button ng-click="follow()" ng-if="following == false">follow</button>
|
|
<button ng-click="unfollow()" ng-if="following == true">unfollow</button>
|
|
</div>
|
|
<pre id="output"></pre>
|
|
</div>
|
|
</div>
|