changes made to profile page including increased type size for readability, color styling and gravatar border radius increase

This commit is contained in:
Justine Arreche 2014-01-03 19:10:58 -05:00
parent 9fb54749be
commit d324319a96
65 changed files with 11033 additions and 5280 deletions

View File

@ -11,8 +11,8 @@ env:
matrix:
- "TEST_SUITE=ruby ARTIFACTS_S3_BUCKET=travis-web-production"
- "TEST_SUITE=phantomjs"
- "TEST_SUITE=saucelabs BROWSER='firefox:19:Windows 2012'"
- "TEST_SUITE=saucelabs BROWSER='chrome::Windows 2008'"
- "TEST_SUITE=saucelabs BROWSER='firefox::Windows XP'"
- "TEST_SUITE=saucelabs BROWSER='chrome::Windows XP'"
script: "script/ci"
before_script:

60
Gemfile
View File

@ -17,12 +17,12 @@ group :assets do
gem 'tilt'
gem 'uglifier'
gem 'yui-compressor'
gem 'libv8', '~> 3.16.0'
end
group :development, :test do
gem 'rake'
gem 'localeapp'
gem 'handlebars'
gem 'localeapp-handlebars_i18n'
end
@ -40,61 +40,3 @@ group :test do
gem 'sinatra-contrib'
end
require 'bundler/installer'
module ::Bundler
class Installer < Environment
MAX_RETRIES = 3
def install_gem_from_spec(spec, standalone = false)
retries = 1
# Download the gem to get the spec, because some specs that are returned
# by rubygems.org are broken and wrong.
Bundler::Fetcher.fetch(spec) if spec.source.is_a?(Bundler::Source::Rubygems)
# Fetch the build settings, if there are any
settings = Bundler.settings["build.#{spec.name}"]
Bundler.rubygems.with_build_args [settings] do
spec.source.install(spec)
Bundler.ui.debug "from #{spec.loaded_from} "
end
# newline comes after installing, some gems say "with native extensions"
Bundler.ui.info ""
if Bundler.settings[:bin] && standalone
generate_standalone_bundler_executable_stubs(spec)
elsif Bundler.settings[:bin]
generate_bundler_executable_stubs(spec, :force => true)
end
FileUtils.rm_rf(Bundler.tmp)
rescue Gem::RemoteFetcher::FetchError => e
if retries <= MAX_RETRIES
Bundler.ui.warn "#{e.class}: #{e.message}"
Bundler.ui.warn "Installing #{spec.name} (#{spec.version}) failed."
Bundler.ui.warn "Retrying (#{retries}/#{MAX_RETRIES})"
retries += 1
sleep retries
retry
else
Bundler.ui.warn "Installing #{spec.name} (#{spec.version}) failed after #{retries} retries: #{e.message}."
Bundler.ui.warn "Giving up"
msg = "An error, most likely because of network issues, has occurred trying to install #{spec.name} (#{spec.version}), "
msg << "and Bundler cannot continue."
raise Bundler::InstallError, msg
end
rescue Exception => e
# install hook failed
raise e if e.is_a?(Bundler::InstallHookError) || e.is_a?(Bundler::SecurityError)
# other failure, likely a native extension build failure
Bundler.ui.info ""
Bundler.ui.warn "#{e.class}: #{e.message}"
msg = "An error occurred while installing #{spec.name} (#{spec.version}),"
msg << " and Bundler cannot continue.\nMake sure that `gem install"
msg << " #{spec.name} -v '#{spec.version}'` succeeds before bundling."
Bundler.ui.debug e.backtrace.join("\n")
raise Bundler::InstallError, msg
end
end
end

View File

@ -29,7 +29,6 @@ GEM
coffee-script-source
execjs
coffee-script-source (1.5.0)
commonjs (0.2.6)
compass (0.12.2)
chunky_png (~> 1.2)
fssm (>= 0.2.7)
@ -48,12 +47,9 @@ GEM
pry (>= 0.9.10)
terminal-table (>= 1.4.3)
thor (>= 0.14.6)
handlebars (0.4.0)
commonjs (~> 0.2.3)
therubyracer (~> 0.11.1)
i18n (0.6.3)
json (1.7.7)
libv8 (3.11.8.13)
libv8 (3.16.14.3)
listen (0.7.3)
localeapp (0.6.9)
gli
@ -89,7 +85,6 @@ GEM
rake-pipeline-i18n-filters (0.0.5)
rake-pipeline (~> 0.6)
rb-fsevent (0.9.3)
ref (1.0.2)
rerun (0.8.0)
listen
rest-client (1.6.7)
@ -116,9 +111,6 @@ GEM
tilt (~> 1.3)
slop (3.4.3)
terminal-table (1.4.5)
therubyracer (0.11.4)
libv8 (~> 3.11.8.12)
ref
thor (0.17.0)
tilt (1.3.3)
uglifier (1.3.0)
@ -136,7 +128,7 @@ DEPENDENCIES
compass
foreman
guard
handlebars
libv8 (~> 3.16.0)
localeapp
localeapp-handlebars_i18n
puma

View File

View File

@ -33,7 +33,7 @@ unless window.TravisApplication
@slider = new Travis.Slider()
@pusher = new Travis.Pusher(Travis.config.pusher_key) if Travis.config.pusher_key
@tailing = new Travis.Tailing()
@tailing = new Travis.Tailing($(window), '#tail', '#log')
@set('auth', Travis.Auth.create(app: this, endpoint: Travis.config.api_endpoint))
@ -119,14 +119,12 @@ unless window.TravisApplication
loadOrMerge: (type, hash, options) ->
options ||= {}
if !type._idToReference
type._idToReference = {}
reference = type._idToReference[hash.id]
reference = type._getReferenceById(hash.id)
if reference && options.skipIfExists
return
reference = type._referenceForId(hash.id)
reference = type._getOrCreateReferenceForId(hash.id)
if reference.record
reference.record.merge(hash)
else

View File

@ -15,11 +15,3 @@ Travis.BuildController = Ember.Controller.extend
urlGithubCommit: (->
Travis.Urls.githubCommit(@get('repo.slug'), @get('commit.sha'))
).property('repo.slug', 'commit.sha')
urlAuthor: (->
Travis.Urls.email(@get('commit.authorEmail'))
).property('commit.authorEmail')
urlCommitter: (->
Travis.Urls.email(@get('commit.committerEmail'))
).property('commit.committerEmail')

View File

@ -2,14 +2,12 @@ Travis.FlashController = Ember.ArrayController.extend
needs: ['currentUser']
currentUserBinding: 'controllers.currentUser'
broadcastBinding: 'currentUser.broadcasts'
init: ->
@_super.apply this, arguments
@set('flashes', Ember.A())
content: (->
@get('unseenBroadcasts').concat(@get('flashes'))
@get('unseenBroadcasts').concat(@get('flashes')).filter( (o) -> o ).uniq()
).property('unseenBroadcasts.length', 'flashes.length')
unseenBroadcasts: (->

View File

@ -13,11 +13,3 @@ Travis.JobController = Em.Controller.extend
urlGithubCommit: (->
Travis.Urls.githubCommit(@get('repo.slug'), @get('commit.sha'))
).property('repo.slug', 'commit.sha')
urlAuthor: (->
Travis.Urls.email(@get('commit.authorEmail'))
).property('commit.authorEmail')
urlCommitter: (->
Travis.Urls.email(@get('commit.committerEmail'))
).property('commit.committerEmail')

View File

@ -50,6 +50,9 @@ Travis.RepoController = Travis.Controller.extend
@connectTab('job')
lastBuildDidChange: ->
Ember.run.scheduleOnce('data', this, @_lastBuildDidChange);
_lastBuildDidChange: ->
build = @get('repo.lastBuild')
@set('build', build)

View File

@ -6,7 +6,7 @@ Travis.ReposController = Ember.ArrayController.extend
'owned'
else
'recent'
).property('currentUser')
).property('currentUser.id')
currentUserIdDidChange: (->
if @get('currentUser.id')
@ -16,10 +16,10 @@ Travis.ReposController = Ember.ArrayController.extend
).observes('currentUser.id')
tabOrIsLoadedDidChange: (->
if @get('tab') == 'owned' && @get('isLoaded') && @get('length') == 0
@container.lookup('router:main').send('renderNoOwnedRepos')
).observes('isLoaded', 'tab')
Ember.run.scheduleOnce 'routerTransitions', this, ->
if @get('tab') == 'owned' && @get('isLoaded') && @get('length') == 0
@container.lookup('router:main').send('renderNoOwnedRepos')
).observes('isLoaded', 'tab', 'length')
isLoadedBinding: 'content.isLoaded'
needs: ['currentUser', 'repo']

View File

@ -26,12 +26,12 @@ require 'config/emoij'
(sha || '').substr(0, 7)
formatConfig: (config) ->
config = $.only config, Travis.CONFIG_KEYS
config = $.only config, Object.keys(Travis.CONFIG_KEYS_MAP)
values = $.map config, (value, key) ->
value = (if value && value.join then value.join(', ') else value) || ''
if key == 'rvm' && "#{value}".match(/^\d+$/)
value = "#{value}.0"
'%@: %@'.fmt $.camelize(key), value
'%@: %@'.fmt Travis.CONFIG_KEYS_MAP[key], value
if values.length == 0 then '-' else values.join(', ')
formatMessage: (message, options) ->
@ -84,7 +84,7 @@ require 'config/emoij'
_githubReferenceRegexp: new RegExp("([\\w-]+)?\\/?([\\w-]+)?(?:#|gh-)(\\d+)", 'g')
_githubUserRegexp: new RegExp("@([\\w-]+)", 'g')
_githubUserRegexp: new RegExp("\\B@([\\w-]+)", 'g')
_githubUserLink: (reference, username) ->
"<a href=\"http://github.com/#{username}\">#{reference}</a>"
@ -116,4 +116,4 @@ require 'config/emoij'
configKeys: (config) ->
return [] unless config
$.intersect($.keys(config), Travis.CONFIG_KEYS)
$.intersect($.keys(config), Object.keys(Travis.CONFIG_KEYS_MAP))

View File

@ -45,7 +45,7 @@ require 'travis/model'
).property('jobs.@each.allowFailure')
rawConfigKeys: (->
keys = Travis.Helpers.configKeys(@get('config'))
keys = []
@get('jobs').forEach (job) ->
Travis.Helpers.configKeys(job.get('config')).forEach (key) ->
@ -57,7 +57,7 @@ require 'travis/model'
configKeys: (->
keys = @get('rawConfigKeys')
headers = (I18n.t(key) for key in ['build.job', 'build.duration', 'build.finished_at'])
$.map(headers.concat(keys), (key) -> return $.camelize(key))
$.map(headers.concat(keys), (key) -> if Travis.CONFIG_KEYS_MAP.hasOwnProperty(key) then Travis.CONFIG_KEYS_MAP[key] else key)
).property('rawConfigKeys.length')
canCancel: (->

View File

@ -135,5 +135,12 @@ require 'travis/model'
repo = $.select(@find().toArray(), (repo) -> repo.get('slug') == slug)
if repo.length > 0 then repo else @find(slug: slug)
fetchBySlug: (slug) ->
repos = $.select(@find().toArray(), (repo) -> repo.get('slug') == slug)
if repos.length > 0
repos[0]
else
@fetch(slug: slug).then (repos) -> Ember.get(repos, 'firstObject')
# buildURL: (slug) ->
# if slug then slug else 'repos'

View File

@ -31,9 +31,31 @@ require 'travis/model'
"https://github.com/#{@get('login')}"
).property()
_rawPermissions: (->
Travis.ajax.get('/users/permissions')
).property()
permissions: (->
permissions = Ember.ArrayProxy.create(content: [])
Travis.ajax.get('/users/permissions', (data) => permissions.set('content', data.permissions))
@get('_rawPermissions').then (data) => permissions.set('content', data.permissions)
permissions
).property()
adminPermissions: (->
permissions = Ember.ArrayProxy.create(content: [])
@get('_rawPermissions').then (data) => permissions.set('content', data.admin)
permissions
).property()
pullPermissions: (->
permissions = Ember.ArrayProxy.create(content: [])
@get('_rawPermissions').then (data) => permissions.set('content', data.pull)
permissions
).property()
pushPermissions: (->
permissions = Ember.ArrayProxy.create(content: [])
@get('_rawPermissions').then (data) => permissions.set('content', data.push)
permissions
).property()
@ -55,7 +77,10 @@ require 'travis/model'
poll: ->
Travis.ajax.get '/users', (data) =>
if data.user.is_syncing
Ember.run.later(this, this.poll.bind(this), 3000)
self = this
setTimeout ->
self.poll()
, 3000
else
@set('isSyncing', false)
@setWithSession('syncedAt', data.user.synced_at)

View File

@ -17,16 +17,10 @@ Ember.Router.reopen
# TODO: don't reopen Ember.Route to add events, there should be
# a better way (like "parent" resource for everything inside map)
Ember.Route.reopen
events:
_actions:
renderDefaultTemplate: ->
@renderDefaultTemplate() if @renderDefaultTemplate
renderNoOwnedRepos: ->
@render('no_owned_repos', outlet: 'main')
renderFirstSync: ->
@renderFirstSync()
error: (error) ->
if error == 'needs-auth'
authController = @container.lookup('controller:auth') || @generateController('auth')
@ -35,6 +29,12 @@ Ember.Route.reopen
else
throw(error)
renderNoOwnedRepos: ->
@render('no_owned_repos', outlet: 'main')
renderFirstSync: ->
@renderFirstSync()
afterSignIn: (path) ->
@afterSignIn(path)
@ -123,8 +123,9 @@ Travis.SetupLastBuild = Ember.Mixin.create
repoDidLoad: ->
# TODO: it would be nicer to do it with promises
repo = @controllerFor('repo').get('repo')
if repo && repo.get('isLoaded') && !repo.get('lastBuild')
@render('builds/not_found', outlet: 'pane', into: 'repo')
if repo && repo.get('isLoaded') && !repo.get('lastBuildId')
Ember.run.next =>
@render('builds/not_found', outlet: 'pane', into: 'repo')
Travis.GettingStartedRoute = Ember.Route.extend
setupController: ->
@ -139,6 +140,11 @@ Travis.GettingStartedRoute = Ember.Route.extend
@_super.apply(this, arguments)
Travis.FirstSyncRoute = Ember.Route.extend
_actions:
renderNoOwnedRepos: (->)
# do nothing, we are showing first sync, so it's normal that there is
# no owned repos
setupController: ->
$('body').attr('id', 'home')
@container.lookup('controller:repos').activate()
@ -211,7 +217,7 @@ Travis.BuildRoute = Ember.Route.extend
repo.set('build', model)
model: (params) ->
Travis.Build.find(params.build_id)
Travis.Build.fetch(params.build_id)
Travis.JobRoute = Ember.Route.extend
renderTemplate: ->
@ -229,19 +235,12 @@ Travis.JobRoute = Ember.Route.extend
repo.set('job', model)
repo.activate('job')
# since we're no longer using promises, the setupController resolves right away,
# so we need to wait for build to be loaded
buildObserver = ->
if build = model.get('build')
@controllerFor('build').set('build', build)
repo.set('build', build)
model.removeObserver('build', buildObserver)
model.addObserver('build', this, buildObserver)
buildObserver.apply(this)
if build = model.get('build')
@controllerFor('build').set('build', build)
repo.set('build', build)
model: (params) ->
Travis.Job.find(params.job_id)
Travis.Job.fetch(params.job_id)
Travis.RepoIndexRoute = Ember.Route.extend Travis.SetupLastBuild,
setupController: (controller, model) ->
@ -268,29 +267,13 @@ Travis.RepoRoute = Ember.Route.extend
model: (params) ->
slug = "#{params.owner}/#{params.name}"
content = Ember.Object.create slug: slug, isLoaded: false, isLoading: true
proxy = Ember.ObjectProxy.create(content: content)
repos = Travis.Repo.bySlug(slug)
Travis.Repo.fetchBySlug(slug)
self = this
observer = ->
if repos.get 'isLoaded'
repos.removeObserver 'isLoaded', observer
proxy.set 'isLoading', false
if repos.get('length') == 0
self.render('repos/not_found', outlet: 'main')
else
proxy.set 'content', repos.objectAt(0)
if repos.length
proxy.set('content', repos[0])
else
repos.addObserver 'isLoaded', observer
proxy
actions:
error: ->
Ember.run.next this, ->
@render('repos/not_found', outlet: 'main')
Travis.IndexRoute = Ember.Route.extend
renderTemplate: ->
@ -304,6 +287,10 @@ Travis.IndexRoute = Ember.Route.extend
@container.lookup('controller:repos').activate()
@container.lookup('controller:application').connectLayout 'home'
Travis.IndexLoadingRoute = Ember.Route.extend
renderTemplate: ->
@render('index_loading')
Travis.StatsRoute = Ember.Route.extend
renderTemplate: ->
$('body').attr('id', 'stats')

View File

@ -1,12 +1,17 @@
@Travis.Tailing = ->
@position = $(window).scrollTop()
$(window).scroll( $.throttle( 200, @onScroll.bind(this) ) )
this
$.extend Travis.Tailing.prototype,
class @Travis.Tailing
options:
timeout: 200
tail: ->
$(@tail_selector)
log: ->
$(@log_selector)
constructor: (@window, @tail_selector, @log_selector) ->
@position = @window.scrollTop()
@window.scroll( $.throttle( 200, @onScroll.bind(this) ) )
this
run: ->
@autoScroll()
@positionButton()
@ -16,37 +21,43 @@ $.extend Travis.Tailing.prototype,
if @active() then @stop() else @start()
active: ->
$('#tail').hasClass('active')
@tail().hasClass('active')
start: ->
$('#tail').addClass('active')
@tail().addClass('active')
@run()
stop: ->
$('#tail').removeClass('active')
@tail().removeClass('active')
autoScroll: ->
return unless @active()
win = $(window)
log = $('#log')
logBottom = log.offset().top + log.outerHeight() + 40
winBottom = win.scrollTop() + win.height()
win.scrollTop(logBottom - win.height()) if logBottom - winBottom > 0
return false unless @active()
logBottom = @log().offset().top + @log().outerHeight() + 40
winBottom = @window.scrollTop() + @window.height()
if logBottom - winBottom > 0
@window.scrollTop(logBottom - @window.height())
true
else
false
onScroll: ->
@positionButton()
position = $(window).scrollTop()
position = @window.scrollTop()
@stop() if position < @position
@position = position
positionButton: ->
tail = $('#tail')
return if tail.length is 0
offset = $(window).scrollTop() - $('#log').offset().top
max = $('#log').height() - $('#tail').height() + 5
offset = max if offset > max
if offset > 0
tail.css(top: offset - 2)
else
tail.css(top: 0)
return if @tail().length is 0
offset = @window.scrollTop() - @log().offset().top
max = @log().height() - @tail().height() + 5
if offset > 0 && offset <= max
@tail().removeClass('bottom')
@tail().addClass('scrolling')
else
if offset > max
@tail().addClass('bottom')
else
@tail().removeClass('bottom')
@tail().removeClass('scrolling')

View File

@ -35,11 +35,11 @@
{{/if}}
{{#if commit.authorName}}
<dt>{{t builds.author}}</dt>
<dd class="author"><a {{bindAttr href="controller.urlAuthor"}}>{{commit.authorName}}</a></dd>
<dd class="author">{{commit.authorName}}</dd>
{{/if}}
{{#if commit.committerName}}
<dt>{{t builds.committer}}</dt>
<dd class="committer"><a {{bindAttr href="controller.urlCommitter"}}>{{commit.committerName}}</a></dd>
<dd class="committer">{{commit.committerName}}</dd>
{{/if}}
</div>
{{/with}}

View File

@ -0,0 +1 @@
<div class="loading"><span>Loading</span></div>

View File

@ -1,7 +1,14 @@
<div id="log-container">
<a href="#" id="tail" {{action "toggleTailing" target="view"}}>
<span class="status"></span>
<label>Follow logs</label>
<label>
{{#if view.job.isFinished}}
Scroll to end of logs
{{else}}
Follow logs
{{/if}}
</label>
</a>
<pre id="log" class="ansi"></pre>

View File

@ -34,11 +34,11 @@
{{/if}}
{{#if commit.authorName}}
<dt>{{t jobs.author}}</dt>
<dd class="author"><a {{bindAttr href="controller.urlAuthor"}}>{{commit.authorName}}</a></dd>
<dd class="author">{{commit.authorName}}</dd>
{{/if}}
{{#if commit.committerName}}
<dt>{{t jobs.committer}}</dt>
<dd class="committer"><a {{bindAttr href="controller.urlCommitter"}}>{{commit.committerName}}</a></dd>
<dd class="committer">{{commit.committerName}}</dd>
{{/if}}
</div>
{{/with}}

View File

@ -27,7 +27,7 @@
</ul>
</li>
<li class="traviscicom">
<a href="http://travisci.com">Travis CI for Private Repositories</a>
<a href="http://travis-ci.com">Travis CI for Private Repositories</a>
</li>
<li {{bindAttr class="view.classProfile"}}>
<p class="handle">

View File

@ -74,65 +74,4 @@
<a href="mailto:support@travis-ci.com">send us an email</a>.
</p>
</div>
<p>
Hey, it looks like you're new around here and have yet to set up your first repository on Travis CI.
</p>
<p>
We're here to help you get started, it's easy!
</p>
<p>
<img src="/images/getting-started/project-switch.png" width="320"/>
</p>
<p>
Start by going to your {{#linkTo "profile.index"}}profile{{/linkTo}} and enable one of your projects. We've been
synchronizing all repositories you have administrative access to. Pick one and flip the switch next to it.
</p>
<p>
<img src="/images/getting-started/first-build.png" width="320"/>
</p>
<p>
Once you've enabled one of your projects, add a <a
href="http://about.travis-ci.org/docs/user/build-configuration/#.travis.yml-file%3A-what-it-is-and-how-it-is-used"><code>.travis.yml</code></a> to your project, push some code, and we'll start processing your builds. Wait a
whee while and reload the page, and your newly setup and built project will show up on the right.
</p>
<p>
We'll also send you an email once the build has finished.
</p>
<p>
We use sensible defaults for <a href="http://about.travis-ci.org/docs/">most languages</a>, but you can customize
both the <a href="http://about.travis-ci.org/docs/user/build-configuration/">build process</a> and the <a
href="http://about.travis-ci.org/docs/user/build-configuration/">build
environment</a> to fit your project's needs.
</p>
<p>
You can also configure how you want to be notified of build results. Email is only one channel you can use. We
support <a href="http://about.travis-ci.org/docs/user/notifications/#Campfire-notification">Campfire</a>, <a
href="http://about.travis-ci.org/docs/user/notifications/#HipChat-notification">HipChat</a>, <a
href="http://about.travis-ci.org/docs/user/notifications/#Flowdock-notification">Flowdock</a>, <a
href="http://about.travis-ci.org/docs/user/notifications/#IRC-notification">IRC</a>, and <a
href="http://about.travis-ci.org/docs/user/notifications/#Webhook-notification">webhooks</a>. To avoid
exposing any private credentials, you can shield them from the public using <a
href="http://about.travis-ci.org/docs/user/build-configuration/#Secure-environment-variables">encrypted
configuration settings</a>.
</p>
<p>
<img src="/images/getting-started/build-email.jpg" width="620"/>
</p>
<p>
Should you have any questions or issues, have a look at <a href="http://about.travis-ci.org/docs/" location="_top">our
documentation</a>, <a href="https://github.com/travis-ci/travis-ci/issues/new" location="_top">open an issue</a> or
<a href="mailto:support@travis-ci.com">send us an email</a>.
</p>
>>>>>>> f6867e8a4cddfef041367a301d22d0969c6f886d
</div>

View File

@ -59,7 +59,7 @@
Integrating <a href="https://codeclimate.com">Code Climate's test coverage</a> reporting with your test
suite on Travis CI allows to track changes in coverage over time. If you haven't tried it out already, <a
{{bindAttr href="Travis.config.code_climate_url"}}" target="_blank">sign
up today</a> for to improve your code's quality. New customers get 20% off for the first three months!
up today</a> to improve your code's quality. New customers get 20% off for the first three months!
</p>
<p>

View File

@ -43,7 +43,7 @@ Travis.FirstSyncView = Travis.View.extend
).then(null, (e) ->
console.log('There was a problem while redirecting from first sync', e)
)
, 5000
, Travis.config.syncingPageRedirectionTime
require 'views/accounts'
require 'views/application'

View File

@ -29,11 +29,3 @@ Travis.reopen
urlGithubCommit: (->
Travis.Urls.githubCommit(@get('repo.slug'), @get('commit.sha'))
).property('repo.slug', 'commit.sha')
urlAuthor: (->
Travis.Urls.email(@get('commit.authorEmail'))
).property('commit.authorEmail')
urlCommitter: (->
Travis.Urls.email(@get('commit.committerEmail'))
).property('commit.committerEmail')

View File

@ -13,7 +13,7 @@ Travis.reopen
job = @get('job')
if job
job.get('log').fetch()
job.subscribe() if !job.get('isFinished')
job.subscribe()
willDestroyElement: ->
job = @get('job')
@ -34,12 +34,12 @@ Travis.reopen
parts.removeArrayObserver(@, didChange: 'partsDidChange', willChange: 'noop')
versionDidChange: (->
@rerender() if @get('inDOM')
@rerender() if @get('state') == 'inDOM'
).observes('log.version')
logDidChange: (->
console.log 'log view: log did change: rerender' if Log.DEBUG
@rerender() if @get('inDOM')
@rerender() if @get('state') == 'inDOM'
).observes('log')
createEngine: ->
@ -97,8 +97,9 @@ Travis.reopen
window.history.pushState({ path: path }, null, path);
@set('controller.lineNumber', number)
toTop: () ->
$(window).scrollTop(0)
actions:
toTop: () ->
$(window).scrollTop(0)
noop: -> # TODO required?

View File

@ -107,14 +107,19 @@ Travis.reopen
displayRegenerateKey: true
canRegenerateKey: (->
@get('displayRegenerateKey') && @get('hasPermission')
).property('hasPermission')
@get('displayRegenerateKey') && @get('hasAdminPermission')
).property('hasAdminPermission')
hasPermission: (->
if permissions = @get('currentUser.permissions')
permissions.contains parseInt(@get('repo.id'))
).property('currentUser.permissions.length', 'repo.id')
hasAdminPermission: (->
if permissions = @get('currentUser.adminPermissions')
permissions.contains parseInt(@get('repo.id'))
).property('currentUser.adminPermissions.length', 'repo.id')
statusImageUrl: (->
Travis.Urls.statusImage(@get('slug'))
).property('slug')
@ -174,6 +179,11 @@ Travis.reopen
permissions.contains parseInt(@get('repo.id'))
).property('currentUser.permissions.length', 'repo.id')
hasPushPermission: (->
if permissions = @get('currentUser.pushPermissions')
permissions.contains parseInt(@get('repo.id'))
).property('currentUser.pushPermissions.length', 'repo.id')
displayRequeueBuild: (->
@get('isBuildTab') && @get('build.isFinished')
).property('isBuildTab', 'build.isFinished')

View File

@ -3,10 +3,10 @@ Travis.Adapter = Ember.RESTAdapter.extend
Travis.ajax.ajax(url, method || 'get', data: params)
findMany: (klass, records, ids) ->
url = @buildURL(klass) + '?' + ids.map( (id) -> "ids[]=#{id}" ).join('&')
url = @buildURL(klass)
self = this
@ajax(url).then (data) ->
@ajax(url, ids: ids).then (data) ->
self.didFindMany(klass, records, data)
didFindMany: (klass, records, data) ->
@ -15,6 +15,7 @@ Travis.Adapter = Ember.RESTAdapter.extend
@sideload(klass, data)
records.load(klass, dataToLoad)
@addToRecordArrays(records.get('content'))
buildURL: ->
@_super.apply(this, arguments).replace(/\.json$/, '')
@ -22,26 +23,38 @@ Travis.Adapter = Ember.RESTAdapter.extend
didFind: (record, id, data) ->
@sideload(record.constructor, data)
@_super(record, id, data)
@addToRecordArrays(record)
didFindAll: (klass, records, data) ->
@sideload(klass, data)
@_super(klass, records, data)
@addToRecordArrays(records.get('content'))
didFindQuery: (klass, records, params, data) ->
@sideload(klass, data)
@_super(klass, records, params, data)
@addToRecordArrays(records.get('content'))
didCreateRecord: (record, data) ->
@sideload(record.constructor, data)
@_super(record, data)
@addToRecordArrays(record)
didSaveRecord: (record, data) ->
@sideload(record.constructor, data)
@_super(record, data)
@addToRecordArrays(record)
didDeleteRecord: (record, data) ->
@sideload(record.constructor, data)
@_super(record, data)
@addToRecordArrays(record)
addToRecordArrays: (records) ->
records = [records] unless Ember.isArray(records)
for record in records
record.constructor.addToRecordArrays(record)
sideload: (klass, data) ->
for name, records of data

View File

@ -59,7 +59,7 @@ Travis.ajax = Em.Object.create
options = $.extend(options, Travis.ajax.DEFAULT_OPTIONS)
if testMode?
console.log('RUnning ajax with', options.url)
console.log('Running ajax with', options.url)
# we use jquery.mockjax for test, I don't want to hack it or rewrite it,
# so let's just pretend we still use ajax if testing mode is on

View File

@ -38,18 +38,19 @@ Array.prototype.diff = (a) ->
@loadedAttributes = []
@loadedRelationships = []
attributes = this.attributes || []
relationships = this.relationships || []
attributes = this.constructor.getAttributes() || []
relationships = this.constructor.getRelationships() || []
for key in attributes
dataKey = @dataKey(key)
if hash.hasOwnProperty(dataKey)
@loadedAttributes.pushObject(key)
if hash
for key in attributes
dataKey = @dataKey(key)
if hash.hasOwnProperty(dataKey)
@loadedAttributes.pushObject(key)
for key in relationships
dataKey = @dataKey(key)
if hash.hasOwnProperty(dataKey)
@loadedRelationships.pushObject(key)
for key in relationships
dataKey = @dataKey(key)
if hash.hasOwnProperty(dataKey)
@loadedRelationships.pushObject(key)
incomplete = Ember.EnumerableUtils.intersection(@loadedAttributes, attributes).length != attributes.length ||
Ember.EnumerableUtils.intersection(@loadedRelationships, relationships).length != relationships.length
@ -86,10 +87,10 @@ Array.prototype.diff = (a) ->
@loadTheRest(key)
isAttribute: (name) ->
this.attributes.contains(name)
this.constructor.getAttributes().contains(name)
isRelationship: (name) ->
this.relationships.contains(name)
this.constructor.getRelationships().contains(name)
loadTheRest: (key) ->
# for some weird reason key comes changed to a string and for some weird reason it even is called with
@ -145,19 +146,19 @@ Array.prototype.diff = (a) ->
).property()
isRecordLoaded: (id) ->
!!@_referenceForId(id).record
reference = @_getReferenceById(id)
reference && reference.record
camelizeKeys: true
# TODO: the functions below will be added to Ember Model, remove them when that
# happens
resetData: ->
@_idToReference = null
@sideloadedData = null
@recordCache = null
@recordArrays = null
@_currentBatchIds = null
@_hasManyArrays = null
@_referenceCache = {}
@sideloadedData = {}
@recordArrays = []
@_currentBatchIds = []
@_hasManyArrays = []
@_findAllRecordArray = null
unload: (record) ->
@ -172,10 +173,8 @@ Array.prototype.diff = (a) ->
delete this.recordCache[key]
loadRecordForReference: (reference) ->
record = @create({ _reference: reference })
@recordCache = {} unless @recordCache
record = @create({ _reference: reference, id: reference.id })
@sideloadedData = {} unless @sideloadedData
@recordCache[reference.id] = record
reference.record = record
record.load(reference.id, @sideloadedData[reference.id])
# TODO: find a nicer way to not add record to record arrays twice

View File

@ -34,7 +34,7 @@ test "displaying information on build page", ->
listsJobs
table: '#jobs'
headers: ['Job', 'Duration', 'Finished', 'Rvm']
headers: ['Job', 'Duration', 'Finished', 'Ruby']
jobs: [
{ color: 'green', id: 1, number: '1.1', repo: 'travis-ci/travis-core', finishedAt: '3 minutes ago', duration: '30 sec', rvm: 'rbx' }
{ color: 'red', id: 2, number: '1.2', repo: 'travis-ci/travis-core', finishedAt: '2 minutes ago', duration: '40 sec', rvm: '1.9.3' }
@ -42,7 +42,7 @@ test "displaying information on build page", ->
listsJobs
table: '#allowed_failure_jobs'
headers: ['Job', 'Duration', 'Finished', 'Rvm']
headers: ['Job', 'Duration', 'Finished', 'Ruby']
jobs: [
{ color: '', id: 3, number: '1.3', repo: 'travis-ci/travis-core', finishedAt: '-', duration: '-', rvm: 'jruby' }
]

View File

@ -34,7 +34,7 @@ test "displaying information on repo page", ->
listsJobs
table: '#jobs'
headers: ['Job', 'Duration', 'Finished', 'Rvm']
headers: ['Job', 'Duration', 'Finished', 'Ruby']
jobs: [
{ id: 1, color: 'green', number: '1.1', repo: 'travis-ci/travis-core', finishedAt: '3 minutes ago', duration: '30 sec', rvm: 'rbx' }
{ id: 2, color: 'red', number: '1.2', repo: 'travis-ci/travis-core', finishedAt: '2 minutes ago', duration: '40 sec', rvm: '1.9.3' }
@ -42,7 +42,7 @@ test "displaying information on repo page", ->
listsJobs
table: '#allowed_failure_jobs'
headers: ['Job', 'Duration', 'Finished', 'Rvm']
headers: ['Job', 'Duration', 'Finished', 'Ruby']
jobs: [
{ id: 3, color: '', number: '1.3', repo: 'travis-ci/travis-core', finishedAt: '-', duration: '-', rvm: 'jruby' }
]

View File

@ -29,12 +29,48 @@ test "event containing a repository, adds repository to repos list", ->
last_build_number: 10
last_build_started_at: '2012-07-02T00:01:00Z'
last_build_finished_at: '2012-07-02T00:02:30Z'
last_build_state: 'passed'
last_build_duration: 90
wait().then ->
listsRepo
row: 2
item: { slug: 'travis-ci/travis-support', build: { number: 4, url: '/travis-ci/travis-support/builds/10', duration: '1 min 30 sec', finishedAt: 'less than a minute ago' } }
test "an event containing a created job, clears the job's log", ->
payload =
job:
id: 12
repository_id: 1
number: '1.4'
queue: 'build.linux'
visit('/travis-ci/travis-core/').then ->
Em.run ->
logRendered()
Travis.receive 'build:created', payload
wait().then ->
displaysLog []
test "an event containing a requeued job, clears the job's log", ->
payload =
job:
id: 12
repository_id: 1
number: '1.4'
queue: 'build.linux'
visit('/travis-ci/travis-core').then ->
Em.run ->
logRendered()
Travis.receive 'build:requeued', payload
wait().then ->
displaysLog []
test "an event with a build adds a build to a builds list", ->
visit('/travis-ci/travis-core/builds').then ->
payload =
@ -62,6 +98,7 @@ test "an event with a build adds a build to a builds list", ->
row: 1
item: { id: 11, slug: 'travis-ci/travis-core', number: '3', sha: '1234567', branch: 'master', message: 'commit message 3', finishedAt: 'less than a minute ago', duration: '55 sec', color: 'red' }
#test "event containing a job, adds job to jobs list", ->
# visit('travis-ci/travis-core').then ->
# payload =

View File

@ -34,7 +34,7 @@ test "displaying information on index page", ->
listsJobs
table: '#jobs'
headers: ['Job', 'Duration', 'Finished', 'Rvm']
headers: ['Job', 'Duration', 'Finished', 'Ruby']
jobs: [
{ color: 'green', id: 1, number: '1.1', repo: 'travis-ci/travis-core', finishedAt: '3 minutes ago', duration: '30 sec', rvm: 'rbx' }
{ color: 'red', id: 2, number: '1.2', repo: 'travis-ci/travis-core', finishedAt: '2 minutes ago', duration: '40 sec', rvm: '1.9.3' }
@ -42,7 +42,7 @@ test "displaying information on index page", ->
listsJobs
table: '#allowed_failure_jobs'
headers: ['Job', 'Duration', 'Finished', 'Rvm']
headers: ['Job', 'Duration', 'Finished', 'Ruby']
jobs: [
{ color: '', id: 3, number: '1.3', repo: 'travis-ci/travis-core', finishedAt: '-', duration: '-', rvm: 'jruby' }
]

View File

@ -5,7 +5,6 @@ module "My repos",
Ember.run -> Travis.reset()
test "my repos is active by default when user is signed in", ->
Ember.run -> signInUser()
visit('/').then ->
wait().then ->

View File

@ -0,0 +1,30 @@
#module "Sync",
# setup: ->
# Ember.run -> Travis.advanceReadiness()
# teardown: ->
# Ember.run -> Travis.reset()
#
#test "first sync page is show when user just signed up and is syncing", ->
# Ember.run ->
# signInUser
# is_syncing: true
# synced_at: null
#
# $.mockjax
# url: '/hooks'
# responseTime: 10
# responseText:
# hooks: []
#
# Travis.config.syncingPageRedirectionTime = 100
#
# wait().then ->
# ok $('#first_sync').text().match(/Just a few more seconds as we talk to GitHub to find out which repositories belong to you./)
#
# stop()
# Travis.__container__.lookup('controller:currentUser').get('content').set('isSyncing', false)
# setTimeout ->
# start()
# visit('/').then ->
# ok $('#getting-started').text().match(/Welcome to Travis CI!/)
# , 120

View File

@ -16,15 +16,54 @@ Ember.Container.prototype.stub = (fullName, instance) ->
instance.destroy = instance.destroy || (->)
this.cache.dict[fullName] = instance
window.signInUser = ->
window.signInUser = (data) ->
data ||= {}
userData = {
id: 1
email: 'tyrion@example.org'
login: 'tyrion'
token: 'abcdef'
created_at: "2011-05-10T15:43:59Z"
gravatar_id: "582034b63279abeaa8e76acf12f5ee30"
is_syncing: false
locale: "en"
name: "Tyrion"
synced_at: "2013-12-09T09:41:47Z"
}
userData = Ember.merge(userData, data)
$.mockjax
url: '/users/1'
responseTime: 10
responseText:
user: userData
$.mockjax
url: '/users'
responseTime: 10
responseText:
user: userData
$.mockjax
url: '/users/permissions'
responseTime: 10
responseText:
permissions: []
admin: []
push: []
pull: []
$.mockjax
url: '/broadcasts'
responseTime: 10
responseText:
broadcasts: []
$.mockjax
url: '/accounts'
responseTime: 10
responseText:
accounts: []
# for now let's just use harcoded data to log in the user,
# we may extend it in the future to pass specific user data
Travis.auth.signIn
user:
id: 1
email: 'tyrion@example.org'
login: 'tyrion'
token: 'abcdef'
user: userData
token: 'abcdef'
#@app = (url, options = {}) ->

View File

@ -5,8 +5,8 @@
@displaysTabs = (tabs) ->
for name, tab of tabs
equal($("#tab_#{name} a").attr('href'), tab.href, "#{name} tab should link to #{tab.href}") unless tab.hidden
equal($("#tab_#{name}").hasClass('active'), !!tab.active, "#{name} tab should be active")
equal($("#tab_#{name}").hasClass('display-inline'), !tab.hidden, "#{name} tab should has class display-inline") if name in ['build', 'job']
equal($("#tab_#{name}").hasClass('active'), !!tab.active, "#{name} tab should #{'not' unless tab.active} be active")
equal($("#tab_#{name}").hasClass('display-inline'), !tab.hidden, "#{name} tab should have class display-inline") if name in ['build', 'job']
@displaysSummaryBuildLink = (link, number) ->
element = $('#summary .number a')

View File

@ -1,11 +1,11 @@
minispade.require 'ext/jquery'
responseTime = 0
responseTime = 10
repos = [
{ 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_state: 'passed', last_build_duration: 30, last_build_started_at: '2012-07-02T00:00:00Z', last_build_finished_at: '2012-07-02T00:00:30Z', description: 'Description of travis-core' },
{ id: '2', owner: 'travis-ci', name: 'travis-assets', slug: 'travis-ci/travis-assets', build_ids: [3], last_build_id: 3, last_build_number: 3, last_build_state: 'failed', last_build_duration: 30, last_build_started_at: '2012-07-02T00:01:00Z', last_build_finished_at: '2012-07-01T00:01:30Z', description: 'Description of travis-assets'},
{ id: '3', owner: 'travis-ci', name: 'travis-hub', slug: 'travis-ci/travis-hub', build_ids: [4], last_build_id: 4, last_build_number: 4, last_build_state: null, last_build_duration: null, last_build_started_at: '2012-07-02T00:02:00Z', last_build_finished_at: null, description: 'Description of travis-hub'},
{ 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_state: 'passed', last_build_duration: 30, last_build_started_at: '2012-07-02T00:00:00Z', last_build_finished_at: '2012-07-02T00:00:30Z', description: 'Description of travis-core', github_language: 'ruby' },
{ id: '2', owner: 'travis-ci', name: 'travis-assets', slug: 'travis-ci/travis-assets', build_ids: [3], last_build_id: 3, last_build_number: 3, last_build_state: 'failed', last_build_duration: 30, last_build_started_at: '2012-07-02T00:01:00Z', last_build_finished_at: '2012-07-01T00:01:30Z', description: 'Description of travis-assets', github_language: 'ruby'},
{ id: '3', owner: 'travis-ci', name: 'travis-hub', slug: 'travis-ci/travis-hub', build_ids: [4], last_build_id: 4, last_build_number: 4, last_build_state: null, last_build_duration: null, last_build_started_at: '2012-07-02T00:02:00Z', last_build_finished_at: null, description: 'Description of travis-hub', github_language: 'ruby' },
]
reposByName = (name) ->
@ -18,9 +18,9 @@ reposByName = (name) ->
builds = [
{ id: '1', repository_id: '1', commit_id: 1, job_ids: [1, 2, 3], number: 1, pull_request: false, config: { rvm: ['rbx', '1.9.3', 'jruby'] }, duration: 30, started_at: '2012-07-02T00:00:00Z', finished_at: '2012-07-02T00:00:30Z', state: 'passed' },
{ id: '2', repository_id: '1', commit_id: 2, job_ids: [4], number: 2, pull_request: false, config: { rvm: ['rbx'] }, duration: null },
{ id: '2', repository_id: '1', commit_id: 2, job_ids: [4], number: 2, pull_request: false, config: { rvm: ['rbx'] }, duration: null, state: 'created', finished_at: null },
{ id: '3', repository_id: '2', commit_id: 3, job_ids: [5], number: 3, pull_request: false, config: { rvm: ['rbx'] }, duration: 30, started_at: '2012-07-02T00:01:00Z', finished_at: '2012-07-01T00:01:30Z', state: 'failed' },
{ id: '4', repository_id: '3', commit_id: 4, job_ids: [6], number: 4, pull_request: false, config: { rvm: ['rbx'] }, duration: null, started_at: '2012-07-02T00:02:00Z' },
{ id: '4', repository_id: '3', commit_id: 4, job_ids: [6], number: 4, pull_request: false, config: { rvm: ['rbx'] }, duration: null, started_at: '2012-07-02T00:02:00Z', state: 'queued', finished_at: null },
]
commits = [
@ -174,4 +174,3 @@ $.mockjax
url: '/profile/hooks'
responseTime: responseTime
responseText: { hooks: hooks }

View File

@ -54,4 +54,4 @@ test 'it takes into account all the jobs when getting config keys', ->
configKeys = build.get('configKeys')
deepEqual(rawConfigKeys, ['rvm', 'env', 'gemfile', 'jdk' ])
deepEqual(configKeys, [ 'Job', 'Duration', 'Finished', 'Rvm', 'Env', 'Gemfile', 'Jdk' ])
deepEqual(configKeys, [ 'Job', 'Duration', 'Finished', 'Ruby', 'ENV', 'Gemfile', 'JDK' ])

View File

@ -52,3 +52,9 @@ test 'replaces @user with github user link', ->
expected = 'It is for you <a href="http://github.com/tender_love1">@tender_love1</a>'
equal(result, expected, "@user should be converted to a link")
test 'does not replace @user if it is a sign-off', ->
message = 'Signed-off-by: GitHub User <user@example.com>'
result = Travis.Helpers.githubify(message, 'travis-ci', 'travis-web')
equal(result, message, "@user should not be converted to a link if it matches an email")

View File

@ -0,0 +1,89 @@
fakeWindow =
scroll: sinon.spy()
scrollTop: sinon.stub().returns(0)
height: sinon.stub().returns(40)
element = jQuery('<div id="specTail"></div>')
log = jQuery('<div id="specLog"></div>')
tail = new Travis.Tailing(fakeWindow, '#specTail', '#specLog')
tail.tail = -> element
tail.log = -> log
module "Travis.Tailing",
setup: ->
jQuery('body').append(element)
jQuery('body').append(log)
teardown: ->
element.remove()
log.remove()
tail.stop()
test "toggle", ->
equal(element.hasClass('active'), false)
tail.toggle()
equal(element.hasClass('active'), true)
tail.toggle()
stop()
Ember.run.later ->
start()
equal(element.hasClass('active'), false)
, 300
test "active", ->
equal(tail.active(), false)
element.addClass('active')
equal(tail.active(), true)
test "autoscroll when inactive", ->
tail.scrollTo = sinon.spy()
equal(tail.active(), false)
equal(tail.autoScroll(), false)
equal(tail.scrollTo.called, false)
test "autoscroll", ->
element.addClass('active')
log.offset = -> {top: 1}
log.outerHeight = -> 1
equal(tail.active(), true)
equal(tail.autoScroll(), true)
equal(fakeWindow.scrollTop.calledWith(2), true)
test "autoscroll when we're at the bottom", ->
element.addClass('active')
log.offset = -> {top: 0}
log.outerHeight = -> 0
equal(tail.active(), true)
equal(tail.autoScroll(), false)
equal(fakeWindow.scrollTop.calledWith(0), false)
test 'should stop scrolling if the position changed', ->
element.addClass('active')
tail.position = 100
tail.onScroll()
equal(element.hasClass('active'), false)
test 'positionButton adds the scrolling class', ->
log.offset = -> {top: -1}
tail.positionButton()
equal(element.hasClass('scrolling'), true)
equal(element.hasClass('bottom'), false)
test 'positionButton removes the scrolling class', ->
log.offset = -> {top: 1}
tail.positionButton()
equal(element.hasClass('scrolling'), false)
equal(element.hasClass('bottom'), false)
test 'positionButton sets the button as bottom', ->
log.offset = -> {top: -100}
log.height = -> 50
tail.height = -> 1
tail.positionButton()
equal(element.hasClass('scrolling'), false)
equal(element.hasClass('bottom'), true)

View File

@ -0,0 +1,47 @@
record = null
module "Travis.User",
setup: ->
teardown: ->
Travis.User.resetData()
test '', ->
# TODO: we should not need to mock entire user response
# just for user creation. It happens, because whenever
# a user is created we try to get fresh data
userData = {
id: 1
email: 'tyrion@example.org'
login: 'tyrion'
token: 'abcdef'
created_at: "2011-05-10T15:43:59Z"
gravatar_id: "582034b63279abeaa8e76acf12f5ee30"
is_syncing: false
locale: "en"
name: "Tyrion"
synced_at: "2013-12-09T09:41:47Z"
}
$.mockjax
url: '/users/1'
responseTime: 10
responseText:
user: userData
Travis.User.load [{ id: '1', login: 'test@travis-ci.org' }]
user = null
pushPermissions = null
adminPermissions = null
Ember.run ->
user = Travis.User.find(1)
user.set '_rawPermissions',
then: (func) ->
func(permissions: [1], admin: [1], pull: [2], push: [3])
pushPermissions = user.get('pushPermissions')
adminPermissions = user.get('adminPermissions')
wait().then ->
deepEqual(adminPermissions.toArray(), [1])
deepEqual(pushPermissions.toArray(), [3])

View File

@ -61,7 +61,11 @@ Ember.RecordArray.reopen
).observes('content')
window.Travis = TravisApplication.create(
LOG_TRANSITIONS: true
LOG_ACTIVE_GENERATION: true,
LOG_MODULE_RESOLVER: true,
LOG_TRANSITIONS: true,
LOG_TRANSITIONS_INTERNAL: true,
LOG_VIEW_LOOKUPS: true
)
Travis.deferReadiness()
@ -71,13 +75,29 @@ $.extend Travis,
Travis.advanceReadiness() # bc, remove once merged to master
config:
syncingPageRedirectionTime: 5000
api_endpoint: $('meta[rel="travis.api_endpoint"]').attr('href')
pusher_key: $('meta[name="travis.pusher_key"]').attr('value')
ga_code: $('meta[name="travis.ga_code"]').attr('value')
code_climate: $('meta[name="travis.code_climate"]').attr('value')
code_climate_url: $('meta[name="travis.code_climate_url"]').attr('value')
CONFIG_KEYS: ['go', 'rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala', 'compiler']
CONFIG_KEYS_MAP: {
go: 'Go'
rvm: 'Ruby'
gemfile: 'Gemfile'
env: 'ENV'
jdk: 'JDK'
otp_release: 'OTP Release'
php: 'PHP'
node_js: 'Node.js'
perl: 'Perl'
python: 'Python'
scala: 'Scala'
compiler: 'Compiler'
ghc: 'GHC'
os: 'OS'
}
QUEUES: [
{ name: 'linux', display: 'Linux' }
@ -131,6 +151,9 @@ Travis.Router.reopen
if Travis.config.ga_code
_gaq.push ['_trackPageview', location.pathname]
Ember.LinkView.reopen
loadingClass: 'loading_link'
require 'ext/i18n'
require 'travis/ajax'
require 'travis/adapter'

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -24,7 +24,7 @@
$.extend($.timeago, {
settings: {
refreshMillis: 3000,
allowFuture: true,
allowFuture: false,
strings: {
prefixAgo: null,
prefixFromNow: null,
@ -64,6 +64,10 @@
suffix = $l.suffixFromNow;
}
distanceMillis = Math.abs(distanceMillis);
} else {
if (distanceMillis < 0) {
distanceMillis = 0;
}
}
var seconds = distanceMillis / 1000;
@ -78,9 +82,9 @@
return string.replace(/%d/i, value);
}
var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||
var words = seconds < 55 && substitute($l.seconds, Math.round(seconds)) ||
seconds < 90 && substitute($l.minute, 1) ||
minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||
minutes < 55 && substitute($l.minutes, Math.round(minutes)) ||
minutes < 90 && substitute($l.hour, 1) ||
hours < 24 && substitute($l.hours, Math.round(hours)) ||
hours < 48 && substitute($l.day, 1) ||

View File

@ -131,3 +131,4 @@ $ansi-cyan: #C6C5FE
$ansi-cyan-bold: #DFDFFE
$ansi-white: #EEEEEE
$ansi-white-bold: #FFFFFF
$ansi-grey: #969696

View File

@ -40,6 +40,8 @@
color: $ansi-white
.white.bold
color: $ansi-white-bold
.grey
color: $ansi-grey
.bg-black
background-color: $ansi-black
.bg-red

View File

@ -1,7 +1,7 @@
@import "_mixins/all"
html, body
font-family: 'Source Sans Pro', sans-serif
font-family: 'Source Sans Pro', Helvetica, sans-serif
font-size: $font-size-small
line-height: $line-height
margin: 0

View File

@ -2,7 +2,7 @@
width: 850px
margin: 0 auto
padding-top: 30px
font-family: 'Source Sans Pro'
font-family: 'Source Sans Pro', Helvetica, sans-serif
font-size: 17px
line-height: 26px
text-align: center

View File

@ -32,8 +32,9 @@ pre#log
a
color: white
a
// display: inline-block
// min-width: 30px
display: inline-block
text-align: right
min-width: 40px
margin-left: -33px
cursor: pointer
text-decoration: none
@ -42,7 +43,6 @@ pre#log
content: counter(line-numbering)
counter-increment: line-numbering
padding-right: 1em
text-align: right
.fold
height: 16px
@ -86,44 +86,66 @@ pre#log
#log-container
position: relative
#log-container #tail
z-index: 99
position: absolute
display: block
top: 0
right: 2px
margin: 13px 10px 0 0
padding: 0 2px 0 3px
color: #666
text-shadow: 0px 1px 0px #fff
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
font-size: $font-size-tiny
line-height: 14px
text-decoration: none
white-space: nowrap
border: 1px solid #bbb
border-top-color: #ddd
border-bottom-color: #bbb
@include border-radius(8px)
@include background(linear-gradient(#fff, #e0e0e0))
#log-container
#tail
z-index: 99
position: absolute
display: block
top: 0
right: 2px
margin: 13px 10px 0 0
padding: 0 2px 0 3px
color: #666
text-shadow: 0px 1px 0px #fff
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
font-size: $font-size-tiny
line-height: 14px
text-decoration: none
white-space: nowrap
border: 1px solid #bbb
border-top-color: #ddd
border-bottom-color: #bbb
@include border-radius(8px)
@include background(linear-gradient(#fff, #e0e0e0))
label
display: none
cursor: pointer
&:hover
padding: 1px 4px 1px 6px
label
display: inline
display: none
cursor: pointer
.status
&:hover
padding: 1px 4px 1px 6px
label
display: inline
&.scrolling
position: fixed
right: 32px
&.bottom
bottom: 45px
top: inherit
.status
display: inline-block
margin-right: 1px
width: 8px
height: 8px
background-color: #aaa
@include border-radius(4px)
@include box-shadow(white 1px 1px 2px)
&.active .status
background-color: #6b0
.to-top
position: fixed
display: inline-block
margin-right: 1px
width: 8px
height: 8px
background-color: #aaa
@include border-radius(4px)
@include box-shadow(white 1px 1px 2px)
&.active .status
background-color: #6b0
bottom: 5px
right: 35px
width: 50px
float: right
margin-right: 2px
padding-right: 16px
text-align: right
color: #999
background: inline-image('ui/to-top.png') no-repeat right 6px

View File

@ -3,12 +3,3 @@
// float: left
margin-top: 0
color: #999
.to-top
display: inline-block
width: 50px
float: right
margin-right: 2px
padding-right: 16px
text-align: right
color: #999
background: inline-image('ui/to-top.png') no-repeat right 6px

View File

@ -10,22 +10,29 @@
img
float: left
width: 48px
height: 48px
width: 100px
height: 100px
margin: 3px 20px 0 0
@include border-radius(4px)
@include border-radius(100px)
background-color: $color-bg-light
dl.profile
display: table
font-size: 18px
line-height: 30px
margin: 0 0 20px 0
div
display: table-row
dt
color: #939386
font-weight: 600
display: table-cell
padding-right: 20px
dd
margin-left: 0
color: #337389
a
color: #337389
form
clear: left

View File

@ -84,6 +84,7 @@
overflow: hidden
white-space: nowrap
text-overflow: ellipsis
vertical-align: top
.name
max-width: 140px

View File

@ -9,7 +9,6 @@ de:
branch:
build_matrix: Build-Matrix
commit:
commiter:
committer:
compare: Vergleich
config: Konfiguration

View File

@ -9,7 +9,6 @@ en:
branch: Branch
build_matrix: Build Matrix
commit: Commit
commiter: commiter
committer: Committer
compare: Compare
config: Config

View File

@ -9,7 +9,6 @@ es:
branch: Rama
build_matrix: Matriz de Builds
commit: Commit
commiter:
committer: Committer
compare: Comparar
config: Configuración

View File

@ -9,7 +9,6 @@ fr:
branch: Branche
build_matrix: Table des versions
commit: Commit
commiter:
committer: Committeur
compare: Comparer
config: Config

View File

@ -9,7 +9,6 @@ ja:
branch: ブランチ
build_matrix: 失敗許容範囲外
commit: コミット
commiter:
committer: コミット者
compare: 比較
config: 設定

View File

@ -9,7 +9,6 @@ nb:
branch: Gren
build_matrix: Jobbmatrise
commit: Innsending
commiter:
committer: Innsender
compare: Sammenlign
config: Oppsett

View File

@ -9,7 +9,6 @@ nl:
branch: Tak
build_matrix: Bouw matrix
commit: Commit
commiter:
committer: Committer
compare: Vergelijk
config: Configuratie

View File

@ -9,7 +9,6 @@ pl:
branch: Gałąź
build_matrix: Macierz Buildów
commit: Commit
commiter:
committer: Komitujący
compare: Porównanie
config: Konfiguracja

View File

@ -9,7 +9,6 @@ pt-BR:
branch: Branch
build_matrix: Matriz de Build
commit: Commit
commiter:
committer: Committer
compare: Comparar
config: Config

View File

@ -9,7 +9,6 @@ ru:
branch: Ветка
build_matrix: Матрица
commit: Коммит
commiter:
committer: Коммитер
compare: Дифф
config: Конфигурация