This commit is contained in:
Sven Fuchs 2012-06-24 03:31:41 +02:00
parent 1d2e494371
commit 89ffbea515
18 changed files with 512 additions and 159 deletions

View File

@ -6,7 +6,7 @@ Travis.HistoryController = Em.ArrayController.extend()
Travis.JobController = Em.ObjectController.extend()
Travis.LoadingController = Em.Controller.extend()
Travis.CurrentController = Travis.BuildController = Em.ObjectController.extend
Travis.BuildController = Em.ObjectController.extend
classes: (->
Travis.Helpers.colorForResult(@getPath('content.result'))
).property('content.result')

View File

@ -1,4 +1,5 @@
require 'ext/ember/bound_helper'
require 'travis/log'
safe = (string) ->
new Handlebars.SafeString(string)
@ -19,9 +20,10 @@ Ember.registerBoundHelper 'formatDuration', (duration, options) ->
safe Travis.Helpers.timeInWords(duration)
Ember.registerBoundHelper 'formatCommit', (commit, options) ->
branch = commit.get('branch') || ''
branch = " (#{branch})" if branch
safe (commit.get('sha') || '').substr(0, 7) + branch
if commit
branch = commit.get('branch') || ''
branch = " (#{branch})" if branch
safe (commit.get('sha') || '').substr(0, 7) + branch
Ember.registerBoundHelper 'formatSha', (sha, options) ->
safe (sha || '').substr(0, 7)

View File

@ -2,12 +2,3 @@ require 'travis/model'
@Travis.Artifact = Travis.Model.extend
body: DS.attr('string')
@Travis.Artifact.FIXTURES = [
{ id: 1, body: 'log 1' }
{ id: 2, body: 'log 2' }
{ id: 3, body: 'log 3' }
{ id: 4, body: 'log 4' }
{ id: 5, body: 'log 4' }
]

View File

@ -24,34 +24,18 @@ require 'travis/model'
@getPath 'data.config'
).property('data.config')
isMatrix: (->
@getPath('data.job_ids.length') > 1
# TODO why does the hasMany association not work?
jobs: (->
Travis.Job.findMany(@getPath('data.job_ids') || [])
).property('data.job_ids.length')
# isFailureMatrix: (->
# @getPath('allowedFailureJobs.length') > 0
# ).property('allowedFailureJobs.length')
# # TODO why does the hasMany association not work?
# jobs: (->
# Travis.Job.findMany(@getPath('data.job_ids') || [])
# ).property('data.job_ids.length')
# requiredJobs: (->
# @get('jobs').filter (job) -> job.get('allow_failure') != true
# ).property('jobs')
# allowedFailureJobs: (->
# @get('jobs').filter (job) -> job.get 'allow_failure'
# ).property('jobs')
# configKeys: (->
# config = @get('config')
# return [] unless config
# keys = $.keys($.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'))
# headers = [I18n.t('build.job'), I18n.t('build.duration'), I18n.t('build.finished_at')]
# $.map(headers.concat(keys), (key) -> return $.camelize(key))
# ).property('config')
configKeys: (->
config = @get('config')
return [] unless config
keys = $.keys($.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'))
headers = [I18n.t('build.job'), I18n.t('build.duration'), I18n.t('build.finished_at')]
$.map(headers.concat(keys), (key) -> return $.camelize(key))
).property('config')
tick: ->
@notifyPropertyChange 'duration'
@ -63,10 +47,3 @@ require 'travis/model'
olderThanNumber: (id, build_number) ->
@find(url: '/repositories/' + id + '/builds.json?bare=true&after_number=' + build_number, repository_id: id, orderBy: 'number DESC')
@Travis.Build.FIXTURES = [
{ id: 1, repository_id: 1, commit_id: 1, job_ids: [1, 2], number: 1, event_type: 'push', config: { rvm: ['rbx', '1.9.3'] }, finished_at: '2012-06-20T00:21:20Z', duration: 35, result: 0 },
{ id: 2, repository_id: 1, commit_id: 2, job_ids: [1], number: 2, event_type: 'push' },
{ id: 3, repository_id: 2, commit_id: 3, job_ids: [2], number: 3, event_type: 'push' },
{ id: 4, repository_id: 3, commit_id: 4, job_ids: [3], number: 4, event_type: 'push' }
]

View File

@ -53,11 +53,3 @@ require 'travis/model'
findMany: (ids) ->
Travis.store.findMany this, ids
@Travis.Job.FIXTURES = [
{ id: 1, repository_id: 1, build_id: 1, commit_id: 1, log_id: 1, number: '1.1', config: { rvm: 'rbx' }, finished_at: '2012-06-20T00:21:20Z', duration: 35, result: 0 }
{ id: 2, repository_id: 1, build_id: 1, commit_id: 1, log_id: 2, number: '1.2', config: { rvm: '1.9.3' } }
{ id: 3, repository_id: 1, build_id: 2, commit_id: 2, log_id: 3, number: '2.1' }
{ id: 4, repository_id: 2, build_id: 3, commit_id: 3, log_id: 4, number: '3.1' }
{ id: 5, repository_id: 3, build_id: 4, commit_id: 4, log_id: 5, number: '4.1' }
]

View File

@ -36,10 +36,10 @@ require 'travis/model'
).property('data.last_build_duration', 'last_build_started_at', 'last_build_finished_at')
stats: (->
@get('_stats') || $.get("https://api.github.com/repos/#{@get('slug')}", (data) =>
@set('_stats', data)
@notifyPropertyChange 'stats'
) && {}
# @get('_stats') || $.get("https://api.github.com/repos/#{@get('slug')}", (data) =>
# @set('_stats', data)
# @notifyPropertyChange 'stats'
# ) && {}
).property('slug')
select: ->

View File

@ -33,7 +33,7 @@ require 'hax0rs'
build = Travis.Build.find(repository.get('last_build_id'))
router.connectRepository(repository)
router.connectTabs(repository)
router.connectCurrent(build)
router.connectBuild(build)
repository: Em.Route.extend
route: '/:owner/:name'
@ -54,22 +54,24 @@ require 'hax0rs'
connectOutlets: (router) ->
repository = router.get('repository')
onceLoaded repository, => # TODO should need to wait here, right?
onceLoaded repository, -> # TODO should not need to wait here, right?
build = repository.get('lastBuild')
router.connectTabs(repository)
router.connectCurrent(build)
router.connectBuild(build)
builds: Em.Route.extend
route: '/builds'
connectOutlets: (router) ->
repository = router.get('repository')
router.connectBuilds(repository.get('builds'))
onceLoaded repository, => # TODO hrm, otherwise it gets builds?repository_id=null
router.connectBuilds(repository.get('builds'))
build: Em.Route.extend
route: '/builds/:build_id'
connectOutlets: (router, build) ->
build = Travis.Build.find(build.id) unless build instanceof Travis.Build # what?
router.setPath('tabsController.build', build)
router.connectBuild(build)
@ -77,7 +79,8 @@ require 'hax0rs'
route: '/jobs/:job_id'
connectOutlets: (router, job) ->
router.setPath('tabsController.build', build)
job = Travis.Job.find(job.id) unless job instanceof Travis.Job # what?
router.setPath('tabsController.build', job.get('build'))
router.setPath('tabsController.job', job)
router.connectJob(job)
@ -92,9 +95,6 @@ require 'hax0rs'
@setPath('tabsController.repository', repository)
@get('repositoryController').connectOutlet(outletName: 'tabs', name: 'tabs')
connectCurrent: (build) ->
@get('repositoryController').connectOutlet(outletName: 'tab', name: 'current', context: build)
connectBuilds: (builds) ->
@get('repositoryController').connectOutlet(outletName: 'tab', name: 'history', context: builds)

View File

@ -9,15 +9,19 @@
</tr>
</thead>
{{#collection tagName="tbody" contentBinding="content" itemViewClass="Travis.BuildsItemView" itemClassBinding="color"}}
{{#with view.content}}
<td class="number"><a {{action viewBuild href=true context="content"}}>{{number}}</a></td>
<td class="commit"><a {{bindAttr href="urlGithubCommit"}}>{{formatCommit commit}}</a> {{commit.sha}}</td>
<td class="message">{{{formatMessage commit.message short="true"}}}</td>
<td class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</td>
<td class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime finished_at}}</td>
{{/with}}
{{/collection}}
<tbody>
{{#each build in content}}
{{#view Travis.BuildsItemView contextBinding="build"}}
<tr>
<td class="number"><a {{action viewBuild href=true}}>{{number}}</a></td>
<td class="commit"><a {{bindAttr href="urlGithubCommit"}}>{{formatCommit commit}}</a></td>
<td class="message">{{{formatMessage commit.message short="true"}}}</td>
<td class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</td>
<td class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime finished_at}}</td>
</tr>
{{/view}}
{{/each}}
</tbody>
</table>
<p>

View File

@ -1,48 +1,45 @@
{{#if isLoaded}}
<div {{bindAttr class="classes"}}>
<dl class="summary clearfix">
<div class="left">
<dt>{{t builds.name}}</dt>
<dd class="number"><a {{bindAttr href="urlBuild"}}>{{number}}</a></dd>
<dt class="finished_at_label">{{t builds.finished_at}}</dt>
<dd class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime finished_at}}</dd>
<dt>{{t builds.duration}}</dt>
<dd class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</dd>
</div>
<div {{bindAttr class="classes"}}>
<dl class="summary clearfix">
<div class="left">
<dt>{{t builds.name}}</dt>
<dd class="number"><a {{bindAttr href="urlBuild"}}>{{number}}</a></dd>
<dt class="finished_at_label">{{t builds.finished_at}}</dt>
<dd class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime finished_at}}</dd>
<dt>{{t builds.duration}}</dt>
<dd class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</dd>
</div>
<div class="right">
<dt>{{t builds.commit}}</dt>
<dd class="commit-hash"><a {{bindAttr href="urlGithubCommit"}}>{{formatCommit commit}}</a></dd>
{{#if commit.compareUrl}}
<dt>{{t builds.compare}}</dt>
<dd class="compare_view"><a {{bindAttr href="commit.compareUrl"}}>{{pathFrom commit.compareUrl}}</a></dd>
{{/if}}
{{#if commit.authorName}}
<dt>{{t builds.author}}</dt>
<dd class="author"><a {{bindAttr href="view.urlAuthor"}}>{{commit.authorName}}</a></dd>
{{/if}}
{{#if commit.committerName}}
<dt>{{t builds.committer}}</dt>
<dd class="committer"><a {{bindAttr href="urlCommitter"}}>{{commit.committerName}}</a></dd>
{{/if}}
</div>
<dt>{{t builds.message}}</dt>
<dd class="commit-message">{{{formatMessage commit.message}}}</dd>
{{#if isMatrix}}
{{else}}
<dt>{{t builds.config}}</dt>
<dd class="config">{{formatConfig config}}</dd>
<div class="right">
<dt>{{t builds.commit}}</dt>
<dd class="commit-hash"><a {{bindAttr href="urlGithubCommit"}}>{{formatCommit commit}}</a></dd>
{{#if commit.compareUrl}}
<dt>{{t builds.compare}}</dt>
<dd class="compare_view"><a {{bindAttr href="commit.compareUrl"}}>{{pathFrom commit.compareUrl}}</a></dd>
{{/if}}
</dl>
{{#if isLoaded}}
{{#if isMatrix}}
{{view Travis.JobsView}}
{{else}}
{{view Travis.LogView}}
{{#if commit.authorName}}
<dt>{{t builds.author}}</dt>
<dd class="author"><a {{bindAttr href="view.urlAuthor"}}>{{commit.authorName}}</a></dd>
{{/if}}
{{#if commit.committerName}}
<dt>{{t builds.committer}}</dt>
<dd class="committer"><a {{bindAttr href="urlCommitter"}}>{{commit.committerName}}</a></dd>
{{/if}}
</div>
<dt>{{t builds.message}}</dt>
<dd class="commit-message">{{{formatMessage commit.message}}}</dd>
{{#unless isMatrix}}
<dt>{{t builds.config}}</dt>
<dd class="config">{{formatConfig config}}</dd>
{{/unless}}
</dl>
{{#if isLoaded}}
{{#if view.isMatrix}}
{{view Travis.JobsView}}
{{else}}
{{view Travis.LogView contextBinding="jobs.firstObject"}}
{{/if}}
</div>
{{/if}}
{{/if}}
</div>

View File

@ -8,9 +8,9 @@
</tr>
</thead>
<tbody>
{{#each requiredJobs}}
{{#each view.requiredJobs}}
<tr {{bindAttr class="color"}}>
<td class="number"><a {{action viewJob href=true context=this}}>#{{number}}</a></td>
<td class="number"><a {{action viewJob href=true}}>#{{number}}</a></td>
<td class="duration" {{bindAttr title="started_at"}}>{{formatDuration duration}}</td>
<td class="finished_at timeago" {{bindAttr title="finished_at"}}>{{formatTime finished_at}}</td>
{{#each configValues}}
@ -21,7 +21,7 @@
</tbody>
</table>
{{#if isFailureMatrix}}
{{#if view.isFailureMatrix}}
<table id="allow_failure_builds">
<caption>
{{t jobs.allowed_failures}}{{whats_this allow_failure_help}}

View File

@ -1,11 +1,8 @@
{{! ugh ... }}
{{#with jobs.firstObject}}
<pre class="log">{{{formatLog log.body}}}</pre>
<pre class="log">{{{formatLog log.body}}}</pre>
{{#if sponsor.name}}
<p class="sponsor">
{{t builds.messages.sponsored_by}}
<a {{bindAttr href="sponsor.url"}}>{{sponsor.name}}</a>
</p>
{{/if}}
{{/with}}
{{#if sponsor.name}}
<p class="sponsor">
{{t builds.messages.sponsored_by}}
<a {{bindAttr href="sponsor.url"}}>{{sponsor.name}}</a>
</p>
{{/if}}

View File

@ -19,15 +19,35 @@ Travis.RepositoriesItemView = Em.View.extend
Travis.RepositoryView = Em.View.extend templateName: 'repositories/show'
Travis.TabsView = Em.View.extend templateName: 'repositories/tabs'
Travis.HistoryView = Em.View.extend templateName: 'builds/list'
Travis.LoadingView = Em.View.extend templateName: 'loading'
Travis.BuildsItemView = Em.View.extend
classes: (->
Travis.Helpers.colorForResult(@getPath('content.result'))
).property('content.result')
Travis.CurrentView = Travis.BuildView = Em.View.extend templateName: 'builds/show'
Travis.LoadingView = Em.View.extend templateName: 'loading'
Travis.JobsView = Em.View.extend templateName: 'jobs/list'
Travis.BuildView = Em.View.extend
templateName: 'builds/show'
isMatrix: (->
@getPath('context.data.job_ids.length') > 1
).property()
Travis.JobsView = Em.View.extend
templateName: 'jobs/list'
isFailureMatrix: (->
@getPath('context.allowedFailureJobs.length') > 0
).property('context.allowedFailureJobs.length')
requiredJobs: (->
@getPath('context.jobs').filter (job) -> job.get('allow_failure') != true
).property('context.jobs')
allowedFailureJobs: (->
@getPath('context.jobs').filter (job) -> job.get('allow_failure')
).property('context.jobs')
Travis.JobView = Em.View.extend templateName: 'jobs/show'
Travis.LogView = Em.View.extend templateName: 'jobs/log'

View File

@ -51,7 +51,7 @@
json: 'application/vnd.travis-ci.2+json'
findQuery: (store, type, query, recordArray) ->
url = '/' + type.buildURL(id)
url = '/' + type.buildURL()
console.log "findQuery: #{url} (#{query})"
@ajax url, 'GET',

View File

@ -0,0 +1,81 @@
repositories = [
{ id: 1, owner: 'travis-ci', name: 'travis-core', slug: 'travis-ci/travis-core', build_ids: [1, 2], last_build_id: 1, last_build_number: 1, last_build_result: 0 },
{ id: 2, owner: 'travis-ci', name: 'travis-assets', slug: 'travis-ci/travis-assets', build_ids: [3], last_build_id: 3, last_build_number: 3},
{ id: 3, owner: 'travis-ci', name: 'travis-hub', slug: 'travis-ci/travis-hub', build_ids: [4], last_build_id: 4, last_build_number: 4},
]
builds = [
{ id: 1, repository_id: 'travis-ci/travis-core', commit_id: 1, job_ids: [1, 2], number: 1, event_type: 'push', config: { rvm: ['rbx', '1.9.3'] }, finished_at: '2012-06-20T00:21:20Z', duration: 35, result: 0 },
{ id: 2, repository_id: 'travis-ci/travis-core', commit_id: 2, job_ids: [3], number: 2, event_type: 'push', config: { rvm: ['rbx'] } },
{ id: 3, repository_id: 'travis-ci/travis-assets', commit_id: 3, job_ids: [4], number: 3, event_type: 'push', config: { rvm: ['rbx'] } },
{ id: 4, repository_id: 'travis-ci/travis-hub', commit_id: 4, job_ids: [5], number: 4, event_type: 'push', config: { rvm: ['rbx'] } },
]
commits = [
{ id: 1, sha: '1234567', branch: 'master', message: 'commit message 1', author_name: 'author name', author_email: 'author@email.com', compare_url: 'http://github.com/compare/012345..123456' },
{ id: 2, sha: '2345678', branch: 'feature', message: 'commit message 2', author_name: 'author name', author_email: 'author@email.com', compare_url: 'http://github.com/compare/012345..123456' },
{ id: 3, sha: '3456789', branch: 'master', message: 'commit message 3', author_name: 'author name', author_email: 'author@email.com', compare_url: 'http://github.com/compare/012345..123456' },
{ id: 4, sha: '4567890', branch: 'master', message: 'commit message 4', author_name: 'author name', author_email: 'author@email.com', compare_url: 'http://github.com/compare/012345..123456' },
]
jobs = [
{ id: 1, repository_id: 1, build_id: 1, commit_id: 1, log_id: 1, number: '1.1', config: { rvm: 'rbx' }, finished_at: '2012-06-20T00:21:20Z', duration: 35, result: 0 }
{ id: 2, repository_id: 1, build_id: 1, commit_id: 1, log_id: 2, number: '1.2', config: { rvm: '1.9.3' } }
{ id: 3, repository_id: 1, build_id: 2, commit_id: 2, log_id: 3, number: '2.1' }
{ id: 4, repository_id: 2, build_id: 3, commit_id: 3, log_id: 4, number: '3.1' }
{ id: 5, repository_id: 3, build_id: 4, commit_id: 4, log_id: 5, number: '4.1' }
]
artifacts = [
{ id: 1, body: 'log 1' }
{ id: 2, body: 'log 2' }
{ id: 3, body: 'log 3' }
{ id: 4, body: 'log 4' }
{ id: 5, body: 'log 4' }
]
$.mockjax
url: '/repositories'
responseTime: 0
responseText: { repositories: repositories }
for repository in repositories
$.mockjax
url: '/' + repository.slug
responseTime: 0
responseText: { repository: repository }
for build in builds
$.mockjax
url: '/builds/' + build.id
responseTime: 0
responseText:
build: build,
commit: commits[build.commit_id - 1]
jobs: (jobs[id - 1] for id in build.job_ids)
for repository in repositories
$.mockjax
url: '/builds'
data: { repository_id: 1, event_type: 'push', orderBy: 'number DESC' }
responseTime: 0
responseText:
builds: (builds[id - 1] for id in repository.build_ids)
commits: (commits[builds[id - 1].commit_id - 1] for id in repository.build_ids)
for job in jobs
$.mockjax
url: '/jobs/' + job.id
responseTime: 0
responseText:
job: job,
commit: commits[job.commit_id - 1]
for artifact in artifacts
$.mockjax
url: '/artifacts/' + artifact.id
responseTime: 0
responseText:
artifact: artifact

View File

@ -69,6 +69,9 @@ li {
margin-left: 20px;
}
.summary {
display: inline-block;
}
.summary .left,
.summary .right {
float: left;
@ -84,21 +87,23 @@ dd {
float: left;
}
.green {
border-top: 5px solid lightgreen;
}
.red {
border-top: 5px solid red;
}
/* .green { */
/* border-top: 5px solid lightgreen; */
/* } */
/* .red { */
/* border-top: 5px solid red; */
/* } */
#jobs,
.log {
clear: both;
padding-top: 20px;
}
caption {
white-space: nowrap;
font-weight: bold;
padding-top: 20px;
display: block;
table {
clear: both;
margin-top: 20px;
}
caption {
text-align: left;
font-weight: bold;
}

File diff suppressed because one or more lines are too long

282
public/javascripts/mocks.js Normal file
View File

@ -0,0 +1,282 @@
(function() {
var artifact, artifacts, build, builds, commits, id, job, jobs, repositories, repository, _i, _j, _k, _l, _len, _len1, _len2, _len3, _len4, _m;
repositories = [
{
id: 1,
owner: 'travis-ci',
name: 'travis-core',
slug: 'travis-ci/travis-core',
build_ids: [1, 2],
last_build_id: 1,
last_build_number: 1,
last_build_result: 0
}, {
id: 2,
owner: 'travis-ci',
name: 'travis-assets',
slug: 'travis-ci/travis-assets',
build_ids: [3],
last_build_id: 3,
last_build_number: 3
}, {
id: 3,
owner: 'travis-ci',
name: 'travis-hub',
slug: 'travis-ci/travis-hub',
build_ids: [4],
last_build_id: 4,
last_build_number: 4
}
];
builds = [
{
id: 1,
repository_id: 'travis-ci/travis-core',
commit_id: 1,
job_ids: [1, 2],
number: 1,
event_type: 'push',
config: {
rvm: ['rbx', '1.9.3']
},
finished_at: '2012-06-20T00:21:20Z',
duration: 35,
result: 0
}, {
id: 2,
repository_id: 'travis-ci/travis-core',
commit_id: 2,
job_ids: [3],
number: 2,
event_type: 'push',
config: {
rvm: ['rbx']
}
}, {
id: 3,
repository_id: 'travis-ci/travis-assets',
commit_id: 3,
job_ids: [4],
number: 3,
event_type: 'push',
config: {
rvm: ['rbx']
}
}, {
id: 4,
repository_id: 'travis-ci/travis-hub',
commit_id: 4,
job_ids: [5],
number: 4,
event_type: 'push',
config: {
rvm: ['rbx']
}
}
];
commits = [
{
id: 1,
sha: '1234567',
branch: 'master',
message: 'commit message 1',
author_name: 'author name',
author_email: 'author@email.com',
compare_url: 'http://github.com/compare/012345..123456'
}, {
id: 2,
sha: '2345678',
branch: 'feature',
message: 'commit message 2',
author_name: 'author name',
author_email: 'author@email.com',
compare_url: 'http://github.com/compare/012345..123456'
}, {
id: 3,
sha: '3456789',
branch: 'master',
message: 'commit message 3',
author_name: 'author name',
author_email: 'author@email.com',
compare_url: 'http://github.com/compare/012345..123456'
}, {
id: 4,
sha: '4567890',
branch: 'master',
message: 'commit message 4',
author_name: 'author name',
author_email: 'author@email.com',
compare_url: 'http://github.com/compare/012345..123456'
}
];
jobs = [
{
id: 1,
repository_id: 1,
build_id: 1,
commit_id: 1,
log_id: 1,
number: '1.1',
config: {
rvm: 'rbx'
},
finished_at: '2012-06-20T00:21:20Z',
duration: 35,
result: 0
}, {
id: 2,
repository_id: 1,
build_id: 1,
commit_id: 1,
log_id: 2,
number: '1.2',
config: {
rvm: '1.9.3'
}
}, {
id: 3,
repository_id: 1,
build_id: 2,
commit_id: 2,
log_id: 3,
number: '2.1'
}, {
id: 4,
repository_id: 2,
build_id: 3,
commit_id: 3,
log_id: 4,
number: '3.1'
}, {
id: 5,
repository_id: 3,
build_id: 4,
commit_id: 4,
log_id: 5,
number: '4.1'
}
];
artifacts = [
{
id: 1,
body: 'log 1'
}, {
id: 2,
body: 'log 2'
}, {
id: 3,
body: 'log 3'
}, {
id: 4,
body: 'log 4'
}, {
id: 5,
body: 'log 4'
}
];
$.mockjax({
url: '/repositories',
responseTime: 0,
responseText: {
repositories: repositories
}
});
for (_i = 0, _len = repositories.length; _i < _len; _i++) {
repository = repositories[_i];
$.mockjax({
url: '/' + repository.slug,
responseTime: 0,
responseText: {
repository: repository
}
});
}
for (_j = 0, _len1 = builds.length; _j < _len1; _j++) {
build = builds[_j];
$.mockjax({
url: '/builds/' + build.id,
responseTime: 0,
responseText: {
build: build,
commit: commits[build.commit_id - 1],
jobs: (function() {
var _k, _len2, _ref, _results;
_ref = build.job_ids;
_results = [];
for (_k = 0, _len2 = _ref.length; _k < _len2; _k++) {
id = _ref[_k];
_results.push(jobs[id - 1]);
}
return _results;
})()
}
});
}
for (_k = 0, _len2 = repositories.length; _k < _len2; _k++) {
repository = repositories[_k];
$.mockjax({
url: '/builds',
data: {
repository_id: 1,
event_type: 'push',
orderBy: 'number DESC'
},
responseTime: 0,
responseText: {
builds: (function() {
var _l, _len3, _ref, _results;
_ref = repository.build_ids;
_results = [];
for (_l = 0, _len3 = _ref.length; _l < _len3; _l++) {
id = _ref[_l];
_results.push(builds[id - 1]);
}
return _results;
})(),
commits: (function() {
var _l, _len3, _ref, _results;
_ref = repository.build_ids;
_results = [];
for (_l = 0, _len3 = _ref.length; _l < _len3; _l++) {
id = _ref[_l];
_results.push(commits[builds[id - 1].commit_id - 1]);
}
return _results;
})()
}
});
}
for (_l = 0, _len3 = jobs.length; _l < _len3; _l++) {
job = jobs[_l];
$.mockjax({
url: '/jobs/' + job.id,
responseTime: 0,
responseText: {
job: job,
commit: commits[job.commit_id - 1]
}
});
}
for (_m = 0, _len4 = artifacts.length; _m < _len4; _m++) {
artifact = artifacts[_m];
$.mockjax({
url: '/artifacts/' + artifact.id,
responseTime: 0,
responseText: {
artifact: artifact
}
});
}
}).call(this);

View File

@ -69,6 +69,9 @@ li {
margin-left: 20px;
}
.summary {
display: inline-block;
}
.summary .left,
.summary .right {
float: left;
@ -84,21 +87,23 @@ dd {
float: left;
}
.green {
border-top: 5px solid lightgreen;
}
.red {
border-top: 5px solid red;
}
/* .green { */
/* border-top: 5px solid lightgreen; */
/* } */
/* .red { */
/* border-top: 5px solid red; */
/* } */
#jobs,
.log {
clear: both;
padding-top: 20px;
}
caption {
white-space: nowrap;
font-weight: bold;
padding-top: 20px;
display: block;
table {
clear: both;
margin-top: 20px;
}
caption {
text-align: left;
font-weight: bold;
}